Doc says this mode can cause bugs, but it does not tell me the rule of using this mode, in what case it will cause bugs? Let's say I have a job,
- source: kafka (byte[] data),
- flat-map: parse byte[] to Google Protobuf object 'foo', create a Tuple2<>(foo.id, foo), and return this tuple2
- keyby and process: for each id, put the first foo into ValueState, update ValueState if there are multiple object with same id. Emit the first foo(updated) after 10 seconds.
In this case, is it OK to turn on 'object reuse mode'?
