hi,

Is it possible to implement a continuous time window with flink? Here's an
example. Say I want to count events within a window. The window length is 5
seconds and I get events at t = 1, 2, 7, 8 seconds. I would then expect to
get events with a count at t = 1 (count = 1), t = 2 (count = 2), t = 6
(count = 1), t = 7 (count = 2), t = 8 (count = 2), t = 12 (count = 1) and t
= 13 (count = 0).

How would I go about doing that?.

thanks,
Jon.

Reply via email to