Re: leftjoin not working as expected.

2022-08-10 Thread Chad Preisler
Hi Guozhang, Thank you for your response. When the records do come through, the right side is null. I can provide you the full source code if you would like to take a look at it. This is just an example, so there is very little code. It is in a private gitlab repository right now. If you want acce

Re: leftjoin not working as expected.

2022-08-09 Thread Guozhang Wang
Hello Chad, Here are a few thoughts on top of my head: for left joins, we would keep those received records from the left side that have NOT found a match on the right side in a separate temporary store (this is only recently improved, but since you're already on 3.2.1 it's the case indeed). When

leftjoin not working as expected.

2022-08-04 Thread Chad Preisler
Hello, I'm doing a stream to stream leftjoin. Here is what I am seeing when I test the code. - I write a record to the left side topic. The stream app reads the message and the deserializer gets triggered. However, the join is not triggered at this time. - I write another record to the left sid