This is an automated email from the ASF dual-hosted git repository. CritasWang pushed a commit to branch wx/iotdb-2.0.11-alignment in repository https://gitbox.apache.org/repos/asf/iotdb-extras.git
commit c564f230bae4f0d19d4cc9ca61be1346f888a47f Author: CritasWang <[email protected]> AuthorDate: Thu Sep 17 17:50:47 2026 +0800 chore: document the starter timeout default and drop unused properties The starter README notes that connection-timeout-in-ms now defaults to 0 instead of failing startup with a NullPointerException when unset. The compile.version property in the Flink and Hive connector poms had no consumer. --- connectors/flink-iotdb-connector/pom.xml | 1 - connectors/hive-connector/pom.xml | 1 - iotdb-spring-boot-starter/README.md | 3 +++ 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/connectors/flink-iotdb-connector/pom.xml b/connectors/flink-iotdb-connector/pom.xml index a3e7d5b..d332d8f 100644 --- a/connectors/flink-iotdb-connector/pom.xml +++ b/connectors/flink-iotdb-connector/pom.xml @@ -25,7 +25,6 @@ <artifactId>flink-iotdb-connector</artifactId> <name>IoTDB: Connector: Apache Flink</name> <properties> - <compile.version>17</compile.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> diff --git a/connectors/hive-connector/pom.xml b/connectors/hive-connector/pom.xml index 6dc6124..43f8bf4 100644 --- a/connectors/hive-connector/pom.xml +++ b/connectors/hive-connector/pom.xml @@ -29,7 +29,6 @@ <artifactId>hive-connector</artifactId> <name>IoTDB: Connector: Apache Hive</name> <properties> - <compile.version>17</compile.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> diff --git a/iotdb-spring-boot-starter/README.md b/iotdb-spring-boot-starter/README.md index 421cc80..8894c98 100644 --- a/iotdb-spring-boot-starter/README.md +++ b/iotdb-spring-boot-starter/README.md @@ -102,6 +102,9 @@ The default `fetch-size` changes from `1024` to the IoTDB client default of `500 configured `iotdb.session.fetch-size` still overrides it. The Thrift buffer default remains `1024` bytes; this is a separate setting. +`connection-timeout-in-ms` now defaults to `0` (no timeout). Earlier starters left it unset and +failed at startup with a `NullPointerException` unless the property was configured explicitly. + `enable-compression` maps to `enableThriftCompression` for the table builder and `enableThriftRpcCompaction` for the tree builder. IoTDB RPC compression is a separate setting and retains the driver's default (`true` in 2.0.11), even when `enable-compression=false`.
