Skip to content

Docker setup for a local instance of cdc source that publishes updates to kafka

Notifications You must be signed in to change notification settings

jedrazb/cdc-kafka-setup

Repository files navigation

cdc-kafka-setup

Docker setup for a local instance of cdc source that publishes updates to kafka

Setup

Start up containers

docker-compose up -d

Confirm containers are running

docker-compose ps

Wait for mysql to be ready, look for /usr/sbin/mysqld: ready for connections. Version: '8.1.0' in logs. Create mysql users table.

docker exec -i mysql mysql -uroot -proot mydb < create_table.sql

Start mysql CDC debezium connector

docker exec -i debezium curl -i -X POST -H "Accept:application/json" -H "Content-Type:application/json" localhost:8083/connectors/ -d @/debezium-config.json

Ingest some data into mysql

docker exec -i mysql mysql -uroot -proot mydb < insert_data.sql

Verify that the data is present in mysql

docker exec -i mysql mysql -uroot -proot mydb < query_data.sql

Verify that the data is replicated into a kafka topic:

docker exec -it kafka kafka-topics --list --bootstrap-server kafka:9092

You should see cdctest.mydb.users present in the response.

Final verification step, list all data in the cdctest.mydb.users topic.

docker exec -it kafka kafka-console-consumer --topic cdctest.mydb.users --from-beginning --bootstrap-server localhost:9092

How to connecto to Kafka

Kafka broker address to connect from host: localhost:29092 CDC topic: cdctest.mydb.users

About

Docker setup for a local instance of cdc source that publishes updates to kafka

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published