-
Notifications
You must be signed in to change notification settings - Fork 0
/
postgre-source-rich.json
31 lines (31 loc) · 1.32 KB
/
postgre-source-rich.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "postgre-debeziumtest-source",
"config": {
"connector.class": "io.debezium.connector.postgresql.PostgresConnector",
"plugin.name": "pgoutput",
"tasks.max": "1",
"topic.prefix": "dbpostgresqlserver1",
"offset.flush.interval.ms":0,
"database.hostname": "db-postgres-0",
"database.port": "5432",
"database.user": "codebaseuser",
"database.password": "12345678",
"database.dbname": "debeziumtest",
"publication.name": "myproduct_dbz_publication",
"slot.name" : "myproduct_dbz_slot_order",
"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",
"errors.log.enable": "true",
"errors.log.include.messages": "true",
"snapshot.mode":"initial",
"snapshot.locking.mode":"none",
"time.precision.mode" : "adaptive",
"decimal.handling.mode" : "precise"
}
}