davidzollo commented on code in PR #8717:
URL: https://github.com/apache/seatunnel/pull/8717#discussion_r2038697990
##########
docs/zh/connector-v2/sink/Greenplum.md:
##########
@@ -0,0 +1,42 @@
+# Greenplum
+
+> Greenplum 数据接收器
+
+## 描述
+
+使用[Jdbc连接器](Jdbc.md)将数据写入 Greenplum。
+
+## 主要特性
+
+- [ ] [exactly-once](../../concept/connector-v2-features.md)
+
+:::提示
+
+不支持精确一次语义(Greenplum数据库中尚不支持 XA transaction)。
+
+:::
+
+## 选项
+
+### driver [string]
+
+可选 jdbc 驱动程序:
+- `org.postgresql.Driver`
+- `com.pivotal.jdbc.GreenplumDriver`
+
+注意:为了符合许可证要求,如果您使用`GreenplumDriver`,则必须自己下载Greenplum
JDBC驱动程序,然后将该驱动Greenplum-xxx.jar放到$SEATUNNEL_HOME/lib下。
+
+### url [string]
+
+JDBC
连接的URL。如果您使用postgresql驱动程序,则值为`jdbc:postgresql://${yous_host}:${yous_port}/${yous_database}`,或者您使用greenplum
驱动程序,其值为
`jdbc:pivotal:greenplum://${yous_host}:${yous_port};DatabaseName=${yous_database}`
+
+### common 选项
+
+Sink插件常用参数,请参考[Sink common Options](../sink-common-options.md)了解详细信息。
+
+## 更改日志
+
+### 2.2.0-beta 2022-09-26
+
+- 添加 Greenplum 写入连接器
+
Review Comment:
```suggestion
```
--
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]