Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

NiFi: programmatically stop the Custom Processor

avatar
New Member

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!

1 ACCEPTED SOLUTION

avatar
New Member

Okay, here is answer to my question:

https://stackoverflow.com/questions/44153120/how-to-turn-off-nifi-processor-schedule

Basically I just used CRON scheduling strategy and setted expression to run only once in certain day and time.

View solution in original post

1 REPLY 1

avatar
New Member

Okay, here is answer to my question:

https://stackoverflow.com/questions/44153120/how-to-turn-off-nifi-processor-schedule

Basically I just used CRON scheduling strategy and setted expression to run only once in certain day and time.