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

kassiez 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 7b6867231d0 [doc] add doc of `show backend config` (#1306)
7b6867231d0 is described below

commit 7b6867231d00656ba4848a1fe4b5a6ffc871036f
Author: Xujian Duan <50550370+darvend...@users.noreply.github.com>
AuthorDate: Wed Nov 27 20:34:07 2024 +0800

    [doc] add doc of `show backend config` (#1306)
    
    # Versions
    PR https://github.com/apache/doris/pull/36525 has implemented showing
    backend config by ShowStmt, add some docs.
    - [x] dev
    - [x] 3.0
    - [ ] 2.1
    - [ ] 2.0
    
    # Languages
    
    - [x] Chinese
    - [x] English
---
 docs/admin-manual/config/be-config.md              | 23 +++++++++++++--
 .../SHOW-CONFIG.md                                 | 33 +++++++++++++++++++---
 .../current/admin-manual/config/be-config.md       | 21 ++++++++++++--
 .../admin-manual/config/fe-config-template.md      |  2 +-
 .../current/admin-manual/config/fe-config.md       |  2 +-
 .../SHOW-CONFIG.md                                 | 29 +++++++++++++++++--
 .../admin-manual/config/fe-config-template.md      |  2 +-
 .../version-1.2/admin-manual/config/fe-config.md   |  2 +-
 .../admin-manual/config/fe-config-template.md      |  2 +-
 .../version-2.0/admin-manual/config/fe-config.md   |  2 +-
 .../admin-manual/config/fe-config-template.md      |  2 +-
 .../version-2.1/admin-manual/config/fe-config.md   |  2 +-
 .../version-3.0/admin-manual/config/be-config.md   | 21 ++++++++++++--
 .../admin-manual/config/fe-config-template.md      |  2 +-
 .../version-3.0/admin-manual/config/fe-config.md   |  2 +-
 .../version-3.0/admin-manual/config/be-config.md   | 23 +++++++++++++--
 16 files changed, 145 insertions(+), 25 deletions(-)

diff --git a/docs/admin-manual/config/be-config.md 
b/docs/admin-manual/config/be-config.md
index 6cca696fe47..82cbb31b820 100644
--- a/docs/admin-manual/config/be-config.md
+++ b/docs/admin-manual/config/be-config.md
@@ -40,9 +40,28 @@ The location of the `be_custom.conf` file can be configured 
in `be.conf` through
 
 ## View configuration items
 
-Users can view the current configuration items by visiting BE's web page:
+There are two ways to view the configuration items of BE:
 
-`http://be_host:be_webserver_port/varz`
+1. BE web page
+
+    Users can view the current configuration items by visiting BE's web page:
+
+    `http://be_host:be_webserver_port/varz`
+
+2. View by command
+
+   You can view the configuration items of the BE in the MySQL client with the 
following command,Concrete language law reference 
[SHOW-CONFIG](../../sql-manual/sql-statements/Database-Administration-Statements/SHOW-CONFIG.md):
+
+    `SHOW BACKEND CONFIG;`
+
+    The meanings of the columns in the results are as follows:
+
+    1. BackendId: the id of backend.
+    2. Host: the IP of backend.
+    3. Key: the name of the configuration item.
+    4. Value: The value of the current configuration item.
+    5. Type: The configuration item value type, such as integer or string.
+    6. IsMutable: whether it can be dynamically configured. If true, the 
configuration item can be dynamically configured at runtime. If false, it means 
that the configuration item can only be configured in be.conf and takes effect 
after restarting BE.
 
 ## Set configuration items
 
diff --git 
a/docs/sql-manual/sql-statements/Database-Administration-Statements/SHOW-CONFIG.md
 
b/docs/sql-manual/sql-statements/Database-Administration-Statements/SHOW-CONFIG.md
index 74477698a01..8220a09a1aa 100644
--- 
a/docs/sql-manual/sql-statements/Database-Administration-Statements/SHOW-CONFIG.md
+++ 
b/docs/sql-manual/sql-statements/Database-Administration-Statements/SHOW-CONFIG.md
@@ -32,15 +32,15 @@ SHOW CONFIG
 
 ### Description
 
-This statement is used to display the configuration of the current cluster 
(currently only the configuration items of FE are supported)
+This statement is used to display the configuration of the current cluster.
 
 grammar:
 
 ```sql
-SHOW FRONTEND CONFIG [LIKE "pattern"];
-```
+SHOW (FRONTEND|BACKEND)  CONFIG [LIKE "pattern"];
+````
 
-The columns in the results have the following meanings:
+The columns in the results of showing FE configuration have the following 
meanings:
 
 1. Key: Configuration item name
 2. Value: Configuration item value
@@ -49,6 +49,15 @@ The columns in the results have the following meanings:
 5. MasterOnly: Is it only applicable to Master FE
 6. Comment: Configuration item description
 
+The columns in the results of showing BE configuration have the following 
meanings:
+
+1. BackendId: ID of a backend
+2. Host: Host of a backend 
+3. Key: Configuration item name
+4. Value: Configuration item value
+5. Type: Configuration item type
+6. IsMutable: Whether it can be modified
+
 ### Example
 
 1. View the configuration of the current FE node
@@ -69,6 +78,22 @@ The columns in the results have the following meanings:
    1 row in set (0.01 sec)
    ```
 
+3. View the configuration for a specific BE using the backend ID `10001`
+
+    ```sql
+    SHOW BACKEND CONFIG FROM 10001;
+    ```
+4. View the configuration useing both a pattern and a backend ID
+    ```
+    mysql> SHOW BACKEND CONFIG LIKE "be_port" FROM 10001;
+    +-----------+---------------+---------+-------+---------+-----------+
+    | BackendId | Host          | Key     | Value | Type    | IsMutable |
+    +-----------+---------------+---------+-------+---------+-----------+
+    | 10001     | xx.xx.xxx.xxx | be_port | 9060  | int32_t | false     |
+    +-----------+---------------+---------+-------+---------+-----------+
+    ```
+
+
 ### Keywords
 
     SHOW, CONFIG
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/be-config.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/be-config.md
index 25db4156cd5..7aa73d744b1 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/be-config.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/be-config.md
@@ -38,9 +38,26 @@ BE 进程启动后,会先读取 `be.conf` 中的配置项,之后再读取 `b
 
 ## 查看配置项
 
-用户可以通过访问 BE 的 Web 页面查看当前配置项:
+有两种方式能够查看 BE 配置项:
 
-`http://be_host:be_webserver_port/varz`
+1. 通过 BE 前端页面查看
+
+    在浏览器中打开 BE 前端页面: `http://be_host:be_webserver_port/varz`
+
+2. 通过命令行查看
+
+   可以在 MySQL 客户端中,通过以下命令查看 BE 
的配置项,具体语法参照[SHOW-CONFIG](../../sql-manual/sql-statements/Database-Administration-Statements/SHOW-CONFIG.md):
+
+    `SHOW BACKEND CONFIG;`
+
+    结果中各列含义如下:
+
+    1. BackendId: backend 节点 ID。
+    2. Host: backend 节点 IP。
+    3. Key: 配置项名称。
+    4. Value: 配置项的值。
+    5. Type: 配置项值类型,如整型、字符串。
+    6. 是否可以动态配置。如果为 true,表示该配置项可以在运行时进行动态配置。如果 false,则表示该配置项只能在 `be.conf` 
中配置并且重启 FE 后生效。
 
 ## 设置配置项
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/fe-config-template.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/fe-config-template.md
index 2fe7ad6efa0..d1ac6953ec4 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/fe-config-template.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/fe-config-template.md
@@ -62,7 +62,7 @@ FE 的配置项有两种方式进行查看:
 
    - Key:配置项名称。
    - Value:当前配置项的值。
-   - Type:配置项值类型,如果整型、字符串。
+   - Type:配置项值类型,如整型、字符串。
    - IsMutable:是否可以动态配置。如果为 true,表示该配置项可以在运行时进行动态配置。如果 false,则表示该配置项只能在 
`fe.conf` 中配置并且重启 FE 后生效。
    - MasterOnly:是否为 Master FE 节点独有的配置项。如果为 true,则表示该配置项仅在 Master FE 
节点有意义,对其他类型的 FE 节点无意义。如果为 false,则表示该配置项在所有 FE 节点中均有意义。
    - Comment:配置项的描述。
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/fe-config.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/fe-config.md
index 7304f27a32e..91d0285e1f1 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/fe-config.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/fe-config.md
@@ -55,7 +55,7 @@ FE 的配置项有两种方式进行查看:
 
    - Key:配置项名称。
    - Value:当前配置项的值。
-   - Type:配置项值类型,如果整型、字符串。
+   - Type:配置项值类型,如整型、字符串。
    - IsMutable:是否可以动态配置。如果为 true,表示该配置项可以在运行时进行动态配置。如果 false,则表示该配置项只能在 
`fe.conf` 中配置并且重启 FE 后生效。
    - MasterOnly:是否为 Master FE 节点独有的配置项。如果为 true,则表示该配置项仅在 Master FE 
节点有意义,对其他类型的 FE 节点无意义。如果为 false,则表示该配置项在所有 FE 节点中均有意义。
    - Comment:配置项的描述。
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/Database-Administration-Statements/SHOW-CONFIG.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/Database-Administration-Statements/SHOW-CONFIG.md
index c7544e870d0..f4ff7a1b342 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/Database-Administration-Statements/SHOW-CONFIG.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/Database-Administration-Statements/SHOW-CONFIG.md
@@ -32,15 +32,15 @@ SHOW CONFIG
 
 ### Description
 
-该语句用于展示当前集群的配置(当前仅支持展示 FE 的配置项)
+该语句用于展示当前集群的配置
 
 语法:
 
 ```sql
-SHOW FRONTEND CONFIG [LIKE "pattern"];
+SHOW (FRONTEND|BACKEND)  CONFIG [LIKE "pattern"];
 ```
 
-结果中的各列含义如下:
+查看FE配置项的结果中的各列含义如下:
 
 1. Key:        配置项名称
 2. Value:      配置项值
@@ -49,6 +49,15 @@ SHOW FRONTEND CONFIG [LIKE "pattern"];
 5. MasterOnly: 是否仅适用于 Master FE
 6. Comment:    配置项说明
 
+查看BE配置项的结果中的各列含义如下:
+
+1. BackendId:   BE ID
+2. Host:        BE的IP地址
+3. Key:         配置项名称
+4. Value:       配置项值
+5. Type:        配置型类型 
+6. IsMutable:   是否可以修改
+
 ### Example
 
 1. 查看当前FE节点的配置
@@ -69,6 +78,20 @@ SHOW FRONTEND CONFIG [LIKE "pattern"];
     1 row in set (0.01 sec)
     ```
 
+3. 查看Be ID为`10001`的BE节点的配置项
+
+    ```sql
+    SHOW BACKEND CONFIG FROM 10001;
+    ```
+4. 使用like谓词查看Be ID为`10001`的配置
+    ```
+    mysql> SHOW BACKEND CONFIG LIKE "be_port" FROM 10001;
+    +-----------+---------------+---------+-------+---------+-----------+
+    | BackendId | Host          | Key     | Value | Type    | IsMutable |
+    +-----------+---------------+---------+-------+---------+-----------+
+    | 10001     | xx.xx.xxx.xxx | be_port | 9060  | int32_t | false     |
+    +-----------+---------------+---------+-------+---------+-----------+
+    ```
 ### Keywords
 
     SHOW, CONFIG
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2/admin-manual/config/fe-config-template.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2/admin-manual/config/fe-config-template.md
index 025475e3abb..d85c8caa698 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2/admin-manual/config/fe-config-template.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2/admin-manual/config/fe-config-template.md
@@ -55,7 +55,7 @@ FE 的配置项有两种方式进行查看:
 
    - Key:配置项名称。
    - Value:当前配置项的值。
-   - Type:配置项值类型,如果整型、字符串。
+   - Type:配置项值类型,如整型、字符串。
    - IsMutable:是否可以动态配置。如果为 true,表示该配置项可以在运行时进行动态配置。如果false,则表示该配置项只能在 
`fe.conf` 中配置并且重启 FE 后生效。
    - MasterOnly:是否为 Master FE 节点独有的配置项。如果为 true,则表示该配置项仅在 Master FE 
节点有意义,对其他类型的 FE 节点无意义。如果为 false,则表示该配置项在所有 FE 节点中均有意义。
    - Comment:配置项的描述。
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2/admin-manual/config/fe-config.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2/admin-manual/config/fe-config.md
index ef76cf197f6..ff6ec25bf8e 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2/admin-manual/config/fe-config.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-1.2/admin-manual/config/fe-config.md
@@ -55,7 +55,7 @@ FE 的配置项有两种方式进行查看:
 
    - Key:配置项名称。
    - Value:当前配置项的值。
-   - Type:配置项值类型,如果整型、字符串。
+   - Type:配置项值类型,如整型、字符串。
    - IsMutable:是否可以动态配置。如果为 true,表示该配置项可以在运行时进行动态配置。如果false,则表示该配置项只能在 
`fe.conf` 中配置并且重启 FE 后生效。
    - MasterOnly:是否为 Master FE 节点独有的配置项。如果为 true,则表示该配置项仅在 Master FE 
节点有意义,对其他类型的 FE 节点无意义。如果为 false,则表示该配置项在所有 FE 节点中均有意义。
    - Comment:配置项的描述。
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/admin-manual/config/fe-config-template.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/admin-manual/config/fe-config-template.md
index dce5c1c2a10..c882fcf39a5 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/admin-manual/config/fe-config-template.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/admin-manual/config/fe-config-template.md
@@ -62,7 +62,7 @@ FE 的配置项有两种方式进行查看:
 
    - Key:配置项名称。
    - Value:当前配置项的值。
-   - Type:配置项值类型,如果整型、字符串。
+   - Type:配置项值类型,如整型、字符串。
    - IsMutable:是否可以动态配置。如果为 true,表示该配置项可以在运行时进行动态配置。如果 false,则表示该配置项只能在 
`fe.conf` 中配置并且重启 FE 后生效。
    - MasterOnly:是否为 Master FE 节点独有的配置项。如果为 true,则表示该配置项仅在 Master FE 
节点有意义,对其他类型的 FE 节点无意义。如果为 false,则表示该配置项在所有 FE 节点中均有意义。
    - Comment:配置项的描述。
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/admin-manual/config/fe-config.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/admin-manual/config/fe-config.md
index 9522851746e..0c8522b9529 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/admin-manual/config/fe-config.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.0/admin-manual/config/fe-config.md
@@ -55,7 +55,7 @@ FE 的配置项有两种方式进行查看:
 
    - Value:当前配置项的值。
 
-   - Type:配置项值类型,如果整型、字符串。
+   - Type:配置项值类型,如整型、字符串。
 
    - IsMutable:是否可以动态配置。如果为 true,表示该配置项可以在运行时进行动态配置。如果 false,则表示该配置项只能在 
`fe.conf` 中配置并且重启 FE 后生效。
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/config/fe-config-template.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/config/fe-config-template.md
index 2fe7ad6efa0..d1ac6953ec4 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/config/fe-config-template.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/config/fe-config-template.md
@@ -62,7 +62,7 @@ FE 的配置项有两种方式进行查看:
 
    - Key:配置项名称。
    - Value:当前配置项的值。
-   - Type:配置项值类型,如果整型、字符串。
+   - Type:配置项值类型,如整型、字符串。
    - IsMutable:是否可以动态配置。如果为 true,表示该配置项可以在运行时进行动态配置。如果 false,则表示该配置项只能在 
`fe.conf` 中配置并且重启 FE 后生效。
    - MasterOnly:是否为 Master FE 节点独有的配置项。如果为 true,则表示该配置项仅在 Master FE 
节点有意义,对其他类型的 FE 节点无意义。如果为 false,则表示该配置项在所有 FE 节点中均有意义。
    - Comment:配置项的描述。
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/config/fe-config.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/config/fe-config.md
index 7fca848f829..f8ed2487d02 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/config/fe-config.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/admin-manual/config/fe-config.md
@@ -55,7 +55,7 @@ FE 的配置项有两种方式进行查看:
 
    - Key:配置项名称。
    - Value:当前配置项的值。
-   - Type:配置项值类型,如果整型、字符串。
+   - Type:配置项值类型,如整型、字符串。
    - IsMutable:是否可以动态配置。如果为 true,表示该配置项可以在运行时进行动态配置。如果 false,则表示该配置项只能在 
`fe.conf` 中配置并且重启 FE 后生效。
    - MasterOnly:是否为 Master FE 节点独有的配置项。如果为 true,则表示该配置项仅在 Master FE 
节点有意义,对其他类型的 FE 节点无意义。如果为 false,则表示该配置项在所有 FE 节点中均有意义。
    - Comment:配置项的描述。
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/admin-manual/config/be-config.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/admin-manual/config/be-config.md
index 99275ba74d5..4a2206bffa4 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/admin-manual/config/be-config.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/admin-manual/config/be-config.md
@@ -38,9 +38,26 @@ BE 进程启动后,会先读取 `be.conf` 中的配置项,之后再读取 `b
 
 ## 查看配置项
 
-用户可以通过访问 BE 的 Web 页面查看当前配置项:
+有两种方式能够查看 BE 配置项:
 
-`http://be_host:be_webserver_port/varz`
+1. 通过 BE 前端页面查看
+
+    在浏览器中打开 BE 前端页面: `http://be_host:be_webserver_port/varz`
+
+2. 通过命令行查看
+
+   可以在 MySQL 客户端中,通过以下命令查看 BE 
的配置项,具体语法参照[SHOW-CONFIG](../../sql-manual/sql-statements/Database-Administration-Statements/SHOW-CONFIG.md):
+
+    `SHOW BACKEND CONFIG;`
+
+    结果中各列含义如下:
+
+    1. BackendId: backend 节点 ID。
+    2. Host: backend 节点 IP。
+    3. Key: 配置项名称。
+    4. Value: 配置项的值。
+    5. Type: 配置项值类型,如整型、字符串。
+    6. 是否可以动态配置。如果为 true,表示该配置项可以在运行时进行动态配置。如果 false,则表示该配置项只能在 `be.conf` 
中配置并且重启 BE 后生效。
 
 ## 设置配置项
 
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/admin-manual/config/fe-config-template.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/admin-manual/config/fe-config-template.md
index 2fe7ad6efa0..d1ac6953ec4 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/admin-manual/config/fe-config-template.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/admin-manual/config/fe-config-template.md
@@ -62,7 +62,7 @@ FE 的配置项有两种方式进行查看:
 
    - Key:配置项名称。
    - Value:当前配置项的值。
-   - Type:配置项值类型,如果整型、字符串。
+   - Type:配置项值类型,如整型、字符串。
    - IsMutable:是否可以动态配置。如果为 true,表示该配置项可以在运行时进行动态配置。如果 false,则表示该配置项只能在 
`fe.conf` 中配置并且重启 FE 后生效。
    - MasterOnly:是否为 Master FE 节点独有的配置项。如果为 true,则表示该配置项仅在 Master FE 
节点有意义,对其他类型的 FE 节点无意义。如果为 false,则表示该配置项在所有 FE 节点中均有意义。
    - Comment:配置项的描述。
diff --git 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/admin-manual/config/fe-config.md
 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/admin-manual/config/fe-config.md
index b25086d2819..708f28237c0 100644
--- 
a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/admin-manual/config/fe-config.md
+++ 
b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/admin-manual/config/fe-config.md
@@ -55,7 +55,7 @@ FE 的配置项有两种方式进行查看:
 
    - Key:配置项名称。
    - Value:当前配置项的值。
-   - Type:配置项值类型,如果整型、字符串。
+   - Type:配置项值类型,如整型、字符串。
    - IsMutable:是否可以动态配置。如果为 true,表示该配置项可以在运行时进行动态配置。如果 false,则表示该配置项只能在 
`fe.conf` 中配置并且重启 FE 后生效。
    - MasterOnly:是否为 Master FE 节点独有的配置项。如果为 true,则表示该配置项仅在 Master FE 
节点有意义,对其他类型的 FE 节点无意义。如果为 false,则表示该配置项在所有 FE 节点中均有意义。
    - Comment:配置项的描述。
diff --git a/versioned_docs/version-3.0/admin-manual/config/be-config.md 
b/versioned_docs/version-3.0/admin-manual/config/be-config.md
index 6cca696fe47..82cbb31b820 100644
--- a/versioned_docs/version-3.0/admin-manual/config/be-config.md
+++ b/versioned_docs/version-3.0/admin-manual/config/be-config.md
@@ -40,9 +40,28 @@ The location of the `be_custom.conf` file can be configured 
in `be.conf` through
 
 ## View configuration items
 
-Users can view the current configuration items by visiting BE's web page:
+There are two ways to view the configuration items of BE:
 
-`http://be_host:be_webserver_port/varz`
+1. BE web page
+
+    Users can view the current configuration items by visiting BE's web page:
+
+    `http://be_host:be_webserver_port/varz`
+
+2. View by command
+
+   You can view the configuration items of the BE in the MySQL client with the 
following command,Concrete language law reference 
[SHOW-CONFIG](../../sql-manual/sql-statements/Database-Administration-Statements/SHOW-CONFIG.md):
+
+    `SHOW BACKEND CONFIG;`
+
+    The meanings of the columns in the results are as follows:
+
+    1. BackendId: the id of backend.
+    2. Host: the IP of backend.
+    3. Key: the name of the configuration item.
+    4. Value: The value of the current configuration item.
+    5. Type: The configuration item value type, such as integer or string.
+    6. IsMutable: whether it can be dynamically configured. If true, the 
configuration item can be dynamically configured at runtime. If false, it means 
that the configuration item can only be configured in be.conf and takes effect 
after restarting BE.
 
 ## Set configuration items
 


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

Reply via email to