-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathconsumekafka_config.json
More file actions
59 lines (59 loc) · 2.13 KB
/
consumekafka_config.json
File metadata and controls
59 lines (59 loc) · 2.13 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"rootGroup": {
"name": "MiNiFi Flow",
"processors": [
{
"name": "Consume Kafka messages from ConsumeKafkaTest topic",
"identifier": "37d6e8e5-6284-423e-8620-c5168a71add7",
"type": "org.apache.nifi.processors.standard.ConsumeKafka",
"schedulingStrategy": "TIMER_DRIVEN",
"schedulingPeriod": "1 sec",
"properties": {
"Group ID": "test_group",
"Honor Transactions": "true",
"Kafka Brokers": "kafka-broker:9092",
"Key Attribute Encoding": "UTF-8",
"Max Poll Time": "4 sec",
"Message Header Encoding": "UTF-8",
"Offset Reset": "earliest",
"Session Timeout": "60 sec",
"Topic Name Format": "Names",
"Topic Names": "ConsumeKafkaTest"
},
"autoTerminatedRelationships": [
"failure"
]
},
{
"name": "Put files to /tmp/output",
"identifier": "7f9c6f0b-e936-499e-b659-acfaf6872772",
"type": "org.apache.nifi.processors.standard.PutFile",
"schedulingStrategy": "EVENT_DRIVEN",
"properties": {
"Directory": "/tmp/output"
},
"autoTerminatedRelationships": [
"success",
"failure"
]
}
],
"connections": [
{
"name": "ConsumeKafka/success/PutFile",
"identifier": "c9ac662f-015a-4b09-9c05-14599e30f196",
"source": {
"id": "37d6e8e5-6284-423e-8620-c5168a71add7"
},
"destination": {
"id": "7f9c6f0b-e936-499e-b659-acfaf6872772"
},
"selectedRelationships": [
"success"
]
}
],
"remoteProcessGroups": [],
"controllerServices": []
}
}