forked from sidekiq/sidekiq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscheduling.rb
47 lines (37 loc) · 1.11 KB
/
scheduling.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Sidekiq defers scheduling cron-like tasks to other, better suited gems.
# If you want to run a job regularly, here's an example
# of using the 'whenever' gem to push jobs to Sidekiq
# regularly.
class MyWorker
include Sidekiq::Worker
def perform(count)
puts "Job ##{count}: Late night, so tired..."
end
def self.late_night_work
10.times do |x|
perform_async(x)
end
end
end
# Kick off a bunch of jobs early in the morning
every 1.day, :at => '4:30 am' do
runner "MyWorker.late_night_work"
end
class HourlyWorker
include Sidekiq::Worker
def perform
cleanup_database
format_hard_drive
end
end
every :hour do # Many shortcuts available: :hour, :day, :month, :year, :reboot
runner "HourlyWorker.perform_async"
end
# Using the runner command loads an extra rails instance
# If you want to avoid this you can use the sidekiq-client-cli gem which is a commmand line sidekiq client
# Define a new job_type
job_type :sidekiq, "cd :path && RAILS_ENV=:environment bundle exec sidekiq-client :task :output"
# Add the worker to the queue directly
every :hour do
sidekiq "push HourlyWorker"
end