Reputation: 863
Will Flink lose some old Keyed State when changing the parallelism, like 2 -> 5, or 5 -> 3?
Upvotes: 0
Views: 361
Reputation: 43707
No, Flink will not lose any state (keyed or otherwise) when rescaling. All that rescaling does is to keyed state is to redistribute the data by changing the mapping from key groups to task slots.
Upvotes: 1