Simple Scheduler is a scheduling add-on that is designed to be used with Sidekiq and Heroku Scheduler. It gives you the ability to schedule tasks at any interval without adding a clock process. Heroku Scheduler only allows you to schedule tasks every 10 minutes, every hour, or every day.
Yes. We are using Simple Scheduler in production for scheduling tasks that run hourly, nightly, weekly, and every 10 minutes in Simple In/Out.
Every option we evaluated seems to have the same flaw: If your server is down, your job won't run.
Check out our intro blog post to learn more.
You must be using:
- Rails 5.0+
- ActiveJob
- Sidekiq
- Heroku Scheduler*
Both Active Job and Sidekiq::Worker classes can be queued by the scheduler.
* Not actually required, but you're on your own for scheduling the rake simple_scheduler
task to run every 10 minutes.
Add this line to your application's Gemfile:
gem "simple_scheduler"
And then execute:
$ bundle
Create the file config/simple_scheduler.yml
in your Rails project:
# Global configuration options. The `queue_ahead` and `tz` options can also be set on each task.
queue_ahead: 360 # Number of minutes to queue jobs into the future
queue_name: "default" # The Sidekiq queue name used by SimpleScheduler::FutureJob
tz: "America/Chicago" # The application time zone will be used by default if not set
# Runs once every 2 minutes starting at the top of the hour
simple_task:
class: "SomeActiveJob"
every: "2.minutes"
at: "*:00"
# Runs once every day at 4:00 AM. The job will expire after 23 hours, which means the
# job will not run if 23 hours passes (server downtime) before the job is actually run
overnight_task:
class: "SomeSidekiqWorker"
every: "1.day"
at: "4:00"
expires_after: "23.hours"
# Runs once every half hour, starting on the 30 min mark
half_hour_task:
class: "HalfHourTask"
every: "30.minutes"
at: "*:30"
# Runs once every week on Saturdays at 12:00 AM
weekly_task:
class: "WeeklyJob"
every: "1.week"
at: "Sat 0:00"
tz: "America/New_York"
Add the rake task to Heroku Scheduler and set it to run every 10 minutes:
rake simple_scheduler
It may be useful to point to a specific configuration file in non-production environments.
Use a custom configuration file by setting the SIMPLE_SCHEDULER_CONFIG
environment variable.
SIMPLE_SCHEDULER_CONFIG=config/simple_scheduler.staging.yml
The class name of the ActiveJob or Sidekiq::Worker. Your job or
worker class should accept the expected run time as a parameter
on the perform
method.
How frequently the task should be performed as an ActiveSupport duration definition.
"1.day"
"5.days"
"12.hours"
"20.minutes"
"1.week"
This is the starting point* for the :every
duration. This must be set so the expected
run times in the future can be determined without duplicating jobs already in the queue.
Valid string formats/examples:
"18:00"
"3:30"
"**:00"
"*:30"
"Sun 2:00" # [Sun|Mon|Tue|Wed|Thu|Fri|Sat]
* If you specify the hour of the day the job should run, it will only run in that hour,
so if you specify an :every
duration of less than 1.day
, the job will only run
when the run time hour matches the :at
time's hour.
See #17 for more info.
If your worker process is down for an extended period of time, you may not want certain jobs
to execute when the server comes back online. The :expires_after
value will be used
to determine if it's too late to run the job at the actual run time.
All jobs are scheduled in the future using the SimpleScheduler::FutureJob
. This
wrapper job does the work of evaluating the current time and determining if the
scheduled job should run. See Handling Expired Jobs.
The string should be in the form of an ActiveSupport duration.
"59.minutes"
"23.hours"
The :queue_ahead
is the number of minutes that the job should be scheduled into the future.
The default value is 360
, so Simple Scheduler will make sure you have scheduled jobs for
the next 6 hours. This allows for a major outage without losing track of jobs that were
supposed to run during that time.
There are always a minimum of 2 scheduled jobs for each scheduled task. This ensures there is always one job in the queue that can be used to determine the next run time, even if one of the two was executed during the 10 minute Heroku Scheduler wait time.
The :queue_ahead
can be set as a global configuration option or for each individual task.
Use :tz
to specify the time zone of your :at
time. If no time zone is specified, the Time.zone
default in your Rails app will be used when parsing the :at
time. A list of all the available
timezone identifiers can be obtained using TZInfo::Timezone.all_identifiers
.
The :tz
can be set as a global configuration option or for each individual task.
There is no guarantee that the job will run at the exact time given in the
configuration, so the time the job was scheduled to run will be passed to
the job. This allows you to handle situations where the current time doesn't
match the time it was expected to run. The scheduled_time
argument is optional.
class ExampleJob < ActiveJob::Base
# @param scheduled_time [Integer] The epoch time for when the job was scheduled to be run
def perform(scheduled_time)
puts Time.at(scheduled_time)
end
end
Simple Scheduler doesn't support specifying multiple days of the week or a specific day of the month.
You can use the scheduled_time
with a guard clause to ensure the job only runs on specific days.
Set up the jobs to run every day, even though we don't actually want them to run every day:
# config/simple_scheduler.yml
payroll:
class: "PayrollJob"
every: "1.day"
at: "0:00"
weekday_reports:
class: "WeekdayReportsJob"
every: "1.day"
at: "18:00"
Use a guard clause in each of our jobs to exit the job if it shouldn't run that day:
# A job that runs only on the 1st and 15th of the month.
class PayrollJob < ActiveJob::Base
# @param scheduled_time [Integer] The epoch time for when the job was scheduled to be run
def perform(scheduled_time)
# Exit the job unless it's the 1st or 15th day of the month
day_of_the_month = Time.at(scheduled_time).day
return unless day_of_the_month == 1 || day_of_the_month == 15
# Perform the job...
end
end
# A job that runs only on weekdays, Monday - Friday.
class WeekdayReportsJob < ActiveJob::Base
# @param scheduled_time [Integer] The epoch time for when the job was scheduled to be run
def perform(scheduled_time)
# Exit the job unless it's Monday (1), Tuesday (2), Wednesday (3), Thursday (4), or Friday (5)
day_of_the_week = Time.at(scheduled_time).wday
return unless (1..5).include?(day_of_the_week)
# Perform the job...
end
end
If you assign the :expires_after
option to your task, you may want to know if
a job wasn't run because it expires. Add this block to an initializer file:
# config/initializers/simple_scheduler.rb
# Block for handling an expired task from Simple Scheduler
# @param exception [SimpleScheduler::FutureJob::Expired]
# @see http://www.rubydoc.info/github/simplymadeapps/simple_scheduler/master/SimpleScheduler/FutureJob/Expired
SimpleScheduler.expired_task do |exception|
ExceptionNotifier.notify_exception(
exception,
data: {
task: exception.task.name,
scheduled: exception.scheduled_time,
actual: exception.run_time
}
)
end
Any changes made to the YAML configuration file will be picked up by Simple Scheduler
the next time rake simple_scheduler
is run. Depending on the changes, you may need
to reset the current job queue.
Reasons you may need to reset the job queue:
- Renaming a job's class
- Deleting a scheduled task
- Changing the task's run time interval
- Changing the day of the week the job is run
- Changing the
queue_name
in the config file
A rake task exists to delete all existing scheduled jobs and queue them back up from scratch:
rake simple_scheduler:reset
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
The gem is available as open source under the terms of the MIT License.