A
A
Anton Misyagin2015-04-20 06:29:43
ruby
Anton Misyagin, 2015-04-20 06:29:43

How to run resque:scheduler on Windows?

Windows 8. I'm trying to attach a task scheduler to the site.
gemfile

gem 'resque', :require => 'resque/server'
gem 'resque_mailer'
gem 'resque-scheduler'

lib/tasks/resque.rake
require 'resque/tasks' 
require 'resque/scheduler/tasks'
task "resque:setup" => :environment

namespace :resque do
  task :setup do
    require 'resque'

    # you probably already have this somewhere
    # Resque.redis = 'localhost:6379'
  end

  task :setup_schedule => :setup do
    require 'resque-scheduler'

    # If you want to be able to dynamically change the schedule,
    # uncomment this line.  A dynamic schedule can be updated via the
    # Resque::Scheduler.set_schedule (and remove_schedule) methods.
    # When dynamic is set to true, the scheduler process looks for
    # schedule changes and applies them on the fly.
    # Note: This feature is only available in >=2.0.0.
    # Resque::Scheduler.dynamic = true

    # The schedule doesn't need to be stored in a YAML, it just needs to
    # be a hash.  YAML is usually the easiest.
    Resque.schedule = YAML.load_file("#{Rails.root}/config/rescue_schedule.yml")

    # If your schedule already has +queue+ set for each job, you don't
    # need to require your jobs.  This can be an advantage since it's
    # less code that resque-scheduler needs to know about. But in a small
    # project, it's usually easier to just include you job classes here.
    # So, something like this:
    # require 'jobs'
  end

  task :scheduler_setup => :setup_schedule
end

config/resque_schedule.yml
send_sms_ru_balance:
  cron: "30 6 * * 1"
  class: "SendSmsRuBalance"
  every:
    - '1h'
    - :first_in: '10s' 
  queue: low
  description: "Отправка баланса sms.ru на почту"

app/workers/send_sms_ru_balance.rb
class SendSmsRuBalance
  @queue = :send_sms_balance
  def self.perform
    AdminMailer.send_sms_balance.deliver_now
  end
end

I start the scheduler:
rake resque:scheduler
Gives an error
unsupported signal SIGUSR1

What am I doing wrong?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Anton Misyagin, 2015-04-24
@sunnmas

gem clockwork / It works great with resque. and run under windows

V
Viktor Vsk, 2015-04-20
@viktorvsk

What am I doing wrong?

You are using windows.
Here or vagrant, or endure all hardships and hardships.
For example, read a similar topic:
https://github.com/mperham/sidekiq/issues/205

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question