Re: Aggregate events in time window
Posted by
Sameer Wadkar on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/Aggregate-events-in-time-window-tp8031p8032.html
How about using EventTime windows with watermark assignment and bounded delays. That way you allow more than 5 minutes (bounded delay) for your request and responses to arrive. Do you have a way to assign timestamp to the responses based on the request timestamp (does the response contain the request timestamp in some form). That way you add them to the same window.
Sameer