You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to use flink cdc to consume the updated mysql data, and I want to sink data to other tables, but I don't know whether it keep the updated order. For example:
update1: update table set id=2 where id=1;
update2: update table set id=3 where id=2;
update3: update table set id=4 where id=3;
If I set sink parallelism = 3, can it keep the order update1, update2, update3, or what should I do to keep the consume order.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I want to use flink cdc to consume the updated mysql data, and I want to sink data to other tables, but I don't know whether it keep the updated order. For example:
If I set sink parallelism = 3, can it keep the order update1, update2, update3, or what should I do to keep the consume order.
Beta Was this translation helpful? Give feedback.
All reactions