How to Deserialising Kafka AVRO messages using Apache Beam

后端 未结 5 2090
一生所求
一生所求 2021-01-15 03:16

The main goal is the aggregate two Kafka topics, one compacted slow moving data and the other fast moving data which is received every second.

I have been able to c

5条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-15 03:33

    Change KafkaIO.read() to KafkaIO.read().

    If you look into the implementation of KafkaAvroDeserializer, it implements Deserializer:

    public class KafkaAvroDeserializer extends AbstractKafkaAvroDeserializer implements Deserializer

    提交回复
    热议问题