I can't exactly find how to set my recurrence rule to initiate the job every 2 hours. Currently I have my job to run at 3am every day (I think) using something like this in my Sidekiq worker class:
recurrence do
daily.hour_of_day(3)
end
What's the best way of making this run every 2 hours or every hour? This uses the icecube
gem underneath the hood, I believe.
Have you tried
hourly(2)
?It is in the icecube's README, but I haven't tried it yet.
You could also do something like that:
But IMHO
hourly(2)
is the better choice.Another option without Sidetiq is to add
self.perform_in(2.hours)
before ending theperform
method.UPDATE:
https://github.com/tobiassvn/sidetiq/wiki/Known-Issues
So, it is better to use the more explicit way: