Skip to content

Instantly share code, notes, and snippets.

@hpgrahsl
Created July 19, 2019 12:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hpgrahsl/7be43893ab039358074ee657611bc00d to your computer and use it in GitHub Desktop.
Save hpgrahsl/7be43893ab039358074ee657611bc00d to your computer and use it in GitHub Desktop.
Debezium MySQL source connector config
{
"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