2012-06-22 06:32:28 +00:00
|
|
|
#developer pls change here
|
2012-10-01 13:09:09 +00:00
|
|
|
rails_root = "/home/nccu/stage/NCCU" #keep this blank when development
|
2012-06-22 06:32:28 +00:00
|
|
|
|
2012-06-29 09:42:36 +00:00
|
|
|
development_uid = 'kaito' #when dev
|
|
|
|
development_gid = 'staff' #when dev
|
2012-06-22 06:32:28 +00:00
|
|
|
|
2012-06-29 09:42:36 +00:00
|
|
|
#rails_env = "developement"
|
|
|
|
rails_env = "production"
|
2012-06-22 06:32:28 +00:00
|
|
|
|
2012-06-29 09:42:36 +00:00
|
|
|
development_rails_root = File.expand_path("..",File.dirname(__FILE__))
|
|
|
|
#rails_root = (rails_env == 'production' )? production_rails_root : development_rails_root
|
2012-05-08 03:31:35 +00:00
|
|
|
num_workers = rails_env == 'production' ? 5 : 2
|
|
|
|
|
|
|
|
num_workers.times do |num|
|
|
|
|
God.watch do |w|
|
2012-07-09 08:02:59 +00:00
|
|
|
|
2012-06-29 09:42:36 +00:00
|
|
|
w.dir = rails_root
|
|
|
|
w.name = "resque-#{num}"
|
2012-10-01 13:09:09 +00:00
|
|
|
w.group = 'resque-stage'
|
2012-07-09 08:02:59 +00:00
|
|
|
|
2012-05-08 03:31:35 +00:00
|
|
|
w.interval = 30.seconds
|
2012-06-29 09:42:36 +00:00
|
|
|
w.env = {"QUEUE"=>"critical,high,low", "RAILS_ENV"=>rails_env}
|
|
|
|
w.start = "rake -f #{rails_root}/Rakefile resque:work QUEUE=* RAILS_ENV=#{rails_env}"
|
2012-05-08 03:31:35 +00:00
|
|
|
|
2012-06-29 09:42:36 +00:00
|
|
|
w.uid = (rails_env == 'production' )? "root" : development_uid
|
|
|
|
w.gid = (rails_env == 'production' )? "root" : development_gid
|
|
|
|
|
2012-10-01 13:09:09 +00:00
|
|
|
w.log = (rails_env == 'production' )? "/var/log/#{w.name}-stage.log":"#{rails_root}/log/#{w.name}.log"
|
2012-05-08 03:31:35 +00:00
|
|
|
|
|
|
|
# restart 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
|
2012-06-29 09:42:36 +00:00
|
|
|
end
|
|
|
|
|