Created
July 19, 2019 12:40
-
-
Save hpgrahsl/7be43893ab039358074ee657611bc00d to your computer and use it in GitHub Desktop.
Debezium MySQL source connector config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "mysql-outbox-src-connector-01", | |
"config": { | |
"connector.class": "io.debezium.connector.mysql.MySqlConnector", | |
"tasks.max": "1", | |
"database.hostname": "localhost", | |
"database.port": "3306", | |
"database.user": "debezium", | |
"database.password": "dbz", | |
"database.server.id": "12345", | |
"database.server.name": "dbserver1", | |
"database.whitelist": "outbox-demo", | |
"database.serverTimezone": "Europe/Vienna", | |
"table.whitelist": "outbox-demo.outbox_event", | |
"database.history.kafka.bootstrap.servers": "localhost:9092", | |
"database.history.kafka.topic": "schema-changes.outbox-demo", | |
"tombstones.on.delete":"false" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment