Hisoka-X commented on code in PR #8704: URL: https://github.com/apache/seatunnel/pull/8704#discussion_r1956033874
########## docs/zh/connector-v2/source/Cassandra.md: ########## @@ -0,0 +1,80 @@ +# Cassandra + +> Cassandra 源连接器 + +## 描述 + +从 Apache Cassandra 读取数据. + +## 关键特性 + +- [x] [批处理](../../concept/connector-v2-features.md) +- [ ] [流处理](../../concept/connector-v2-features.md) +- [ ] [精确一次](../../concept/connector-v2-features.md) +- [x] [列投影](../../concept/connector-v2-features.md) +- [ ] [并行度](../../concept/connector-v2-features.md) +- [ ] [支持用户自定义分片](../../concept/connector-v2-features.md) + +## 选项 + +| 名称 | 类型 | 必需 | 默认值 | +|-------------------|--------|----|---------------| +| host | String | 是 | - | +| keyspace | String | 是 | - | +| cql | String | 是 | - | +| username | String | 否 | - | +| password | String | 否 | - | +| datacenter | String | 否 | datacenter1 | +| consistency_level | String | 否 | LOCAL_ONE | + +### host [string] + +`Cassandra` 的集群地址, 格式为 `host:port` , 允许指定多个 `hosts` . 例如 +`"cassandra1:9042,cassandra2:9042"`. + +### keyspace [string] + +`Cassandra` 的键空间. + +### cql [String] + +查询cql用于通过Cassandra会话搜索数据. Review Comment: ```suggestion 查询cql,用于通过Cassandra会话搜索数据. ``` -- 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]
