Coder Social home page Coder Social logo

kafka-application-cdc's Introduction

Kafka Application


Solution diagram

Solution

Look this: https://github.com/debezium/debezium-examples/tree/master/tutorial


Start the topology as defined in http://debezium.io/docs/tutorial/

docker-compose up -d

Initialize database and insert test data

cat debezium-sqlserver-init/inventory.sql | docker exec -i tutorial_sqlserver_1 bash -c '/opt/mssql-tools/bin/sqlcmd -U sa -P $SA_PASSWORD'

Start SQL Server connector

curl -i -X POST -H "Accept:application/json" -H  "Content-Type:application/json" http://localhost:8083/connectors/ -d @register-sqlserver.json

Consume messages from a Debezium topic

docker-compose -f docker-compose.yml exec kafka /kafka/bin/kafka-console-consumer.sh \
    --bootstrap-server kafka:9092 \
    --from-beginning \
    --property print.key=true \
    --topic server1.dbo.Table_1

Modify records in the database via SQL Server client (do not forget to add GO command to execute the statement)

docker-compose -f docker-compose.yml exec sqlserver bash -c '/opt/mssql-tools/bin/sqlcmd -U sa -P $SA_PASSWORD -d testDB'

Running kafka mirror maker

docker exec -it poa-o-boticario_kafka_1 bash

Activate debug level mirror maker (Inside kafka docker)

vi config/tools-log4j.properties

Update line: log4j.rootLogger=WARN, stderr -> log4j.rootLogger=DEBUG, stderr

Inside kafka docker execute

bin/kafka-mirror-maker.sh --consumer.config mirror-maker/source-kafka.config --num.streams 1 --producer.config mirror-maker/mirror-eventhub.config --whitelist='.*'

Shut down the cluster

docker-compose -f docker-compose.yml down

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.