Question about mysql-cdc configuration #9175
Replies: 2 comments
-
you can use `initial` if you'd like to `full + binlog`.
`earliest` and `latest` are just used for the binlog, which means that you choose `earliest` binlog or `latest` binlog
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
davidzollo
-
|
Hi @suyanhj
when job is paused or interrupted, you should restart the job from last checkpoint (savepoint). checkpoint save the last read pos, so we can resume the job from last read pos. If you just re-submit the job without any states, it will read data from the pos configed by |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I’ve read in some articles that SeaTunnel supports resuming from breakpoints (i.e. exactly-once and incremental recovery). I also checked the official documentation for the mysql-cdc source connector and found the startup.mode option.
I understand that the initial mode means a full snapshot of the table followed by incremental sync (full + binlog). However, I’m a bit confused about the difference between earliest and latest.
Which mode should I use if I want SeaTunnel to automatically resume from the last processed offset after the job is paused or interrupted?
I'm currently using the Zeta engine instead of Flink.
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions