I've implemented a KTable and a KStream join in my application and expecting output messages in the following cases;
- A new message in KStream and there's a matching record in the KTable
- An updated message came in KStream and there's a matching record in the KTable
- When there's an update on a KTable record
I've been observing that my application does 1 and 2 as expected but not 3.
Is there any advice that I can get to achieve point 3?
Thanks!