This seams to be the way to go but I get "cannot resolve method" at the method 'aggregate'.
My aggregareFunction implements the following:
AggregateFunction<
IngressPOJO,
CountersAccumulator,
CountersAccumulator
>
And my processWindowFunction implements the following:
ProcessWindowFunction<
CountersAccumulator,
Tuple2<String, CountersAccumulator>,
String,
TimeWindow
>
Hi,
I am replacing replacing my
legacy WindowFunction with AggregateFunction.
I use TumblingEventTimeWindows, how can I get the
start and end time?