This is an automated email from the ASF dual-hosted git repository.
wanghailin pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/seatunnel.git
The following commit(s) were added to refs/heads/dev by this push:
new f26b82c953 [Doc][Improve] support chinese
[docs/zh/connector-v2/sink/TDengine.md] (#8732)
f26b82c953 is described below
commit f26b82c953faadc136d3671e6f95055c2a786216
Author: duzhendi <[email protected]>
AuthorDate: Mon Feb 24 11:45:27 2025 +0800
[Doc][Improve] support chinese [docs/zh/connector-v2/sink/TDengine.md]
(#8732)
---
docs/zh/connector-v2/sink/TDengine.md | 71 +++++++++++++++++++++++++++++++++++
1 file changed, 71 insertions(+)
diff --git a/docs/zh/connector-v2/sink/TDengine.md
b/docs/zh/connector-v2/sink/TDengine.md
new file mode 100644
index 0000000000..f4e054c7e7
--- /dev/null
+++ b/docs/zh/connector-v2/sink/TDengine.md
@@ -0,0 +1,71 @@
+# TDengine
+
+> TDengine 数据接收器
+
+## 描述
+
+用于将数据写入TDengine。
+
+## 主要特性
+
+- [x] [exactly-once](../../concept/connector-v2-features.md)
+- [ ] [cdc](../../concept/connector-v2-features.md)
+
+## 选项
+
+| 名称 | 类型 | 是否必传 | 默认值 |
+|----------|--------|----------|---------------|
+| url | string | 是 | - |
+| username | string | 是 | - |
+| password | string | 是 | - |
+| database | string | 是 | |
+| stable | string | 是 | - |
+| timezone | string | 否 | UTC |
+
+### url [string]
+
+TDengine的url
+
+例如
+
+```
+jdbc:TAOS-RS://localhost:6041/
+```
+
+### username [string]
+
+TDengine的用户名
+
+### password [string]
+
+TDengine的密码
+
+### database [string]
+
+TDengine的数据库
+
+### stable [string]
+
+TDengine的超级表
+
+### timezone [string]
+
+TDengine服务器的时间,对ts字段很重要
+
+## 示例
+
+### sink
+
+```hocon
+sink {
+ TDengine {
+ url : "jdbc:TAOS-RS://localhost:6041/"
+ username : "root"
+ password : "taosdata"
+ database : "power2"
+ stable : "meters2"
+ timezone: UTC
+ }
+}
+```
+