Skip to content

Commit 6bd19f0

Browse files
authored
Modify the return column of show DB details (#508)
1 parent afd8f56 commit 6bd19f0

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/zh/UserGuide/Master/Table/Basic-Concept/Database&Table-Management.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ SHOW DATABASES (DETAILS)?
126126
| SchemaReplicationFactor | 元数据副本数,用于确保元数据的高可用性。可以在`iotdb-system.properties`中修改`schema_replication_factor`配置项。 |
127127
| DataReplicationFactor | 数据副本数,用于确保数据的高可用性。可以在`iotdb-system.properties`中修改`data_replication_factor`配置项。 |
128128
| TimePartitionInterval | 时间分区间隔,决定了数据在磁盘上按多长时间进行目录分组,通常采用默认1周即可。 |
129-
| Model | 使用`DETAILS`语句会返回此列,展示每个数据库对应的数据模型(测点树模型、设备表模型) |
129+
| SchemaRegionGroupNum | 使用`DETAILS`语句会返回此列,展示数据库的元数据副本组数量,一般不需要修改 |
130+
| DataRegionGroupNum | 使用`DETAILS`语句会返回此列,展示数据库的数据副本组数量,一般不需要修改 |
130131

131132
**示例:**
132133

@@ -140,7 +141,7 @@ IoTDB> show databases
140141
+---------+-------+-----------------------+---------------------+---------------------+
141142
IoTDB> show databases details
142143
+---------+-------+-----------------------+---------------------+---------------------+-----------------------+-----------------------+
143-
| Database|TTL(ms)|SchemaReplicationFactor|DataReplicationFactor|TimePartitionInterval|SCHEMA_REGION_GROUP_NUM| DATA_REGION_GROUP_NUM|
144+
| Database|TTL(ms)|SchemaReplicationFactor|DataReplicationFactor|TimePartitionInterval|SchemaRegionGroupNum| DataRegionGroupNum|
144145
+---------+-------+-----------------------+---------------------+---------------------+-----------------------+-----------------------+
145146
|test_prop| 300| 3| 2| 100000| 1| 2|
146147
| test2| 300| 3| 2| 604800000| 1| 2|

src/zh/UserGuide/V2.0.1/Table/Basic-Concept/Database&Table-Management.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ SHOW DATABASES (DETAILS)?
126126
| SchemaReplicationFactor | 元数据副本数,用于确保元数据的高可用性。可以在`iotdb-system.properties`中修改`schema_replication_factor`配置项。 |
127127
| DataReplicationFactor | 数据副本数,用于确保数据的高可用性。可以在`iotdb-system.properties`中修改`data_replication_factor`配置项。 |
128128
| TimePartitionInterval | 时间分区间隔,决定了数据在磁盘上按多长时间进行目录分组,通常采用默认1周即可。 |
129-
| Model | 使用`DETAILS`语句会返回此列,展示每个数据库对应的数据模型(测点树模型、设备表模型) |
129+
| SchemaRegionGroupNum | 使用`DETAILS`语句会返回此列,展示数据库的元数据副本组数量,一般不需要修改 |
130+
| DataRegionGroupNum | 使用`DETAILS`语句会返回此列,展示数据库的数据副本组数量,一般不需要修改 |
130131

131132
**示例:**
132133

@@ -140,7 +141,7 @@ IoTDB> show databases
140141
+---------+-------+-----------------------+---------------------+---------------------+
141142
IoTDB> show databases details
142143
+---------+-------+-----------------------+---------------------+---------------------+-----------------------+-----------------------+
143-
| Database|TTL(ms)|SchemaReplicationFactor|DataReplicationFactor|TimePartitionInterval|SCHEMA_REGION_GROUP_NUM| DATA_REGION_GROUP_NUM|
144+
| Database|TTL(ms)|SchemaReplicationFactor|DataReplicationFactor|TimePartitionInterval|SchemaRegionGroupNum| DataRegionGroupNum|
144145
+---------+-------+-----------------------+---------------------+---------------------+-----------------------+-----------------------+
145146
|test_prop| 300| 3| 2| 100000| 1| 2|
146147
| test2| 300| 3| 2| 604800000| 1| 2|

0 commit comments

Comments
 (0)