Kafka Streams 2.1.1 class cast while flushing timed aggregation to store

后端 未结 2 1993
独厮守ぢ
独厮守ぢ 2021-01-16 10:21

I\'m trying to use kafka streams to perform a windowed aggregation and emit the result only after a certain session window is closed. To achieve this I\'m using the suppress

相关标签:
2条回答
  • 2021-01-16 11:00

    There two option to solve that issue:

    1. use TimeWindowedKStream::aggregate(final Initializer<VR> initializer, final Aggregator<? super K, ? super V, VR> aggregator, final Materialized<K, VR, WindowStore<Bytes, byte[]>> materialized);

    2. use KStream::groupByKey(final Grouped<K, V> grouped)

    In you case it will be:

    Ad 1:

    input
        .groupByKey()
        .windowedBy(SessionWindows.with(Duration.ofSeconds(30)))
        .aggregate(() -> Long.valueOf(0), (key, v1, v2) -> v1 + v2, (key, agg1, agg2) -> agg1 + agg2, Materialized.with(Serdes.String(), Serdes.Long()))
        .suppress(Suppressed.untilWindowCloses(Suppressed.BufferConfig.unbounded()))
        .toStream()
        .map((k, v) -> new KeyValue<>(k.key(), v))
        .to("output");
    

    Ad 2:

    input
        .groupByKey(Grouped.with(Serdes.String(), Serdes.Long())
        .windowedBy(SessionWindows.with(Duration.ofSeconds(30)))
        .aggregate(() -> Long.valueOf(0), (key, v1, v2) -> v1 + v2, (key, agg1, agg2) -> agg1 + agg2)
        .suppress(Suppressed.untilWindowCloses(Suppressed.BufferConfig.unbounded()))
        .toStream()
        .map((k, v) -> new KeyValue<>(k.key(), v))
        .to("output");
    
    0 讨论(0)
  • 2021-01-16 11:20

    To make this work with TopologyTestDriver, you would need to advance the clock time, which it seems has no effect on the Suppress step. A workaround is to allow your test to override the Suppress config with a setting like this:

    Suppressed.untilTimeLimit(Duration.ZERO, BufferConfig.unbounded()) 
    
    0 讨论(0)
提交回复
热议问题