Search code examples
apache-kafka-connectdebezium

Output JSON messages with Debezium rather than Avro


Is it possible to generate JSON messages with Debezium rather than Avro? I have a Debezium Kafka Connect adapter and I'm trying to get it to output JSON messages into the Kafka topic.

Is this possible?


Solution

  • You should be able to add these to get JSON output

    key.converter=org.apache.kafka.connect.json.JsonConverter
    value.converter=org.apache.kafka.connect.json.JsonConverter