-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconnector_USERS table connector_config.json
More file actions
28 lines (28 loc) · 1.17 KB
/
connector_USERS table connector_config.json
File metadata and controls
28 lines (28 loc) · 1.17 KB
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
{
"name": "USERS table connector 8",
"config": {
"connector.class": "io.confluent.connect.jdbc.JdbcSourceConnector",
"tasks.max": "1",
"key.converter": "org.apache.kafka.connect.storage.StringConverter",
"value.converter": "io.confluent.connect.avro.AvroConverter",
"transforms": "createKey, AddNamespace",
"transforms.createKey.type": "org.apache.kafka.connect.transforms.ValueToKey",
"transforms.createKey.fields": "ID",
"transforms.AddNamespace.type": "org.apache.kafka.connect.transforms.SetSchemaMetadata$Value",
"transforms.AddNamespace.schema.name": "com.zim.kafka.poc.connect.USERS",
"connection.url": "jdbc:oracle:thin:@hfaexadbadm05:1611:iqpet7",
"connection.user": "TW",
"connection.password": "thru",
"table.whitelist": "USERS",
"dialect.name": "OracleDatabaseDialect",
"mode": "incrementing",
"incrementing.column.name": "ID",
"table.types": "TABLE",
"numeric.mapping": "precision_only",
"poll.interval.ms": "10000",
"topic.prefix": "GUY_8_",
"value.converter.schema.registry.url": "http://schema-registry:8081",
"topic.config.sync": "false",
"value.converter.schemas.enable": "true"
}
}