Hi,
I would like to find out what types are being serialized with which serializer. Is there an easy way to get this information?
We have the following situation:
We have two types T1 and T2. The input to a window process function is a Either<T1, T2>. Both T1 and T2 themselves are POJOs. We added a field F of type Boolean(the boxed type) to T2. We then restored a job from a savepoint. It was my understanding that the POJO serializer would initialize T2.F to Boolean.False. However, T2.F is null.
Thanks
Sudharsan