I have two streams left and right. For the same time window let's say that
- the left stream contains the elements L1, L2 (the number is the key)
- the right stream contains the elements R1, R3
I wonder how to implement a LEFT OUTER JOIN in Apache Flink so that the result obtained when processing this window is the following:
(L1, R1), (L2, null)
L1, R1 are matching by key (1), and L2, R3 do not match. L2 is included because is at left