Reputation:
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?
Upvotes: 0
Views: 854
Reputation: 191864
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
Upvotes: 1