-
-
Notifications
You must be signed in to change notification settings - Fork 869
Expand file tree
/
Copy pathes-sink.json
More file actions
18 lines (18 loc) · 717 Bytes
/
es-sink.json
File metadata and controls
18 lines (18 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "elastic-sink",
"config": {
"connector.class": "io.confluent.connect.elasticsearch.ElasticsearchSinkConnector",
"tasks.max": "1",
"topics": "dbserver1.inventory.orders",
"connection.url": "http://elastic:9200",
"transforms": "unwrap,key",
"transforms.unwrap.type": "io.debezium.transforms.ExtractNewRecordState",
"transforms.key.type": "org.apache.kafka.connect.transforms.ExtractField$Key",
"transforms.key.field": "id",
"key.ignore": "false",
"type.name": "order",
"behavior.on.null.values" : "delete",
"topic.index.map" : "dbserver1.inventory.orders:orders",
"schema.ignore" : "true"
}
}