2012-12-23 17:38:04 +01:00
|
|
|
require "resque/tasks"
|
|
|
|
|
2012-12-30 14:47:02 +01:00
|
|
|
def run_worker(queue, count = 1)
|
|
|
|
puts "Starting #{count} worker(s) with QUEUE: #{queue}"
|
2021-03-01 15:27:26 +01:00
|
|
|
ops = { :pgroup => true, :err => ["log/resque_worker_foodsoft_notifier.log", "a"],
|
|
|
|
:out => ["log/resque_worker_foodsoft_notifier.log", "a"] }
|
|
|
|
env_vars = { "QUEUE" => queue.to_s, "PIDFILE" => "tmp/pids/resque_worker_foodsoft_notifier.pid" }
|
2012-12-30 14:47:02 +01:00
|
|
|
count.times {
|
|
|
|
## Using Kernel.spawn and Process.detach because regular system() call would
|
|
|
|
## cause the processes to quit when capistrano finishes
|
2013-01-07 13:44:46 +01:00
|
|
|
pid = spawn(env_vars, "bundle exec rake resque:work", ops)
|
2012-12-30 14:47:02 +01:00
|
|
|
Process.detach(pid)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
namespace :resque do
|
|
|
|
task :setup => :environment
|
|
|
|
|
|
|
|
desc "Restart running workers"
|
|
|
|
task :restart_workers do
|
|
|
|
Rake::Task['resque:stop_workers'].invoke
|
|
|
|
Rake::Task['resque:start_workers'].invoke
|
|
|
|
end
|
2021-03-01 15:27:26 +01:00
|
|
|
|
2012-12-30 14:47:02 +01:00
|
|
|
desc "Quit running workers"
|
|
|
|
task :stop_workers do
|
|
|
|
pids = File.read('tmp/pids/resque_worker_foodsoft_notifier.pid').split("\n")
|
|
|
|
if pids.empty?
|
|
|
|
puts "No workers to kill"
|
|
|
|
else
|
|
|
|
syscmd = "kill -s QUIT #{pids.join(' ')}"
|
|
|
|
puts "Running syscmd: #{syscmd}"
|
|
|
|
system(syscmd)
|
|
|
|
end
|
|
|
|
end
|
2021-03-01 15:27:26 +01:00
|
|
|
|
2012-12-30 14:47:02 +01:00
|
|
|
desc "Start workers"
|
|
|
|
task :start_workers do
|
2021-03-01 15:27:26 +01:00
|
|
|
run_worker("foodsoft_notifier")
|
2012-12-30 14:47:02 +01:00
|
|
|
end
|
|
|
|
end
|