End-of-window outer join with KafkaStreams

后端 未结 3 1891
轻奢々
轻奢々 2021-01-03 09:05

I have a Kafka topic where I expect messages with two different key types: old and new. i.e. \"1-new\", \"1-old\", \"2-new\", \"

3条回答
  •  攒了一身酷
    2021-01-03 09:19

    Looks like what you were looking for. Kafka Streams left outer join on timeout

    Eliminates the lack of sql-like left join semantic in kafka streams framework. This implementation will generate left join event only if full join event didn't happen in join window duration interval.

提交回复
热议问题