20100507 opened a new issue, #7354:
URL: https://github.com/apache/seatunnel/issues/7354
I want to synchronize history_20220202 history_20220203 History_20220808:
Data from these tables。Here is my script
```
env {
parallelism = 1
job.mode = "STREAMING"
checkpoint.interval = 10000
}
source {
MySQL-CDC {
base-url = "jdbc:mysql://xxxx:19901/a"
username = "root"
password = "root"
table-pattern="a.history_*"
database = ["a"]
table-names-config = [
{
primaryKeys = ["id"]
}
]
catalog = {
factory=mysql
}
}
}
sink {
Console {
}
}
```
Synchronize tables in MySQL through regular matching; Task submission error;
It is possible that there is an issue with my configuration; How should I
modify it?
--
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]