-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconnector_request.json
More file actions
22 lines (22 loc) · 887 Bytes
/
connector_request.json
File metadata and controls
22 lines (22 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "orders-connector",
"config": {
"connector.class": "io.debezium.connector.postgresql.PostgresConnector",
"tasks.max": "1",
"database.hostname": "host.docker.internal",
"database.port": "5432",
"database.user": "postgres",
"database.password": "postgres",
"topic.prefix": "orders.",
"database.dbname" : "orders_db",
"schema.include.list": "public",
"table.include.list" : "public.outbox_event",
"tombstones.on.delete" : "false",
"transforms" : "outbox",
"transforms.outbox.type" : "io.debezium.transforms.outbox.EventRouter",
"transforms.outbox.route.by.field": "event_type",
"transforms.outbox.route.topic.replacement" : "${routedByValue}",
"transforms.outbox.table.field.event.key": "aggregate_id",
"plugin.name": "pgoutput"
}
}