Skip to content

Instantly share code, notes, and snippets.

@rchampourlier
Created March 16, 2012 18:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rchampourlier/2051790 to your computer and use it in GitHub Desktop.
Save rchampourlier/2051790 to your computer and use it in GitHub Desktop.
God configuration file for delayed_job, with rbenv (ERB generator, usable within Capistrano recipes)
# == God config file for delayed_job
#
# http://god.rubyforge.org/
#
# Config mix from:
# - http://def-end.com/post/10440978748/god-config-for-delayed-job
# - https://groups.google.com/forum/?fromgroups#!topic/delayed_job/VtsFwH3ePiI
# - https://github.com/blog/229-dj-god (not so much, since I wanted to use the script)
#
# Modified by Romain Champourlier (romain@softr.li)
#
# God config file generator for delayed_job to be used with Capistrano to deploy apps
# with God monitoring.
#
# REFERENCES
# - Useful documentation on script/delayed_job:
# https://github.com/collectiveidea/delayed_job/wiki/Delayed-job-command-details
CURRENT_DIR = "<%= current_path %>"
SHARED_DIR = "<%= shared_path %>"
LOG_DIR = "<%= log_path %>"
PIDS_DIR = "<%= pids_path %>"
CMD_PREFIX = "PATH=/home/deployer/.rbenv/shims:/home/deployer/.rbenv/bin:$PATH"
CMD = "cd #{CURRENT_DIR}; /usr/bin/env RAILS_ENV=<%= stage %> #{CURRENT_DIR}/script/delayed_job"
<%= background_workers %>.times do |num|
God.watch do |w|
w.dir = "<%= current_path %>"
w.group = "<%= application %>"
w.name = w.group + "-delayed-job-#{num}"
w.uid = '<%= user %>'
w.gid = '<%= group %>'
w.start = "#{CMD} -i #{num} --pid-dir=#{PIDS_DIR} start"
w.start_grace = 30.seconds
w.restart_grace = 30.seconds
w.stop = "#{CMD} stop"
w.log = "#{LOG_DIR}/god_delayed_job.#{num}.log"
w.pid_file = "#{PIDS_DIR}/delayed_job.#{num}.pid"
w.interval = 15.seconds
w.behavior(:clean_pid_file)
w.start_if do |start|
start.condition(:process_running) do |c|
c.interval = 5.seconds
c.running = false
end
end
w.restart_if do |restart|
restart.condition(:memory_usage) do |c|
c.above = 300.megabytes
c.times = [3, 5] # 3 out of 5 intervals
end
restart.condition(:cpu_usage) do |c|
c.above = 50.percent
c.times = 5
end
end
# lifecycle
w.lifecycle do |on|
on.condition(:flapping) do |c|
c.to_state = [:start, :restart]
c.times = 5
c.within = 5.minute
c.transition = :unmonitored
c.retry_in = 10.minutes
c.retry_times = 5
c.retry_within = 2.hours
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
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment