diff --git a/src/UserGuide/Master/Table/AI-capability/AINode_Upgrade_apache.md b/src/UserGuide/Master/Table/AI-capability/AINode_Upgrade_apache.md index 90eb3048f..907aa13b6 100644 --- a/src/UserGuide/Master/Table/AI-capability/AINode_Upgrade_apache.md +++ b/src/UserGuide/Master/Table/AI-capability/AINode_Upgrade_apache.md @@ -165,7 +165,7 @@ It costs 1.615s 2. The model must inherit an AINode inference pipeline class (currently supports forecasting pipeline): * iotdb-core/ainode/iotdb/ainode/core/inference/pipeline/basic_pipeline.py - **Before V2.0.9-beta** + **Before V2.0.10** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -247,7 +247,7 @@ It costs 1.615s pass ``` - **From V2.0.9-beta onwards** + **From V2.0.10 onwards** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -335,7 +335,7 @@ It costs 1.615s 3. Modify the model configuration file `config.json` to ensure it contains the following fields: - **Before V2.0.9-beta** + **Before V2.0.10** ```JSON { "auto_map": { @@ -350,7 +350,7 @@ It costs 1.615s * The inference pipeline class **must** be inherited and specified; * For built-in and user-defined models managed by AINode, `model_type` also serves as a unique non-duplicable identifier. That is, the model type to be registered must not duplicate any existing model types; models created via fine-tuning will inherit the model type of the original model. - **From V2.0.9-beta onwards** + **From V2.0.10 onwards** > The `model_type` parameter is **not required** ```JSON { diff --git a/src/UserGuide/Master/Table/Reference/System-Tables_apache.md b/src/UserGuide/Master/Table/Reference/System-Tables_apache.md index 1ffc07358..2a012902c 100644 --- a/src/UserGuide/Master/Table/Reference/System-Tables_apache.md +++ b/src/UserGuide/Master/Table/Reference/System-Tables_apache.md @@ -714,7 +714,7 @@ IoTDB> SELECT * FROM information_schema.services ``` ### 2.22 TABLE_DISK_USAGE -> This system table is available since version V2.0.9-beta +> This system table is available since version V2.0.10 Used to display the disk space usage of specified tables (excluding views), including the size of ChunkGroups and the size of Metadata. diff --git a/src/UserGuide/Master/Table/SQL-Manual/Basis-Function_apache.md b/src/UserGuide/Master/Table/SQL-Manual/Basis-Function_apache.md index e6f7cb547..15f392c82 100644 --- a/src/UserGuide/Master/Table/SQL-Manual/Basis-Function_apache.md +++ b/src/UserGuide/Master/Table/SQL-Manual/Basis-Function_apache.md @@ -162,7 +162,7 @@ SELECT LEAST(temperature,humidity) FROM table2; | COUNT_IF | COUNT_IF(exp) counts the number of rows that satisfy a specified boolean expression. | `exp` must be a boolean expression,(e.g. `count_if(temperature>20)`) | INT64 | | APPROX_COUNT_DISTINCT | The APPROX_COUNT_DISTINCT(x[, maxStandardError]) function provides an approximation of COUNT(DISTINCT x), returning the estimated number of distinct input values. | `x`: The target column to be calculated, supports all data types.
`maxStandardError` (optional): Specifies the maximum standard error allowed for the function's result. Valid range is [0.0040625, 0.26]. Defaults to 0.023 if not specified. | INT64 | | APPROX_MOST_FREQUENT | The APPROX_MOST_FREQUENT(x, k, capacity) function is used to approximately calculate the top k most frequent elements in a dataset. It returns a JSON-formatted string where the keys are the element values and the values are their corresponding approximate frequencies. (Available since V2.0.5.1) | `x` : The column to be calculated, supporting all existing data types in IoTDB;
`k`: The number of top-k most frequent values to return;
`capacity`: The number of buckets used for computation, which relates to memory usage—a larger value reduces error but consumes more memory, while a smaller value increases error but uses less memory. | STRING | -| APPROX_PERCENTILE | The APPROX_PERCENTILE function calculates the value at a specified percentile in a dataset, helping quickly understand data distribution (e.g., median, quartiles). It supports weighted percentile calculation. If the percentile does not point to an exact position, it returns a linear interpolation of adjacent values at that position.Memory usage depends on the number of centroids, and the maximum number of centroids can be limited using the compression parameter. Error can be estimated using empirical formulas.Note: This function is supported since V2.0.9-beta. | Unweighted Version: APPROX_PERCENTILE(x, percentage)
x: Column to compute. Supports all numeric types: INT32, INT64, FLOAT, DOUBLE, TIMESTAMP.
percentage: Target percentile, DOUBLE type.
Weighted Version: APPROX_PERCENTILE(x, w, percentage)
x: Column to compute. Supports all numeric types: INT32, INT64, FLOAT, DOUBLE, TIMESTAMP.
w: Weight column, integer type (must align with the length of x; NULL or 0 means the row is ignored).
percentage: Target percentile, DOUBLE type. | Same as the input column x. | +| APPROX_PERCENTILE | The APPROX_PERCENTILE function calculates the value at a specified percentile in a dataset, helping quickly understand data distribution (e.g., median, quartiles). It supports weighted percentile calculation. If the percentile does not point to an exact position, it returns a linear interpolation of adjacent values at that position.Memory usage depends on the number of centroids, and the maximum number of centroids can be limited using the compression parameter. Error can be estimated using empirical formulas.Note: This function is supported since V2.0.10. | Unweighted Version: APPROX_PERCENTILE(x, percentage)
x: Column to compute. Supports all numeric types: INT32, INT64, FLOAT, DOUBLE, TIMESTAMP.
percentage: Target percentile, DOUBLE type.
Weighted Version: APPROX_PERCENTILE(x, w, percentage)
x: Column to compute. Supports all numeric types: INT32, INT64, FLOAT, DOUBLE, TIMESTAMP.
w: Weight column, integer type (must align with the length of x; NULL or 0 means the row is ignored).
percentage: Target percentile, DOUBLE type. | Same as the input column x. | | SUM | Calculates the sum. | INT32 INT64 FLOAT DOUBLE | DOUBLE | | AVG | Calculates the average. | INT32 INT64 FLOAT DOUBLE | DOUBLE | | MAX | Finds the maximum value. | All types | Same as input type | @@ -1244,7 +1244,7 @@ IoTDB:database1> select length, width, bitwise_right_shift_arithmetic(length,wid ## 7. Binary Functions -> Supported since V2.0.9-beta +> Supported since V2.0.10 ### 7.1 Base64 Encoding Functions | Function Name | Description | Input Type | Output Type | @@ -1605,7 +1605,7 @@ The IF expression has two forms: one that specifies only the true value, and ano | `IF(condition, true_value)` | If the condition evaluates to true, `true_value` is computed and returned; otherwise, `null` is returned and `true_value` is not evaluated. | — | | `IF(condition, true_value, false_value)` | If the condition evaluates to true, `true_value` is computed and returned; otherwise, `false_value` is computed and returned. | The data types of `true_value` and `false_value` **must be exactly the same**. Implicit type conversion is not supported. | -> Supported since V2.0.9-beta +> Supported since V2.0.10 **Examples:** diff --git a/src/UserGuide/Master/Table/SQL-Manual/Common-Table-Expression_apache.md b/src/UserGuide/Master/Table/SQL-Manual/Common-Table-Expression_apache.md index 1669764c2..8dd5cff40 100644 --- a/src/UserGuide/Master/Table/SQL-Manual/Common-Table-Expression_apache.md +++ b/src/UserGuide/Master/Table/SQL-Manual/Common-Table-Expression_apache.md @@ -24,7 +24,7 @@ CTE (Common Table Expressions) supports defining one or more temporary result sets (called common tables) using the `WITH` clause. These result sets can be referenced multiple times in subsequent parts of the same query. CTE provides a clean way to construct complex queries, making SQL code more readable and maintainable. -> Note: This feature is available since version 2.0.9-beta. +> Note: This feature is available since version 2.0.10. ## 2. Syntax Definition diff --git a/src/UserGuide/Master/Table/SQL-Manual/Set-Operations_apache.md b/src/UserGuide/Master/Table/SQL-Manual/Set-Operations_apache.md index 5b617d31b..18afc4ce2 100644 --- a/src/UserGuide/Master/Table/SQL-Manual/Set-Operations_apache.md +++ b/src/UserGuide/Master/Table/SQL-Manual/Set-Operations_apache.md @@ -22,7 +22,7 @@ IoTDB natively supports standard SQL set operations, including three core operators: **UNION**, **INTERSECT**, and **EXCEPT**. These operations enable seamless merging, comparison, and filtering of query results from multiple time-series data sources, greatly improving the flexibility and efficiency of time-series data analysis. -> Note: This feature is available since version 2.0.9-beta. +> Note: This feature is available since version 2.0.10. ## 1. UNION ### 1.1 Overview diff --git a/src/UserGuide/Master/Table/Tools-System/Data-Export-Tool_apache.md b/src/UserGuide/Master/Table/Tools-System/Data-Export-Tool_apache.md index 29e960359..24a4d8716 100644 --- a/src/UserGuide/Master/Table/Tools-System/Data-Export-Tool_apache.md +++ b/src/UserGuide/Master/Table/Tools-System/Data-Export-Tool_apache.md @@ -34,7 +34,7 @@ The data export tool `export-data.sh/bat` is located in the `tools` directory an | `-h` | `--host` | Hostname of the IoTDB server. | No | `127.0.0.1` | | `-p` | `--port` | Port number of the IoTDB server. | No | `6667` | | `-u` | `--username` | Username for authentication. | No | `root` | -| `-pw` | `--password` | Password for authentication. Supported for hidden input since V2.0.9-beta | No | `root` | +| `-pw` | `--password` | Password for authentication. Supported for hidden input since V2.0.10 | No | `root` | | `-sql_dialect` | `--sql_dialect` | Select server model : tree or table | No | tree | | `-db ` | `--database` | The target database to be exported only takes effect when `-sql_dialect` is of the table type. | Yes when `-sql_dialect = table`| - | | `-table` | `--table` | The target table to be exported only takes effect when `-sql_dialect` is of the table type. If the `-q` parameter is specified, this parameter will not take effect. If the export type is tsfile/sql, this parameter is mandatory. | ​ No | - | @@ -45,9 +45,9 @@ The data export tool `export-data.sh/bat` is located in the `tools` directory an | `-q` | `--query` | SQL query command to execute. Starting from v2.0.8, semicolons in SQL statements are automatically removed, and query execution proceeds normally. | No | - | | `-timeout` | `--query_timeout` | Query timeout in milliseconds (ms). | No | `-1` (before v2.0.8)
`Long.MAX_VALUE` (v2.0.8 and later)
(Range: `-1~Long.MAX_VALUE`) | | `-help` | `--help` | Display help information. | No | - | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 CSV Format #### 2.2.1 Command diff --git a/src/UserGuide/Master/Table/Tools-System/Data-Import-Tool_apache.md b/src/UserGuide/Master/Table/Tools-System/Data-Import-Tool_apache.md index 2f288a7e3..786074b67 100644 --- a/src/UserGuide/Master/Table/Tools-System/Data-Import-Tool_apache.md +++ b/src/UserGuide/Master/Table/Tools-System/Data-Import-Tool_apache.md @@ -47,17 +47,17 @@ IoTDB supports three methods for data import: | `-h` | `--host` | IoTDB server hostname. | No | `127.0.0.1` | | `-p` | `--port` | IoTDB server port. | No | `6667` | | `-u` | `--username` | Username. | No | `root` | -| `-pw` | `--password` | Password. Supported for hidden input since V2.0.9-beta | No | `root` | +| `-pw` | `--password` | Password. Supported for hidden input since V2.0.10 | No | `root` | | `-sql_dialect` | `--sql_dialect` | Select server model : tree or table | No | `tree` | -| ` -db ` | `--database` | ​Target database , applies only to `-sql_dialect=table` |Yes when `-sql_dialect = table`;
Starting from version V2.0.9-beta, this parameter is optional when the file format is SQL. A prompt will be issued if the target database is not explicitly specified in either the parameter or the SQL statement. | - | +| ` -db ` | `--database` | ​Target database , applies only to `-sql_dialect=table` |Yes when `-sql_dialect = table`;
Starting from version V2.0.10, this parameter is optional when the file format is SQL. A prompt will be issued if the target database is not explicitly specified in either the parameter or the SQL statement. | - | | `-table` | `--table ` | Target table , required for CSV imports in table model | No | - | | `-s` | `--source` | Local path to the file/directory to import. ​​**Supported formats**​: CSV, SQL, TsFile. Unsupported formats trigger error: `The file name must end with "csv", "sql", or "tsfile"!` | ​**Yes** | - | | `-tn` | `--thread_num` | Maximum parallel threads | No | `8`
Range: 0 to Integer.Max(2147483647). | | `-tz` | `--timezone` | Timezone (e.g., `+08:00`, `-01:00`). | No | System default | | `-help` | `--help` | Display help (general or format-specific: `-help csv`). | No | - | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 CSV Format diff --git a/src/UserGuide/Master/Table/Tools-System/Schema-Export-Tool_apache.md b/src/UserGuide/Master/Table/Tools-System/Schema-Export-Tool_apache.md index 20e4b147f..90f40296d 100644 --- a/src/UserGuide/Master/Table/Tools-System/Schema-Export-Tool_apache.md +++ b/src/UserGuide/Master/Table/Tools-System/Schema-Export-Tool_apache.md @@ -34,7 +34,7 @@ The schema export tool `export-schema.sh/bat` is located in the `tools` director | `-h` | `-- host` | Hostname | No | 127.0.0.1 | | `-p` | `--port` | Port number | No | 6667 | | `-u` | `--username` | Username | No | root | -| `-pw` | `--password` | Password. Supported for hidden input since V2.0.9-beta | No | root | +| `-pw` | `--password` | Password. Supported for hidden input since V2.0.10 | No | root | | `-sql_dialect` | `--sql_dialect` | Specifies whether the server uses`tree `model or`table `model | No | tree | | `-db` | `--database` | Target database to export (only applies when`-sql_dialect=table`) | Required if`-sql_dialect=table` | - | | `-table` | `--table` | Target table to export (only applies when`-sql_dialect=table`) | No | - | @@ -44,9 +44,9 @@ The schema export tool `export-schema.sh/bat` is located in the `tools` director | `-lpf` | `--lines_per_file` | Maximum lines per dump file (only applies when`-sql_dialect=tree`) | No | `10000` | | `-timeout` | `--query_timeout` | Query timeout in milliseconds (`-1`= no timeout) | No | -1Range:`-1 to Long. max=9223372036854775807` | | `-help` | `--help` | Display help information | No | | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 Command diff --git a/src/UserGuide/Master/Table/Tools-System/Schema-Import-Tool_apache.md b/src/UserGuide/Master/Table/Tools-System/Schema-Import-Tool_apache.md index 9a0d52853..e5da8a906 100644 --- a/src/UserGuide/Master/Table/Tools-System/Schema-Import-Tool_apache.md +++ b/src/UserGuide/Master/Table/Tools-System/Schema-Import-Tool_apache.md @@ -34,7 +34,7 @@ The schema import tool `import-schema.sh/bat` is located in `tools` directory. | `-h` | `-- host` | Hostname | No | 127.0.0.1 | | `-p` | `--port` | Port number | No | 6667 | | `-u` | `--username` | Username | No | root | -| `-pw` | `--password` | Password. Supported for hidden input since V2.0.9-beta | No | root | +| `-pw` | `--password` | Password. Supported for hidden input since V2.0.10 | No | root | | `-sql_dialect` | `--sql_dialect` | Specifies whether the server uses`tree `model or`table `model | No | tree | | `-db` | `--database` | Target database for import | Yes | - | | `-table` | `--table` | Target table for import (only applies when`-sql_dialect=table`) | No | - | @@ -42,9 +42,9 @@ The schema import tool `import-schema.sh/bat` is located in `tools` directory. | `-fd` | `--fail_dir` | Directory to save failed import files | No | | | `-lpf` | `--lines_per_failed_file` | Maximum lines per failed file (only applies when`-sql_dialect=table`) | No | 100000Range:`0 to Integer.Max=2147483647` | | `-help` | `--help` | Display help information | No | | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 Command diff --git a/src/UserGuide/Master/Table/User-Manual/Auto-Start-On-Boot_apache.md b/src/UserGuide/Master/Table/User-Manual/Auto-Start-On-Boot_apache.md index 95bf83740..0a96fec68 100644 --- a/src/UserGuide/Master/Table/User-Manual/Auto-Start-On-Boot_apache.md +++ b/src/UserGuide/Master/Table/User-Manual/Auto-Start-On-Boot_apache.md @@ -23,7 +23,6 @@ ## 1. Overview IoTDB supports registering ConfigNode, DataNode, and AINode as Linux system services via the three scripts `daemon-confignode.sh`, `daemon-datanode.sh`, and `daemon-ainode.sh`. Combined with the system-built `systemctl` command, it manages the IoTDB cluster in daemon mode, enabling more convenient startup, shutdown, restart, and auto-start on boot operations, and improving service stability. -> Note: This feature is available starting from version 2.0.9-beta. ## 2. Environment Requirements | Item | Specification | diff --git a/src/UserGuide/Master/Table/User-Manual/Maintenance-commands_apache.md b/src/UserGuide/Master/Table/User-Manual/Maintenance-commands_apache.md index 2c4bd4f20..d6495a56c 100644 --- a/src/UserGuide/Master/Table/User-Manual/Maintenance-commands_apache.md +++ b/src/UserGuide/Master/Table/User-Manual/Maintenance-commands_apache.md @@ -401,7 +401,7 @@ Execution result: Adding the `all` parameter returns all configuration items (the `value` of unconfigured items is `null`). Adding the `with desc` parameter returns configuration items with descriptions. -> Supported since version 2.0.9-beta +> Supported since version 2.0.10 #### Syntax: ```SQL @@ -860,7 +860,7 @@ IoTDB> KILL ALL QUERIES; **Definition**: Add the `DEBUG` keyword at the beginning of an SQL query statement. During execution, debug logs will be output, including the underlying file scan information involved in the query. -> Supported since V2.0.9-beta +> Supported since V2.0.10 #### Syntax: ```sql diff --git a/src/UserGuide/Master/Tree/AI-capability/AINode_Upgrade_apache.md b/src/UserGuide/Master/Tree/AI-capability/AINode_Upgrade_apache.md index fd3d1be3d..259417fbc 100644 --- a/src/UserGuide/Master/Tree/AI-capability/AINode_Upgrade_apache.md +++ b/src/UserGuide/Master/Tree/AI-capability/AINode_Upgrade_apache.md @@ -139,7 +139,7 @@ Total line number = 48 2. The model must inherit from a type of AINode inference task pipeline (currently supports forecast pipeline): * iotdb-core/ainode/iotdb/ainode/core/inference/pipeline/basic_pipeline.py - **Before V2.0.9-beta** + **Before V2.0.10** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -221,7 +221,7 @@ Total line number = 48 pass ``` - **From V2.0.9-beta onwards** + **From V2.0.10 onwards** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -309,7 +309,7 @@ Total line number = 48 3. Modify the model configuration file `config.json` to ensure it contains the following fields: - **Before V2.0.9-beta** + **Before V2.0.10** ```JSON { "auto_map": { @@ -324,7 +324,7 @@ Total line number = 48 * The inference pipeline class **must** be inherited and specified; * For built-in and user-defined models managed by AINode, `model_type` also serves as a unique non-duplicable identifier. That is, the model type to be registered must not duplicate any existing model types; models created via fine-tuning will inherit the model type of the original model. - **From V2.0.9-beta onwards** + **From V2.0.10 onwards** > The `model_type` parameter is **not required** ```JSON { diff --git a/src/UserGuide/Master/Tree/Tools-System/Data-Export-Tool_apache.md b/src/UserGuide/Master/Tree/Tools-System/Data-Export-Tool_apache.md index ed609af94..68ab5a546 100644 --- a/src/UserGuide/Master/Tree/Tools-System/Data-Export-Tool_apache.md +++ b/src/UserGuide/Master/Tree/Tools-System/Data-Export-Tool_apache.md @@ -34,15 +34,15 @@ The data export tool, export-data.sh (Unix/OS X) or export-data.bat (Windows), l | `-h` | `--host` | Hostname of the IoTDB server. | No | `127.0.0.1` | | `-p` | `--port` | Port number of the IoTDB server. | No | `6667` | | `-u` | `--username` | Username for authentication. | No | `root` | -| `-pw` | `--password` | Password for authentication. Supported for hidden input since V2.0.9-beta | No | `root` | +| `-pw` | `--password` | Password for authentication. Supported for hidden input since V2.0.10 | No | `root` | | `-t` | `--target` | Target directory for the output files. If the path does not exist, it will be created. | ​**Yes** | - | | `-pfn` | `--prefix_file_name` | Prefix for the exported file names. For example, `abc` will generate files like `abc_0.tsfile`, `abc_1.tsfile`. | No | `dump_0.tsfile` | | `-q` | `--query` | SQL query command to execute. Starting from v2.0.8, semicolons in SQL statements are automatically removed, and query execution proceeds normally. | No | - | | `-timeout` | `--query_timeout` | Query timeout in milliseconds (ms). | No | `-1` (before v2.0.8)
`Long.MAX_VALUE` (v2.0.8 and later)
(Range: `-1~Long.MAX_VALUE`) | | `-help` | `--help` | Display help information. | No | - | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 CSV Format #### 2.2.1 Command diff --git a/src/UserGuide/Master/Tree/Tools-System/Data-Import-Tool_apache.md b/src/UserGuide/Master/Tree/Tools-System/Data-Import-Tool_apache.md index cb1d869c3..e0995b18d 100644 --- a/src/UserGuide/Master/Tree/Tools-System/Data-Import-Tool_apache.md +++ b/src/UserGuide/Master/Tree/Tools-System/Data-Import-Tool_apache.md @@ -45,14 +45,14 @@ IoTDB supports three methods for data import: | `-h` | `--host` | IoTDB server hostname. | No | `127.0.0.1` | | `-p` | `--port` | IoTDB server port. | No | `6667` | | `-u` | `--username` | Username. | No | `root` | -| `-pw` | `--password` | Password. Supported for hidden input since V2.0.9-beta | No | `root` | +| `-pw` | `--password` | Password. Supported for hidden input since V2.0.10 | No | `root` | | `-s` | `--source` | Local path to the file/directory to import. ​​**Supported formats**​: CSV, SQL, TsFile. Unsupported formats trigger error: `The file name must end with "csv", "sql", or "tsfile"!` | ​**Yes** | - | | `-tn` | `--thread_num` | Maximum parallel threads | No | `8`
Range: 0 to Integer.Max(2147483647). | | `-tz` | `--timezone` | Timezone (e.g., `+08:00`, `-01:00`). | No | System default | | `-help` | `--help` | Display help (general or format-specific: `-help csv`). | No | - | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 CSV Format diff --git a/src/UserGuide/Master/Tree/Tools-System/Schema-Export-Tool_apache.md b/src/UserGuide/Master/Tree/Tools-System/Schema-Export-Tool_apache.md index 33973cbe5..4e34ab3de 100644 --- a/src/UserGuide/Master/Tree/Tools-System/Schema-Export-Tool_apache.md +++ b/src/UserGuide/Master/Tree/Tools-System/Schema-Export-Tool_apache.md @@ -34,7 +34,7 @@ The schema export tool `export-schema.sh/bat` is located in the `tools` director | `-h` | `-- host` | Hostname | No | 127.0.0.1 | | `-p` | `--port` | Port number | No | 6667 | | `-u` | `--username` | Username | No | root | -| `-pw` | `--password` | Password. Supported for hidden input since V2.0.9-beta | No | root | +| `-pw` | `--password` | Password. Supported for hidden input since V2.0.10 | No | root | | `-sql_dialect` | `--sql_dialect` | Specifies whether the server uses`tree `model or`table `model | No | tree | | `-db` | `--database` | Target database to export (only applies when`-sql_dialect=table`) | Required if`-sql_dialect=table` | - | | `-table` | `--table` | Target table to export (only applies when`-sql_dialect=table`) | No | - | @@ -44,9 +44,9 @@ The schema export tool `export-schema.sh/bat` is located in the `tools` director | `-lpf` | `--lines_per_file` | Maximum lines per dump file (only applies when`-sql_dialect=tree`) | No | `10000` | | `-timeout` | `--query_timeout` | Query timeout in milliseconds (`-1`= no timeout) | No | -1Range:`-1 to Long. max=9223372036854775807` | | `-help` | `--help` | Display help information | No | | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 Command diff --git a/src/UserGuide/Master/Tree/Tools-System/Schema-Import-Tool_apache.md b/src/UserGuide/Master/Tree/Tools-System/Schema-Import-Tool_apache.md index 1daf8dc0b..ae755ef13 100644 --- a/src/UserGuide/Master/Tree/Tools-System/Schema-Import-Tool_apache.md +++ b/src/UserGuide/Master/Tree/Tools-System/Schema-Import-Tool_apache.md @@ -34,7 +34,7 @@ The schema import tool `import-schema.sh/bat` is located in `tools` directory. | `-h` | `-- host` | Hostname | No | 127.0.0.1 | | `-p` | `--port` | Port number | No | 6667 | | `-u` | `--username` | Username | No | root | -| `-pw` | `--password` | Password. Supported for hidden input since V2.0.9-beta | No | root | +| `-pw` | `--password` | Password. Supported for hidden input since V2.0.10 | No | root | | `-sql_dialect` | `--sql_dialect` | Specifies whether the server uses`tree `model or`table `model | No | tree | | `-db` | `--database` | Target database for import | Yes | - | | `-table` | `--table` | Target table for import (only applies when`-sql_dialect=table`) | No | - | @@ -42,9 +42,9 @@ The schema import tool `import-schema.sh/bat` is located in `tools` directory. | `-fd` | `--fail_dir` | Directory to save failed import files | No | | | `-lpf` | `--lines_per_failed_file` | Maximum lines per failed file (only applies when`-sql_dialect=table`) | No | 100000Range:`0 to Integer.Max=2147483647` | | `-help` | `--help` | Display help information | No | | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 Command diff --git a/src/UserGuide/Master/Tree/User-Manual/Auto-Start-On-Boot_apache.md b/src/UserGuide/Master/Tree/User-Manual/Auto-Start-On-Boot_apache.md index 95bf83740..0a96fec68 100644 --- a/src/UserGuide/Master/Tree/User-Manual/Auto-Start-On-Boot_apache.md +++ b/src/UserGuide/Master/Tree/User-Manual/Auto-Start-On-Boot_apache.md @@ -23,7 +23,6 @@ ## 1. Overview IoTDB supports registering ConfigNode, DataNode, and AINode as Linux system services via the three scripts `daemon-confignode.sh`, `daemon-datanode.sh`, and `daemon-ainode.sh`. Combined with the system-built `systemctl` command, it manages the IoTDB cluster in daemon mode, enabling more convenient startup, shutdown, restart, and auto-start on boot operations, and improving service stability. -> Note: This feature is available starting from version 2.0.9-beta. ## 2. Environment Requirements | Item | Specification | diff --git a/src/UserGuide/Master/Tree/User-Manual/Maintenance-commands_apache.md b/src/UserGuide/Master/Tree/User-Manual/Maintenance-commands_apache.md index dc4a4764e..57aa9135d 100644 --- a/src/UserGuide/Master/Tree/User-Manual/Maintenance-commands_apache.md +++ b/src/UserGuide/Master/Tree/User-Manual/Maintenance-commands_apache.md @@ -307,7 +307,7 @@ Execution result: **Note**: Statistics are based on the actual size of data in TsFiles; therefore, deletions made via `mods` are not considered. -> Supported since version 2.0.9-beta +> Supported since version 2.0.10 #### Syntax: ```sql @@ -627,7 +627,7 @@ IoTDB> KILL ALL QUERIES; **Definition**: Add the `DEBUG` keyword at the beginning of an SQL query statement. During execution, debug logs will be output, including underlying file scan information involved in the query. -> Supported since V2.0.9-beta +> Supported since V2.0.10 #### Syntax: ```sql diff --git a/src/UserGuide/V1.3.x/Tools-System/Schema-Export-Tool.md b/src/UserGuide/V1.3.x/Tools-System/Schema-Export-Tool.md index 9d1ec84ae..699a4df3b 100644 --- a/src/UserGuide/V1.3.x/Tools-System/Schema-Export-Tool.md +++ b/src/UserGuide/V1.3.x/Tools-System/Schema-Export-Tool.md @@ -35,7 +35,7 @@ The metadata export tool `export-schema.sh/bat` is located in the `tools` direct | `-h` | `--host` | Hostname | No | 127.0.0.1 | | `-p` | `--port` | Port number | No | 6667 | | `-u` | `--username` | Username | No | root | -| `-pw` | `--password` | Password. Hidden input is supported since V2.0.9-beta | No | root | +| `-pw` | `--password` | Password | No | root | | `-t` | `--target` | Specifies the target directory for output files. The directory will be created if it does not exist | Yes | - | | `-path` | `--path_pattern` | Specifies the path pattern for metadata export | Yes | - | | `-pf` | `--path_pattern_file` | Specifies the name of the export file | No | - | diff --git a/src/UserGuide/dev-1.3/Tools-System/Schema-Export-Tool.md b/src/UserGuide/dev-1.3/Tools-System/Schema-Export-Tool.md index 9d1ec84ae..699a4df3b 100644 --- a/src/UserGuide/dev-1.3/Tools-System/Schema-Export-Tool.md +++ b/src/UserGuide/dev-1.3/Tools-System/Schema-Export-Tool.md @@ -35,7 +35,7 @@ The metadata export tool `export-schema.sh/bat` is located in the `tools` direct | `-h` | `--host` | Hostname | No | 127.0.0.1 | | `-p` | `--port` | Port number | No | 6667 | | `-u` | `--username` | Username | No | root | -| `-pw` | `--password` | Password. Hidden input is supported since V2.0.9-beta | No | root | +| `-pw` | `--password` | Password | No | root | | `-t` | `--target` | Specifies the target directory for output files. The directory will be created if it does not exist | Yes | - | | `-path` | `--path_pattern` | Specifies the path pattern for metadata export | Yes | - | | `-pf` | `--path_pattern_file` | Specifies the name of the export file | No | - | diff --git a/src/UserGuide/latest-Table/AI-capability/AINode_Upgrade_apache.md b/src/UserGuide/latest-Table/AI-capability/AINode_Upgrade_apache.md index 90eb3048f..907aa13b6 100644 --- a/src/UserGuide/latest-Table/AI-capability/AINode_Upgrade_apache.md +++ b/src/UserGuide/latest-Table/AI-capability/AINode_Upgrade_apache.md @@ -165,7 +165,7 @@ It costs 1.615s 2. The model must inherit an AINode inference pipeline class (currently supports forecasting pipeline): * iotdb-core/ainode/iotdb/ainode/core/inference/pipeline/basic_pipeline.py - **Before V2.0.9-beta** + **Before V2.0.10** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -247,7 +247,7 @@ It costs 1.615s pass ``` - **From V2.0.9-beta onwards** + **From V2.0.10 onwards** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -335,7 +335,7 @@ It costs 1.615s 3. Modify the model configuration file `config.json` to ensure it contains the following fields: - **Before V2.0.9-beta** + **Before V2.0.10** ```JSON { "auto_map": { @@ -350,7 +350,7 @@ It costs 1.615s * The inference pipeline class **must** be inherited and specified; * For built-in and user-defined models managed by AINode, `model_type` also serves as a unique non-duplicable identifier. That is, the model type to be registered must not duplicate any existing model types; models created via fine-tuning will inherit the model type of the original model. - **From V2.0.9-beta onwards** + **From V2.0.10 onwards** > The `model_type` parameter is **not required** ```JSON { diff --git a/src/UserGuide/latest-Table/Reference/System-Tables_apache.md b/src/UserGuide/latest-Table/Reference/System-Tables_apache.md index 1ffc07358..2a012902c 100644 --- a/src/UserGuide/latest-Table/Reference/System-Tables_apache.md +++ b/src/UserGuide/latest-Table/Reference/System-Tables_apache.md @@ -714,7 +714,7 @@ IoTDB> SELECT * FROM information_schema.services ``` ### 2.22 TABLE_DISK_USAGE -> This system table is available since version V2.0.9-beta +> This system table is available since version V2.0.10 Used to display the disk space usage of specified tables (excluding views), including the size of ChunkGroups and the size of Metadata. diff --git a/src/UserGuide/latest-Table/SQL-Manual/Basis-Function_apache.md b/src/UserGuide/latest-Table/SQL-Manual/Basis-Function_apache.md index e6f7cb547..15f392c82 100644 --- a/src/UserGuide/latest-Table/SQL-Manual/Basis-Function_apache.md +++ b/src/UserGuide/latest-Table/SQL-Manual/Basis-Function_apache.md @@ -162,7 +162,7 @@ SELECT LEAST(temperature,humidity) FROM table2; | COUNT_IF | COUNT_IF(exp) counts the number of rows that satisfy a specified boolean expression. | `exp` must be a boolean expression,(e.g. `count_if(temperature>20)`) | INT64 | | APPROX_COUNT_DISTINCT | The APPROX_COUNT_DISTINCT(x[, maxStandardError]) function provides an approximation of COUNT(DISTINCT x), returning the estimated number of distinct input values. | `x`: The target column to be calculated, supports all data types.
`maxStandardError` (optional): Specifies the maximum standard error allowed for the function's result. Valid range is [0.0040625, 0.26]. Defaults to 0.023 if not specified. | INT64 | | APPROX_MOST_FREQUENT | The APPROX_MOST_FREQUENT(x, k, capacity) function is used to approximately calculate the top k most frequent elements in a dataset. It returns a JSON-formatted string where the keys are the element values and the values are their corresponding approximate frequencies. (Available since V2.0.5.1) | `x` : The column to be calculated, supporting all existing data types in IoTDB;
`k`: The number of top-k most frequent values to return;
`capacity`: The number of buckets used for computation, which relates to memory usage—a larger value reduces error but consumes more memory, while a smaller value increases error but uses less memory. | STRING | -| APPROX_PERCENTILE | The APPROX_PERCENTILE function calculates the value at a specified percentile in a dataset, helping quickly understand data distribution (e.g., median, quartiles). It supports weighted percentile calculation. If the percentile does not point to an exact position, it returns a linear interpolation of adjacent values at that position.Memory usage depends on the number of centroids, and the maximum number of centroids can be limited using the compression parameter. Error can be estimated using empirical formulas.Note: This function is supported since V2.0.9-beta. | Unweighted Version: APPROX_PERCENTILE(x, percentage)
x: Column to compute. Supports all numeric types: INT32, INT64, FLOAT, DOUBLE, TIMESTAMP.
percentage: Target percentile, DOUBLE type.
Weighted Version: APPROX_PERCENTILE(x, w, percentage)
x: Column to compute. Supports all numeric types: INT32, INT64, FLOAT, DOUBLE, TIMESTAMP.
w: Weight column, integer type (must align with the length of x; NULL or 0 means the row is ignored).
percentage: Target percentile, DOUBLE type. | Same as the input column x. | +| APPROX_PERCENTILE | The APPROX_PERCENTILE function calculates the value at a specified percentile in a dataset, helping quickly understand data distribution (e.g., median, quartiles). It supports weighted percentile calculation. If the percentile does not point to an exact position, it returns a linear interpolation of adjacent values at that position.Memory usage depends on the number of centroids, and the maximum number of centroids can be limited using the compression parameter. Error can be estimated using empirical formulas.Note: This function is supported since V2.0.10. | Unweighted Version: APPROX_PERCENTILE(x, percentage)
x: Column to compute. Supports all numeric types: INT32, INT64, FLOAT, DOUBLE, TIMESTAMP.
percentage: Target percentile, DOUBLE type.
Weighted Version: APPROX_PERCENTILE(x, w, percentage)
x: Column to compute. Supports all numeric types: INT32, INT64, FLOAT, DOUBLE, TIMESTAMP.
w: Weight column, integer type (must align with the length of x; NULL or 0 means the row is ignored).
percentage: Target percentile, DOUBLE type. | Same as the input column x. | | SUM | Calculates the sum. | INT32 INT64 FLOAT DOUBLE | DOUBLE | | AVG | Calculates the average. | INT32 INT64 FLOAT DOUBLE | DOUBLE | | MAX | Finds the maximum value. | All types | Same as input type | @@ -1244,7 +1244,7 @@ IoTDB:database1> select length, width, bitwise_right_shift_arithmetic(length,wid ## 7. Binary Functions -> Supported since V2.0.9-beta +> Supported since V2.0.10 ### 7.1 Base64 Encoding Functions | Function Name | Description | Input Type | Output Type | @@ -1605,7 +1605,7 @@ The IF expression has two forms: one that specifies only the true value, and ano | `IF(condition, true_value)` | If the condition evaluates to true, `true_value` is computed and returned; otherwise, `null` is returned and `true_value` is not evaluated. | — | | `IF(condition, true_value, false_value)` | If the condition evaluates to true, `true_value` is computed and returned; otherwise, `false_value` is computed and returned. | The data types of `true_value` and `false_value` **must be exactly the same**. Implicit type conversion is not supported. | -> Supported since V2.0.9-beta +> Supported since V2.0.10 **Examples:** diff --git a/src/UserGuide/latest-Table/SQL-Manual/Common-Table-Expression_apache.md b/src/UserGuide/latest-Table/SQL-Manual/Common-Table-Expression_apache.md index 1669764c2..8dd5cff40 100644 --- a/src/UserGuide/latest-Table/SQL-Manual/Common-Table-Expression_apache.md +++ b/src/UserGuide/latest-Table/SQL-Manual/Common-Table-Expression_apache.md @@ -24,7 +24,7 @@ CTE (Common Table Expressions) supports defining one or more temporary result sets (called common tables) using the `WITH` clause. These result sets can be referenced multiple times in subsequent parts of the same query. CTE provides a clean way to construct complex queries, making SQL code more readable and maintainable. -> Note: This feature is available since version 2.0.9-beta. +> Note: This feature is available since version 2.0.10. ## 2. Syntax Definition diff --git a/src/UserGuide/latest-Table/SQL-Manual/Set-Operations_apache.md b/src/UserGuide/latest-Table/SQL-Manual/Set-Operations_apache.md index 5b617d31b..18afc4ce2 100644 --- a/src/UserGuide/latest-Table/SQL-Manual/Set-Operations_apache.md +++ b/src/UserGuide/latest-Table/SQL-Manual/Set-Operations_apache.md @@ -22,7 +22,7 @@ IoTDB natively supports standard SQL set operations, including three core operators: **UNION**, **INTERSECT**, and **EXCEPT**. These operations enable seamless merging, comparison, and filtering of query results from multiple time-series data sources, greatly improving the flexibility and efficiency of time-series data analysis. -> Note: This feature is available since version 2.0.9-beta. +> Note: This feature is available since version 2.0.10. ## 1. UNION ### 1.1 Overview diff --git a/src/UserGuide/latest-Table/Tools-System/Data-Export-Tool_apache.md b/src/UserGuide/latest-Table/Tools-System/Data-Export-Tool_apache.md index 29e960359..24a4d8716 100644 --- a/src/UserGuide/latest-Table/Tools-System/Data-Export-Tool_apache.md +++ b/src/UserGuide/latest-Table/Tools-System/Data-Export-Tool_apache.md @@ -34,7 +34,7 @@ The data export tool `export-data.sh/bat` is located in the `tools` directory an | `-h` | `--host` | Hostname of the IoTDB server. | No | `127.0.0.1` | | `-p` | `--port` | Port number of the IoTDB server. | No | `6667` | | `-u` | `--username` | Username for authentication. | No | `root` | -| `-pw` | `--password` | Password for authentication. Supported for hidden input since V2.0.9-beta | No | `root` | +| `-pw` | `--password` | Password for authentication. Supported for hidden input since V2.0.10 | No | `root` | | `-sql_dialect` | `--sql_dialect` | Select server model : tree or table | No | tree | | `-db ` | `--database` | The target database to be exported only takes effect when `-sql_dialect` is of the table type. | Yes when `-sql_dialect = table`| - | | `-table` | `--table` | The target table to be exported only takes effect when `-sql_dialect` is of the table type. If the `-q` parameter is specified, this parameter will not take effect. If the export type is tsfile/sql, this parameter is mandatory. | ​ No | - | @@ -45,9 +45,9 @@ The data export tool `export-data.sh/bat` is located in the `tools` directory an | `-q` | `--query` | SQL query command to execute. Starting from v2.0.8, semicolons in SQL statements are automatically removed, and query execution proceeds normally. | No | - | | `-timeout` | `--query_timeout` | Query timeout in milliseconds (ms). | No | `-1` (before v2.0.8)
`Long.MAX_VALUE` (v2.0.8 and later)
(Range: `-1~Long.MAX_VALUE`) | | `-help` | `--help` | Display help information. | No | - | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 CSV Format #### 2.2.1 Command diff --git a/src/UserGuide/latest-Table/Tools-System/Data-Import-Tool_apache.md b/src/UserGuide/latest-Table/Tools-System/Data-Import-Tool_apache.md index 2f288a7e3..786074b67 100644 --- a/src/UserGuide/latest-Table/Tools-System/Data-Import-Tool_apache.md +++ b/src/UserGuide/latest-Table/Tools-System/Data-Import-Tool_apache.md @@ -47,17 +47,17 @@ IoTDB supports three methods for data import: | `-h` | `--host` | IoTDB server hostname. | No | `127.0.0.1` | | `-p` | `--port` | IoTDB server port. | No | `6667` | | `-u` | `--username` | Username. | No | `root` | -| `-pw` | `--password` | Password. Supported for hidden input since V2.0.9-beta | No | `root` | +| `-pw` | `--password` | Password. Supported for hidden input since V2.0.10 | No | `root` | | `-sql_dialect` | `--sql_dialect` | Select server model : tree or table | No | `tree` | -| ` -db ` | `--database` | ​Target database , applies only to `-sql_dialect=table` |Yes when `-sql_dialect = table`;
Starting from version V2.0.9-beta, this parameter is optional when the file format is SQL. A prompt will be issued if the target database is not explicitly specified in either the parameter or the SQL statement. | - | +| ` -db ` | `--database` | ​Target database , applies only to `-sql_dialect=table` |Yes when `-sql_dialect = table`;
Starting from version V2.0.10, this parameter is optional when the file format is SQL. A prompt will be issued if the target database is not explicitly specified in either the parameter or the SQL statement. | - | | `-table` | `--table ` | Target table , required for CSV imports in table model | No | - | | `-s` | `--source` | Local path to the file/directory to import. ​​**Supported formats**​: CSV, SQL, TsFile. Unsupported formats trigger error: `The file name must end with "csv", "sql", or "tsfile"!` | ​**Yes** | - | | `-tn` | `--thread_num` | Maximum parallel threads | No | `8`
Range: 0 to Integer.Max(2147483647). | | `-tz` | `--timezone` | Timezone (e.g., `+08:00`, `-01:00`). | No | System default | | `-help` | `--help` | Display help (general or format-specific: `-help csv`). | No | - | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 CSV Format diff --git a/src/UserGuide/latest-Table/Tools-System/Schema-Export-Tool_apache.md b/src/UserGuide/latest-Table/Tools-System/Schema-Export-Tool_apache.md index 7b07287e3..f69597a55 100644 --- a/src/UserGuide/latest-Table/Tools-System/Schema-Export-Tool_apache.md +++ b/src/UserGuide/latest-Table/Tools-System/Schema-Export-Tool_apache.md @@ -34,7 +34,7 @@ The schema export tool `export-schema.sh/bat` is located in the `tools` director | `-h` | `--host` | Hostname | No | 127.0.0.1 | | `-p` | `--port` | Port number | No | 6667 | | `-u` | `--username` | Username | No | root | -| `-pw` | `--password` | Password. Supported for hidden input since V2.0.9-beta | No | root | +| `-pw` | `--password` | Password. Supported for hidden input since V2.0.10 | No | root | | `-sql_dialect` | `--sql_dialect` | Specifies whether the server uses`tree `model or`table `model | No | tree | | `-db` | `--database` | Target database to export (only applies when`-sql_dialect=table`) | Required if`-sql_dialect=table` | - | | `-table` | `--table` | Target table to export (only applies when`-sql_dialect=table`) | No | - | @@ -44,9 +44,9 @@ The schema export tool `export-schema.sh/bat` is located in the `tools` director | `-lpf` | `--lines_per_file` | Maximum lines per dump file (only applies when`-sql_dialect=tree`) | No | `10000` | | `-timeout` | `--query_timeout` | Query timeout in milliseconds (`-1`= no timeout) | No | -1Range:`-1 to Long. max=9223372036854775807` | | `-help` | `--help` | Display help information | No | | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 Command diff --git a/src/UserGuide/latest-Table/Tools-System/Schema-Import-Tool_apache.md b/src/UserGuide/latest-Table/Tools-System/Schema-Import-Tool_apache.md index 8b7340d9e..f0f18b632 100644 --- a/src/UserGuide/latest-Table/Tools-System/Schema-Import-Tool_apache.md +++ b/src/UserGuide/latest-Table/Tools-System/Schema-Import-Tool_apache.md @@ -34,7 +34,7 @@ The schema import tool `import-schema.sh/bat` is located in `tools` directory. | `-h` | `--host` | Hostname | No | 127.0.0.1 | | `-p` | `--port` | Port number | No | 6667 | | `-u` | `--username` | Username | No | root | -| `-pw` | `--password` | Password. Supported for hidden input since V2.0.9-beta | No | root | +| `-pw` | `--password` | Password. Supported for hidden input since V2.0.10 | No | root | | `-sql_dialect` | `--sql_dialect` | Specifies whether the server uses`tree `model or`table `model | No | tree | | `-db` | `--database` | Target database for import | Yes | - | | `-table` | `--table` | Target table for import (only applies when`-sql_dialect=table`) | No | - | @@ -42,9 +42,9 @@ The schema import tool `import-schema.sh/bat` is located in `tools` directory. | `-fd` | `--fail_dir` | Directory to save failed import files | No | | | `-lpf` | `--lines_per_failed_file` | Maximum lines per failed file (only applies when`-sql_dialect=table`) | No | 100000Range:`0 to Integer.Max=2147483647` | | `-help` | `--help` | Display help information | No | | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 Command diff --git a/src/UserGuide/latest-Table/User-Manual/Auto-Start-On-Boot_apache.md b/src/UserGuide/latest-Table/User-Manual/Auto-Start-On-Boot_apache.md index 95bf83740..0a96fec68 100644 --- a/src/UserGuide/latest-Table/User-Manual/Auto-Start-On-Boot_apache.md +++ b/src/UserGuide/latest-Table/User-Manual/Auto-Start-On-Boot_apache.md @@ -23,7 +23,6 @@ ## 1. Overview IoTDB supports registering ConfigNode, DataNode, and AINode as Linux system services via the three scripts `daemon-confignode.sh`, `daemon-datanode.sh`, and `daemon-ainode.sh`. Combined with the system-built `systemctl` command, it manages the IoTDB cluster in daemon mode, enabling more convenient startup, shutdown, restart, and auto-start on boot operations, and improving service stability. -> Note: This feature is available starting from version 2.0.9-beta. ## 2. Environment Requirements | Item | Specification | diff --git a/src/UserGuide/latest-Table/User-Manual/Maintenance-commands_apache.md b/src/UserGuide/latest-Table/User-Manual/Maintenance-commands_apache.md index 6ea537aec..310adb0ab 100644 --- a/src/UserGuide/latest-Table/User-Manual/Maintenance-commands_apache.md +++ b/src/UserGuide/latest-Table/User-Manual/Maintenance-commands_apache.md @@ -401,7 +401,7 @@ Execution result: Adding the `all` parameter returns all configuration items (the `value` of unconfigured items is `null`). Adding the `with desc` parameter returns configuration items with descriptions. -> Supported since version 2.0.9-beta +> Supported since version 2.0.10 #### Syntax: ```SQL @@ -860,7 +860,7 @@ IoTDB> KILL ALL QUERIES; **Definition**: Add the `DEBUG` keyword at the beginning of an SQL query statement. During execution, debug logs will be output, including the underlying file scan information involved in the query. -> Supported since V2.0.9-beta +> Supported since V2.0.10 #### Syntax: ```sql diff --git a/src/UserGuide/latest/AI-capability/AINode_Upgrade_apache.md b/src/UserGuide/latest/AI-capability/AINode_Upgrade_apache.md index fd3d1be3d..259417fbc 100644 --- a/src/UserGuide/latest/AI-capability/AINode_Upgrade_apache.md +++ b/src/UserGuide/latest/AI-capability/AINode_Upgrade_apache.md @@ -139,7 +139,7 @@ Total line number = 48 2. The model must inherit from a type of AINode inference task pipeline (currently supports forecast pipeline): * iotdb-core/ainode/iotdb/ainode/core/inference/pipeline/basic_pipeline.py - **Before V2.0.9-beta** + **Before V2.0.10** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -221,7 +221,7 @@ Total line number = 48 pass ``` - **From V2.0.9-beta onwards** + **From V2.0.10 onwards** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -309,7 +309,7 @@ Total line number = 48 3. Modify the model configuration file `config.json` to ensure it contains the following fields: - **Before V2.0.9-beta** + **Before V2.0.10** ```JSON { "auto_map": { @@ -324,7 +324,7 @@ Total line number = 48 * The inference pipeline class **must** be inherited and specified; * For built-in and user-defined models managed by AINode, `model_type` also serves as a unique non-duplicable identifier. That is, the model type to be registered must not duplicate any existing model types; models created via fine-tuning will inherit the model type of the original model. - **From V2.0.9-beta onwards** + **From V2.0.10 onwards** > The `model_type` parameter is **not required** ```JSON { diff --git a/src/UserGuide/latest/Tools-System/Data-Export-Tool_apache.md b/src/UserGuide/latest/Tools-System/Data-Export-Tool_apache.md index ed609af94..68ab5a546 100644 --- a/src/UserGuide/latest/Tools-System/Data-Export-Tool_apache.md +++ b/src/UserGuide/latest/Tools-System/Data-Export-Tool_apache.md @@ -34,15 +34,15 @@ The data export tool, export-data.sh (Unix/OS X) or export-data.bat (Windows), l | `-h` | `--host` | Hostname of the IoTDB server. | No | `127.0.0.1` | | `-p` | `--port` | Port number of the IoTDB server. | No | `6667` | | `-u` | `--username` | Username for authentication. | No | `root` | -| `-pw` | `--password` | Password for authentication. Supported for hidden input since V2.0.9-beta | No | `root` | +| `-pw` | `--password` | Password for authentication. Supported for hidden input since V2.0.10 | No | `root` | | `-t` | `--target` | Target directory for the output files. If the path does not exist, it will be created. | ​**Yes** | - | | `-pfn` | `--prefix_file_name` | Prefix for the exported file names. For example, `abc` will generate files like `abc_0.tsfile`, `abc_1.tsfile`. | No | `dump_0.tsfile` | | `-q` | `--query` | SQL query command to execute. Starting from v2.0.8, semicolons in SQL statements are automatically removed, and query execution proceeds normally. | No | - | | `-timeout` | `--query_timeout` | Query timeout in milliseconds (ms). | No | `-1` (before v2.0.8)
`Long.MAX_VALUE` (v2.0.8 and later)
(Range: `-1~Long.MAX_VALUE`) | | `-help` | `--help` | Display help information. | No | - | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 CSV Format #### 2.2.1 Command diff --git a/src/UserGuide/latest/Tools-System/Data-Import-Tool_apache.md b/src/UserGuide/latest/Tools-System/Data-Import-Tool_apache.md index cb1d869c3..e0995b18d 100644 --- a/src/UserGuide/latest/Tools-System/Data-Import-Tool_apache.md +++ b/src/UserGuide/latest/Tools-System/Data-Import-Tool_apache.md @@ -45,14 +45,14 @@ IoTDB supports three methods for data import: | `-h` | `--host` | IoTDB server hostname. | No | `127.0.0.1` | | `-p` | `--port` | IoTDB server port. | No | `6667` | | `-u` | `--username` | Username. | No | `root` | -| `-pw` | `--password` | Password. Supported for hidden input since V2.0.9-beta | No | `root` | +| `-pw` | `--password` | Password. Supported for hidden input since V2.0.10 | No | `root` | | `-s` | `--source` | Local path to the file/directory to import. ​​**Supported formats**​: CSV, SQL, TsFile. Unsupported formats trigger error: `The file name must end with "csv", "sql", or "tsfile"!` | ​**Yes** | - | | `-tn` | `--thread_num` | Maximum parallel threads | No | `8`
Range: 0 to Integer.Max(2147483647). | | `-tz` | `--timezone` | Timezone (e.g., `+08:00`, `-01:00`). | No | System default | | `-help` | `--help` | Display help (general or format-specific: `-help csv`). | No | - | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 CSV Format diff --git a/src/UserGuide/latest/Tools-System/Schema-Export-Tool_apache.md b/src/UserGuide/latest/Tools-System/Schema-Export-Tool_apache.md index 027ffc49b..02f45ecd4 100644 --- a/src/UserGuide/latest/Tools-System/Schema-Export-Tool_apache.md +++ b/src/UserGuide/latest/Tools-System/Schema-Export-Tool_apache.md @@ -34,7 +34,7 @@ The schema export tool `export-schema.sh/bat` is located in the `tools` director | `-h` | `--host` | Hostname | No | 127.0.0.1 | | `-p` | `--port` | Port number | No | 6667 | | `-u` | `--username` | Username | No | root | -| `-pw` | `--password` | Password. Supported for hidden input since V2.0.9-beta | No | root | +| `-pw` | `--password` | Password. Supported for hidden input since V2.0.10 | No | root | | `-sql_dialect` | `--sql_dialect` | Specifies whether the server uses`tree `model or`table `model | No | tree | | `-db` | `--database` | Target database to export (only applies when`-sql_dialect=table`) | Required if`-sql_dialect=table` | - | | `-table` | `--table` | Target table to export (only applies when`-sql_dialect=table`) | No | - | @@ -44,9 +44,9 @@ The schema export tool `export-schema.sh/bat` is located in the `tools` director | `-lpf` | `--lines_per_file` | Maximum lines per dump file (only applies when`-sql_dialect=tree`) | No | `10000` | | `-timeout` | `--query_timeout` | Query timeout in milliseconds (`-1`= no timeout) | No | -1Range:`-1 to Long. max=9223372036854775807` | | `-help` | `--help` | Display help information | No | | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 Command diff --git a/src/UserGuide/latest/Tools-System/Schema-Import-Tool_apache.md b/src/UserGuide/latest/Tools-System/Schema-Import-Tool_apache.md index 40bf42afa..7f58e997a 100644 --- a/src/UserGuide/latest/Tools-System/Schema-Import-Tool_apache.md +++ b/src/UserGuide/latest/Tools-System/Schema-Import-Tool_apache.md @@ -34,7 +34,7 @@ The schema import tool `import-schema.sh/bat` is located in `tools` directory. | `-h` | `--host` | Hostname | No | 127.0.0.1 | | `-p` | `--port` | Port number | No | 6667 | | `-u` | `--username` | Username | No | root | -| `-pw` | `--password` | Password. Supported for hidden input since V2.0.9-beta | No | root | +| `-pw` | `--password` | Password. Supported for hidden input since V2.0.10 | No | root | | `-sql_dialect` | `--sql_dialect` | Specifies whether the server uses`tree `model or`table `model | No | tree | | `-db` | `--database` | Target database for import | Yes | - | | `-table` | `--table` | Target table for import (only applies when`-sql_dialect=table`) | No | - | @@ -42,9 +42,9 @@ The schema import tool `import-schema.sh/bat` is located in `tools` directory. | `-fd` | `--fail_dir` | Directory to save failed import files | No | | | `-lpf` | `--lines_per_failed_file` | Maximum lines per failed file (only applies when`-sql_dialect=table`) | No | 100000Range:`0 to Integer.Max=2147483647` | | `-help` | `--help` | Display help information | No | | -| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.9-beta | No | - | -| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.9-beta | No | - | -| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.9-beta | No | - | +| `-usessl` | `--use_ssl` | Use SSL protocol. Supported since V2.0.10 | No | - | +| `-ts` | `--trust_store` | Trust store. Supports hidden input. Supported since V2.0.10 | No | - | +| `-tpw` | `--trust_store_password` | Trust store password. Supports hidden input. Supported since V2.0.10 | No | - | ### 2.2 Command diff --git a/src/UserGuide/latest/User-Manual/Auto-Start-On-Boot_apache.md b/src/UserGuide/latest/User-Manual/Auto-Start-On-Boot_apache.md index 95bf83740..0a96fec68 100644 --- a/src/UserGuide/latest/User-Manual/Auto-Start-On-Boot_apache.md +++ b/src/UserGuide/latest/User-Manual/Auto-Start-On-Boot_apache.md @@ -23,7 +23,6 @@ ## 1. Overview IoTDB supports registering ConfigNode, DataNode, and AINode as Linux system services via the three scripts `daemon-confignode.sh`, `daemon-datanode.sh`, and `daemon-ainode.sh`. Combined with the system-built `systemctl` command, it manages the IoTDB cluster in daemon mode, enabling more convenient startup, shutdown, restart, and auto-start on boot operations, and improving service stability. -> Note: This feature is available starting from version 2.0.9-beta. ## 2. Environment Requirements | Item | Specification | diff --git a/src/UserGuide/latest/User-Manual/Maintenance-commands_apache.md b/src/UserGuide/latest/User-Manual/Maintenance-commands_apache.md index dc4a4764e..57aa9135d 100644 --- a/src/UserGuide/latest/User-Manual/Maintenance-commands_apache.md +++ b/src/UserGuide/latest/User-Manual/Maintenance-commands_apache.md @@ -307,7 +307,7 @@ Execution result: **Note**: Statistics are based on the actual size of data in TsFiles; therefore, deletions made via `mods` are not considered. -> Supported since version 2.0.9-beta +> Supported since version 2.0.10 #### Syntax: ```sql @@ -627,7 +627,7 @@ IoTDB> KILL ALL QUERIES; **Definition**: Add the `DEBUG` keyword at the beginning of an SQL query statement. During execution, debug logs will be output, including underlying file scan information involved in the query. -> Supported since V2.0.9-beta +> Supported since V2.0.10 #### Syntax: ```sql diff --git a/src/zh/UserGuide/Master/Table/AI-capability/AINode_Upgrade_apache.md b/src/zh/UserGuide/Master/Table/AI-capability/AINode_Upgrade_apache.md index 485dc5c3a..6356a0489 100644 --- a/src/zh/UserGuide/Master/Table/AI-capability/AINode_Upgrade_apache.md +++ b/src/zh/UserGuide/Master/Table/AI-capability/AINode_Upgrade_apache.md @@ -164,7 +164,7 @@ It costs 1.615s 2. 模型需继承一类 AINode 的推理任务流水线(当前支持预测流水线): * iotdb-core/ainode/iotdb/ainode/core/inference/pipeline/basic\_pipeline.py - **V2.0.9-beta 之前** + **V2.0.10 之前** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -246,7 +246,7 @@ It costs 1.615s pass ``` - **V2.0.9-beta 起** + **V2.0.10 起** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -334,7 +334,7 @@ It costs 1.615s 3. 修改模型配置文件 config.json,确保包含以下字段: - **V2.0.9-beta 之前** + **V2.0.10 之前** ```JSON { "auto_map": { @@ -350,7 +350,7 @@ It costs 1.615s * 必须集成并指定推理流水线类; * 对于 AINode 管理的内置(builtin)和自定义(user\_defined)模型,模型类别(model\_type)也作为不可重复的唯一标识。即,要注册的模型类别不得与任何已存在的模型类型重复,通过微调创建的模型将继承原模型的模型类别。 - **V2.0.9-beta 起** + **V2.0.10 起** > 参数 model_type 非必填 ```JSON { diff --git a/src/zh/UserGuide/Master/Table/Reference/System-Tables_apache.md b/src/zh/UserGuide/Master/Table/Reference/System-Tables_apache.md index 158ef2c78..ff7bb4ba7 100644 --- a/src/zh/UserGuide/Master/Table/Reference/System-Tables_apache.md +++ b/src/zh/UserGuide/Master/Table/Reference/System-Tables_apache.md @@ -707,7 +707,7 @@ IoTDB> select * from information_schema.services ### 2.22 TABLE_DISK_USAGE 表 -> 该系统表从 V 2.0.9-beta 版本开始提供 +> 该系统表从 V2.0.10 版本开始提供 用于展示指定表(不包含 view)的磁盘空间占用情况,包括 ChunkGroup 的大小和 Metadata 大小。 diff --git a/src/zh/UserGuide/Master/Table/SQL-Manual/Basis-Function_apache.md b/src/zh/UserGuide/Master/Table/SQL-Manual/Basis-Function_apache.md index 14756490c..8377ba9aa 100644 --- a/src/zh/UserGuide/Master/Table/SQL-Manual/Basis-Function_apache.md +++ b/src/zh/UserGuide/Master/Table/SQL-Manual/Basis-Function_apache.md @@ -161,7 +161,7 @@ SELECT LEAST(temperature,humidity) FROM table2; | COUNT_IF | COUNT_IF(exp) 用于统计满足指定布尔表达式的记录行数 | exp 必须是一个布尔类型的表达式,例如 count_if(temperature>20) | INT64 | | APPROX_COUNT_DISTINCT | APPROX_COUNT_DISTINCT(x[,maxStandardError]) 函数提供 COUNT(DISTINCT x) 的近似值,返回不同输入值的近似个数。 | `x`:待计算列,支持所有类型;
`maxStandardError`:指定该函数应产生的最大标准误差,取值范围[0.0040625, 0.26],未指定值时默认0.023。 | INT64 | | APPROX_MOST_FREQUENT | APPROX_MOST_FREQUENT(x, k, capacity) 函数用于近似计算数据集中出现频率最高的前 k 个元素。它返回一个JSON 格式的字符串,其中键是该元素的值,值是该元素对应的近似频率。(V 2.0.5.1 及以后版本支持) | `x`:待计算列,支持 IoTDB 现有所有的数据类型;
`k`:返回出现频率最高的 k 个值;
`capacity`: 用于计算的桶的数量,跟内存占用相关:其值越大误差越小,但占用内存更大,反之capacity值越小误差越大,但占用内存更小。 | STRING | -| APPROX_PERCENTILE | APPROX_PERCENTILE 函数用于计算数据集中指定百分位数的值,帮助快速了解数据分布情况(如中位数、四分位数等),支持基于权重的百分位数计算;若百分位数不指向精确位置,返回相邻数值在该位置的线性插值。内存占用与质心数量相关,可通过 compression 参数限定最大质心数量,误差可通过经验公式预估。注意:该函数自 V2.0.9-beta 起支持 | 单权重版本:APPROX_PERCENTILE (x, percentage)
x:待计算列,支持 INT32、INT64、FLOAT、DOUBLE、TIMESTAMP 等所有数字类型;
percentage:目标分位数,DOUBLE 类型。
带权重版本:APPROX_PERCENTILE (x, w, percentage)
x:待计算列,支持 INT32、INT64、FLOAT、DOUBLE、TIMESTAMP 等所有数字类型;
w:权重列,整型(与待计算列长度对齐,Null 或 0 表示该行忽略);
percentage:目标分位数,DOUBLE 类型。 | 与待计算列 x 的类型相同 | +| APPROX_PERCENTILE | APPROX_PERCENTILE 函数用于计算数据集中指定百分位数的值,帮助快速了解数据分布情况(如中位数、四分位数等),支持基于权重的百分位数计算;若百分位数不指向精确位置,返回相邻数值在该位置的线性插值。内存占用与质心数量相关,可通过 compression 参数限定最大质心数量,误差可通过经验公式预估。注意:该函数自 V2.0.10 起支持 | 单权重版本:APPROX_PERCENTILE (x, percentage)
x:待计算列,支持 INT32、INT64、FLOAT、DOUBLE、TIMESTAMP 等所有数字类型;
percentage:目标分位数,DOUBLE 类型。
带权重版本:APPROX_PERCENTILE (x, w, percentage)
x:待计算列,支持 INT32、INT64、FLOAT、DOUBLE、TIMESTAMP 等所有数字类型;
w:权重列,整型(与待计算列长度对齐,Null 或 0 表示该行忽略);
percentage:目标分位数,DOUBLE 类型。 | 与待计算列 x 的类型相同 | | SUM | 求和。 | INT32 INT64 FLOAT DOUBLE | DOUBLE | | AVG | 求平均值。 | INT32 INT64 FLOAT DOUBLE | DOUBLE | | MAX | 求最大值。 | 所有类型 | 与输入类型一致 | @@ -1228,7 +1228,7 @@ IoTDB:database1> select length, width, bitwise_right_shift_arithmetic(length,wid ## 7. 二进制函数 -> V2.0.9-beta 起支持 +> V2.0.10 起支持 ### 7.1 Base64 编码函数 @@ -1878,7 +1878,7 @@ IF 表达式有两种形式:一种仅指定真值(true\_value),另一种 | `if(condition, true_value)` | 若条件(condition)为真,则计算并返回`true_value`;否则返回`null`,且`true_value`不会被计算。 | | | `if(condition, true_value, false_value)` | 若条件(condition)为真,则计算并返回`true_value`;否则计算并返回`false_value`。 | `true_value`和`false_value`的数据类型​**必须完全一致**​,不支持隐式类型转换。 | -> V 2.0.9-beta 版本起支持 +> V2.0.10 版本起支持 **示例:** diff --git a/src/zh/UserGuide/Master/Table/SQL-Manual/Common-Table-Expression_apache.md b/src/zh/UserGuide/Master/Table/SQL-Manual/Common-Table-Expression_apache.md index 28191c30a..3c9cca04d 100644 --- a/src/zh/UserGuide/Master/Table/SQL-Manual/Common-Table-Expression_apache.md +++ b/src/zh/UserGuide/Master/Table/SQL-Manual/Common-Table-Expression_apache.md @@ -25,7 +25,7 @@ CTE(Common Table Expressions,公用表表达式)功能支持通过 `WITH` 子句定义一个或多个临时结果集(即公用表),这些结果集可以在同一个查询的后续部分中被多次引用。CTE 提供了一种清晰的方式来构建复杂的查询,使 SQL 代码更易读和维护。 -> 注意:该功能从 V2.0.9-beta 版本开始提供。 +> 注意:该功能从 V2.0.10 版本开始提供。 ## 2. 语法定义 diff --git a/src/zh/UserGuide/Master/Table/SQL-Manual/Set-Operations_apache.md b/src/zh/UserGuide/Master/Table/SQL-Manual/Set-Operations_apache.md index dc7bc961f..35a5ed956 100644 --- a/src/zh/UserGuide/Master/Table/SQL-Manual/Set-Operations_apache.md +++ b/src/zh/UserGuide/Master/Table/SQL-Manual/Set-Operations_apache.md @@ -23,7 +23,7 @@ IoTDB 原生支持 SQL 标准集合操作,包括 UNION(并集)、INTERSECT(交集)和EXCEPT(差集)三种核心运算符。通过执行这些操作,可实现无缝合并、比较和筛选多源时序数据查询结果,显著提升时序数据分析的灵活性与效率。 -> 注意:该功能从 V2.0.9-beta 版本开始提供。 +> 注意:该功能从 V2.0.10 版本开始提供。 ## 1. UNION ### 1.1 概述 diff --git a/src/zh/UserGuide/Master/Table/Tools-System/Data-Export-Tool_apache.md b/src/zh/UserGuide/Master/Table/Tools-System/Data-Export-Tool_apache.md index ad1ef7db3..dbf3737f1 100644 --- a/src/zh/UserGuide/Master/Table/Tools-System/Data-Export-Tool_apache.md +++ b/src/zh/UserGuide/Master/Table/Tools-System/Data-Export-Tool_apache.md @@ -37,7 +37,7 @@ | -h | -- host | 主机名 | 否 | 127.0.0.1 | | -p | --port | 端口号 | 否 | 6667 | | -u | --username | 用户名 | 否 | root | -| -pw | --password | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| -pw | --password | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | -sql_dialect | --sql_dialect | 选择 server 是树模型还是表模型,当前支持 tree 和 table 类型 | 否 | tree | | -db | --database | ​将要导出的目标数据库,只在`-sql_dialect`为 table 类型下生效。| `-sql_dialect`为 table 时必填| - | | -table | --table | 将要导出的目标表,只在`-sql_dialect`为 table 类型下生效。如果指定了`-q`参数则此参数不生效,如果导出类型为 tsfile/sql 则此参数必填。| ​ 否 | - | @@ -48,9 +48,9 @@ | -q | --query | 要执行的查询语句。自 V2.0.8 起,SQL 语句中的分号将被自动移除,查询执行保持正常。 | 否 | 无 | | -timeout | --query\_timeout | 会话查询的超时时间(ms) | 否 | `-1`(V2.0.8 之前)
`Long.MAX_VALUE`(V2.0.8 及之后)
范围:`-1~Long.MAX_VALUE` | | -help | --help | 显示帮助信息 | 否 | | -| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 CSV 格式 diff --git a/src/zh/UserGuide/Master/Table/Tools-System/Data-Import-Tool_apache.md b/src/zh/UserGuide/Master/Table/Tools-System/Data-Import-Tool_apache.md index 48bd3a566..508a05d99 100644 --- a/src/zh/UserGuide/Master/Table/Tools-System/Data-Import-Tool_apache.md +++ b/src/zh/UserGuide/Master/Table/Tools-System/Data-Import-Tool_apache.md @@ -49,17 +49,17 @@ IoTDB 支持三种方式进行数据导入: | -h | -- host | 主机名 | 否 | 127.0.0.1 | | -p | --port | 端口号 | 否 | 6667 | | -u | --username | 用户名 | 否 | root | -| -pw | --password | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| -pw | --password | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | -s | --source | 待加载的脚本文件(夹)的本地目录路径
如果为 csv sql tsfile 这三个支持的格式,直接导入
不支持的格式,报错提示`The file name must end with "csv" or "sql"or "tsfile"!` | √ | | -sql_dialect | --sql_dialect | 选择 server 是树模型还是表模型,当前支持 tree 和 table 类型 | 否 | tree | -| -db | --database | 数据将要导入的目标库,只在 `-sql_dialect` 为 table 类型下生效。 |-sql_dialect 为 table 时必填;
V2.0.9-beta 版本起,当文件格式为 SQL 时,该参数为可选参数,若参数或 SQL 中均未显式指定目标数据库时会进行提示。 | - | +| -db | --database | 数据将要导入的目标库,只在 `-sql_dialect` 为 table 类型下生效。 |-sql_dialect 为 table 时必填;
V2.0.10 版本起,当文件格式为 SQL 时,该参数为可选参数,若参数或 SQL 中均未显式指定目标数据库时会进行提示。 | - | | -table | --table | 数据将要导入的目标表,只在 `-sql_dialect` 为 table 类型且文件类型为 csv 条件下生效且必填。 | 否 | - | | -tn | --thread\_num | 最大并行线程数 | 否 | 8
范围:0~Integer.Max=2147483647 | | -tz | --timezone | 时区设置,例如`+08:00`或`-01:00` | 否 | 本机系统时间 | | -help | --help | 显示帮助信息,支持分开展示和全部展示`-help`或`-help csv` | 否 | -| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 CSV 格式 diff --git a/src/zh/UserGuide/Master/Table/Tools-System/Schema-Export-Tool_apache.md b/src/zh/UserGuide/Master/Table/Tools-System/Schema-Export-Tool_apache.md index 1b8126809..17462344e 100644 --- a/src/zh/UserGuide/Master/Table/Tools-System/Schema-Export-Tool_apache.md +++ b/src/zh/UserGuide/Master/Table/Tools-System/Schema-Export-Tool_apache.md @@ -34,7 +34,7 @@ | `-h` | `-- host` | 主机名 | 否 | 127.0.0.1 | | `-p` | `--port` | 端口号 | 否 | 6667 | | `-u` | `--username` | 用户名 | 否 | root | -| `-pw` | `--password` | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| `-pw` | `--password` | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | `-sql_dialect` | `--sql_dialect` | 选择 server 是树模型还是表模型,当前支持 tree 和 table 类型 | 否 | tree | | `-db` | `--database` | 将要导出的目标数据库,只在`-sql_dialect`为 table 类型下生效。 | `-sql_dialect`为 table 时必填 | - | | `-table` | `--table` | 将要导出的目标表,只在`-sql_dialect`为 table 类型下生效。 | 否 | - | @@ -44,9 +44,9 @@ | `-lpf` | `--lines_per_file` | 指定导出的dump文件最大行数,只在`-sql_dialect`为 tree 类型下生效。 | 否 | `10000` | | `-timeout` | `--query_timeout` | 会话查询的超时时间(ms) | 否 | -1范围:-1~Long. max=9223372036854775807 | | `-help` | `--help` | 显示帮助信息 | 否 | | -| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| `-tpw` | `--trust_store_password` | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| `-tpw` | `--trust_store_password` | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 运行命令 diff --git a/src/zh/UserGuide/Master/Table/Tools-System/Schema-Import-Tool_apache.md b/src/zh/UserGuide/Master/Table/Tools-System/Schema-Import-Tool_apache.md index 7d8acf4d9..451f82733 100644 --- a/src/zh/UserGuide/Master/Table/Tools-System/Schema-Import-Tool_apache.md +++ b/src/zh/UserGuide/Master/Table/Tools-System/Schema-Import-Tool_apache.md @@ -34,7 +34,7 @@ | `-h` | `-- host` | 主机名 | 否 | 127.0.0.1 | | `-p` | `--port` | 端口号 | 否 | 6667 | | `-u` | `--username` | 用户名 | 否 | root | -| `-pw` | `--password` | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| `-pw` | `--password` | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | `-sql_dialect` | `--sql_dialect` | 选择 server 是树模型还是表模型,当前支持 tree 和 table 类型 | 否 | tree | | `-db` | `--database` | 将要导入的目标数据库 | `是` | - | | `-table` | `--table` | 将要导入的目标表,只在`-sql_dialect`为 table 类型下生效。 | 否 | - | @@ -42,9 +42,9 @@ | `-fd` | `--fail_dir` | 指定保存失败文件的目录 | 否 | | | `-lpf` | `--lines_per_failed_file` | 指定失败文件最大写入数据的行数,只在`-sql_dialect`为 table 类型下生效。 | 否 | 100000范围:0~Integer.Max=2147483647 | | `-help` | `--help` | 显示帮助信息 | 否 | | -| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| `-tpw` | `--trust_store_password` | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| `-tpw` | `--trust_store_password` | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 运行命令 diff --git a/src/zh/UserGuide/Master/Table/User-Manual/Auto-Start-On-Boot_apache.md b/src/zh/UserGuide/Master/Table/User-Manual/Auto-Start-On-Boot_apache.md index b229505d6..6adfbdcc2 100644 --- a/src/zh/UserGuide/Master/Table/User-Manual/Auto-Start-On-Boot_apache.md +++ b/src/zh/UserGuide/Master/Table/User-Manual/Auto-Start-On-Boot_apache.md @@ -25,7 +25,6 @@ IoTDB 支持通过 `daemon-confignode.sh`、`daemon-datanode.sh`、`daemon-ainode.sh` 三个脚本,将ConfigNode、DataNode、AINode 注册为 Linux 系统服务,结合系统自带的 `systemctl `命令,以守护进程方式管理 IoTDB 集群,实现更便捷的启动、停止、重启及开机自启等操作,提升服务稳定性。 -> 注意:该功能从 V2.0.9-beta 版本开始提供。 ## 2. 环境要求 diff --git a/src/zh/UserGuide/Master/Table/User-Manual/Maintenance-statement_apache.md b/src/zh/UserGuide/Master/Table/User-Manual/Maintenance-statement_apache.md index 6f4005271..0b15dde98 100644 --- a/src/zh/UserGuide/Master/Table/User-Manual/Maintenance-statement_apache.md +++ b/src/zh/UserGuide/Master/Table/User-Manual/Maintenance-statement_apache.md @@ -403,7 +403,7 @@ IoTDB> SHOW SERVICES ON 1 **含义**:默认返回指定节点(通过 `node_id` 指定)的配置文件中已生效的配置项;若未指定 `node_id`,则返回客户端直连的 DataNode 配置。 添加 `all` 参数返回所有配置项(未配置项的 `value` 为 `null`);添加 `with desc` 参数返回配置项含描述信息。 -> V2.0.9-beta 起支持该功能 +> V2.0.10 起支持该功能 #### 语法: @@ -882,7 +882,7 @@ IoTDB> KILL ALL QUERIES; -- 终止所有query **​含义:​**在 SQL 查询语句开头添加 debug 关键字,执行时将输出 debug 日志,包括涉及到的底层文件 scan 信息。 -> V2.0.9-beta 起支持该功能 +> V2.0.10 起支持该功能 #### 语法: diff --git a/src/zh/UserGuide/Master/Tree/AI-capability/AINode_Upgrade_apache.md b/src/zh/UserGuide/Master/Tree/AI-capability/AINode_Upgrade_apache.md index ae6e626a4..a86a0ea7c 100644 --- a/src/zh/UserGuide/Master/Tree/AI-capability/AINode_Upgrade_apache.md +++ b/src/zh/UserGuide/Master/Tree/AI-capability/AINode_Upgrade_apache.md @@ -140,7 +140,7 @@ Total line number = 48 2. 模型需继承一类 AINode 的推理任务流水线(当前支持预测流水线): * iotdb-core/ainode/iotdb/ainode/core/inference/pipeline/basic\_pipeline.py - **V2.0.9-beta 之前** + **V2.0.10 之前** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -222,7 +222,7 @@ Total line number = 48 pass ``` - **V2.0.9-beta 起** + **V2.0.10 起** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -310,7 +310,7 @@ Total line number = 48 3. 修改模型配置文件 config.json,确保包含以下字段: - **V2.0.9-beta 之前** + **V2.0.10 之前** ```JSON { "auto_map": { @@ -326,7 +326,7 @@ Total line number = 48 * 必须集成并指定推理流水线类; * 对于 AINode 管理的内置(builtin)和自定义(user\_defined)模型,模型类别(model\_type)也作为不可重复的唯一标识。即,要注册的模型类别不得与任何已存在的模型类型重复,通过微调创建的模型将继承原模型的模型类别。 - **V2.0.9-beta 起** + **V2.0.10 起** > 参数 model_type 非必填 ```JSON { diff --git a/src/zh/UserGuide/Master/Tree/Tools-System/Data-Export-Tool_apache.md b/src/zh/UserGuide/Master/Tree/Tools-System/Data-Export-Tool_apache.md index d03cac9c9..b2edc4856 100644 --- a/src/zh/UserGuide/Master/Tree/Tools-System/Data-Export-Tool_apache.md +++ b/src/zh/UserGuide/Master/Tree/Tools-System/Data-Export-Tool_apache.md @@ -37,15 +37,15 @@ | -h | -- host | 主机名 | 否 | 127.0.0.1 | | -p | --port | 端口号 | 否 | 6667 | | -u | --username | 用户名 | 否 | root | -| -pw | --password | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| -pw | --password | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | -t | --target | 指定输出文件的目标文件夹,如果路径不存在新建文件夹 | √ | | | -pfn | --prefix\_file\_name | 指定导出文件的名称。例如:abc,生成的文件是abc\_0.tsfile、abc\_1.tsfile | 否 | dump\_0.tsfile | | -q | --query | 要执行的查询语句。自 V2.0.8 起,SQL 语句中的分号将被自动移除,查询执行保持正常。 | 否 | 无 | | -timeout | --query\_timeout | 会话查询的超时时间(ms) | 否 | `-1`(V2.0.8 之前)
`Long.MAX_VALUE`(V2.0.8 及之后)
范围:`-1~Long.MAX_VALUE` | | -help | --help | 显示帮助信息 | 否 | | -| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 Csv 格式 diff --git a/src/zh/UserGuide/Master/Tree/Tools-System/Data-Import-Tool_apache.md b/src/zh/UserGuide/Master/Tree/Tools-System/Data-Import-Tool_apache.md index 8f3ce6876..9ebac05e5 100644 --- a/src/zh/UserGuide/Master/Tree/Tools-System/Data-Import-Tool_apache.md +++ b/src/zh/UserGuide/Master/Tree/Tools-System/Data-Import-Tool_apache.md @@ -47,14 +47,14 @@ IoTDB 支持三种方式进行数据导入: | -h | -- host | 主机名 | 否 | 127.0.0.1 | | -p | --port | 端口号 | 否 | 6667 | | -u | --username | 用户名 | 否 | root | -| -pw | --password | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| -pw | --password | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | -s | --source | 待加载的脚本文件(夹)的本地目录路径
如果为csv sql tsfile这三个支持的格式,直接导入
不支持的格式,报错提示`The file name must end with "csv" or "sql"or "tsfile"!` | √ | | -tn | --thread\_num | 最大并行线程数 | 否 | 8
范围:0~Integer.Max=2147483647 | | -tz | --timezone | 时区设置,例如`+08:00`或`-01:00` | 否 | 本机系统时间 | | -help | --help | 显示帮助信息,支持分开展示和全部展示`-help`或`-help csv` | 否 | -| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 CSV 格式 diff --git a/src/zh/UserGuide/Master/Tree/Tools-System/Schema-Export-Tool_apache.md b/src/zh/UserGuide/Master/Tree/Tools-System/Schema-Export-Tool_apache.md index 3fdc7ddcc..807951a13 100644 --- a/src/zh/UserGuide/Master/Tree/Tools-System/Schema-Export-Tool_apache.md +++ b/src/zh/UserGuide/Master/Tree/Tools-System/Schema-Export-Tool_apache.md @@ -34,7 +34,7 @@ | `-h` | `-- host` | 主机名 | 否 | 127.0.0.1 | | `-p` | `--port` | 端口号 | 否 | 6667 | | `-u` | `--username` | 用户名 | 否 | root | -| `-pw` | `--password` | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| `-pw` | `--password` | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | `-sql_dialect` | `--sql_dialect` | 选择 server 是树模型还是表模型,当前支持 tree 和 table 类型 | 否 | tree | | `-db` | `--database` | 将要导出的目标数据库,只在`-sql_dialect`为 table 类型下生效。 | `-sql_dialect`为 table 时必填 | - | | `-table` | `--table` | 将要导出的目标表,只在`-sql_dialect`为 table 类型下生效。 | 否 | - | @@ -44,9 +44,9 @@ | `-lpf` | `--lines_per_file` | 指定导出的dump文件最大行数,只在`-sql_dialect`为 tree 类型下生效。 | 否 | `10000` | | `-timeout` | `--query_timeout` | 会话查询的超时时间(ms) | 否 | -1范围:-1~Long. max=9223372036854775807 | | `-help` | `--help` | 显示帮助信息 | 否 | | -| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| `-tpw` | `--trust_store_password ` | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| `-tpw` | `--trust_store_password ` | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 运行命令 diff --git a/src/zh/UserGuide/Master/Tree/Tools-System/Schema-Import-Tool_apache.md b/src/zh/UserGuide/Master/Tree/Tools-System/Schema-Import-Tool_apache.md index c7761bf26..8e73c3e89 100644 --- a/src/zh/UserGuide/Master/Tree/Tools-System/Schema-Import-Tool_apache.md +++ b/src/zh/UserGuide/Master/Tree/Tools-System/Schema-Import-Tool_apache.md @@ -34,7 +34,7 @@ | `-h` | `-- host` | 主机名 | 否 | 127.0.0.1 | | `-p` | `--port` | 端口号 | 否 | 6667 | | `-u` | `--username` | 用户名 | 否 | root | -| `-pw` | `--password` | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| `-pw` | `--password` | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | `-sql_dialect` | `--sql_dialect` | 选择 server 是树模型还是表模型,当前支持 tree 和 table 类型 | 否 | tree | | `-db` | `--database` | 将要导入的目标数据库 | `是` | - | | `-table` | `--table` | 将要导入的目标表,只在`-sql_dialect`为 table 类型下生效。 | 否 | - | @@ -42,9 +42,9 @@ | `-fd` | `--fail_dir` | 指定保存失败文件的目录 | 否 | | | `-lpf` | `--lines_per_failed_file` | 指定失败文件最大写入数据的行数,只在`-sql_dialect`为 table 类型下生效。 | 否 | 100000范围:0~Integer.Max=2147483647 | | `-help` | `--help` | 显示帮助信息 | 否 | | -| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| `-tpw` | `--trust_store_password` | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| `-tpw` | `--trust_store_password` | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 运行命令 diff --git a/src/zh/UserGuide/Master/Tree/User-Manual/Auto-Start-On-Boot_apache.md b/src/zh/UserGuide/Master/Tree/User-Manual/Auto-Start-On-Boot_apache.md index b229505d6..6adfbdcc2 100644 --- a/src/zh/UserGuide/Master/Tree/User-Manual/Auto-Start-On-Boot_apache.md +++ b/src/zh/UserGuide/Master/Tree/User-Manual/Auto-Start-On-Boot_apache.md @@ -25,7 +25,6 @@ IoTDB 支持通过 `daemon-confignode.sh`、`daemon-datanode.sh`、`daemon-ainode.sh` 三个脚本,将ConfigNode、DataNode、AINode 注册为 Linux 系统服务,结合系统自带的 `systemctl `命令,以守护进程方式管理 IoTDB 集群,实现更便捷的启动、停止、重启及开机自启等操作,提升服务稳定性。 -> 注意:该功能从 V2.0.9-beta 版本开始提供。 ## 2. 环境要求 diff --git a/src/zh/UserGuide/Master/Tree/User-Manual/Maintenance-statement_apache.md b/src/zh/UserGuide/Master/Tree/User-Manual/Maintenance-statement_apache.md index ac80d3f31..1869e2727 100644 --- a/src/zh/UserGuide/Master/Tree/User-Manual/Maintenance-statement_apache.md +++ b/src/zh/UserGuide/Master/Tree/User-Manual/Maintenance-statement_apache.md @@ -312,7 +312,7 @@ IoTDB> SHOW SERVICES ON 1 注意:统计基于 TsFile 中数据的真实大小,因此不会考虑 mods 删除的情况。 -> V2.0.9-beta 起支持该功能 +> V2.0.10 起支持该功能 #### 语法: @@ -647,7 +647,7 @@ IoTDB> KILL ALL QUERIES; -- 终止所有query **​含义:​**在 SQL 查询语句开头添加 debug 关键字,执行时将输出 debug 日志,包括涉及到的底层文件 scan 信息。 -> V2.0.9-beta 起支持该功能 +> V2.0.10 起支持该功能 #### 语法: diff --git a/src/zh/UserGuide/V1.3.x/Tools-System/Schema-Export-Tool.md b/src/zh/UserGuide/V1.3.x/Tools-System/Schema-Export-Tool.md index a6c58535d..0599bc7f6 100644 --- a/src/zh/UserGuide/V1.3.x/Tools-System/Schema-Export-Tool.md +++ b/src/zh/UserGuide/V1.3.x/Tools-System/Schema-Export-Tool.md @@ -36,7 +36,7 @@ | `-h` | `-- host` | 主机名 | 否 | 127.0.0.1 | | `-p` | `--port` | 端口号 | 否 | 6667 | | `-u` | `--username` | 用户名 | 否 | root | -| `-pw` | `--password` | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| `-pw` | `--password` | 密码 | 否 | root | | `-t` | `--target` | 指定输出文件的目标文件夹,如果路径不存在新建文件夹 | 是 | | | `-path` | `--path_pattern` | 指定导出元数据的path pattern | 是 | | | `-pf` | `--path_pattern_file` | 指定导出文件的名称。 | 否 | | diff --git a/src/zh/UserGuide/dev-1.3/Tools-System/Schema-Export-Tool.md b/src/zh/UserGuide/dev-1.3/Tools-System/Schema-Export-Tool.md index a6c58535d..0599bc7f6 100644 --- a/src/zh/UserGuide/dev-1.3/Tools-System/Schema-Export-Tool.md +++ b/src/zh/UserGuide/dev-1.3/Tools-System/Schema-Export-Tool.md @@ -36,7 +36,7 @@ | `-h` | `-- host` | 主机名 | 否 | 127.0.0.1 | | `-p` | `--port` | 端口号 | 否 | 6667 | | `-u` | `--username` | 用户名 | 否 | root | -| `-pw` | `--password` | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| `-pw` | `--password` | 密码 | 否 | root | | `-t` | `--target` | 指定输出文件的目标文件夹,如果路径不存在新建文件夹 | 是 | | | `-path` | `--path_pattern` | 指定导出元数据的path pattern | 是 | | | `-pf` | `--path_pattern_file` | 指定导出文件的名称。 | 否 | | diff --git a/src/zh/UserGuide/latest-Table/AI-capability/AINode_Upgrade_apache.md b/src/zh/UserGuide/latest-Table/AI-capability/AINode_Upgrade_apache.md index 485dc5c3a..6356a0489 100644 --- a/src/zh/UserGuide/latest-Table/AI-capability/AINode_Upgrade_apache.md +++ b/src/zh/UserGuide/latest-Table/AI-capability/AINode_Upgrade_apache.md @@ -164,7 +164,7 @@ It costs 1.615s 2. 模型需继承一类 AINode 的推理任务流水线(当前支持预测流水线): * iotdb-core/ainode/iotdb/ainode/core/inference/pipeline/basic\_pipeline.py - **V2.0.9-beta 之前** + **V2.0.10 之前** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -246,7 +246,7 @@ It costs 1.615s pass ``` - **V2.0.9-beta 起** + **V2.0.10 起** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -334,7 +334,7 @@ It costs 1.615s 3. 修改模型配置文件 config.json,确保包含以下字段: - **V2.0.9-beta 之前** + **V2.0.10 之前** ```JSON { "auto_map": { @@ -350,7 +350,7 @@ It costs 1.615s * 必须集成并指定推理流水线类; * 对于 AINode 管理的内置(builtin)和自定义(user\_defined)模型,模型类别(model\_type)也作为不可重复的唯一标识。即,要注册的模型类别不得与任何已存在的模型类型重复,通过微调创建的模型将继承原模型的模型类别。 - **V2.0.9-beta 起** + **V2.0.10 起** > 参数 model_type 非必填 ```JSON { diff --git a/src/zh/UserGuide/latest-Table/Reference/System-Tables_apache.md b/src/zh/UserGuide/latest-Table/Reference/System-Tables_apache.md index 158ef2c78..ff7bb4ba7 100644 --- a/src/zh/UserGuide/latest-Table/Reference/System-Tables_apache.md +++ b/src/zh/UserGuide/latest-Table/Reference/System-Tables_apache.md @@ -707,7 +707,7 @@ IoTDB> select * from information_schema.services ### 2.22 TABLE_DISK_USAGE 表 -> 该系统表从 V 2.0.9-beta 版本开始提供 +> 该系统表从 V2.0.10 版本开始提供 用于展示指定表(不包含 view)的磁盘空间占用情况,包括 ChunkGroup 的大小和 Metadata 大小。 diff --git a/src/zh/UserGuide/latest-Table/SQL-Manual/Basis-Function_apache.md b/src/zh/UserGuide/latest-Table/SQL-Manual/Basis-Function_apache.md index 9e81dbb8e..8377ba9aa 100644 --- a/src/zh/UserGuide/latest-Table/SQL-Manual/Basis-Function_apache.md +++ b/src/zh/UserGuide/latest-Table/SQL-Manual/Basis-Function_apache.md @@ -161,7 +161,7 @@ SELECT LEAST(temperature,humidity) FROM table2; | COUNT_IF | COUNT_IF(exp) 用于统计满足指定布尔表达式的记录行数 | exp 必须是一个布尔类型的表达式,例如 count_if(temperature>20) | INT64 | | APPROX_COUNT_DISTINCT | APPROX_COUNT_DISTINCT(x[,maxStandardError]) 函数提供 COUNT(DISTINCT x) 的近似值,返回不同输入值的近似个数。 | `x`:待计算列,支持所有类型;
`maxStandardError`:指定该函数应产生的最大标准误差,取值范围[0.0040625, 0.26],未指定值时默认0.023。 | INT64 | | APPROX_MOST_FREQUENT | APPROX_MOST_FREQUENT(x, k, capacity) 函数用于近似计算数据集中出现频率最高的前 k 个元素。它返回一个JSON 格式的字符串,其中键是该元素的值,值是该元素对应的近似频率。(V 2.0.5.1 及以后版本支持) | `x`:待计算列,支持 IoTDB 现有所有的数据类型;
`k`:返回出现频率最高的 k 个值;
`capacity`: 用于计算的桶的数量,跟内存占用相关:其值越大误差越小,但占用内存更大,反之capacity值越小误差越大,但占用内存更小。 | STRING | -| APPROX_PERCENTILE | APPROX_PERCENTILE 函数用于计算数据集中指定百分位数的值,帮助快速了解数据分布情况(如中位数、四分位数等),支持基于权重的百分位数计算;若百分位数不指向精确位置,返回相邻数值在该位置的线性插值。内存占用与质心数量相关,可通过 compression 参数限定最大质心数量,误差可通过经验公式预估。注意:该函数自 V2.0.9-beta 起支持 | 单权重版本:APPROX_PERCENTILE (x, percentage)
x:待计算列,支持 INT32、INT64、FLOAT、DOUBLE、TIMESTAMP 等所有数字类型;
percentage:目标分位数,DOUBLE 类型。
带权重版本:APPROX_PERCENTILE (x, w, percentage)
x:待计算列,支持 INT32、INT64、FLOAT、DOUBLE、TIMESTAMP 等所有数字类型;
w:权重列,整型(与待计算列长度对齐,Null 或 0 表示该行忽略);
percentage:目标分位数,DOUBLE 类型。 | 与待计算列 x 的类型相同 | +| APPROX_PERCENTILE | APPROX_PERCENTILE 函数用于计算数据集中指定百分位数的值,帮助快速了解数据分布情况(如中位数、四分位数等),支持基于权重的百分位数计算;若百分位数不指向精确位置,返回相邻数值在该位置的线性插值。内存占用与质心数量相关,可通过 compression 参数限定最大质心数量,误差可通过经验公式预估。注意:该函数自 V2.0.10 起支持 | 单权重版本:APPROX_PERCENTILE (x, percentage)
x:待计算列,支持 INT32、INT64、FLOAT、DOUBLE、TIMESTAMP 等所有数字类型;
percentage:目标分位数,DOUBLE 类型。
带权重版本:APPROX_PERCENTILE (x, w, percentage)
x:待计算列,支持 INT32、INT64、FLOAT、DOUBLE、TIMESTAMP 等所有数字类型;
w:权重列,整型(与待计算列长度对齐,Null 或 0 表示该行忽略);
percentage:目标分位数,DOUBLE 类型。 | 与待计算列 x 的类型相同 | | SUM | 求和。 | INT32 INT64 FLOAT DOUBLE | DOUBLE | | AVG | 求平均值。 | INT32 INT64 FLOAT DOUBLE | DOUBLE | | MAX | 求最大值。 | 所有类型 | 与输入类型一致 | @@ -1228,7 +1228,7 @@ IoTDB:database1> select length, width, bitwise_right_shift_arithmetic(length,wid ## 7. 二进制函数 -> V2.0.9-beta 起支持 +> V2.0.10 起支持 ### 7.1 Base64 编码函数 @@ -1878,7 +1878,7 @@ IF 表达式有两种形式:一种仅指定真值(true\_value),另一种 | `if(condition, true_value)` | 若条件(condition)为真,则计算并返回`true_value`;否则返回`null`,且`true_value`不会被计算。 | | | `if(condition, true_value, false_value)` | 若条件(condition)为真,则计算并返回`true_value`;否则计算并返回`false_value`。 | `true_value`和`false_value`的数据类型​**必须完全一致**​,不支持隐式类型转换。 | -> V2.0.9-beta 版本起支持 +> V2.0.10 版本起支持 **示例:** diff --git a/src/zh/UserGuide/latest-Table/SQL-Manual/Common-Table-Expression_apache.md b/src/zh/UserGuide/latest-Table/SQL-Manual/Common-Table-Expression_apache.md index 28191c30a..3c9cca04d 100644 --- a/src/zh/UserGuide/latest-Table/SQL-Manual/Common-Table-Expression_apache.md +++ b/src/zh/UserGuide/latest-Table/SQL-Manual/Common-Table-Expression_apache.md @@ -25,7 +25,7 @@ CTE(Common Table Expressions,公用表表达式)功能支持通过 `WITH` 子句定义一个或多个临时结果集(即公用表),这些结果集可以在同一个查询的后续部分中被多次引用。CTE 提供了一种清晰的方式来构建复杂的查询,使 SQL 代码更易读和维护。 -> 注意:该功能从 V2.0.9-beta 版本开始提供。 +> 注意:该功能从 V2.0.10 版本开始提供。 ## 2. 语法定义 diff --git a/src/zh/UserGuide/latest-Table/SQL-Manual/Set-Operations_apache.md b/src/zh/UserGuide/latest-Table/SQL-Manual/Set-Operations_apache.md index dc7bc961f..35a5ed956 100644 --- a/src/zh/UserGuide/latest-Table/SQL-Manual/Set-Operations_apache.md +++ b/src/zh/UserGuide/latest-Table/SQL-Manual/Set-Operations_apache.md @@ -23,7 +23,7 @@ IoTDB 原生支持 SQL 标准集合操作,包括 UNION(并集)、INTERSECT(交集)和EXCEPT(差集)三种核心运算符。通过执行这些操作,可实现无缝合并、比较和筛选多源时序数据查询结果,显著提升时序数据分析的灵活性与效率。 -> 注意:该功能从 V2.0.9-beta 版本开始提供。 +> 注意:该功能从 V2.0.10 版本开始提供。 ## 1. UNION ### 1.1 概述 diff --git a/src/zh/UserGuide/latest-Table/Tools-System/Data-Export-Tool_apache.md b/src/zh/UserGuide/latest-Table/Tools-System/Data-Export-Tool_apache.md index 6926c3f07..507e30003 100644 --- a/src/zh/UserGuide/latest-Table/Tools-System/Data-Export-Tool_apache.md +++ b/src/zh/UserGuide/latest-Table/Tools-System/Data-Export-Tool_apache.md @@ -37,7 +37,7 @@ | -h | --host | 主机名 | 否 | 127.0.0.1 | | -p | --port | 端口号 | 否 | 6667 | | -u | --username | 用户名 | 否 | root | -| -pw | --password | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| -pw | --password | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | -sql_dialect | --sql_dialect | 选择 server 是树模型还是表模型,当前支持 tree 和 table 类型 | 否 | tree | | -db | --database | ​将要导出的目标数据库,只在`-sql_dialect`为 table 类型下生效。| `-sql_dialect`为 table 时必填| - | | -table | --table | 将要导出的目标表,只在`-sql_dialect`为 table 类型下生效。如果指定了`-q`参数则此参数不生效,如果导出类型为 tsfile/sql 则此参数必填。| ​ 否 | - | @@ -48,9 +48,9 @@ | -q | --query | 要执行的查询语句。自 V2.0.8 起,SQL 语句中的分号将被自动移除,查询执行保持正常。 | 否 | 无 | | -timeout | --query\_timeout | 会话查询的超时时间(ms) | 否 | `-1`(V2.0.8 之前)
`Long.MAX_VALUE`(V2.0.8 及之后)
范围:`-1~Long.MAX_VALUE` | | -help | --help | 显示帮助信息 | 否 | | -| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 CSV 格式 diff --git a/src/zh/UserGuide/latest-Table/Tools-System/Data-Import-Tool_apache.md b/src/zh/UserGuide/latest-Table/Tools-System/Data-Import-Tool_apache.md index b72fa0561..589707812 100644 --- a/src/zh/UserGuide/latest-Table/Tools-System/Data-Import-Tool_apache.md +++ b/src/zh/UserGuide/latest-Table/Tools-System/Data-Import-Tool_apache.md @@ -49,17 +49,17 @@ IoTDB 支持三种方式进行数据导入: | -h | --host | 主机名 | 否 | 127.0.0.1 | | -p | --port | 端口号 | 否 | 6667 | | -u | --username | 用户名 | 否 | root | -| -pw | --password | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| -pw | --password | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | -s | --source | 待加载的脚本文件(夹)的本地目录路径
如果为 csv sql tsfile 这三个支持的格式,直接导入
不支持的格式,报错提示`The file name must end with "csv" or "sql"or "tsfile"!` | √ | | | -sql_dialect | --sql_dialect | 选择 server 是树模型还是表模型,当前支持 tree 和 table 类型 | 否 | tree | -| -db | --database | 数据将要导入的目标库,只在 `-sql_dialect` 为 table 类型下生效。 |-sql_dialect 为 table 时必填;
V2.0.9-beta 版本起,当文件格式为 SQL 时,该参数为可选参数,若参数或 SQL 中均未显式指定目标数据库时会进行提示。 | - | +| -db | --database | 数据将要导入的目标库,只在 `-sql_dialect` 为 table 类型下生效。 |-sql_dialect 为 table 时必填;
V2.0.10 版本起,当文件格式为 SQL 时,该参数为可选参数,若参数或 SQL 中均未显式指定目标数据库时会进行提示。 | - | | -table | --table | 数据将要导入的目标表,只在 `-sql_dialect` 为 table 类型且文件类型为 csv 条件下生效且必填。 | 否 | - | | -tn | --thread\_num | 最大并行线程数 | 否 | 8
范围:0~Integer.Max=2147483647 | | -tz | --timezone | 时区设置,例如`+08:00`或`-01:00` | 否 | 本机系统时间 | | -help | --help | 显示帮助信息,支持分开展示和全部展示`-help`或`-help csv` | 否 | | -| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 CSV 格式 diff --git a/src/zh/UserGuide/latest-Table/Tools-System/Schema-Export-Tool_apache.md b/src/zh/UserGuide/latest-Table/Tools-System/Schema-Export-Tool_apache.md index 1518d5c57..8cada37ee 100644 --- a/src/zh/UserGuide/latest-Table/Tools-System/Schema-Export-Tool_apache.md +++ b/src/zh/UserGuide/latest-Table/Tools-System/Schema-Export-Tool_apache.md @@ -34,7 +34,7 @@ | `-h` | `--host` | 主机名 | 否 | 127.0.0.1 | | `-p` | `--port` | 端口号 | 否 | 6667 | | `-u` | `--username` | 用户名 | 否 | root | -| `-pw` | `--password` | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| `-pw` | `--password` | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | `-sql_dialect` | `--sql_dialect` | 选择 server 是树模型还是表模型,当前支持 tree 和 table 类型 | 否 | tree | | `-db` | `--database` | 将要导出的目标数据库,只在`-sql_dialect`为 table 类型下生效。 | `-sql_dialect`为 table 时必填 | - | | `-table` | `--table` | 将要导出的目标表,只在`-sql_dialect`为 table 类型下生效。 | 否 | - | @@ -44,9 +44,9 @@ | `-lpf` | `--lines_per_file` | 指定导出的dump文件最大行数,只在`-sql_dialect`为 tree 类型下生效。 | 否 | `10000` | | `-timeout` | `--query_timeout` | 会话查询的超时时间(ms) | 否 | -1范围:-1~Long. max=9223372036854775807 | | `-help` | `--help` | 显示帮助信息 | 否 | | -| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| `-tpw` | `--trust_store_password` | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| `-tpw` | `--trust_store_password` | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 运行命令 diff --git a/src/zh/UserGuide/latest-Table/Tools-System/Schema-Import-Tool_apache.md b/src/zh/UserGuide/latest-Table/Tools-System/Schema-Import-Tool_apache.md index 961a450eb..cc03098e0 100644 --- a/src/zh/UserGuide/latest-Table/Tools-System/Schema-Import-Tool_apache.md +++ b/src/zh/UserGuide/latest-Table/Tools-System/Schema-Import-Tool_apache.md @@ -34,7 +34,7 @@ | `-h` | `--host` | 主机名 | 否 | 127.0.0.1 | | `-p` | `--port` | 端口号 | 否 | 6667 | | `-u` | `--username` | 用户名 | 否 | root | -| `-pw` | `--password` | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| `-pw` | `--password` | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | `-sql_dialect` | `--sql_dialect` | 选择 server 是树模型还是表模型,当前支持 tree 和 table 类型 | 否 | tree | | `-db` | `--database` | 将要导入的目标数据库 | `是` | - | | `-table` | `--table` | 将要导入的目标表,只在`-sql_dialect`为 table 类型下生效。 | 否 | - | @@ -42,9 +42,9 @@ | `-fd` | `--fail_dir` | 指定保存失败文件的目录 | 否 | | | `-lpf` | `--lines_per_failed_file` | 指定失败文件最大写入数据的行数,只在`-sql_dialect`为 table 类型下生效。 | 否 | 100000范围:0~Integer.Max=2147483647 | | `-help` | `--help` | 显示帮助信息 | 否 | | -| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| `-tpw` | `--trust_store_password` | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| `-tpw` | `--trust_store_password` | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 运行命令 diff --git a/src/zh/UserGuide/latest-Table/User-Manual/Auto-Start-On-Boot_apache.md b/src/zh/UserGuide/latest-Table/User-Manual/Auto-Start-On-Boot_apache.md index b229505d6..6adfbdcc2 100644 --- a/src/zh/UserGuide/latest-Table/User-Manual/Auto-Start-On-Boot_apache.md +++ b/src/zh/UserGuide/latest-Table/User-Manual/Auto-Start-On-Boot_apache.md @@ -25,7 +25,6 @@ IoTDB 支持通过 `daemon-confignode.sh`、`daemon-datanode.sh`、`daemon-ainode.sh` 三个脚本,将ConfigNode、DataNode、AINode 注册为 Linux 系统服务,结合系统自带的 `systemctl `命令,以守护进程方式管理 IoTDB 集群,实现更便捷的启动、停止、重启及开机自启等操作,提升服务稳定性。 -> 注意:该功能从 V2.0.9-beta 版本开始提供。 ## 2. 环境要求 diff --git a/src/zh/UserGuide/latest-Table/User-Manual/Maintenance-statement_apache.md b/src/zh/UserGuide/latest-Table/User-Manual/Maintenance-statement_apache.md index 5cefc4833..ade24612d 100644 --- a/src/zh/UserGuide/latest-Table/User-Manual/Maintenance-statement_apache.md +++ b/src/zh/UserGuide/latest-Table/User-Manual/Maintenance-statement_apache.md @@ -403,7 +403,7 @@ IoTDB> SHOW SERVICES ON 1 **含义**:默认返回指定节点(通过 `node_id` 指定)的配置文件中已生效的配置项;若未指定 `node_id`,则返回客户端直连的 DataNode 配置。 添加 `all` 参数返回所有配置项(未配置项的 `value` 为 `null`);添加 `with desc` 参数返回配置项含描述信息。 -> V2.0.9-beta 起支持该功能 +> V2.0.10 起支持该功能 #### 语法: @@ -882,7 +882,7 @@ IoTDB> KILL ALL QUERIES; -- 终止所有query **​含义:​**在 SQL 查询语句开头添加 debug 关键字,执行时将输出 debug 日志,包括涉及到的底层文件 scan 信息。 -> V2.0.9-beta 起支持该功能 +> V2.0.10 起支持该功能 #### 语法: diff --git a/src/zh/UserGuide/latest/AI-capability/AINode_Upgrade_apache.md b/src/zh/UserGuide/latest/AI-capability/AINode_Upgrade_apache.md index ae6e626a4..a86a0ea7c 100644 --- a/src/zh/UserGuide/latest/AI-capability/AINode_Upgrade_apache.md +++ b/src/zh/UserGuide/latest/AI-capability/AINode_Upgrade_apache.md @@ -140,7 +140,7 @@ Total line number = 48 2. 模型需继承一类 AINode 的推理任务流水线(当前支持预测流水线): * iotdb-core/ainode/iotdb/ainode/core/inference/pipeline/basic\_pipeline.py - **V2.0.9-beta 之前** + **V2.0.10 之前** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -222,7 +222,7 @@ Total line number = 48 pass ``` - **V2.0.9-beta 起** + **V2.0.10 起** ```Python class BasicPipeline(ABC): def __init__(self, model_id, **model_kwargs): @@ -310,7 +310,7 @@ Total line number = 48 3. 修改模型配置文件 config.json,确保包含以下字段: - **V2.0.9-beta 之前** + **V2.0.10 之前** ```JSON { "auto_map": { @@ -326,7 +326,7 @@ Total line number = 48 * 必须集成并指定推理流水线类; * 对于 AINode 管理的内置(builtin)和自定义(user\_defined)模型,模型类别(model\_type)也作为不可重复的唯一标识。即,要注册的模型类别不得与任何已存在的模型类型重复,通过微调创建的模型将继承原模型的模型类别。 - **V2.0.9-beta 起** + **V2.0.10 起** > 参数 model_type 非必填 ```JSON { diff --git a/src/zh/UserGuide/latest/Tools-System/Data-Export-Tool_apache.md b/src/zh/UserGuide/latest/Tools-System/Data-Export-Tool_apache.md index d6145c308..10044e415 100644 --- a/src/zh/UserGuide/latest/Tools-System/Data-Export-Tool_apache.md +++ b/src/zh/UserGuide/latest/Tools-System/Data-Export-Tool_apache.md @@ -37,15 +37,15 @@ | -h | --host | 主机名 | 否 | 127.0.0.1 | | -p | --port | 端口号 | 否 | 6667 | | -u | --username | 用户名 | 否 | root | -| -pw | --password | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| -pw | --password | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | -t | --target | 指定输出文件的目标文件夹,如果路径不存在新建文件夹 | √ | | | -pfn | --prefix\_file\_name | 指定导出文件的名称。例如:abc,生成的文件是abc\_0.tsfile、abc\_1.tsfile | 否 | dump\_0.tsfile | | -q | --query | 要执行的查询语句。自 V2.0.8 起,SQL 语句中的分号将被自动移除,查询执行保持正常。 | 否 | 无 | | -timeout | --query\_timeout | 会话查询的超时时间(ms) | 否 | `-1`(V2.0.8 之前)
`Long.MAX_VALUE`(V2.0.8 及之后)
范围:`-1~Long.MAX_VALUE` | | -help | --help | 显示帮助信息 | 否 | | -| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 Csv 格式 diff --git a/src/zh/UserGuide/latest/Tools-System/Data-Import-Tool_apache.md b/src/zh/UserGuide/latest/Tools-System/Data-Import-Tool_apache.md index 4bfe06621..f4682a46b 100644 --- a/src/zh/UserGuide/latest/Tools-System/Data-Import-Tool_apache.md +++ b/src/zh/UserGuide/latest/Tools-System/Data-Import-Tool_apache.md @@ -47,14 +47,14 @@ IoTDB 支持三种方式进行数据导入: | -h | --host | 主机名 | 否 | 127.0.0.1 | | -p | --port | 端口号 | 否 | 6667 | | -u | --username | 用户名 | 否 | root | -| -pw | --password | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| -pw | --password | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | -s | --source | 待加载的脚本文件(夹)的本地目录路径
如果为csv sql tsfile这三个支持的格式,直接导入
不支持的格式,报错提示`The file name must end with "csv" or "sql"or "tsfile"!` | √ | | | -tn | --thread\_num | 最大并行线程数 | 否 | 8
范围:0~Integer.Max=2147483647 | | -tz | --timezone | 时区设置,例如`+08:00`或`-01:00` | 否 | 本机系统时间 | | -help | --help | 显示帮助信息,支持分开展示和全部展示`-help`或`-help csv` | 否 | | -| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| -usessl | --use_ssl | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| -ts | --trust_store | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| -tpw | --trust_store_password | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 CSV 格式 diff --git a/src/zh/UserGuide/latest/Tools-System/Schema-Export-Tool_apache.md b/src/zh/UserGuide/latest/Tools-System/Schema-Export-Tool_apache.md index 614207c47..84608543f 100644 --- a/src/zh/UserGuide/latest/Tools-System/Schema-Export-Tool_apache.md +++ b/src/zh/UserGuide/latest/Tools-System/Schema-Export-Tool_apache.md @@ -34,7 +34,7 @@ | `-h` | `--host` | 主机名 | 否 | 127.0.0.1 | | `-p` | `--port` | 端口号 | 否 | 6667 | | `-u` | `--username` | 用户名 | 否 | root | -| `-pw` | `--password` | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| `-pw` | `--password` | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | `-sql_dialect` | `--sql_dialect` | 选择 server 是树模型还是表模型,当前支持 tree 和 table 类型 | 否 | tree | | `-db` | `--database` | 将要导出的目标数据库,只在`-sql_dialect`为 table 类型下生效。 | `-sql_dialect`为 table 时必填 | - | | `-table` | `--table` | 将要导出的目标表,只在`-sql_dialect`为 table 类型下生效。 | 否 | - | @@ -44,9 +44,9 @@ | `-lpf` | `--lines_per_file` | 指定导出的dump文件最大行数,只在`-sql_dialect`为 tree 类型下生效。 | 否 | `10000` | | `-timeout` | `--query_timeout` | 会话查询的超时时间(ms) | 否 | -1范围:-1~Long. max=9223372036854775807 | | `-help` | `--help` | 显示帮助信息 | 否 | | -| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| `-tpw` | `--trust_store_password ` | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| `-tpw` | `--trust_store_password ` | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 运行命令 diff --git a/src/zh/UserGuide/latest/Tools-System/Schema-Import-Tool_apache.md b/src/zh/UserGuide/latest/Tools-System/Schema-Import-Tool_apache.md index 2939967db..681dbf816 100644 --- a/src/zh/UserGuide/latest/Tools-System/Schema-Import-Tool_apache.md +++ b/src/zh/UserGuide/latest/Tools-System/Schema-Import-Tool_apache.md @@ -34,7 +34,7 @@ | `-h` | `--host` | 主机名 | 否 | 127.0.0.1 | | `-p` | `--port` | 端口号 | 否 | 6667 | | `-u` | `--username` | 用户名 | 否 | root | -| `-pw` | `--password` | 密码,自 V2.0.9-beta 起支持隐藏输入 | 否 | root | +| `-pw` | `--password` | 密码,自 V2.0.10 起支持隐藏输入 | 否 | root | | `-sql_dialect` | `--sql_dialect` | 选择 server 是树模型还是表模型,当前支持 tree 和 table 类型 | 否 | tree | | `-db` | `--database` | 将要导入的目标数据库 | `是` | - | | `-table` | `--table` | 将要导入的目标表,只在`-sql_dialect`为 table 类型下生效。 | 否 | - | @@ -42,9 +42,9 @@ | `-fd` | `--fail_dir` | 指定保存失败文件的目录 | 否 | | | `-lpf` | `--lines_per_failed_file` | 指定失败文件最大写入数据的行数,只在`-sql_dialect`为 table 类型下生效。 | 否 | 100000范围:0~Integer.Max=2147483647 | | `-help` | `--help` | 显示帮助信息 | 否 | | -| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.9-beta 起支持 | 否 | - | -| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | -| `-tpw` | `--trust_store_password` | 信任库密码。支持隐藏输入,自 V2.0.9-beta 起支持 | 否 | - | +| `-usessl` | `--use_ssl` | 使用 SSL 协议,自 V2.0.10 起支持 | 否 | - | +| `-ts` | `--trust_store` | 信任库。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | +| `-tpw` | `--trust_store_password` | 信任库密码。支持隐藏输入,自 V2.0.10 起支持 | 否 | - | ### 2.2 运行命令 diff --git a/src/zh/UserGuide/latest/User-Manual/Auto-Start-On-Boot_apache.md b/src/zh/UserGuide/latest/User-Manual/Auto-Start-On-Boot_apache.md index b229505d6..6adfbdcc2 100644 --- a/src/zh/UserGuide/latest/User-Manual/Auto-Start-On-Boot_apache.md +++ b/src/zh/UserGuide/latest/User-Manual/Auto-Start-On-Boot_apache.md @@ -25,7 +25,6 @@ IoTDB 支持通过 `daemon-confignode.sh`、`daemon-datanode.sh`、`daemon-ainode.sh` 三个脚本,将ConfigNode、DataNode、AINode 注册为 Linux 系统服务,结合系统自带的 `systemctl `命令,以守护进程方式管理 IoTDB 集群,实现更便捷的启动、停止、重启及开机自启等操作,提升服务稳定性。 -> 注意:该功能从 V2.0.9-beta 版本开始提供。 ## 2. 环境要求 diff --git a/src/zh/UserGuide/latest/User-Manual/Maintenance-statement_apache.md b/src/zh/UserGuide/latest/User-Manual/Maintenance-statement_apache.md index ac80d3f31..1869e2727 100644 --- a/src/zh/UserGuide/latest/User-Manual/Maintenance-statement_apache.md +++ b/src/zh/UserGuide/latest/User-Manual/Maintenance-statement_apache.md @@ -312,7 +312,7 @@ IoTDB> SHOW SERVICES ON 1 注意:统计基于 TsFile 中数据的真实大小,因此不会考虑 mods 删除的情况。 -> V2.0.9-beta 起支持该功能 +> V2.0.10 起支持该功能 #### 语法: @@ -647,7 +647,7 @@ IoTDB> KILL ALL QUERIES; -- 终止所有query **​含义:​**在 SQL 查询语句开头添加 debug 关键字,执行时将输出 debug 日志,包括涉及到的底层文件 scan 信息。 -> V2.0.9-beta 起支持该功能 +> V2.0.10 起支持该功能 #### 语法: