Re: Schema Evolution of POJOs fails on Field Removal

2022-05-18 Thread David Jost
> On 18. May 2022, at 15:34, Alexis Sarda-Espinosa > wrote: > > Hi David, > > Please refer to https://issues.apache.org/jira/browse/FLINK-21752 > > Regards, > Alexis. Hi Alexis and Hangxiang, thank you both for you quick responses. Following Alexis' link, I noticed, that we were still on

Re: Schema Evolution of POJOs fails on Field Removal

2022-05-18 Thread Hangxiang Yu
Hi, David. Removing a field from a POJO should work as you said. But I think we need more information. What version of flink are you using? Do you have any other modifications? Could you share your code segments and the error jm log if convenient ? On Wed, May 18, 2022 at 9:07 PM David Jost

RE: Schema Evolution of POJOs fails on Field Removal

2022-05-18 Thread Alexis Sarda-Espinosa
Hi David, Please refer to https://issues.apache.org/jira/browse/FLINK-21752 Regards, Alexis. -Original Message- From: David Jost Sent: Mittwoch, 18. Mai 2022 15:07 To: user@flink.apache.org Subject: Schema Evolution of POJOs fails on Field Removal Hi, we currently have an issue

Schema Evolution of POJOs fails on Field Removal

2022-05-18 Thread David Jost
Hi, we currently have an issue, where our job fails to restart from a savepoint, after we removed a field from a serialised (POJO) class. According to [0], this kind of evolution is supported, but it sadly only works when adding, but not removing fields. I was hoping, someone here might be