-
Notifications
You must be signed in to change notification settings - Fork 0
/
postgre-source.json
23 lines (23 loc) · 1011 Bytes
/
postgre-source.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "postgre-debeziumtest-source",
"config": {
"connector.class": "io.debezium.connector.postgresql.PostgresConnector",
"plugin.name": "pgoutput",
"tasks.max": "1",
"topic.prefix": "dbpostgresqlserver1",
"database.hostname": "db-postgres-0",
"database.port": "5432",
"database.user": "codebaseuser",
"database.password": "12345678",
"database.dbname": "debeziumtest",
"publication.name": "myproduct_dbz_publication",
"publication.autocreate.mode": "filtered",
"table.include.list": "public.movie,public.person",
"database.history.kafka.bootstrap.servers": "kafka:9092",
"database.history.kafka.topic": "schema-changes.postgre-debeziumtest-source",
"transforms": "route",
"transforms.route.type": "org.apache.kafka.connect.transforms.RegexRouter",
"transforms.route.regex": "([^.]+)\\.([^.]+)\\.([^.]+)",
"transforms.route.replacement": "$1_$2$3"
}
}