Info |
---|
This document is only relevant for Avalon versions prior to 7.0 |
When Delayed Job starts hogging too much of the CPU and memory and load average goes up.
...
Take a look at the jobs that are currently running:
Code Block ps aux | grep delayed_job #or sudo service avalon_delayed_job status #You can also look at the stored pids here #but restarting delayed job should take care of it. cd tmp/pids
Kill Previous Delayed Job using a regular kill command and waiting a little while. If that doesn't work, ramp up to a kill -9.
Restart delayed job.
Code Block sudo service avalon_delayed_job start
...