Created 02-13-2017 07:22 AM
Hi All,
whats the best way to learn writing custom processors in nifi, looking for the documentation where the nifi internal framework and components are well explained. For example, what are controller services?
What is the different types of processors - for example what is the difference between GetXXX and FetchXXX processors?
Thanks,
Avijeet
Created 02-13-2017 01:06 PM
Here's a good HCC article describing the process to build a custom NiFi processor: https://community.hortonworks.com/articles/4318/build-custom-nifi-processor.html
If you want to use existing processors/code and modify for your own purpose, then many of the standard processors can be found here: https://github.com/apache/nifi/tree/master/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-proce...
If you check out these NiFi processors, you'll be able to view the code for getXXX versus fetchXXX in order to understand the difference (or to modify for your own custom use).
Created 02-13-2017 12:22 PM
Here's the link to nifi docs, https://nifi.apache.org/docs.html it has a lot of info but you can also search on this site as developers of nifi usually post a ton of material here https://community.hortonworks.com/spaces/63/data-flow-track.html?topics=Nifi&type=question
Created 02-13-2017 01:06 PM
Here's a good HCC article describing the process to build a custom NiFi processor: https://community.hortonworks.com/articles/4318/build-custom-nifi-processor.html
If you want to use existing processors/code and modify for your own purpose, then many of the standard processors can be found here: https://github.com/apache/nifi/tree/master/nifi-nar-bundles/nifi-standard-bundle/nifi-standard-proce...
If you check out these NiFi processors, you'll be able to view the code for getXXX versus fetchXXX in order to understand the difference (or to modify for your own custom use).