-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathlists3_fetchs3_config.json
More file actions
85 lines (85 loc) · 3.13 KB
/
lists3_fetchs3_config.json
File metadata and controls
85 lines (85 loc) · 3.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"rootGroup": {
"name": "MiNiFi Flow",
"processors": [
{
"name": "Fetch S3 object from test_bucket",
"identifier": "6ccd8be9-4aa3-4b86-ae10-0a68668f1c25",
"type": "org.apache.nifi.minifi.aws.processors.FetchS3Object",
"schedulingStrategy": "EVENT_DRIVEN",
"properties": {
"AWS Credentials Provider service": "AWSCredentialsService",
"Bucket": "test_bucket",
"Communications Timeout": "30 sec"
},
"autoTerminatedRelationships": [
"failure"
]
},
{
"name": "List test_bucket S3 bucket",
"identifier": "6f2c20f5-e990-4d9f-bfd6-f7471e3df469",
"type": "org.apache.nifi.minifi.aws.processors.ListS3",
"schedulingStrategy": "TIMER_DRIVEN",
"schedulingPeriod": "10000 ms",
"properties": {
"AWS Credentials Provider service": "AWSCredentialsService",
"Bucket": "test_bucket",
"Communications Timeout": "30 sec"
},
"autoTerminatedRelationships": []
},
{
"name": "Log S3 object attributes",
"identifier": "73fd7f54-7639-4f27-b20b-889708f493cb",
"type": "org.apache.nifi.minifi.processors.LogAttribute",
"schedulingStrategy": "EVENT_DRIVEN",
"properties": {
"FlowFiles To Log": "0"
},
"autoTerminatedRelationships": [
"success"
]
}
],
"connections": [
{
"name": "FetchS3Object/success/LogAttribute",
"identifier": "2c13ddd6-543e-4e37-a295-e4cb8fe85fa5",
"source": {
"id": "6ccd8be9-4aa3-4b86-ae10-0a68668f1c25"
},
"destination": {
"id": "73fd7f54-7639-4f27-b20b-889708f493cb"
},
"selectedRelationships": [
"success"
]
},
{
"name": "ListS3/success/FetchS3Object",
"identifier": "7895c12e-9657-4baa-a8ec-6b8cb11f32cd",
"source": {
"id": "6f2c20f5-e990-4d9f-bfd6-f7471e3df469"
},
"destination": {
"id": "6ccd8be9-4aa3-4b86-ae10-0a68668f1c25"
},
"selectedRelationships": [
"success"
]
}
],
"remoteProcessGroups": [],
"controllerServices": [
{
"name": "AWSCredentialsService",
"identifier": "2094d776-2006-4d02-9bb9-28eac9d0fc95",
"type": "org.apache.nifi.minifi.aws.controllers.AWSCredentialsService",
"properties": {
"Use Default Credentials": "true"
}
}
]
}
}