MINIPuffer commented on issue #6737:
URL: https://github.com/apache/seatunnel/issues/6737#issuecomment-2071332611
> I can not get any information from your issue, Do you provide specific
jobconfiguration content and screenshots of database connection not released?
this is my job configuration
```
env {
parallelism = 1
job.mode = "STREAMING"
checkpoint.interval = 10000
}
source {
MySQL-CDC {
base-url = "jdbc:mysql://192.168.120.22:31838/test",
username = "root",
password = "xxxx",
table-names = ["test.bbbb"],
table-names-config = [
{
"table" = "test.bbbb",
"primaryKeys" = ["id"]
}
],
connection.pool.size = "2",
server-time-zone = "UTC",
startup.mode = "initial"
}
}
sink {
jdbc {
url = "jdbc:mysql://192.168.110.113:30020/test"
driver = "com.mysql.cj.jdbc.Driver"
user = "root"
password = "xxxx"
database = "test"
table = "bbbb"
primary_keys = ["id"]
generate_sink_sql = true
schema_save_mode = "CREATE_SCHEMA_WHEN_NOT_EXIST"
data_save_mode="DROP_DATA"
}
}
```
--
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]