Member since
01-11-2016
355
Posts
230
Kudos Received
74
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
8212 | 06-19-2018 08:52 AM | |
3160 | 06-13-2018 07:54 AM | |
3595 | 06-02-2018 06:27 PM | |
3915 | 05-01-2018 12:28 PM | |
5423 | 04-24-2018 11:38 AM |
02-01-2018
04:11 PM
2 Kudos
Hi @David Doran, I am not sure there out of the box solution to your problem but there several assets you can use to implement this. NiFi 1.5/HDF 3.1 introduced Variable Registry to handle this use case : https://cwiki.apache.org/confluence/display/NIFI/Variable+Registry https://community.hortonworks.com/articles/154951/introduce-a-ui-driven-variable-registry-starting-f.html You have also a new flow registry that can be use as a repository to deploy these flows. Here an article that shows how to combine these two features : https://medium.com/@abdelkrim.hadjidj/fdlc-towards-flow-development-life-cycle-with-nifi-registries-82e1ee866fab Finally look to NiPyAPI for scripting these actions : https://github.com/Chaffelson/nipyapi https://community.hortonworks.com/articles/167364/nifi-sdlc-automation-in-python-with-nipyapi-part-1.html Thanks
... View more
01-11-2018
06:41 PM
Hi @Ranith Ranawaka In your screenshot you are using 'equals' as a condition rather than 'lt'. Make sure to use the right relation. Also, you need to add the attribute maxTimestamp to the flowfile.
... View more
01-09-2018
08:38 PM
Hi @Ranith Ranawaka You can use the state and conditions features of the UpdateAttribute processor to implement this https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-update-attribute-nar/1.4.0/org.apache.nifi.processors.attributes.UpdateAttribute/additionalDetails.html
... View more
01-08-2018
11:43 PM
2 Kudos
Hi @dhieru singh The action should be seq = 0 and not $(getStateValue("seq")) = 0.
... View more
12-09-2017
05:25 PM
Hi @mayki wogno I didn't test it but you should be able to do it. At least RecordReader support it : https://community.hortonworks.com/questions/113959/use-nifi-to-change-the-format-of-numeric-date-and.html
... View more
12-09-2017
04:40 PM
@Arullaldivakar Jayapalan For 1, I think you can use Rules feature of UpdateAttribute : https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi/nifi-update-attribute-nar/1.4.0/org.apache.nifi.processors.attributes.UpdateAttribute/additionalDetails.html You can for instance add a rule to compare between current date (now(YYYYMMDD) and the one stored in the state. If it's different, set seq to zero. You can have three attributes for instance Date Seq Filename which is a concat of the two For storing (date,max), I think the best is to use an external data store (MySQL for instance) and use NiFi to store the correct values. NiFi is not meant to keep data ... it's a data mover like DHL. Please let me know if you succeed in implementing this. Thanks
... View more
12-08-2017
08:12 PM
2 Kudos
Hi @Arullaldivakar Jayapalan You can do this with UpdateAttribute processor and the state feature. Configure it as below As you can see the results has a filename attribute as you want Does this answer your question?
... View more
12-05-2017
08:08 AM
By convert I meant "create an article". Sorry for the confusion
... View more
12-05-2017
07:54 AM
@Bjorn Olsen you can convert your question to an article to have more visbility
... View more