You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/UserGuide/Master/Tree/Reference/Modify-Config-Manual.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,21 +37,21 @@ load configuration
37
37
```
38
38
# SetConfiguration statement
39
39
```
40
-
set configuration key1 = 'value1' key2 = 'value2'... (on nodeId)
40
+
set configuration 'key1' = 'value1' 'key2' = 'value2'... (on nodeId)
41
41
```
42
42
### Example 1
43
43
```
44
-
set configuration enable_cross_space_compaction='false'
44
+
set configuration 'enable_cross_space_compaction'='false'
45
45
```
46
46
To take effect permanently on all nodes in the cluster, set enable_cross_space_compaction to false and write it to iotdb-system.properties.
47
47
### Example 2
48
48
```
49
-
set configuration enable_cross_space_compaction='false' enable_seq_space_compaction='false' on 1
49
+
set configuration 'enable_cross_space_compaction'='false' 'enable_seq_space_compaction'='false' on 1
50
50
```
51
51
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.
52
52
### Example 3
53
53
```
54
-
set configuration enable_cross_space_compaction='false' timestamp_precision='ns'
54
+
set configuration 'enable_cross_space_compaction'='false' 'timestamp_precision'='ns'
55
55
```
56
56
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.
57
57
```
@@ -63,7 +63,7 @@ Configuration items that support hot reloading and take effect immediately are m
63
63
Example
64
64
```
65
65
# Used for indicate cluster name and distinguish different cluster.
66
-
# If you need to modify the cluster name, it's recommended to use [set configuration cluster_name='xxx'] sql.
66
+
# If you need to modify the cluster name, it's recommended to use [set configuration 'cluster_name'='xxx'] sql.
67
67
# Manually modifying configuration file is not recommended, which may cause node restart fail.
Copy file name to clipboardExpand all lines: src/UserGuide/V1.3.x/Reference/Modify-Config-Manual.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,21 +37,21 @@ load configuration
37
37
```
38
38
# SetConfiguration statement
39
39
```
40
-
set configuration key1 = 'value1' key2 = 'value2'... (on nodeId)
40
+
set configuration 'key1' = 'value1' 'key2' = 'value2'... (on nodeId)
41
41
```
42
42
### Example 1
43
43
```
44
-
set configuration enable_cross_space_compaction='false'
44
+
set configuration 'enable_cross_space_compaction'='false'
45
45
```
46
46
To take effect permanently on all nodes in the cluster, set enable_cross_space_compaction to false and write it to iotdb-system.properties.
47
47
### Example 2
48
48
```
49
-
set configuration enable_cross_space_compaction='false' enable_seq_space_compaction='false' on 1
49
+
set configuration 'enable_cross_space_compaction'='false' 'enable_seq_space_compaction'='false' on 1
50
50
```
51
51
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.
52
52
### Example 3
53
53
```
54
-
set configuration enable_cross_space_compaction='false' timestamp_precision='ns'
54
+
set configuration 'enable_cross_space_compaction'='false' 'timestamp_precision'='ns'
55
55
```
56
56
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.
57
57
```
@@ -63,7 +63,7 @@ Configuration items that support hot reloading and take effect immediately are m
63
63
Example
64
64
```
65
65
# Used for indicate cluster name and distinguish different cluster.
66
-
# If you need to modify the cluster name, it's recommended to use [set configuration cluster_name='xxx'] sql.
66
+
# If you need to modify the cluster name, it's recommended to use [set configuration 'cluster_name'='xxx'] sql.
67
67
# Manually modifying configuration file is not recommended, which may cause node restart fail.
Copy file name to clipboardExpand all lines: src/UserGuide/dev-1.3/Reference/Modify-Config-Manual.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,21 +37,21 @@ load configuration
37
37
```
38
38
# SetConfiguration statement
39
39
```
40
-
set configuration key1 = 'value1' key2 = 'value2'... (on nodeId)
40
+
set configuration 'key1' = 'value1' 'key2' = 'value2'... (on nodeId)
41
41
```
42
42
### Example 1
43
43
```
44
-
set configuration enable_cross_space_compaction='false'
44
+
set configuration 'enable_cross_space_compaction'='false'
45
45
```
46
46
To take effect permanently on all nodes in the cluster, set enable_cross_space_compaction to false and write it to iotdb-system.properties.
47
47
### Example 2
48
48
```
49
-
set configuration enable_cross_space_compaction='false' enable_seq_space_compaction='false' on 1
49
+
set configuration 'enable_cross_space_compaction'='false' 'enable_seq_space_compaction'='false' on 1
50
50
```
51
51
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.
52
52
### Example 3
53
53
```
54
-
set configuration enable_cross_space_compaction='false' timestamp_precision='ns'
54
+
set configuration 'enable_cross_space_compaction'='false' 'timestamp_precision'='ns'
55
55
```
56
56
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.
57
57
```
@@ -63,7 +63,7 @@ Configuration items that support hot reloading and take effect immediately are m
63
63
Example
64
64
```
65
65
# Used for indicate cluster name and distinguish different cluster.
66
-
# If you need to modify the cluster name, it's recommended to use [set configuration cluster_name='xxx'] sql.
66
+
# If you need to modify the cluster name, it's recommended to use [set configuration 'cluster_name'='xxx'] sql.
67
67
# Manually modifying configuration file is not recommended, which may cause node restart fail.
Copy file name to clipboardExpand all lines: src/UserGuide/latest/Reference/Modify-Config-Manual.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,21 +37,21 @@ load configuration
37
37
```
38
38
# SetConfiguration statement
39
39
```
40
-
set configuration key1 = 'value1' key2 = 'value2'... (on nodeId)
40
+
set configuration 'key1' = 'value1' 'key2' = 'value2'... (on nodeId)
41
41
```
42
42
### Example 1
43
43
```
44
-
set configuration enable_cross_space_compaction='false'
44
+
set configuration 'enable_cross_space_compaction'='false'
45
45
```
46
46
To take effect permanently on all nodes in the cluster, set enable_cross_space_compaction to false and write it to iotdb-system.properties.
47
47
### Example 2
48
48
```
49
-
set configuration enable_cross_space_compaction='false' enable_seq_space_compaction='false' on 1
49
+
set configuration 'enable_cross_space_compaction'='false' 'enable_seq_space_compaction'='false' on 1
50
50
```
51
51
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.
52
52
### Example 3
53
53
```
54
-
set configuration enable_cross_space_compaction='false' timestamp_precision='ns'
54
+
set configuration 'enable_cross_space_compaction'='false' 'timestamp_precision'='ns'
55
55
```
56
56
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.
57
57
```
@@ -63,7 +63,7 @@ Configuration items that support hot reloading and take effect immediately are m
63
63
Example
64
64
```
65
65
# Used for indicate cluster name and distinguish different cluster.
66
-
# If you need to modify the cluster name, it's recommended to use [set configuration cluster_name='xxx'] sql.
66
+
# If you need to modify the cluster name, it's recommended to use [set configuration 'cluster_name'='xxx'] sql.
67
67
# Manually modifying configuration file is not recommended, which may cause node restart fail.
0 commit comments