Member since
02-19-2020
22
Posts
0
Kudos Received
2
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2604 | 04-26-2020 05:43 AM | |
7258 | 03-14-2020 10:51 AM |
05-25-2020
05:32 PM
Why don't you try with ExecuteStreamCommand as shown here: https://www.youtube.com/watch?v=rUJOS6LT5Jk&t=184s
... View more
04-26-2020
05:46 AM
You may follow this video for the complete instruction. https://www.youtube.com/watch?v=rUJOS6LT5Jk
... View more
04-26-2020
05:43 AM
You have to provide full path of your script in "Command Path" Attribute. All the flowfile arguments can be passed in "Command Arguments" Property. In below example, I am considering that I have a shell script created under /tmp directory with the name yourscript.sh This script should have all the logics inside to handle receiving arguments and other logics. Script Content (/tmp/yourscript.sh) #!/bin/bash echo $1 Expected Output: Just print the name of the FlowFile inside the flow file content. You may check this video for complete detail: https://www.youtube.com/watch?v=rUJOS6LT5Jk&t=27s
... View more
04-26-2020
05:30 AM
Hi Markushg, When you want to apply condition on any number of attributes based on a pattern match. Then you may consider using anyMatchingAttribute NiFi Function. Here is the link to the documentation: https://nifi.apache.org/docs/nifi-docs/html/expression-language-guide.html#anyattribute In your case, You may have to do something like as below: ${anyMatchingAttribute("syslog.structuredData*os"):equals('linux69')}
... View more
04-26-2020
05:22 AM
NiFi Templates are stored within flow.xml.gz file, you can refer to below screenshot from NIFi Documentation. flow.xml.gz is stored in the <</conf >>directory. In your case I can see the mount point is pointing to <</opt/nifi/nifi-current/conf >>directory The best way to manage Templates are from "Global Menu"->Templates
... View more
04-10-2020
10:00 PM
Here is a link of 5.5 hours of free Apache NiFi course. https://www.udemy.com/course/apache-nifi-latest-course/?couponCode=LATESTNIFI
... View more
04-10-2020
04:02 PM
Sure. Fortunately in this case I was able to explore answer myself. I would remember to open a new thread from next time.
... View more
04-10-2020
03:39 PM
To all the members who are asking if it is still valid, the answer is yes this seems to be still valid. I have extracted provenance data by connecting to same instance of NiFi rather than having multiple NiFi instance. https://www.youtube.com/watch?v=2v-H3WeaCkc
... View more
04-09-2020
01:29 PM
You connect to H2 database like any other database using JDB connection. Here is the link where you can find H2 driver and documentation. www.h2database.com/html/download.html By the way, I have also uploaded a video explaining step by step process on connecting to NiFi H2 database. You may check it out here. https://www.youtube.com/watch?v=tsAR2f4uGK4
... View more
03-14-2020
10:51 AM
Refer to this thread for similar question: https://community.cloudera.com/t5/Support-Questions/merge-too-csv-files-in-nifi/m-p/229259#M191116
... View more