davidzollo commented on code in PR #8818:
URL: https://github.com/apache/seatunnel/pull/8818#discussion_r1969260497


##########
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事务”来确保“恰好一次”。因此,数据库只支持“恰好一次”,即
+>支持“Xa事务”。您可以设置`is_exactly_once=true `来启用它。
+
+## 支持的数据源信息
+
+| 数据源 |                    支持的版本                   |          驱动器          |   
               网址                  | Maven下载链接                                  
                         |
+|-----|---------------------------------------------------------|--------------------------|---------------------------------------|---------------------------------------------------------------------|
+| Mysql | 不同的依赖版本具有不同的驱动程序类。 | com.mysql.cj.jdbc.Driver | 
jdbc:mysql://localhost:3306:3306/test | 
[下载](https://mvnrepository.com/artifact/mysql/mysql-connector-java) |
+
+
+## 数据类型映射
+
+|                                                          Mysql 数据类型          
                                                |                               
                                  SeaTunnel 数据类型                                
                                 |
+|-----------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------|
+| BIT(1)<br/>INT UNSIGNED                                                      
                                                     | BOOLEAN                  
                                                                                
                                           |
+| TINYINT<br/>TINYINT UNSIGNED<br/>SMALLINT<br/>SMALLINT 
UNSIGNED<br/>MEDIUMINT<br/>MEDIUMINT UNSIGNED<br/>INT<br/>INTEGER<br/>YEAR | 
INT                                                                             
                                                                    |
+| INT UNSIGNED<br/>INTEGER UNSIGNED<br/>BIGINT                                 
                                                     | BIGINT                   
                                                                                
                                           |
+| BIGINT UNSIGNED                                                              
                                                     | DECIMAL(20,0)            
                                                                                
                                           |
+| DECIMAL(x,y)(获取指定列的列大小<38)                                                   
            | DECIMAL(x,y)                                                      
                                                                                
  |
+| DECIMAL(x,y)(获取指定列的列大小<38)                                                   
            | DECIMAL(38,18)                                                    
                                                                                
  |

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

Reply via email to