- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
My Custom Processor is not visible in the Nifi UI
- Labels:
-
Apache NiFi
Created ‎10-04-2018 10:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
When I add a new custom processor in the code, At Nifi UI processor list is shown but the processor that I created is not coming in the list. Although it is added one time in the UI but when I am trying to add it again it is not coming in the processor list.
And when I am trying to copy the existing processor then it says, not a valid processor type. What is wrong here?
Created ‎10-04-2018 02:28 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This is because I have not made the entry of that processor in below file
/src/main/resources/META-INF/services/org.apache.nifi.processor.Processor
We should make entry of processor in that file with the complete package path for e.g. org.nifi.processors.FileModifierProcessor
Created ‎10-04-2018 02:28 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This is because I have not made the entry of that processor in below file
/src/main/resources/META-INF/services/org.apache.nifi.processor.Processor
We should make entry of processor in that file with the complete package path for e.g. org.nifi.processors.FileModifierProcessor
