Thanks Sören, I already saw your stack overflow question while trying to find a solution 😊 I prefer a solution that does not involve an external cache like Redis, if possible.
Best Regards, Ifat From: Sören Henning <soeren.henn...@email.uni-kiel.de> Reply-To: "user@beam.apache.org" <user@beam.apache.org> Date: Tuesday, 3 January 2023 at 14:56 To: "user@beam.apache.org" <user@beam.apache.org> Subject: Re: Join streams with different frequencies Hi, while I cannot provide you with a definite answer to your question, maybe my Stack Overflow question is interesting for you: https://stackoverflow.com/questions/66067263/how-to-join-a-frequently-updating-stream-with-an-irregularly-updating-stream-i Best regards, Sören Am 03.01.23 um 09:15 schrieb Ifat Afek (Nokia): Hi, We are trying to implement the following use case: We have a stream of DataX events that arrive every 5 minutes and require some processing. Each event holds data for a specific non-unique ID (we keep getting updated data for each ID). There might be up to 1,000,000 IDs. In addition, there is a stream of DataY events for some of these IDs, that arrive in a variable frequency. Could be after a minute and then again after 5 hours. We would like to join the current DataX and latest DataY events by ID (and process only IDs that have both DataX and DataY events). We thought of holding a state of DataY events per ID in a global window, and then use it as a side input for filtering the DataX events stream. The state should hold the latest (by timestamp) DataY event that arrived. The problem is: if we are using discardingFiredPanes(), then each DataY event is fired only once and cannot be reused later on for filtering. On the other hand, if we are using accumulatingFiredPanes(), then a list of all DataY events that arrived is fired. Are we missing something? what is the best practice for combining two streams, one with a variable frequency? Thanks, Ifat