EricJoy2048 commented on issue #6983:
URL: https://github.com/apache/seatunnel/issues/6983#issuecomment-2167284300
```
env {
job.mode = "BATCH"
}
source{
Jdbc {
parallelism=5
url = "jdbc:mysql://127.0.0.1:3306/mysql_src"
driver = "com.mysql.cj.jdbc.Driver"
connection_check_timeout_sec = 100
user = "root"
password = "111111"
table_path="mysql_src.product_catalog"
split.size = 100000
}
}
transform {
}
sink {
jdbc {
url = "jdbc:mysql://127.0.0.1:3306/mysql_dest"
driver = "com.mysql.cj.jdbc.Driver"
connection_check_timeout_sec = 100
user = "root"
password = "*****"
enable_upsert = false
table="product_catalog"
batch_size=10000
generate_sink_sql=true
}
}
```
--
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]