Skip to content

Instantly share code, notes, and snippets.

@tsmango
Created May 27, 2010 02:33
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save tsmango/415369 to your computer and use it in GitHub Desktop.
Save tsmango/415369 to your computer and use it in GitHub Desktop.
# Redis
%w{6379}.each do |port|
God.watch do |w|
w.name = "redis"
w.interval = 30.seconds
w.start = "/etc/init.d/redis start"
w.stop = "/etc/init.d/redis stop"
w.restart = "/etc/init.d/redis restart"
w.start_grace = 10.seconds
w.restart_grace = 10.seconds
w.start_if do |start|
start.condition(:process_running) do |c|
c.interval = 5.seconds
c.running = false
end
end
end
end
# Resque
God.watch do |w|
w.name = "resque-1.8.0"
w.interval = 30.seconds
w.start = "cd /var/www/apps/limitedpressing/current && rake environment RAILS_ENV=production resque:work QUEUE=high,medium,low"
w.start_grace = 10.seconds
# retart if memory gets too high
w.transition(:up, :restart) do |on|
on.condition(:memory_usage) do |c|
c.above = 350.megabytes
c.times = 2
end
end
# determine the state on startup
w.transition(:init, { true => :up, false => :start }) do |on|
on.condition(:process_running) do |c|
c.running = true
end
end
# determine when process has finished starting
w.transition([:start, :restart], :up) do |on|
on.condition(:process_running) do |c|
c.running = true
c.interval = 5.seconds
end
# failsafe
on.condition(:tries) do |c|
c.times = 5
c.transition = :start
c.interval = 5.seconds
end
end
# start if process is not running
w.transition(:up, :start) do |on|
on.condition(:process_running) do |c|
c.running = false
end
end
end
@tsmango
Copy link
Author

tsmango commented Jun 3, 2010

Awesome. Thanks for the fork. I'll pull in your changes and update my post. And no problem, I mostly had a problem figuring out how to get the resque workers to get restarted on deploy though. That was a real pain in the ass for me. Thanks again!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment