This is an automated email from the ASF dual-hosted git repository.

luzhijing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris-website.git


The following commit(s) were added to refs/heads/master by this push:
     new ba31225784 [docs](fix) add some parameters for stream load and some 
tips for tvf and `show profile`. (#623)
ba31225784 is described below

commit ba31225784d0ef0cd43e735358b842db0aa300cb
Author: yagagagaga <zhangminkefromflyd...@gmail.com>
AuthorDate: Mon May 13 19:10:25 2024 +0800

    [docs](fix) add some parameters for stream load and some tips for tvf and 
`show profile`. (#623)
---
 docs/admin-manual/fe/query-profile-action.md                        | 4 ++++
 docs/data-operate/import/stream-load-manual.md                      | 1 +
 docs/sql-manual/sql-functions/table-functions/active_queries.md     | 6 +++---
 docs/sql-manual/sql-functions/table-functions/workload-group.md     | 6 +++---
 docs/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md | 4 ++++
 .../sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md | 4 ++++
 .../current/admin-manual/fe/query-profile-action.md                 | 4 ++++
 .../current/data-operate/import/stream-load-manual.md               | 1 +
 .../sql-manual/sql-functions/table-functions/active_queries.md      | 6 +++---
 .../sql-manual/sql-functions/table-functions/workload-group.md      | 6 +++---
 .../sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md  | 4 ++++
 .../sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md | 4 ++++
 .../version-2.1/admin-manual/fe/query-profile-action.md             | 4 ++++
 .../version-2.1/data-operate/import/stream-load-manual.md           | 1 +
 .../sql-manual/sql-functions/table-functions/active_queries.md      | 6 +++---
 .../sql-manual/sql-functions/table-functions/workload-group.md      | 6 +++---
 .../sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md  | 4 ++++
 .../sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md | 4 ++++
 versioned_docs/version-2.1/admin-manual/fe/query-profile-action.md  | 4 ++++
 .../version-2.1/data-operate/import/stream-load-manual.md           | 1 +
 .../sql-manual/sql-functions/table-functions/active_queries.md      | 6 +++---
 .../sql-manual/sql-functions/table-functions/workload-group.md      | 6 +++---
 .../sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md  | 4 ++++
 .../sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md | 4 ++++
 24 files changed, 76 insertions(+), 24 deletions(-)

diff --git a/docs/admin-manual/fe/query-profile-action.md 
b/docs/admin-manual/fe/query-profile-action.md
index 095e88e247..bd0effcd02 100644
--- a/docs/admin-manual/fe/query-profile-action.md
+++ b/docs/admin-manual/fe/query-profile-action.md
@@ -274,6 +274,10 @@ Admin and Root user can view all queries. Ordinary users 
can only view the Query
 
 `GET /rest/v2/manager/query/profile/fragments/{query_id}`
 
+:::caution
+Since 2.1.1, this API is deprecated. You can still download profile from 
http://<fe_ip>:<fe_http_port>/QueryProfile
+:::
+
 ### Description
 
 Get the fragment name, instance id, host ip/port and execution time for the 
specified query id.
diff --git a/docs/data-operate/import/stream-load-manual.md 
b/docs/data-operate/import/stream-load-manual.md
index 76152798d5..c6830e5ccf 100644
--- a/docs/data-operate/import/stream-load-manual.md
+++ b/docs/data-operate/import/stream-load-manual.md
@@ -331,6 +331,7 @@ Determines whether to enable the Pipeline engine to execute 
Streamload tasks. Se
 | comment                      | It is a String type, with an empty string as 
the default value. Used to add additional information to the task. |
 | enclose                      | Specify the enclosure character. When a CSV 
data field contains a row delimiter or column delimiter, to prevent unexpected 
truncation, you can specify a single-byte character as the enclosure for 
protection. For example, if the column delimiter is "," and the enclosure is 
"'", the data "a,'b,c'" will have "b,c" parsed as a single field. Note: When 
the enclosure is set to a double quote ("), make sure to set 
`trim_double_quotes` to true. |
 | escape                       | Specify the escape character. It is used to 
escape characters that are the same as the enclosure character within a field. 
For example, if the data is "a,'b,'c'", and the enclosure is "'", and you want 
"b,'c" to be parsed as a single field, you need to specify a single-byte escape 
character, such as "", and modify the data to "a,'b','c'". |
+| memtable_on_sink_node        | Whether to enable MemTable on DataSink node 
when loading data, default is false. |
 
 ### Load return value
 
diff --git a/docs/sql-manual/sql-functions/table-functions/active_queries.md 
b/docs/sql-manual/sql-functions/table-functions/active_queries.md
index 35a71b5eb6..52c8e6a057 100644
--- a/docs/sql-manual/sql-functions/table-functions/active_queries.md
+++ b/docs/sql-manual/sql-functions/table-functions/active_queries.md
@@ -28,11 +28,11 @@ under the License.
 
 ### Name
 
-<version since="dev">
-
 active_queries
 
-</version>
+:::caution
+Since 2.1.1, this table function has been moved to the 
information_schema.active_queries.
+:::
 
 ### description
 
diff --git a/docs/sql-manual/sql-functions/table-functions/workload-group.md 
b/docs/sql-manual/sql-functions/table-functions/workload-group.md
index 596cb07b52..0c588485a7 100644
--- a/docs/sql-manual/sql-functions/table-functions/workload-group.md
+++ b/docs/sql-manual/sql-functions/table-functions/workload-group.md
@@ -28,11 +28,11 @@ under the License.
 
 ### Name
 
-<version since="dev">
-
 workload_groups
 
-</version>
+:::caution
+Since 2.1.1, this table function has been moved to the 
information_schema.workload_groups.
+:::
 
 ### description
 
diff --git 
a/docs/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md 
b/docs/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md
index 0225f1a543..7f0a1772cc 100644
--- a/docs/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md
+++ b/docs/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md
@@ -30,6 +30,10 @@ under the License.
 
 SHOW LOAD PROFILE
 
+:::caution
+Since 2.1.1, this syntax is deprecated.
+:::
+
 ### Description
 
 This statement is used to view the Profile information of the import 
operation. This function requires the user to open the Profile settings. The 
versions before 0.15 perform the following settings:
diff --git 
a/docs/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md 
b/docs/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md
index a22b154d34..befa745924 100644
--- a/docs/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md
+++ b/docs/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md
@@ -30,6 +30,10 @@ under the License.
 
 SHOW QUERY PROFILE
 
+:::caution
+Since 2.1.1, this syntax is deprecated. You can still download profile from 
http://<fe_ip>:<fe_http_port>/QueryProfile
+:::
+
 ### Description
 
 This statement is used to view the tree profile information of the query 
operation,this function requires the user to open profile settings.
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/fe/query-profile-action.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/fe/query-profile-action.md
index b187f45dc0..eee40db899 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/fe/query-profile-action.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/fe/query-profile-action.md
@@ -274,6 +274,10 @@ Admin 和 Root 用户可以查看所有 Query。普通用户仅能查看自己
 
 `GET /rest/v2/manager/query/profile/fragments/{query_id}`
 
+:::caution
+自 2.1.1 起,此接口被弃用。你仍然可以从 http://<fe_ip>:<fe_http_port>/QueryProfile 上下载 profile 
文件。
+:::
+
 ### Description
 
 用于获取指定 query id 的 fragment 名称,instance id、主机 IP 及端口和执行时长。
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/stream-load-manual.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/stream-load-manual.md
index 209acf2728..ca3e451870 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/stream-load-manual.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/data-operate/import/stream-load-manual.md
@@ -337,6 +337,7 @@ Stream Load 操作支持 HTTP 分块导入(HTTP chunked)与 HTTP 非分块
 | comment                      | 字符串类型,默认值为空。给任务增加额外的信息。               |
 | enclose                      | 指定包围符。当 CSV 
数据字段中含有行分隔符或列分隔符时,为防止意外截断,可指定单字节字符作为包围符起到保护作用。例如列分隔符为 ",",包围符为 "'",数据为 
"a,'b,c'",则 "b,c" 会被解析为一个字段。注意:当 enclose 设置为`"`时,trim_double_quotes 一定要设置为 
true。 |
 | escape                       | 指定转义符。用于转义在字段中出现的与包围符相同的字符。例如数据为 
"a,'b,'c'",包围符为 "'",希望 "b,'c 被作为一个字段解析,则需要指定单字节转义符,例如"\",将数据修改为 "a,'b,\'c'"。 |
+| memtable_on_sink_node        | 导入数据的时候是否开启 MemTable 前移,默认为 false。 |
 
 ### 导入返回值
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/table-functions/active_queries.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/table-functions/active_queries.md
index feda3c128c..b74e2acd38 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/table-functions/active_queries.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/table-functions/active_queries.md
@@ -28,11 +28,11 @@ under the License.
 
 ### Name
 
-<version since="dev">
-
 active_queries
 
-</version>
+:::caution
+自 2.1.1 起,此表函数移到 information_schema.active_queries 表。
+:::
 
 ### description
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/table-functions/workload-group.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/table-functions/workload-group.md
index 512acb48c1..19804b00c1 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/table-functions/workload-group.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-functions/table-functions/workload-group.md
@@ -28,11 +28,11 @@ under the License.
 
 ### Name
 
-<version since="dev">
-
 workload_groups
 
-</version>
+:::caution
+自 2.1.1 起,此表函数移到 information_schema.workload_groups 表。
+:::
 
 ### description
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md
index a63c182b11..3e8a506978 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md
@@ -30,6 +30,10 @@ under the License.
 
 SHOW LOAD PROFILE
 
+:::caution
+自 2.1.1 起,此语法被弃用。
+:::
+
 ### Description
 
 该语句是用来查看导入操作的Profile信息,该功能需要用户打开 Profile 设置,0.15 之前版本执行下面的设置:
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md
index 82bb6e5b7c..201ecd0d29 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md
@@ -30,6 +30,10 @@ under the License.
 
 SHOW QUERY PROFILE
 
+:::caution
+自 2.1.1 起,此语法被弃用。你仍然可以从 http://<fe_ip>:<fe_http_port>/QueryProfile 上下载 profile 
文件。
+:::
+
 ### Description
 
 该语句是用来查看QUERY操作的树状Profile信息,该功能需要用户打开 Profile 设置,0.15 之前版本执行下面的设置:
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/fe/query-profile-action.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/fe/query-profile-action.md
index b187f45dc0..eee40db899 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/fe/query-profile-action.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/fe/query-profile-action.md
@@ -274,6 +274,10 @@ Admin 和 Root 用户可以查看所有 Query。普通用户仅能查看自己
 
 `GET /rest/v2/manager/query/profile/fragments/{query_id}`
 
+:::caution
+自 2.1.1 起,此接口被弃用。你仍然可以从 http://<fe_ip>:<fe_http_port>/QueryProfile 上下载 profile 
文件。
+:::
+
 ### Description
 
 用于获取指定 query id 的 fragment 名称,instance id、主机 IP 及端口和执行时长。
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/stream-load-manual.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/stream-load-manual.md
index 209acf2728..ca3e451870 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/stream-load-manual.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/data-operate/import/stream-load-manual.md
@@ -337,6 +337,7 @@ Stream Load 操作支持 HTTP 分块导入(HTTP chunked)与 HTTP 非分块
 | comment                      | 字符串类型,默认值为空。给任务增加额外的信息。               |
 | enclose                      | 指定包围符。当 CSV 
数据字段中含有行分隔符或列分隔符时,为防止意外截断,可指定单字节字符作为包围符起到保护作用。例如列分隔符为 ",",包围符为 "'",数据为 
"a,'b,c'",则 "b,c" 会被解析为一个字段。注意:当 enclose 设置为`"`时,trim_double_quotes 一定要设置为 
true。 |
 | escape                       | 指定转义符。用于转义在字段中出现的与包围符相同的字符。例如数据为 
"a,'b,'c'",包围符为 "'",希望 "b,'c 被作为一个字段解析,则需要指定单字节转义符,例如"\",将数据修改为 "a,'b,\'c'"。 |
+| memtable_on_sink_node        | 导入数据的时候是否开启 MemTable 前移,默认为 false。 |
 
 ### 导入返回值
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/table-functions/active_queries.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/table-functions/active_queries.md
index feda3c128c..b74e2acd38 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/table-functions/active_queries.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/table-functions/active_queries.md
@@ -28,11 +28,11 @@ under the License.
 
 ### Name
 
-<version since="dev">
-
 active_queries
 
-</version>
+:::caution
+自 2.1.1 起,此表函数移到 information_schema.active_queries 表。
+:::
 
 ### description
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/table-functions/workload-group.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/table-functions/workload-group.md
index 512acb48c1..19804b00c1 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/table-functions/workload-group.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-functions/table-functions/workload-group.md
@@ -28,11 +28,11 @@ under the License.
 
 ### Name
 
-<version since="dev">
-
 workload_groups
 
-</version>
+:::caution
+自 2.1.1 起,此表函数移到 information_schema.workload_groups 表。
+:::
 
 ### description
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md
index a63c182b11..3e8a506978 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md
@@ -30,6 +30,10 @@ under the License.
 
 SHOW LOAD PROFILE
 
+:::caution
+自 2.1.1 起,此语法被弃用。
+:::
+
 ### Description
 
 该语句是用来查看导入操作的Profile信息,该功能需要用户打开 Profile 设置,0.15 之前版本执行下面的设置:
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md
index 82bb6e5b7c..201ecd0d29 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md
@@ -30,6 +30,10 @@ under the License.
 
 SHOW QUERY PROFILE
 
+:::caution
+自 2.1.1 起,此语法被弃用。你仍然可以从 http://<fe_ip>:<fe_http_port>/QueryProfile 上下载 profile 
文件。
+:::
+
 ### Description
 
 该语句是用来查看QUERY操作的树状Profile信息,该功能需要用户打开 Profile 设置,0.15 之前版本执行下面的设置:
diff --git a/versioned_docs/version-2.1/admin-manual/fe/query-profile-action.md 
b/versioned_docs/version-2.1/admin-manual/fe/query-profile-action.md
index 095e88e247..bd0effcd02 100644
--- a/versioned_docs/version-2.1/admin-manual/fe/query-profile-action.md
+++ b/versioned_docs/version-2.1/admin-manual/fe/query-profile-action.md
@@ -274,6 +274,10 @@ Admin and Root user can view all queries. Ordinary users 
can only view the Query
 
 `GET /rest/v2/manager/query/profile/fragments/{query_id}`
 
+:::caution
+Since 2.1.1, this API is deprecated. You can still download profile from 
http://<fe_ip>:<fe_http_port>/QueryProfile
+:::
+
 ### Description
 
 Get the fragment name, instance id, host ip/port and execution time for the 
specified query id.
diff --git 
a/versioned_docs/version-2.1/data-operate/import/stream-load-manual.md 
b/versioned_docs/version-2.1/data-operate/import/stream-load-manual.md
index 76152798d5..c6830e5ccf 100644
--- a/versioned_docs/version-2.1/data-operate/import/stream-load-manual.md
+++ b/versioned_docs/version-2.1/data-operate/import/stream-load-manual.md
@@ -331,6 +331,7 @@ Determines whether to enable the Pipeline engine to execute 
Streamload tasks. Se
 | comment                      | It is a String type, with an empty string as 
the default value. Used to add additional information to the task. |
 | enclose                      | Specify the enclosure character. When a CSV 
data field contains a row delimiter or column delimiter, to prevent unexpected 
truncation, you can specify a single-byte character as the enclosure for 
protection. For example, if the column delimiter is "," and the enclosure is 
"'", the data "a,'b,c'" will have "b,c" parsed as a single field. Note: When 
the enclosure is set to a double quote ("), make sure to set 
`trim_double_quotes` to true. |
 | escape                       | Specify the escape character. It is used to 
escape characters that are the same as the enclosure character within a field. 
For example, if the data is "a,'b,'c'", and the enclosure is "'", and you want 
"b,'c" to be parsed as a single field, you need to specify a single-byte escape 
character, such as "", and modify the data to "a,'b','c'". |
+| memtable_on_sink_node        | Whether to enable MemTable on DataSink node 
when loading data, default is false. |
 
 ### Load return value
 
diff --git 
a/versioned_docs/version-2.1/sql-manual/sql-functions/table-functions/active_queries.md
 
b/versioned_docs/version-2.1/sql-manual/sql-functions/table-functions/active_queries.md
index 35a71b5eb6..52c8e6a057 100644
--- 
a/versioned_docs/version-2.1/sql-manual/sql-functions/table-functions/active_queries.md
+++ 
b/versioned_docs/version-2.1/sql-manual/sql-functions/table-functions/active_queries.md
@@ -28,11 +28,11 @@ under the License.
 
 ### Name
 
-<version since="dev">
-
 active_queries
 
-</version>
+:::caution
+Since 2.1.1, this table function has been moved to the 
information_schema.active_queries.
+:::
 
 ### description
 
diff --git 
a/versioned_docs/version-2.1/sql-manual/sql-functions/table-functions/workload-group.md
 
b/versioned_docs/version-2.1/sql-manual/sql-functions/table-functions/workload-group.md
index 596cb07b52..0c588485a7 100644
--- 
a/versioned_docs/version-2.1/sql-manual/sql-functions/table-functions/workload-group.md
+++ 
b/versioned_docs/version-2.1/sql-manual/sql-functions/table-functions/workload-group.md
@@ -28,11 +28,11 @@ under the License.
 
 ### Name
 
-<version since="dev">
-
 workload_groups
 
-</version>
+:::caution
+Since 2.1.1, this table function has been moved to the 
information_schema.workload_groups.
+:::
 
 ### description
 
diff --git 
a/versioned_docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md
 
b/versioned_docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md
index 0225f1a543..7f0a1772cc 100644
--- 
a/versioned_docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md
+++ 
b/versioned_docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-LOAD-PROFILE.md
@@ -30,6 +30,10 @@ under the License.
 
 SHOW LOAD PROFILE
 
+:::caution
+Since 2.1.1, this syntax is deprecated.
+:::
+
 ### Description
 
 This statement is used to view the Profile information of the import 
operation. This function requires the user to open the Profile settings. The 
versions before 0.15 perform the following settings:
diff --git 
a/versioned_docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md
 
b/versioned_docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md
index a22b154d34..befa745924 100644
--- 
a/versioned_docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md
+++ 
b/versioned_docs/version-2.1/sql-manual/sql-statements/Show-Statements/SHOW-QUERY-PROFILE.md
@@ -30,6 +30,10 @@ under the License.
 
 SHOW QUERY PROFILE
 
+:::caution
+Since 2.1.1, this syntax is deprecated. You can still download profile from 
http://<fe_ip>:<fe_http_port>/QueryProfile
+:::
+
 ### Description
 
 This statement is used to view the tree profile information of the query 
operation,this function requires the user to open profile settings.


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to