I trying to import my custom processor in Syncfusion Integration platform.
Since Syncfusion integration is based on Apache NiFi, I try to put compiled processor (i.e .nar file) to lib directory:
/syncfusion_location/SDK/NIFI/lib
Then restart Syncfusion. But I can't find my processor in processors list.
When I do this in pure NiFi import works fine (also that way is described in NiFi docs).
What I'm doing wrong with Syncfusion?
I think they doing Check "custom" word in processor type.
If that word present in that type then UI show your processor.
For example:
If your processor type like below.
org.apache.nifi.processors.MyProcessor.Type
then it doesn't show in your UI.
If you change that like this.
org.apache.nifi.processors.custom.MyProcessor.Type
then it will show your processor in UI.
Let me know if you face any issues