I have a rake task that must be always run. But sometimes this task can fail. And I need auto restart it? I think I need use God gem or maybe there are other ways to solve this problem?
Auto restart rake task if it give exception
1.3k Views Asked by zolter At
3
There are 3 best solutions below
0

If you are using ubuntu you can use upstart quite easily with a config like this:
start on startup
stop on shutdown
pre-start script
cd /var/www/my-app/current
end script
script
exec RAILS_ENV=production bundle exec rake my_task_name
end script
Read more here: http://www.stackednotion.com/blog/2012/02/09/easy-rails-daemons-with-upstart/
In my case God gem is what I need, thank you for your answers!