Re: Using state processor for a custom windowed aggregate function

2024-08-05 Thread Alexis Sarda-Espinosa
s > > > > > > > > *From:* Alexis Sarda-Espinosa > *Sent:* Friday, August 2, 2024 7:47 PM > *To:* Schwalbe Matthias > *Cc:* user > *Subject:* Re: Using state processor for a custom windowed aggregate > function > > > > Hi Matthias, > > > &

RE: Using state processor for a custom windowed aggregate function

2024-08-05 Thread Schwalbe Matthias
* you can aggregate it into the new state * (cardinalities could change) Thias From: Alexis Sarda-Espinosa Sent: Friday, August 2, 2024 7:47 PM To: Schwalbe Matthias Cc: user Subject: Re: Using state processor for a custom windowed aggregate function Hi Matthias, Thank you for looking

Re: Using state processor for a custom windowed aggregate function

2024-08-02 Thread Alexis Sarda-Espinosa
n, > > TypeInformation keyType, > > TypeInformation accType, > > TypeInformation outputType) > > throws IOException { > > > > > > Cheers > > > > Thias > > > > PS: will you come to the FlinkForward conferen

RE: Using state processor for a custom windowed aggregate function

2024-08-02 Thread Schwalbe Matthias
ation outputType) throws IOException { Cheers Thias PS: will you come to the FlinkForward conference in October in Berlin (to socialize)? From: Alexis Sarda-Espinosa Sent: Wednesday, July 31, 2024 3:46 PM To: Schwalbe Matthias Cc: user Subject: Re: Using state processor for a custom wi

Re: Using state processor for a custom windowed aggregate function

2024-07-31 Thread Alexis Sarda-Espinosa
y different as for streaming >> timers >> >> >> >> Hope that helps 😊 >> >> >> >> Thias >> >> >> >> >> >> >> >> *From:* Alexis Sarda-Espinosa >> *Sent:* Monday, Jul

Re: Using state processor for a custom windowed aggregate function

2024-07-31 Thread Alexis Sarda-Espinosa
> order > - Triggers will only be fired after processing all events of a > respective key are processed > - Semantics are therefore slightly different as for streaming timers > > > > Hope that helps 😊 > > > > Thias > > > > > >

RE: Using state processor for a custom windowed aggregate function

2024-07-31 Thread Schwalbe Matthias
: Monday, July 29, 2024 9:18 PM To: user Subject: Using state processor for a custom windowed aggregate function Hello, I am trying to create state for an aggregate function that is used with a GlobalWindow. This basically looks like: savepointWriter.withOperator( OperatorIdentifier.forUid

Using state processor for a custom windowed aggregate function

2024-07-29 Thread Alexis Sarda-Espinosa
Hello, I am trying to create state for an aggregate function that is used with a GlobalWindow. This basically looks like: savepointWriter.withOperator( OperatorIdentifier.forUid(UID), OperatorTransformation.bootstrapWith(stateToMigrate) .keyBy(...) .window(GlobalWindows.cr