resque-scheduler
resque-scheduler copied to clipboard
A light-weight job scheduling system built on top of Resque
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. Release notes Sourced from rubocop's releases. RuboCop 0.81 New features #7299: Add new Lint/RaiseException cop. (@denys281) #7793: Prefer include? over...
I have this deprecation with Resque.remove_delayed ` Pipelining commands on a Redis instance is deprecated and will be removed in Redis 5.0.0. redis.pipelined do redis.get("key") end should be replaced by...
Hello, I've implemented the possibility for the job to declare it's schedule so it's self contained.
Fixes #553. In general, a better and more accepted approach to the master locking. Redis documentation even states: > The command SET resource-name anystring NX EX max-lock-time is a simple...
Feature based on https://github.com/resque/resque-scheduler/issues/605. Since rufus-scheduler allows for numeric values for `every`, durations can be used like `30.minutes` and `1.hour`.
If a bad crontab is published to a schedule this will blow up and cause the process to become corrupted. This causes lots of schedules to be missed.
We had this production problem yesterday where we discovered that the scheduled tasks are not executed even though the scheduler is running. After investigation it turned out that the master...
This allows resque scheduler to set the queue correctly for ActiveJobs when resque schedule's YAML configuration does not set the queue. Depends on this resque PR: https://github.com/resque/resque/pull/1713