-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnector.json
49 lines (49 loc) · 2.29 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "oracle-connector",
"config": {
"connector.class": "io.debezium.connector.oracle.OracleConnector",
"tasks.max": "1",
"database.hostname": "oracle",
"database.port": "1521",
"database.user": "c##xstrm",
"database.password": "xsa",
"database.dbname": "ORCLCDB",
"database.pdb.name": "ORCLPDB1",
"database.server.name": "server1",
"database.connection.adapter": "xstream",
"database.out.server.name" : "dbzxout",
"database.oracle.version": "19+",
"database.tablename.case.insensitive": "true",
"key.converter": "org.apache.kafka.connect.json.JsonConverter",
"key.converter.schemas.enable": "false",
"value.converter": "org.apache.kafka.connect.json.JsonConverter",
"value.converter.schemas.enable": "false",
"include.schema.changes": "false",
"snapshot.mode": "initial",
"publication.autocreate.mode": "filtered",
"schema.include.list": "DEBEZIUM",
"table.include.list": "DEBEZIUM.CUSTOMERS",
"database.history": "io.debezium.relational.history.FileDatabaseHistory",
"database.history.file.filename": "history.dat",
"database.history.kafka.bootstrap.servers": "",
"database.history.kafka.topic": "debezium.oracle",
"database.history.skip.unparseable.ddl": "true",
"database.history.security.protocol": "SASL_SSL",
"database.history.sasl.mechanism": "PLAIN",
"database.history.sasl.jaas.config": "",
"database.history.producer.bootstrap.servers": "",
"database.history.producer.security.protocol": "SASL_SSL",
"database.history.producer.sasl.mechanism": "PLAIN",
"database.history.producer.sasl.jaas.config": "",
"database.history.consumer.bootstrap.servers": "",
"database.history.consumer.security.protocol": "SASL_SSL",
"database.history.consumer.sasl.mechanism": "PLAIN",
"database.history.consumer.sasl.jaas.config": "",
"topic.creation.enable": "true",
"topic.creation.default.replication.factor": 1,
"topic.creation.default.partitions": 1,
"topic.creation.default.cleanup.policy": "compact",
"topic.creation.default.compression.type": "lz4",
"errors.log.enable": "true"
}
}