davidzollo commented on code in PR #8818: URL: https://github.com/apache/seatunnel/pull/8818#discussion_r1969254814
########## docs/zh/connector-v2/sink/Mysql.md: ########## @@ -0,0 +1,211 @@ +# MySQL + +> JDBC Mysql Sink 连接器 + +## 支持的Mysql版本 + +- 5.5/5.6/5.7/8.0/8.1/8.2/8.3/8.4 + +## 引擎支持 + +> Spark<br/> +> Flink<br/> +> SeaTunnel Zeta<br/> + +## 描述 + +通过jdbc写入数据。支持批处理模式和流模式,支持并发写入,只支持一次 +语义(使用XA事务保证)。 + +## 需要的依赖项 + +### 对于 Spark/Flink 引擎 + +> 1. 您需要确保 [jdbc 驱动程序 jar 包](https://mvnrepository.com/artifact/mysql/mysql-connector-java) 已放置在目录 `${SEATUNNEL_HOME}/plugins/` 中。 + +### 对于 SeaTunnel Zeta 引擎 + +> 1. 您需要确保 [jdbc 驱动程序 jar 包](https://mvnrepository.com/artifact/mysql/mysql-connector-java) 已放置在目录 `${SEATUNNEL_HOME}/lib/` 中。 + +## 主要功能 + +- [x] [精确一次](../../concept/connector-v2-features.md) +- [ ] [流处理](../../concept/connector-v2-features.md) + +>使用“Xa事务”来确保“恰好一次”。因此,数据库只支持“恰好一次”,即 Review Comment: 恰好一次 -> 精确一次 -- 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: commits-unsubscr...@seatunnel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org