http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/Query-regarding-tumbling-event-time-windows-with-ingestion-time-tp10382p10392.html
If you have events:
A@10m, B@14m, Watermark@15m
C@16m D@25m, Watermark@30m
then the result will be:
[A,B]@14.59
[C,D]@29.59
This means that for the next windowing, you will have the elements [A,B]@14.59 and [C,D]@29.59
to window in windows of 5min.
Given that they are 15min apart, this means that you will have:
[A,B]@14.59 in one window and [C,D]@29.59
This is what I meant by at most one element per window, because window 0 to 5 min, 5 to 10 and
15 to 20 and 20 to 25 will be empty.
Does this make it clearer?
Kostas
HI
i didn't get it , can you please clarify with an example in case each of operation A and B emit multiple elements.