We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af26d9b commit c65ce27Copy full SHA for c65ce27
spring-kafka-docs/src/main/antora/modules/ROOT/pages/streams.adoc
@@ -473,7 +473,7 @@ public class KafkaStreamsConfig {
473
stream
474
.mapValues((ValueMapper<String, String>) String::toUpperCase)
475
.groupByKey()
476
- .windowedBy(TimeWindows.of(Duration.ofMillis(1_000)))
+ .windowedBy(TimeWindows.ofSizeWithNoGrace(Duration.ofMillis(1_000)))
477
.reduce((String value1, String value2) -> value1 + value2,
478
Named.as("windowStore"))
479
.toStream()
0 commit comments