Re: updating keyed state in open method.

2023-09-07 Thread Zakelly Lan
Hi, You cannot access the keyed state within #open(). It can only be accessed under a keyed context ( a key is selected while processing an element, e.g. #processElement). Best, Zakelly On Thu, Sep 7, 2023 at 4:55 PM Krzysztof Chmielewski wrote: > > Hi, > I'm having a problem with my toy flink

Re: updating keyed state in open method.

2023-09-07 Thread Krzysztof Chmielewski
t; > > > > [1] > https://github.com/kristoffSC/FlinkSimpleStreamingJob/blob/033f74c427553fbfe0aaffe7d2af4382c09734ad/src/main/java/org/example/KeyCounter.java#L26 > > > > > > > > > > *From:* Krzysztof Chmielewski > *Sent:* Donnerstag, 7. September 2023 09:

RE: updating keyed state in open method.

2023-09-07 Thread Schwalbe Matthias
Subject: updating keyed state in open method. ⚠EXTERNAL MESSAGE – CAUTION: Think Before You Click ⚠ Hi, I'm having a problem with my toy flink job where I would like to access a ValueState of a keyed stream. The Job setup can be found here [1], it is fairly simple env .addSource(new

updating keyed state in open method.

2023-09-07 Thread Krzysztof Chmielewski
Hi, I'm having a problem with my toy flink job where I would like to access a ValueState of a keyed stream. The Job setup can be found here [1], it is fairly simple env .addSource(new CheckpointCountingSource(100, 60)) .keyBy(value -> value) .process(new KeyCounter()) .addSink(new ConsoleSink());