import lombok.extern.slf4j.Slf4j;
import org.apache.kafka.common.serialization.Serdes;
+import org.apache.kafka.common.utils.Bytes;
import org.apache.kafka.streams.*;
-import org.apache.kafka.streams.kstream.KStream;
-import org.apache.kafka.streams.kstream.SessionWindows;
-import org.apache.kafka.streams.kstream.Window;
-import org.apache.kafka.streams.kstream.Windowed;
+import org.apache.kafka.streams.kstream.*;
import org.apache.kafka.streams.kstream.internals.SessionWindow;
+import org.apache.kafka.streams.state.SessionStore;
import org.apache.kafka.streams.test.TestRecord;
import org.junit.jupiter.api.Test;
input
.groupByKey()
.windowedBy(WINDOWS)
- .reduce((aggregate, value) -> aggregate + "-" + value)
+ .reduce(
+ (aggregate, value) -> aggregate + "-" + value,
+ Materialized.<String, String, SessionStore<Bytes, byte[]>>as("aggregated-store")
+ .withKeySerde(Serdes.String())
+ .withValueSerde(Serdes.String()))
+ .suppress(Suppressed.untilWindowCloses(Suppressed.BufferConfig.unbounded()))
.toStream((k,v) -> k.toString())
.to(OUTPUT);
sendAt("A", 63);
- assertThatOutcomeIs(
- KeyValue.pair(windowFor(63, 63), "A"));
+ assertThatOutcomeIs();
sendAt("B", 64);
- assertThatOutcomeIs(
- KeyValue.pair(windowFor(63, 63), null),
- KeyValue.pair(windowFor(63, 64), "A-B"));
+ assertThatOutcomeIs();
sendAt("C", 65);
- assertThatOutcomeIs(
- KeyValue.pair(windowFor(63, 64), null),
- KeyValue.pair(windowFor(63, 65), "A-B-C"));
+ assertThatOutcomeIs();
sendAt("D", 66);
- assertThatOutcomeIs(
- KeyValue.pair(windowFor(63, 65), null),
- KeyValue.pair(windowFor(63, 66), "A-B-C-D"));
+ assertThatOutcomeIs();
sendAt("E", 69);
- assertThatOutcomeIs(
- KeyValue.pair(windowFor(69, 69), "E"));
+ assertThatOutcomeIs(KeyValue.pair(windowFor(63, 66), "A-B-C-D"));
sendAt("F", 70);
- assertThatOutcomeIs(
- KeyValue.pair(windowFor(69, 69), null),
- KeyValue.pair(windowFor(69, 70), "E-F"));
+ assertThatOutcomeIs();
sendAt("G", 74);
- assertThatOutcomeIs(
- KeyValue.pair(windowFor(74, 74), "G"));
+ assertThatOutcomeIs(KeyValue.pair(windowFor(69, 70), "E-F"));
sendAt("H", 75);
- assertThatOutcomeIs(
- KeyValue.pair(windowFor(74, 74), null),
- KeyValue.pair(windowFor(74, 75), "G-H"));
+ assertThatOutcomeIs();
sendAt("I", 100);
- assertThatOutcomeIs(
- KeyValue.pair(windowFor(100, 100), "I"));
+ assertThatOutcomeIs(KeyValue.pair(windowFor(74, 75), "G-H"));
sendAt("J", 120);
- assertThatOutcomeIs(
- KeyValue.pair(windowFor(120, 120), "J"));
+ assertThatOutcomeIs(KeyValue.pair(windowFor(100, 100), "I"));
sendAt("K", 140);
- assertThatOutcomeIs(
- KeyValue.pair(windowFor(140, 140), "K"));
+ assertThatOutcomeIs(KeyValue.pair(windowFor(120, 120), "J"));
sendAt("L", 160);
- assertThatOutcomeIs(
- KeyValue.pair(windowFor(160, 160), "L"));
+ assertThatOutcomeIs(KeyValue.pair(windowFor(140, 140), "K"));
+
+ // Never received, if no newer message is sent
+ // KeyValue.pair(windowFor(160, 160), "L"));
}