Fabian,
Thanks for the reference, I think I was incorrectly interpreting the results I was getting using the CountTrigger, it looks like it does keep the data. However, I'm running into some unexpected (at least by me) behavior. Given a keyed data stream keyedStream and event timing final DataStream<MyMessageOut> alertingMsgs = keyedStream .window(SlidingEventTimeWindows.of(Time.minutes(1), Time.seconds(10))) .trigger(CountTrigger.of(1)) .apply(new MyWindowProcessor()); Every time a new element comes in I expected (probably naeively) one firing of the window but I get 5, presumably due to the sliding windows, although this probably depends on the Timestamp extraction "policy", I used a BoundedOutOfOrdernessTimestampExtractor(Time.minute(1)). Is there a way in the window processing function to determine which particular sliding window you are processing? Alternatively, a TumblingEventTimeWindow as below only fires once, but with the default trigger replaced by CountTrigger, my understanding is that the previous windows will not purge, is that correct? final DataStream<MyMessageOut> alertingMsgs = keyedStream .window(TumblingEventTimeWindows.of(Time.minutes(1))) .trigger(CountTrigger.of(1)) .apply(new MyWindowProcessor()); Paul ________________________________ From: Fabian Hueske <fhue...@gmail.com> Sent: Monday, August 29, 2016 5:46:06 PM To: user@flink.apache.org Subject: Re: CountTrigger FIRE or FIRE_AND_PURGE Hi Paul, This blog post [1] includes an example of an early trigger that should pretty much do what you are looking for. This one [2] explains the windowing mechanics of Flink (window assigner, trigger, function, etc). Hope this helps, Fabian [1] https://www.mapr.com/blog/essential-guide-streaming-first-processing-apache-flink [2] http://flink.apache.org/news/2015/12/04/Introducing-windows.html 2016-08-30 0:25 GMT+02:00 Paul Joireman <paul.joire...@physiq.com<mailto:paul.joire...@physiq.com>>: Hi all, I'm attempting to use long SlidingEventTime window (duration 24 hours) but I would like updates more frequently than the 24 hour length. I naeively attempted to use a simple CountTrigger(10) to give me the window every time 10 samples are collected, however, the window processing function I'm using only seems to get the latest 10 not the whole window (which I what I was hoping for). The code looks like it simply fires after the count is reached but it seems like it is doing a FIRE and PURGE, I cant' seem to use the iterator in the window processing function to get more than 10 elements at a time. Is there something I'm missing in order to get at the full content of the window data. Paul