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
* **Operations**: Read-only, only supports `SELECT`, `COUNT/SHOW DEVICES`, `DESC`. Any modifications to table structure or content are not allowed and will result in an error: `"The database 'information_schema' can only be queried." `
71
72
* **Column Names**: System table column names are all lowercase by default and separated by underscores (`_`).
72
73
@@ -343,7 +344,7 @@ IoTDB> select * from information_schema.topics
> This system table is available starting from version V 2.0.8
627
+
> This system table is available starting from version V 2.0.8-beta
627
628
628
629
* Contains all queries whose execution end time falls within the range `[now() - query_cost_stat_window, now())`, including currently executing queries. The `query_cost_stat_window` parameter represents the query cost statistics window. Its default value is 0 and can be configured via the `iotdb-system.properties` configuration file.
629
630
* The table structure is as follows:
@@ -652,9 +653,9 @@ IoTDB> select * from information_schema.current_queries;
> This system table is available starting from version V 2.0.8
658
+
> This system table is available starting from version V 2.0.8-beta
658
659
659
660
* Contains a histogram of query execution times within the past `query_cost_stat_window` period (only statistics for completed SQL queries). The `query_cost_stat_window` parameter represents the query cost statistics window. Its default value is 0 and can be configured via the `iotdb-system.properties` configuration file.
* **Operations**: Read-only, only supports `SELECT`, `COUNT/SHOW DEVICES`, `DESC`. Any modifications to table structure or content are not allowed and will result in an error: `"The database 'information_schema' can only be queried." `
71
72
* **Column Names**: System table column names are all lowercase by default and separated by underscores (`_`).
72
73
@@ -343,7 +344,7 @@ IoTDB> select * from information_schema.topics
Copy file name to clipboardExpand all lines: src/UserGuide/Master/Table/User-Manual/Maintenance-commands_apache.md
+29-1Lines changed: 29 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -341,7 +341,7 @@ IoTDB> SHOW REGIONS
341
341
342
342
**Description**: Returns the RPC addresses and ports of all available DataNodes in the current cluster. Note: A DataNode is considered "available" if it is not in the REMOVING state.
343
343
344
-
> This feature is supported starting from v2.0.8.
344
+
> This feature is supported starting from v2.0.8-beta.
345
345
346
346
**Syntax**:
347
347
@@ -367,6 +367,34 @@ IoTDB> SHOW AVAILABLE URLS
367
367
+----------+-------+
368
368
```
369
369
370
+
### 1.11 View Service Information
371
+
372
+
**Description**: Returns service information (MQTT service, REST service) on all active DataNodes (in RUNNING or READ-ONLY state) in the current cluster.
0 commit comments