This is an automated email from the ASF dual-hosted git repository.
critas pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iotdb-docs.git
The following commit(s) were added to refs/heads/main by this push:
new e677ec5c fix set configuration: add quote mark (#802)
e677ec5c is described below
commit e677ec5ccda2de23ceac94ca2de759dbe769e1cc
Author: leto-b <[email protected]>
AuthorDate: Wed Jul 9 17:05:35 2025 +0800
fix set configuration: add quote mark (#802)
---
src/UserGuide/Master/Tree/Reference/Modify-Config-Manual.md | 10 +++++-----
src/UserGuide/Master/Tree/User-Manual/Maintenance-commands.md | 2 +-
src/UserGuide/V1.3.x/Reference/Modify-Config-Manual.md | 10 +++++-----
src/UserGuide/V1.3.x/User-Manual/Maintenance-commands.md | 2 +-
src/UserGuide/dev-1.3/Reference/Modify-Config-Manual.md | 10 +++++-----
src/UserGuide/dev-1.3/User-Manual/Maintenance-commands.md | 2 +-
src/UserGuide/latest/Reference/Modify-Config-Manual.md | 10 +++++-----
src/UserGuide/latest/User-Manual/Maintenance-commands.md | 2 +-
src/zh/UserGuide/Master/Tree/Reference/Modify-Config-Manual.md | 10 +++++-----
.../UserGuide/Master/Tree/User-Manual/Maintenance-statement.md | 2 +-
src/zh/UserGuide/V1.3.x/Reference/Modify-Config-Manual.md | 10 +++++-----
src/zh/UserGuide/V1.3.x/User-Manual/Maintenance-statement.md | 2 +-
src/zh/UserGuide/dev-1.3/Reference/Modify-Config-Manual.md | 10 +++++-----
src/zh/UserGuide/dev-1.3/User-Manual/Maintenance-statement.md | 2 +-
src/zh/UserGuide/latest/Reference/Modify-Config-Manual.md | 10 +++++-----
src/zh/UserGuide/latest/User-Manual/Maintenance-statement.md | 2 +-
16 files changed, 48 insertions(+), 48 deletions(-)
diff --git a/src/UserGuide/Master/Tree/Reference/Modify-Config-Manual.md
b/src/UserGuide/Master/Tree/Reference/Modify-Config-Manual.md
index e5817862..4aec75e5 100644
--- a/src/UserGuide/Master/Tree/Reference/Modify-Config-Manual.md
+++ b/src/UserGuide/Master/Tree/Reference/Modify-Config-Manual.md
@@ -37,21 +37,21 @@ load configuration
```
# SetConfiguration statement
```
-set configuration key1 = 'value1' key2 = 'value2'... (on nodeId)
+set configuration 'key1' = 'value1' 'key2' = 'value2'... (on nodeId)
```
### Example 1
```
-set configuration enable_cross_space_compaction='false'
+set configuration 'enable_cross_space_compaction'='false'
```
To take effect permanently on all nodes in the cluster, set
enable_cross_space_compaction to false and write it to iotdb-system.properties.
### Example 2
```
-set configuration enable_cross_space_compaction='false'
enable_seq_space_compaction='false' on 1
+set configuration 'enable_cross_space_compaction'='false'
'enable_seq_space_compaction'='false' on 1
```
To take effect permanently on the node with nodeId 1, set
enable_cross_space_compaction to false, set enable_seq_space_compaction to
false, and write it to iotdb-system.properties.
### Example 3
```
-set configuration enable_cross_space_compaction='false'
timestamp_precision='ns'
+set configuration 'enable_cross_space_compaction'='false'
'timestamp_precision'='ns'
```
To take effect permanently on all nodes in the cluster, set
enable_cross_space_compaction to false, timestamp_precision to ns, and write it
to iotdb-system.properties. However, timestamp_precision is a configuration
item that cannot be modified after the first startup, so the update of this
configuration item will be ignored and the return is as follows.
```
@@ -63,7 +63,7 @@ Configuration items that support hot reloading and take
effect immediately are m
Example
```
# Used for indicate cluster name and distinguish different cluster.
-# If you need to modify the cluster name, it's recommended to use [set
configuration cluster_name='xxx'] sql.
+# If you need to modify the cluster name, it's recommended to use [set
configuration 'cluster_name'='xxx'] sql.
# Manually modifying configuration file is not recommended, which may cause
node restart fail.
# effectiveMode: hot_reload
# Datatype: string
diff --git a/src/UserGuide/Master/Tree/User-Manual/Maintenance-commands.md
b/src/UserGuide/Master/Tree/User-Manual/Maintenance-commands.md
index d6d06d80..79d5e6f8 100644
--- a/src/UserGuide/Master/Tree/User-Manual/Maintenance-commands.md
+++ b/src/UserGuide/Master/Tree/User-Manual/Maintenance-commands.md
@@ -280,7 +280,7 @@ propertyValue
**Example**:
```SQL
-IoTDB> SET CONFIGURATION a='1',b='1' ON 1;
+IoTDB> SET CONFIGURATION 'a'='1','b'='1' ON 1;
```
### 2.3 Loading Manually Modified Configuration Files
diff --git a/src/UserGuide/V1.3.x/Reference/Modify-Config-Manual.md
b/src/UserGuide/V1.3.x/Reference/Modify-Config-Manual.md
index e5817862..4aec75e5 100644
--- a/src/UserGuide/V1.3.x/Reference/Modify-Config-Manual.md
+++ b/src/UserGuide/V1.3.x/Reference/Modify-Config-Manual.md
@@ -37,21 +37,21 @@ load configuration
```
# SetConfiguration statement
```
-set configuration key1 = 'value1' key2 = 'value2'... (on nodeId)
+set configuration 'key1' = 'value1' 'key2' = 'value2'... (on nodeId)
```
### Example 1
```
-set configuration enable_cross_space_compaction='false'
+set configuration 'enable_cross_space_compaction'='false'
```
To take effect permanently on all nodes in the cluster, set
enable_cross_space_compaction to false and write it to iotdb-system.properties.
### Example 2
```
-set configuration enable_cross_space_compaction='false'
enable_seq_space_compaction='false' on 1
+set configuration 'enable_cross_space_compaction'='false'
'enable_seq_space_compaction'='false' on 1
```
To take effect permanently on the node with nodeId 1, set
enable_cross_space_compaction to false, set enable_seq_space_compaction to
false, and write it to iotdb-system.properties.
### Example 3
```
-set configuration enable_cross_space_compaction='false'
timestamp_precision='ns'
+set configuration 'enable_cross_space_compaction'='false'
'timestamp_precision'='ns'
```
To take effect permanently on all nodes in the cluster, set
enable_cross_space_compaction to false, timestamp_precision to ns, and write it
to iotdb-system.properties. However, timestamp_precision is a configuration
item that cannot be modified after the first startup, so the update of this
configuration item will be ignored and the return is as follows.
```
@@ -63,7 +63,7 @@ Configuration items that support hot reloading and take
effect immediately are m
Example
```
# Used for indicate cluster name and distinguish different cluster.
-# If you need to modify the cluster name, it's recommended to use [set
configuration cluster_name='xxx'] sql.
+# If you need to modify the cluster name, it's recommended to use [set
configuration 'cluster_name'='xxx'] sql.
# Manually modifying configuration file is not recommended, which may cause
node restart fail.
# effectiveMode: hot_reload
# Datatype: string
diff --git a/src/UserGuide/V1.3.x/User-Manual/Maintenance-commands.md
b/src/UserGuide/V1.3.x/User-Manual/Maintenance-commands.md
index 3b580e06..130f3f79 100644
--- a/src/UserGuide/V1.3.x/User-Manual/Maintenance-commands.md
+++ b/src/UserGuide/V1.3.x/User-Manual/Maintenance-commands.md
@@ -225,7 +225,7 @@ propertyValue
**Example**:
```SQL
-IoTDB> SET CONFIGURATION a='1',b='1' ON 1;
+IoTDB> SET CONFIGURATION 'a'='1','b'='1' ON 1;
```
### 2.2 Loading Manually Modified Configuration Files
diff --git a/src/UserGuide/dev-1.3/Reference/Modify-Config-Manual.md
b/src/UserGuide/dev-1.3/Reference/Modify-Config-Manual.md
index e5817862..4aec75e5 100644
--- a/src/UserGuide/dev-1.3/Reference/Modify-Config-Manual.md
+++ b/src/UserGuide/dev-1.3/Reference/Modify-Config-Manual.md
@@ -37,21 +37,21 @@ load configuration
```
# SetConfiguration statement
```
-set configuration key1 = 'value1' key2 = 'value2'... (on nodeId)
+set configuration 'key1' = 'value1' 'key2' = 'value2'... (on nodeId)
```
### Example 1
```
-set configuration enable_cross_space_compaction='false'
+set configuration 'enable_cross_space_compaction'='false'
```
To take effect permanently on all nodes in the cluster, set
enable_cross_space_compaction to false and write it to iotdb-system.properties.
### Example 2
```
-set configuration enable_cross_space_compaction='false'
enable_seq_space_compaction='false' on 1
+set configuration 'enable_cross_space_compaction'='false'
'enable_seq_space_compaction'='false' on 1
```
To take effect permanently on the node with nodeId 1, set
enable_cross_space_compaction to false, set enable_seq_space_compaction to
false, and write it to iotdb-system.properties.
### Example 3
```
-set configuration enable_cross_space_compaction='false'
timestamp_precision='ns'
+set configuration 'enable_cross_space_compaction'='false'
'timestamp_precision'='ns'
```
To take effect permanently on all nodes in the cluster, set
enable_cross_space_compaction to false, timestamp_precision to ns, and write it
to iotdb-system.properties. However, timestamp_precision is a configuration
item that cannot be modified after the first startup, so the update of this
configuration item will be ignored and the return is as follows.
```
@@ -63,7 +63,7 @@ Configuration items that support hot reloading and take
effect immediately are m
Example
```
# Used for indicate cluster name and distinguish different cluster.
-# If you need to modify the cluster name, it's recommended to use [set
configuration cluster_name='xxx'] sql.
+# If you need to modify the cluster name, it's recommended to use [set
configuration 'cluster_name'='xxx'] sql.
# Manually modifying configuration file is not recommended, which may cause
node restart fail.
# effectiveMode: hot_reload
# Datatype: string
diff --git a/src/UserGuide/dev-1.3/User-Manual/Maintenance-commands.md
b/src/UserGuide/dev-1.3/User-Manual/Maintenance-commands.md
index 3b580e06..130f3f79 100644
--- a/src/UserGuide/dev-1.3/User-Manual/Maintenance-commands.md
+++ b/src/UserGuide/dev-1.3/User-Manual/Maintenance-commands.md
@@ -225,7 +225,7 @@ propertyValue
**Example**:
```SQL
-IoTDB> SET CONFIGURATION a='1',b='1' ON 1;
+IoTDB> SET CONFIGURATION 'a'='1','b'='1' ON 1;
```
### 2.2 Loading Manually Modified Configuration Files
diff --git a/src/UserGuide/latest/Reference/Modify-Config-Manual.md
b/src/UserGuide/latest/Reference/Modify-Config-Manual.md
index e5817862..4aec75e5 100644
--- a/src/UserGuide/latest/Reference/Modify-Config-Manual.md
+++ b/src/UserGuide/latest/Reference/Modify-Config-Manual.md
@@ -37,21 +37,21 @@ load configuration
```
# SetConfiguration statement
```
-set configuration key1 = 'value1' key2 = 'value2'... (on nodeId)
+set configuration 'key1' = 'value1' 'key2' = 'value2'... (on nodeId)
```
### Example 1
```
-set configuration enable_cross_space_compaction='false'
+set configuration 'enable_cross_space_compaction'='false'
```
To take effect permanently on all nodes in the cluster, set
enable_cross_space_compaction to false and write it to iotdb-system.properties.
### Example 2
```
-set configuration enable_cross_space_compaction='false'
enable_seq_space_compaction='false' on 1
+set configuration 'enable_cross_space_compaction'='false'
'enable_seq_space_compaction'='false' on 1
```
To take effect permanently on the node with nodeId 1, set
enable_cross_space_compaction to false, set enable_seq_space_compaction to
false, and write it to iotdb-system.properties.
### Example 3
```
-set configuration enable_cross_space_compaction='false'
timestamp_precision='ns'
+set configuration 'enable_cross_space_compaction'='false'
'timestamp_precision'='ns'
```
To take effect permanently on all nodes in the cluster, set
enable_cross_space_compaction to false, timestamp_precision to ns, and write it
to iotdb-system.properties. However, timestamp_precision is a configuration
item that cannot be modified after the first startup, so the update of this
configuration item will be ignored and the return is as follows.
```
@@ -63,7 +63,7 @@ Configuration items that support hot reloading and take
effect immediately are m
Example
```
# Used for indicate cluster name and distinguish different cluster.
-# If you need to modify the cluster name, it's recommended to use [set
configuration cluster_name='xxx'] sql.
+# If you need to modify the cluster name, it's recommended to use [set
configuration 'cluster_name'='xxx'] sql.
# Manually modifying configuration file is not recommended, which may cause
node restart fail.
# effectiveMode: hot_reload
# Datatype: string
diff --git a/src/UserGuide/latest/User-Manual/Maintenance-commands.md
b/src/UserGuide/latest/User-Manual/Maintenance-commands.md
index d6d06d80..79d5e6f8 100644
--- a/src/UserGuide/latest/User-Manual/Maintenance-commands.md
+++ b/src/UserGuide/latest/User-Manual/Maintenance-commands.md
@@ -280,7 +280,7 @@ propertyValue
**Example**:
```SQL
-IoTDB> SET CONFIGURATION a='1',b='1' ON 1;
+IoTDB> SET CONFIGURATION 'a'='1','b'='1' ON 1;
```
### 2.3 Loading Manually Modified Configuration Files
diff --git a/src/zh/UserGuide/Master/Tree/Reference/Modify-Config-Manual.md
b/src/zh/UserGuide/Master/Tree/Reference/Modify-Config-Manual.md
index 97228619..c131988c 100644
--- a/src/zh/UserGuide/Master/Tree/Reference/Modify-Config-Manual.md
+++ b/src/zh/UserGuide/Master/Tree/Reference/Modify-Config-Manual.md
@@ -38,21 +38,21 @@ load configuration
# 配置项操作语句
设置配置项
```
-set configuration key1 = 'value1' key2 = 'value2'... (on nodeId)
+set configuration 'key1' = 'value1' 'key2' = 'value2'... (on nodeId)
```
### 示例1
```
-set configuration enable_cross_space_compaction = 'false'
+set configuration 'enable_cross_space_compaction' = 'false'
```
对集群所有节点永久生效,设置 enable_cross_space_compaction 为 false,并写入到
iotdb-system.properties 中。
### 示例2
```
-set configuration enable_cross_space_compaction ='false'
enable_seq_space_compaction = 'false' on 1
+set configuration 'enable_cross_space_compaction' ='false'
'enable_seq_space_compaction' = 'false' on 1
```
对 nodeId 为 1 的节点永久生效,设置 enable_cross_space_compaction 为 false,设置
enable_seq_space_compaction 为 false,并写入到 iotdb-system.properties 中。
### 示例3
```
-set configuration enable_cross_space_compaction = 'false'
timestamp_precision = 'ns'
+set configuration 'enable_cross_space_compaction' = 'false'
'timestamp_precision' = 'ns'
```
对集群所有节点永久生效,设置 enable_cross_space_compaction 为 false,timestamp_precision 为
ns,并写入到 iotdb-system.properties 中。但是,timestamp_precision
是第一次启动后就无法修改的配置项,因此会忽略这个配置项的更新,返回如下。
```
@@ -63,7 +63,7 @@ Msg: org.apache.iotdb.jdbc.IoTDBSQLException: 301: ignored
config items: [timest
示例
```
# Used for indicate cluster name and distinguish different cluster.
-# If you need to modify the cluster name, it's recommended to use [set
configuration cluster_name='xxx'] sql.
+# If you need to modify the cluster name, it's recommended to use [set
configuration 'cluster_name'='xxx'] sql.
# Manually modifying configuration file is not recommended, which may cause
node restart fail.
# effectiveMode: hot_reload
# Datatype: string
diff --git a/src/zh/UserGuide/Master/Tree/User-Manual/Maintenance-statement.md
b/src/zh/UserGuide/Master/Tree/User-Manual/Maintenance-statement.md
index a7bc59c0..3c3c877a 100644
--- a/src/zh/UserGuide/Master/Tree/User-Manual/Maintenance-statement.md
+++ b/src/zh/UserGuide/Master/Tree/User-Manual/Maintenance-statement.md
@@ -281,7 +281,7 @@ propertyValue
#### 示例:
```SQL
-IoTDB> SET CONFIGURATION a='1',b='1' ON 1;
+IoTDB> SET CONFIGURATION 'a'='1','b'='1' ON 1;
```
### 2.3 读取手动修改的配置文件
diff --git a/src/zh/UserGuide/V1.3.x/Reference/Modify-Config-Manual.md
b/src/zh/UserGuide/V1.3.x/Reference/Modify-Config-Manual.md
index fc60b6ca..5de01a28 100644
--- a/src/zh/UserGuide/V1.3.x/Reference/Modify-Config-Manual.md
+++ b/src/zh/UserGuide/V1.3.x/Reference/Modify-Config-Manual.md
@@ -38,21 +38,21 @@ load configuration
# 配置项操作语句
设置配置项
```
-set configuration key1 = 'value1' key2 = 'value2'... (on nodeId)
+set configuration 'key1' = 'value1' 'key2' = 'value2'... (on nodeId)
```
### 示例1
```
-set configuration enable_cross_space_compaction = 'false'
+set configuration 'enable_cross_space_compaction' = 'false'
```
对集群所有节点永久生效,设置 enable_cross_space_compaction 为 false,并写入到
iotdb-system.properties 中。
### 示例2
```
-set configuration enable_cross_space_compaction ='false'
enable_seq_space_compaction = 'false' on 1
+set configuration 'enable_cross_space_compaction' ='false'
'enable_seq_space_compaction' = 'false' on 1
```
对 nodeId 为 1 的节点永久生效,设置 enable_cross_space_compaction 为 false,设置
enable_seq_space_compaction 为 false,并写入到 iotdb-system.properties 中。
### 示例3
```
-set configuration enable_cross_space_compaction = 'false'
timestamp_precision = 'ns'
+set configuration 'enable_cross_space_compaction' = 'false'
'timestamp_precision' = 'ns'
```
对集群所有节点永久生效,设置 enable_cross_space_compaction 为 false,timestamp_precision 为
ns,并写入到 iotdb-system.properties 中。但是,timestamp_precision
是第一次启动后就无法修改的配置项,因此会忽略这个配置项的更新,返回如下。
```
@@ -63,7 +63,7 @@ Msg: org.apache.iotdb.jdbc.IoTDBSQLException: 301: ignored
config items: [timest
示例
```
# Used for indicate cluster name and distinguish different cluster.
-# If you need to modify the cluster name, it's recommended to use [set
configuration cluster_name='xxx'] sql.
+# If you need to modify the cluster name, it's recommended to use [set
configuration 'cluster_name'='xxx'] sql.
# Manually modifying configuration file is not recommended, which may cause
node restart fail.
# effectiveMode: hot_reload
# Datatype: string
diff --git a/src/zh/UserGuide/V1.3.x/User-Manual/Maintenance-statement.md
b/src/zh/UserGuide/V1.3.x/User-Manual/Maintenance-statement.md
index dd30801e..d03d2c9c 100644
--- a/src/zh/UserGuide/V1.3.x/User-Manual/Maintenance-statement.md
+++ b/src/zh/UserGuide/V1.3.x/User-Manual/Maintenance-statement.md
@@ -226,7 +226,7 @@ propertyValue
#### 示例:
```SQL
-IoTDB> SET CONFIGURATION a='1',b='1' ON 1;
+IoTDB> SET CONFIGURATION 'a'='1','b'='1' ON 1;
```
### 2.2 读取手动修改的配置文件
diff --git a/src/zh/UserGuide/dev-1.3/Reference/Modify-Config-Manual.md
b/src/zh/UserGuide/dev-1.3/Reference/Modify-Config-Manual.md
index 97228619..c131988c 100644
--- a/src/zh/UserGuide/dev-1.3/Reference/Modify-Config-Manual.md
+++ b/src/zh/UserGuide/dev-1.3/Reference/Modify-Config-Manual.md
@@ -38,21 +38,21 @@ load configuration
# 配置项操作语句
设置配置项
```
-set configuration key1 = 'value1' key2 = 'value2'... (on nodeId)
+set configuration 'key1' = 'value1' 'key2' = 'value2'... (on nodeId)
```
### 示例1
```
-set configuration enable_cross_space_compaction = 'false'
+set configuration 'enable_cross_space_compaction' = 'false'
```
对集群所有节点永久生效,设置 enable_cross_space_compaction 为 false,并写入到
iotdb-system.properties 中。
### 示例2
```
-set configuration enable_cross_space_compaction ='false'
enable_seq_space_compaction = 'false' on 1
+set configuration 'enable_cross_space_compaction' ='false'
'enable_seq_space_compaction' = 'false' on 1
```
对 nodeId 为 1 的节点永久生效,设置 enable_cross_space_compaction 为 false,设置
enable_seq_space_compaction 为 false,并写入到 iotdb-system.properties 中。
### 示例3
```
-set configuration enable_cross_space_compaction = 'false'
timestamp_precision = 'ns'
+set configuration 'enable_cross_space_compaction' = 'false'
'timestamp_precision' = 'ns'
```
对集群所有节点永久生效,设置 enable_cross_space_compaction 为 false,timestamp_precision 为
ns,并写入到 iotdb-system.properties 中。但是,timestamp_precision
是第一次启动后就无法修改的配置项,因此会忽略这个配置项的更新,返回如下。
```
@@ -63,7 +63,7 @@ Msg: org.apache.iotdb.jdbc.IoTDBSQLException: 301: ignored
config items: [timest
示例
```
# Used for indicate cluster name and distinguish different cluster.
-# If you need to modify the cluster name, it's recommended to use [set
configuration cluster_name='xxx'] sql.
+# If you need to modify the cluster name, it's recommended to use [set
configuration 'cluster_name'='xxx'] sql.
# Manually modifying configuration file is not recommended, which may cause
node restart fail.
# effectiveMode: hot_reload
# Datatype: string
diff --git a/src/zh/UserGuide/dev-1.3/User-Manual/Maintenance-statement.md
b/src/zh/UserGuide/dev-1.3/User-Manual/Maintenance-statement.md
index 6e1ab766..188e2504 100644
--- a/src/zh/UserGuide/dev-1.3/User-Manual/Maintenance-statement.md
+++ b/src/zh/UserGuide/dev-1.3/User-Manual/Maintenance-statement.md
@@ -226,7 +226,7 @@ propertyValue
#### 示例:
```SQL
-IoTDB> SET CONFIGURATION a='1',b='1' ON 1;
+IoTDB> SET CONFIGURATION 'a'='1','b'='1' ON 1;
```
### 2.2 读取手动修改的配置文件
diff --git a/src/zh/UserGuide/latest/Reference/Modify-Config-Manual.md
b/src/zh/UserGuide/latest/Reference/Modify-Config-Manual.md
index 97228619..c131988c 100644
--- a/src/zh/UserGuide/latest/Reference/Modify-Config-Manual.md
+++ b/src/zh/UserGuide/latest/Reference/Modify-Config-Manual.md
@@ -38,21 +38,21 @@ load configuration
# 配置项操作语句
设置配置项
```
-set configuration key1 = 'value1' key2 = 'value2'... (on nodeId)
+set configuration 'key1' = 'value1' 'key2' = 'value2'... (on nodeId)
```
### 示例1
```
-set configuration enable_cross_space_compaction = 'false'
+set configuration 'enable_cross_space_compaction' = 'false'
```
对集群所有节点永久生效,设置 enable_cross_space_compaction 为 false,并写入到
iotdb-system.properties 中。
### 示例2
```
-set configuration enable_cross_space_compaction ='false'
enable_seq_space_compaction = 'false' on 1
+set configuration 'enable_cross_space_compaction' ='false'
'enable_seq_space_compaction' = 'false' on 1
```
对 nodeId 为 1 的节点永久生效,设置 enable_cross_space_compaction 为 false,设置
enable_seq_space_compaction 为 false,并写入到 iotdb-system.properties 中。
### 示例3
```
-set configuration enable_cross_space_compaction = 'false'
timestamp_precision = 'ns'
+set configuration 'enable_cross_space_compaction' = 'false'
'timestamp_precision' = 'ns'
```
对集群所有节点永久生效,设置 enable_cross_space_compaction 为 false,timestamp_precision 为
ns,并写入到 iotdb-system.properties 中。但是,timestamp_precision
是第一次启动后就无法修改的配置项,因此会忽略这个配置项的更新,返回如下。
```
@@ -63,7 +63,7 @@ Msg: org.apache.iotdb.jdbc.IoTDBSQLException: 301: ignored
config items: [timest
示例
```
# Used for indicate cluster name and distinguish different cluster.
-# If you need to modify the cluster name, it's recommended to use [set
configuration cluster_name='xxx'] sql.
+# If you need to modify the cluster name, it's recommended to use [set
configuration 'cluster_name'='xxx'] sql.
# Manually modifying configuration file is not recommended, which may cause
node restart fail.
# effectiveMode: hot_reload
# Datatype: string
diff --git a/src/zh/UserGuide/latest/User-Manual/Maintenance-statement.md
b/src/zh/UserGuide/latest/User-Manual/Maintenance-statement.md
index a7bc59c0..3c3c877a 100644
--- a/src/zh/UserGuide/latest/User-Manual/Maintenance-statement.md
+++ b/src/zh/UserGuide/latest/User-Manual/Maintenance-statement.md
@@ -281,7 +281,7 @@ propertyValue
#### 示例:
```SQL
-IoTDB> SET CONFIGURATION a='1',b='1' ON 1;
+IoTDB> SET CONFIGURATION 'a'='1','b'='1' ON 1;
```
### 2.3 读取手动修改的配置文件