Skip to content

Commit 2dc8296

Browse files
duzhendiduzhendidavidzollo
authored
[Doc][Improve] support chinese [docs/zh/connector-v2/sink/Tablestore.md] (#8731)
Co-authored-by: duzhendi <[email protected]> Co-authored-by: David Zollo <[email protected]>
1 parent 268d76c commit 2dc8296

File tree

1 file changed

+73
-0
lines changed

1 file changed

+73
-0
lines changed

Diff for: docs/zh/connector-v2/sink/Tablestore.md

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# Tablestore
2+
3+
> Tablestore 数据接收器
4+
5+
## 描述
6+
7+
用于将数据写入 Tablestore
8+
9+
## 主要特性
10+
11+
- [ ] [exactly-once](../../concept/connector-v2-features.md)
12+
13+
## 选项
14+
15+
| 名称 | 类型 | 是否必填 | 默认值 |
16+
|-------------------|--------|----------|---------------|
17+
| end_point | string || - |
18+
| instance_name | string || - |
19+
| access_key_id | string || - |
20+
| access_key_secret | string || - |
21+
| table | string || - |
22+
| primary_keys | array || - |
23+
| batch_size | string || 25 |
24+
| common-options | config || - |
25+
26+
### end_point [string]
27+
28+
endPoint 用于写入Tablestore。
29+
30+
### instanceName [string]
31+
32+
Tablestore 的实例名称。
33+
34+
### access_key_id [string]
35+
36+
Tablestore 访问的id。
37+
38+
### access_key_secret [string]
39+
40+
Tablestore 访问的密钥。
41+
42+
### table [string]
43+
44+
Tablestore的表。
45+
46+
### primaryKeys [array]
47+
48+
Tablestore 的主键。
49+
50+
### common 选项 [ config ]
51+
52+
Sink插件常用参数,请参考[Sink common Options](../sink-common-options.md)了解详细信息。
53+
54+
## 示例
55+
56+
```bash
57+
Tablestore {
58+
end_point = "xxxx"
59+
instance_name = "xxxx"
60+
access_key_id = "xxxx"
61+
access_key_secret = "xxxx"
62+
table = "sink"
63+
primary_keys = ["pk_1","pk_2","pk_3","pk_4"]
64+
}
65+
```
66+
67+
## 更改日志
68+
69+
### 随后版本
70+
71+
- 添加Tablestore数据接收器
72+
73+

0 commit comments

Comments
 (0)