-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkafka-oracle-connector.json
30 lines (30 loc) · 1.28 KB
/
kafka-oracle-connector.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
{
"name": "SimpleOracleCDC",
"config": {
"connector.class": "io.confluent.connect.oracle.cdc.OracleCdcSourceConnector",
"name": "SimpleOracleCDC",
"tasks.max": 1,
"confluent.topic.bootstrap.servers": "http://<bootstrap-host>:9092",
"oracle.server": "<oracle-host>",
"oracle.port": 1521,
"oracle.sid": "<sid>",
"oracle.username": "<username>",
"oracle.password": "<password>",
"start.from": "snapshot",
"table.inclusion.regex": "<DB or SID>\\.<SCHEMA>\\.<TABLE>",
"table.exclusion.regex": "",
"table.topic.name.template": "${fullyQualifiedTableName}",
"connection.pool.max.size": 20,
"confluent.topic.replication.factor": 1,
"redo.log.consumer.bootstrap.servers": "http://<bootstrap-host>:9092",
"topic.creation.groups": "redo",
"topic.creation.redo.include": "redo-log-topic",
"topic.creation.redo.replication.factor": 1,
"topic.creation.redo.partitions": 1,
"topic.creation.redo.cleanup.policy": "delete",
"topic.creation.redo.retention.ms": 1209600000,
"topic.creation.default.replication.factor": 1,
"topic.creation.default.partitions": 1,
"topic.creation.default.cleanup.policy": "delete"
}
}