标签: apache-flink complex-event-processing
在Flink中,如果我们在窗口上应用FoldFunction或ReduceFunction,它
急切地聚合元素并且每个窗口只存储一个值
有关详细信息,请参阅Flink Docs 1.3。
同样适用于AggregateFunction - 因为它似乎也允许您急切地聚合元素并存储它们。
答案 0 :(得分:1)
Yes, an AggregateFunction stores a single accumulator per window.
AggregateFunction