Re: Why the current time of my window never reaches the end time when I use KeyedProcessFunction?
Posted by
Piotr Nowojski-3 on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/Why-the-current-time-of-my-window-never-reaches-the-end-time-when-I-use-KeyedProcessFunction-tp28294p28309.html
Hi,
Isn’t your problem that the source is constantly emitting the data and bumping your timers? Keep in mind that the code that you are basing on has the following characteristic:
> In the following example a KeyedProcessFunction maintains counts per key, and emits a key/count pair whenever a
minute passes without an update for that key
Piotrek