Auto restart rake task if it give exception

1.3k Views Asked by At

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?

3

There are 3 best solutions below

0
On BEST ANSWER

In my case God gem is what I need, thank you for your answers!

0
On

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/

0
On

It all depends on your problem, but how about pure Ruby solution:

begin
  puts "Start"
  raise "BOOOM"
rescue Exception => e
  puts e.message
  sleep(2)
  retry
end

Just retry you begin block each time you catch an exception.