forked from debezium/debezium-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconnector.json
More file actions
23 lines (23 loc) · 1015 Bytes
/
connector.json
File metadata and controls
23 lines (23 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"connector.class": "io.debezium.connector.postgresql.PostgresConnector",
"tasks.max": 1,
"database.hostname": "postgres",
"database.port": 5432,
"database.user": "postgres",
"database.password": "postgres",
"database.dbname" : "postgres",
"topic.prefix": "dbserver1",
"schema.include.list": "inventory",
"topic.creation.default.replication.factor": 1,
"topic.creation.default.partitions": 5,
"topic.creation.default.cleanup.policy": "compact",
"topic.creation.default.compression.type": "gzip",
"topic.creation.default.delete.retention.ms" : 2592000000,
"topic.creation.groups": "productlog",
"topic.creation.productlog.include": "dbserver1\\.inventory\\.product.*",
"topic.creation.productlog.replication.factor": 1,
"topic.creation.productlog.partitions": 10,
"topic.creation.productlog.cleanup.policy": "delete",
"topic.creation.productlog.compression.type": "producer",
"topic.creation.productlog.retention.ms": 7776000000
}