Hi,
I'm programming of custom NiFi Processor which extends
org.apache.nifi.processor.AbstractProcessor
I don't want the processor to repeat the same iteration, so how to programmatically stop the processor after transfer the FlowFile to the appropriate destination processor?
I read about
System.exit();
But it hangs up my NiFi.. How to do it correctly?
Thanks!