Last active
July 7, 2022 05:02
-
-
Save droxer/0b2e69acf6a87d7de1ec5fd92cfbb62a to your computer and use it in GitHub Desktop.
This file contains 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": "test-mysql-connector01", | |
"config": { | |
"connector.class": "io.debezium.connector.mysql.MySqlConnector", | |
"tasks.max": "1", | |
"database.hostname": "127.0.0.1", | |
"database.port": "3306", | |
"database.user": "root", | |
"database.password": "", | |
"database.include.list": "test-src01", | |
"database.server.name": "test-server", | |
"snapshot.mode": "initial", | |
"database.serverTimezone": "UTC", | |
"time.precision.mode": "adaptive_time_microseconds", | |
"database.history.kafka.topic": "schema-changes.test-mysql-01", | |
"database.history.kafka.bootstrap.servers": "localhost:9092", | |
"transforms": "route", | |
"transforms.route.type": "org.apache.kafka.connect.transforms.RegexRouter", | |
"transforms.route.regex": "([^.]+)\\.([^.]+)\\.([^.]+)", | |
"transforms.route.replacement": "$3" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment