I have two streams, streamA
and streamB
. Each of streamA
has an ID and matching event in streamB
will have same ID.
I want to know from streamA
which IDs have not come in streamB
after a sliding window of lets say, 1 minute.
I have tried this, but did not work out:
from streamA as A join streamB#window.time(1 min) as B on A.id == B.id select S.Id insert expired events into streamC;
Let me know how to solve this.