zhangshenghang commented on code in PR #9872:
URL: https://github.com/apache/seatunnel/pull/9872#discussion_r2385674984


##########
docs/zh/connector-v2/source/IoTDBv2.md:
##########
@@ -0,0 +1,224 @@
+import ChangeLog from '../changelog/connector-iotdb.md';
+
+# IoTDB
+
+> IoTDB 数据读取器
+
+## 支持引擎
+
+> Spark<br/>
+> Flink<br/>
+> SeaTunnel Zeta<br/>
+
+## 描述
+
+用于从 IoTDB 中读取数据。
+
+## 主要特性
+
+- [x] [批处理](../../concept/connector-v2-features.md)
+- [x] [流处理](../../concept/connector-v2-features.md)
+- [x] [精确一次](../../concept/connector-v2-features.md)
+- [x] [列投影](../../concept/connector-v2-features.md) 
+  > IoTDB 通过 SQL 查询支持列投影功能。
+- [x] [并行度](../../concept/connector-v2-features.md)
+- [ ] [支持用户自定义分片](../../concept/connector-v2-features.md)
+
+## 支持的数据源信息
+
+| 数据源   | 支持的版本            | 地址             |
+|-------|------------------|----------------|
+| IoTDB | `2.0 <= version` | localhost:6667 |
+
+## 数据类型映射
+
+| IoTDB 数据类型 | SeaTunnel 数据类型 |
+|------------|----------------|
+| BOOLEAN    | BOOLEAN        |
+| INT32      | TINYINT        |
+| INT32      | SMALLINT       |
+| INT32      | INT            |
+| INT64      | BIGINT         |
+| FLOAT      | FLOAT          |
+| DOUBLE     | DOUBLE         |
+| TEXT       | STRING         |
+| STRING     | STRING         |
+| TIMESTAMP  | BIGINT         |
+| TIMESTAMP  | TIMESTAMP      |
+| BLOB       | STRING         |
+| DATE       | DATE           |
+
+## Source 选项
+
+| 名称                         | 类型      | 是否必填 | 默认值  | 描述                      
                                                         |
+|----------------------------|---------|------|------|----------------------------------------------------------------------------------|
+| node_urls                  | string  | 是    | -    | IoTDB 集群地址,格式为 
`"host1:port"` 或 `"host1:port,host2:port"`                        |

Review Comment:
   It should not be String; it should be List<String>, and all other related 
parts should be modified.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to