Created 10-25-2016 03:29 PM
I pulled in a large number of files into nifi using the getFile processor... I am looking to store these files in HDFS using putHDFS. The process ran overnight and didn't have any back pressure set so the queue got backed up. It seems that this is causing threads to hang when trying to start any processor.
I am also unable to empty the queue... the process just hangs indefinitely at 0%.
Some things I have tried so far:
Does anyone have any suggestions for what I should do next? Has anyone run into this issue before? I am on nifi version 0.6.1. Thanks for you help! 🙂
Created 10-25-2016 06:24 PM
Do you still have the original source of data outside of NiFi?
If so, you could completely wipe your NiFi back to a clean slate by stoping NiFi and deleting all of the "_repository" directories and restarting. Then you could configure appropriate back-pressure before trying to pick up these files again.
If that is not an option you probably need to figure out what is causing things to hang, is it going out of memory and showing exceptions in the nifi-app.log?
Created 10-25-2016 06:24 PM
Do you still have the original source of data outside of NiFi?
If so, you could completely wipe your NiFi back to a clean slate by stoping NiFi and deleting all of the "_repository" directories and restarting. Then you could configure appropriate back-pressure before trying to pick up these files again.
If that is not an option you probably need to figure out what is causing things to hang, is it going out of memory and showing exceptions in the nifi-app.log?
Created 10-27-2016 03:41 PM
This worked for me in combination with restarted ActiveMQ... thanks!