apache / flink-cdc

Flink CDC is a streaming data integration tool

Home Page:https://nightlies.apache.org/flink/flink-cdc-docs-stable

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mysql cdc 3.0, when start from savepoint, the modify of startup.options is not effective

sufeng23c opened this issue · comments

First, we config the starup.options as initial, it works well.
Then, we do savepoint by command flink savepoint xx.
Last, we config the startup.options as latest, and add a new table, start task from the savepoint.
The result is that the new added table still perfoms initial snapshot and new changes.
Is it possible that the above scenario is not supported?

@sufeng23c At present, it is not support. The state of this two mode's enumerator are not same, which is HybridPendingSplitsState and StreamPendingSplitsState. By the way, please create issue in FLINK Jira later

OK, thank you.