I am starting to play with CDC and Kafka connect
After countless hours trying, I have come to understand the logic
- Set Kafka Connect properties (bin/connect-standalone.sh) with your cluster information
- Set Kafka Connect configuration file (config/connect-standalone.properties)
- Download your Kafka connector (in this case MySQL from Debizium)
- Configure connector properties in whatevername.properties
In order to run a worker with Kafka Connector, you need to
./bin/connect-standalone.sh config/connect-standalone.properties
which answers:
INFO Usage: ConnectStandalone worker.properties connector1.properties [connector2.properties ...] (org.apache.kafka.connect.cli.ConnectStandalone:62)
I know we need to run:
./bin/connect-standalone.sh config/connect-standalone.properties myconfig.properties
My issue is that I cannot find any format description, or example of that myconfig.properties field.
【Extra Info】 Debizium configuration properties list:
- https://docs.confluent.io/debezium-connect-mysql-source/current/mysql_source_connector_config.html#mysql-source-connector-config
- https://debezium.io/documentation/reference/1.5/connectors/mysql.html
【Question】 Where can I find an example of the connector properties?
Thanks!