I've a Kafka Streams app that's outputting JSON to a topic in Kafka, and I'd like to save the output JSON to a mysql table.
Here's how I'd like to configure my data flow:
Input JSON -> input topic -> Kafka Stream transformer -> output topic (JSON) -> Kafka connect -> mysql DB.
I've implemented the above up until Kafka connect, as I can't find much documentation on using Kafka Connect to save from JSON to a mysql database.
The examples I've seen so far with Kafka Connect seem to work with the avro data format, not JSON.
Can anyone point my in the right direction?