resque-scheduler icon indicating copy to clipboard operation
resque-scheduler copied to clipboard

A light-weight job scheduling system built on top of Resque

Results 84 resque-scheduler issues
Sort by recently updated
recently updated
newest added

It seem's like Resque::Scheduler::Lock::Resilient ignores namespaces, set via Resque.redis.namespace. So resque_scheduler_master_lock is created in global namespace. So it's not possible to use multiple stages with the same redis database only...

bug

Hi. I am migrating my project to Ruby 2.0 and meet this problem: Sheduled jods hangs after start from Scheduled Tab under Ruby 2.0.0 Under 1.9.3 all work ok. And...

bug

Hi, I'm using `resque-scheduler` to at least enqueue each minutes a job. This job could be called with different parameters (for example, I'm passing a different path). Now when I'm...

feature

From reading the source, scheduler is going to [handle_delayed_items](https://github.com/bvandenbos/resque-scheduler/blob/master/lib/resque/scheduler.rb#L157) each 5 seconds (sleep interval). This method is going to take **the next timestamp** from the queue and process all tasks...

feature

We can very easily see the status of workers. It will be great to see scheduler status that it is working or not under schedule tab in resque-web UI. Thanks

feature

Nasty gotcha that I was completely unaware of until now. Scheduled jobs work fine. It's jobs created via `enqueue_at` and `enqueue_in` that fail. Flat-out kills the scheduler job. Stack trace...

documentation

Couldn't start my server after installing resque-scheduler. Versions: Using resque 1.25.2 Using rufus-scheduler 3.0.9 Using resque-scheduler 4.0.0 Gemfile: gem 'resque', :require => "resque/server" gem 'resque-scheduler' Stack trace: /Users/Will/.rvm/gems/ruby-2.0.0-p481@railstutorial_rails_4_0/gems/resque-1.25.2/lib/resque/tasks.rb:4:in `': undefined...

I'm currently running Rails 4.2.0 and have a number of jobs tied to a specific class. When I call `Resque.scheduled_at(class_name)`. I'm getting an empty array returned. I know the jobs...

Test case for this: ``` class ActiveJobTest < ActiveJob::Base queue_as :test_queue def self.queue queue_name end def perform; end end timestamp = 5.minutes.from_now ActiveJobTest.set(wait_until: timestamp).perform_later klass = ActiveJob::QueueAdapters::ResqueAdapter::JobWrapper jobs = Resque.delayed_timestamp_peek(timestamp,...

I followed all instructions on the README to show up the "Delayed" and "Schedule" tabs on the resque-web interface, but nothing! Here's the imported gems: ``` gem 'resque', '~> 1.25.2',...