You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ Apache NiFi example flows.
5
5
6
6
#### collect-stream-logs
7
7
8
-
This [flow](./collect-stream-logs/README.md) shows workflow for log collection, aggregation, store and display.
8
+
This [flow](./collect-stream-logs/) shows workflow for log collection, aggregation, store and display.
9
9
10
10
1. Ingest logs from folders.
11
11
2. Listen for syslogs on UDP port.
@@ -14,43 +14,43 @@ This [flow](./collect-stream-logs/README.md) shows workflow for log collection,
14
14
15
15
#### csv-to-json
16
16
17
-
This [flow](./csv-to-json/README.md) shows how to convert a CSV entry to a JSON document using ExtractText and ReplaceText.
17
+
This [flow](./csv-to-json/) shows how to convert a CSV entry to a JSON document using ExtractText and ReplaceText.
18
18
19
19
#### decompression
20
20
21
-
This [flow](./decompression/README.md) demonstrates taking an archive that is created with several levels of compression and then continuously
21
+
This [flow](./decompression/) demonstrates taking an archive that is created with several levels of compression and then continuously
22
22
decompressing it using a loop until the archived file is extracted out.
23
23
24
24
#### http-get-route
25
25
26
-
his [flow](./http-get-route/README.md) pulls from a web service (example is nifi itself), extracts text from a specific section, makes a routing decision
26
+
his [flow](./http-get-route/) pulls from a web service (example is nifi itself), extracts text from a specific section, makes a routing decision
27
27
on that extracted value, prepares to write to disk using PutFile.
28
28
29
29
#### invoke-http-route
30
30
31
-
This [flow](./invoke-http-route/README.md) demonstrates how to call an HTTP service based on an incoming FlowFile, and route the original FlowFile
31
+
This [flow](./invoke-http-route/) demonstrates how to call an HTTP service based on an incoming FlowFile, and route the original FlowFile
32
32
based on the status code returned from the invocation. In this example, every 30 seconds a FlowFile is produced,
33
33
an attribute is added to the FlowFile that sets q=nifi, the google.com is invoked for that FlowFile, and any response
34
34
with a 200 is routed to a relationship called 200.
35
35
36
36
#### retry-count-loop
37
37
38
-
This [process group](./retry-count-loop/README.md) can be used to maintain a count of how many times a flowfile goes through it. If it reaches some
38
+
This [process group](./retry-count-loop/) can be used to maintain a count of how many times a flowfile goes through it. If it reaches some
39
39
configured threshold it will route to a 'Limit Exceeded' relationship otherwise it will route to 'retry'.
40
40
Great for processes which you only want to run X number of times before you give up.
41
41
42
42
#### split-route
43
43
44
-
This [flow](./split-route/README.md) demonstrates splitting a file on line boundaries, routing the splits based on a regex in the content,
44
+
This [flow](./split-route/) demonstrates splitting a file on line boundaries, routing the splits based on a regex in the content,
45
45
merging the less important files together for storage somewhere, and sending the higher priority files down
46
46
another path to take immediate action.
47
47
48
48
#### twitter-garden-hose
49
49
50
-
This [flow](./twitter-garden-hose/README.md) pulls from Twitter using the garden hose setting; it pulls out some basic attributes from the Json and
50
+
This [flow](./twitter-garden-hose/) pulls from Twitter using the garden hose setting; it pulls out some basic attributes from the Json and
51
51
then routes only those items that are actually tweets.
52
52
53
53
#### twitter-solr
54
54
55
-
This [flow](./twitter-solr/README.md) shows how to index tweets with Solr using NiFi. Pre-requisites for this flow are NiFi 0.3.0 or later,
55
+
This [flow](./twitter-solr/) shows how to index tweets with Solr using NiFi. Pre-requisites for this flow are NiFi 0.3.0 or later,
56
56
the creation of a Twitter application, and a running instance of Solr 5.1 or later with a tweets collection:
0 commit comments