Github user twalthr commented on the issue:
https://github.com/apache/flink/pull/5567
@tzulitai I think just writing out the arity is not enough. It really
depends on the type of tuple. Maybe it would have been better to write out only
the name of the class. But since we support tuple POJOs this might be a little
bit risky. The tuple serializer serializes general subclasses for both Java and
Scala and case classes.
I tested case classes, tuples, `Either` and `Unit`. What do you think we
should test as well? The other serializers do not include classes that need to
be snapshotted.
---