Re: manual scaling with savepoint

2017-01-11 Thread gallenvara
Thanks for your detail explanation. -- View this message in context: http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/manual-scaling-with-savepoint-tp10974p10995.html Sent from the Apache Flink User Mailing List archive. mailing list archive at Nabble.com.

Re: manual scaling with savepoint

2017-01-11 Thread Fabian Hueske
Hi, Flink supports two types of state: 1) Key-partitioned state 2) Non-partitioned operator state (Checkpointed interface) Key-partitioned state is internally organized by key and can be "simply" rehashed. The actual implementation is more involved to make this efficient. This document contains d