Replies: 1 comment
-
After digging into I guess this is the answer, |
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
-
In my scenario, we might pause or stop our flink jobs due to fixed maintainence. But we don't want to lose the offset of flink job sources.
For example, we are using flink to incrementally synchronize data from DB2 instance to MySQL cluster. We specified the startup offset(supposed
A
) the first time we submitted our flink job. However, 3 months later we need to restart the job but we do not want to figure out the right offset(mightB
, and the latest offset most probablyC
). How should I make it unattended?Could we just give the CDC connector a startup offset and specify a distributed storage(such as redis) to save the right offset for future job recover? If so, will this conflict with checkpoints saved automatically?
Beta Was this translation helpful? Give feedback.
All reactions