forked from f0xdx/kafka-connect-wrap-smt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
34 lines (34 loc) · 1.52 KB
/
manifest.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
{
"name": "${name}",
"version": "${version}",
"release_date": "${build_date}",
"component_types": ["transform"],
"title": "Wrap Transformation",
"description": "<p>Kafka Connect single message transform (SMT) wrapping key and record of kafka messages into a single struct. This ensures, e.g., that data contained in complex keys is not lost when ingesting data from kafka in a sink such as elasticsearch. Additionally, it supports exporting meta-data including partition, offset, timestamp, topic name and kafka headers.</p><p>Note that this transform does only support <b>sink connectors</b>, as it wraps kafka specific meta-data that is not available for all source connectors.</p>",
"owner": {
"username": "f0xdx",
"name": "Felix Heinrichs",
"type": "user",
"url": "https://github.com/f0xdx"
},
"license": [
{
"name" : "Apache License 2.0",
"url" : "https://www.apache.org/licenses/LICENSE-2.0.txt"
}
],
"source_url": "https://github.com/f0xdx/kafka-connect-wrap-smt",
"documentation_url": "https://github.com/f0xdx/kafka-connect-wrap-smt",
"support": {
"summary": "Support provided through open source community, bugs can be filed as github issues.",
"provider_name": "Community",
"url": "https://github.com/f0xdx/kafka-connect-wrap-smt/issues"
},
"tags": ["Key", "Value", "Wrap", "Export"],
"features" : {
"supported_encodings" : [ "any" ],
"single_message_transforms" : true,
"confluent_control_center_integration" : false,
"kafka_connect_api" : true
}
}