-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpostgres-connector.json
More file actions
25 lines (24 loc) · 986 Bytes
/
postgres-connector.json
File metadata and controls
25 lines (24 loc) · 986 Bytes
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
{
"name": "postgres-cdc-connector",
"config": {
"connector.class": "io.debezium.connector.postgresql.PostgresConnector",
"database.hostname": "postgres",
"database.port": "5432",
"database.user": "admin",
"database.password": "secure_password",
"database.dbname": "myapp",
"topic.prefix": "postgres-server",
"plugin.name": "pgoutput",
"database.history.kafka.bootstrap.servers": "kafka:9092",
"database.history.kafka.topic": "postgres-cdc-history",
"replication.slot.name": "debezium_slot",
"publication.autocreate.mode": "filtered",
"publication.name": "debezium_publication",
"slot.drop.on.stop": false,
"table.include.list": "public.users,public.projects,public.project_files,public.file_segments",
"transforms": "route",
"transforms.route.type": "org.apache.kafka.connect.transforms.RegexRouter",
"transforms.route.regex": "postgres-server\\.public\\.(.*)",
"transforms.route.replacement": "$1"
}
}