unsubscribe

2022-08-30 Thread jester_jim
unsubscribe

Issue with file system implementation

2022-08-30 Thread Darius Žalandauskas
Hello apache-flink team, For the last week I am really struggling with setting up EMR to store stream output to AWS S3. According to the documentation, if running flink with emr, no manual adjustments are required, however even having the plugin placed in plugins folder based on documentation I kee

unsubscribe

2022-08-30 Thread dan young

Question Regarding State Migrations in Ververica Platform

2022-08-30 Thread Rion Williams
Hi all, I wasn't sure if this would be the best audience, if not, please advise if you know of a better place to ask it. I figured that at least some folks here either work for Ververica or might have used their platform. *tl;dr; I'm trying to migrate an existing stateful Flink job to run in Verv

Re:Use genericrowdata or row type

2022-08-30 Thread Xuyang
Hi, IMO, I think you'd better use 'Row' instead of using 'genericrowdata' because 'GenericRowData' is only one sub-class implement from 'RowData', and 'RowData' has other sub-classes that are used in different scenes. Actually, the two types can be converted to each other [1]. [1] https:/

Re: Why this example does not save anything to file?

2022-08-30 Thread Martijn Visser via user
Hi Mike, I think that's caused by you not having enabled checkpointing. If you enable that, it should be resolved I think. Best regards, Martijn On Wed, Aug 3, 2022 at 9:01 PM wrote: > > Thank you very much Martijn you dedicated your productive time to help me! > I'm new noob in this subject

Re: Failing to compile Flink 1.9 with Scala 2.12

2022-08-30 Thread Martijn Visser
For which Scala 2.12 version are you trying to compile? Flink supports Scala versions up to 2.12.7, since 2.12.8 introduced a binary incompatibility. Most likely (but not tested) you can compile for a different Scala version by using mvn clean install -DskipTests -Djapicmp.skip -Dscala-2.12 -Dscala

Re: Deadlock in Subtask in the FlinkKinesisConsumer

2022-08-30 Thread Martijn Visser
Hi Seth, I think the global watermark / mark as idle is one of the reasons why the FLIP-27 [1] interfaces were created, while FLIP-180 [2] is also relevant here. Unfortunately, the FlinkKinesisConsumer is still using the old interface. I'm not sure it can be properly fixed with the old interfaces.