From 27ada6804a3fe8b80c95835fd34f5885db0d9868 Mon Sep 17 00:00:00 2001 From: danielclow <106956386+danielclow@users.noreply.github.com> Date: Wed, 8 Jan 2025 14:40:07 +0800 Subject: [PATCH] docs: use absolute links in sql for cloud in 3.0 --- docs/en/14-reference/03-taos-sql/21-node.md | 4 ++-- docs/en/14-reference/03-taos-sql/27-udf.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/en/14-reference/03-taos-sql/21-node.md b/docs/en/14-reference/03-taos-sql/21-node.md index 76cb68e9be..faf73ef914 100644 --- a/docs/en/14-reference/03-taos-sql/21-node.md +++ b/docs/en/14-reference/03-taos-sql/21-node.md @@ -45,7 +45,7 @@ ALTER ALL DNODES dnode_option For configuration parameters that support dynamic modification, you can use the ALTER DNODE or ALTER ALL DNODES syntax to modify the values of configuration parameters in a dnode. Starting from version 3.3.4.0, the modified configuration parameters will be automatically persisted and will remain effective even after the database service is restarted. -To check whether a configuration parameter supports dynamic modification, please refer to the following page: [taosd Reference](../01-components/01-taosd.md) +To check whether a configuration parameter supports dynamic modification, please refer to the following page: [taosd Reference](/tdengine-reference/components/taosd/) The value is the parameter's value and needs to be in character format. For example, to change the log output level of dnode 1 to debug: @@ -130,7 +130,7 @@ ALTER LOCAL local_option You can use the above syntax to modify the client's configuration parameters, and there is no need to restart the client. The changes take effect immediately. -To check whether a configuration parameter supports dynamic modification, please refer to the following page:[taosc Reference](../01-components/02-taosc.md) +To check whether a configuration parameter supports dynamic modification, please refer to the following page:[taosc Reference](/tdengine-reference/components/taosc/) ## View Client Configuration diff --git a/docs/en/14-reference/03-taos-sql/27-udf.md b/docs/en/14-reference/03-taos-sql/27-udf.md index c0a6f096b2..4c8e34370a 100644 --- a/docs/en/14-reference/03-taos-sql/27-udf.md +++ b/docs/en/14-reference/03-taos-sql/27-udf.md @@ -60,7 +60,7 @@ CREATE [OR REPLACE] AGGREGATE FUNCTION function_name AS library_path OUTPUTTYPE CREATE AGGREGATE FUNCTION l2norm AS "/home/taos/udf_example/libl2norm.so" OUTPUTTYPE DOUBLE bufsize 64; ``` -About how to develop custom functions, please refer to [UDF Usage Instructions](../../../developer-guide/user-defined-functions/). +About how to develop custom functions, please refer to [UDF Usage Instructions](/developer-guide/user-defined-functions/). ## Manage UDF