confluentinc / learn-kafka-courses

Learn the basics of Apache Kafka® from leaders in the Kafka community with these video courses covering the Kafka ecosystem and hands-on exercises.
https://developer.confluent.io/
17 stars 77 forks source link

Fixed unexpected behavior of streams-table join in StreamsJoin example #9

Closed pmeister closed 2 years ago

pmeister commented 3 years ago

The leftJoin of the combinedStream to the usersTable was failing to join any records from the usersTable because they had later timestamps than the corresponding stream records. The fix is to modify the TopicLoader to create the users first so that they have the earliest timestamps.

For more, see https://forum.confluent.io/t/troubleshooting-streamsjoin-example-in-kafka-streams-101-course/3339

bbejeck commented 2 years ago

Thanks for the contribution @pmeister