Hisoka-X commented on code in PR #8731: URL: https://github.com/apache/seatunnel/pull/8731#discussion_r1967000404
########## docs/zh/connector-v2/sink/Tablestore.md: ########## @@ -0,0 +1,73 @@ +# Tablestore + +> Tablestore 数据接收器 + +## 描述 + +用于将数据写入 Tablestore + +## 主要特性 + +- [ ] [exactly-once](../../concept/connector-v2-features.md) + +## 选项 + +| 名称 | 类型 | 是否必传 | 默认值 | +|-------------------|--------|----------|---------------| +| end_point | string | 是 | - | +| instance_name | string | 是 | - | +| access_key_id | string | 是 | - | +| access_key_secret | string | 是 | - | +| table | string | 是 | - | +| primary_keys | array | 是 | - | +| batch_size | string | 否 | 25 | +| common-options | config | 否 | - | + +### end_point [string] + +endPoint 用于写入Tablestore。 + +### instanceName [string] + +Tablestore 的实例名称。 + +### access_key_id [string] + +Tablestore 访问的id。 + +### access_key_secret [string] + +Tablestore 访问的密钥。 + +### table [string] + +Tablestore的表。 + +### primaryKeys [array] + +Tablestore 的主键。 + +### common 选项 [ config ] + +Sink插件常用参数,请参考[Sink common Options](../Sink common Options.md)了解详细信息。 Review Comment: ```suggestion Sink插件常用参数,请参考[Sink common Options](../sink-common-options.md)了解详细信息。 ``` -- 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]
