Kafka - Streams
Given this Kafka Streams session window configuration:
If events arrive at 2000ms, 5000ms, and 9000ms, how many session windows will be created?
stream.groupByKey() .windowedBy(SessionWindows.with(Duration.ofSeconds(4))) .count()
If events arrive at 2000ms, 5000ms, and 9000ms, how many session windows will be created?
