Skip to content

Commit 1b64012

Browse files
committed
initial commit
1 parent 4f3c9be commit 1b64012

File tree

5 files changed

+3327
-16
lines changed

5 files changed

+3327
-16
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Apache NiFi example flows.
55

66
#### collect-stream-logs
77

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.
99

1010
1. Ingest logs from folders.
1111
2. Listen for syslogs on UDP port.
@@ -14,43 +14,43 @@ This [flow](./collect-stream-logs/README.md) shows workflow for log collection,
1414

1515
#### csv-to-json
1616

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.
1818

1919
#### decompression
2020

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
2222
decompressing it using a loop until the archived file is extracted out.
2323

2424
#### http-get-route
2525

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
2727
on that extracted value, prepares to write to disk using PutFile.
2828

2929
#### invoke-http-route
3030

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
3232
based on the status code returned from the invocation. In this example, every 30 seconds a FlowFile is produced,
3333
an attribute is added to the FlowFile that sets q=nifi, the google.com is invoked for that FlowFile, and any response
3434
with a 200 is routed to a relationship called 200.
3535

3636
#### retry-count-loop
3737

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
3939
configured threshold it will route to a 'Limit Exceeded' relationship otherwise it will route to 'retry'.
4040
Great for processes which you only want to run X number of times before you give up.
4141

4242
#### split-route
4343

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,
4545
merging the less important files together for storage somewhere, and sending the higher priority files down
4646
another path to take immediate action.
4747

4848
#### twitter-garden-hose
4949

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
5151
then routes only those items that are actually tweets.
5252

5353
#### twitter-solr
5454

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,
5656
the creation of a Twitter application, and a running instance of Solr 5.1 or later with a tweets collection:

0 commit comments

Comments
 (0)