"Whenever" gem running cron jobs on Heroku
I created an app that uses the whenever gem. The gem creates cron jobs. I got it working locally but can't seem to get it working on heroku cedar. What's the command to do this?
running:
heroku run whenever --update-crontab job1
doesn't work
Short answer: use the scheduler add-on: http://addons.heroku.com/scheduler
Long answer: When you do heroku run, we
- spin up a dyno
- put your code on it
- execute your command, wait for it to finish
- throw the dyno away
Any changes you made to crontab would be immediately thrown away. Everything is ephemeral, you cannot edit files on heroku, just push new code.
You need to add Heroku Scheduler addon.
You can add it directly from your dashboard or using following commands:
-
install the
add-on
:heroku addons:create scheduler:standard
-
Create a rake task in
lib/tasks
# lib/tasks/scheduler.rake task :send_reminders => :environment do User.send_reminders end
-
Schedule job
- Visit Heroku Dashboard
- Open your app
- Select Scheduler from
add-ons
list -
Click Add Job, enter a task and select frequency.
e.g. Add
rake send_reminders
, select"Daily"
and"00:00"
to send reminders every day at midnight.
If you want to:
- Use
Heroku Scheduler
- Run tasks every minute (not 10 min)
- Don't care about dyno hours
This was my solution hack to run jobs every minute - assuming the task completes in under 60 seconds.
task start_my_service: :environment do
1.upto(9) do |iteration|
start_time = DateTime.now
Services::MyService.call
end_time = DateTime.now
wait_time = 60 - ((end_time - start_time) * 24 * 60 * 60).to_i
sleep wait_time if wait_time > 0
end
end
The other answers specify you should use the Heroku Scheduler add-on, and it is able to run a background tasks indeed, but it doesn't support the flexibility of cron.
There's another add-on, called Cron To Go, that is able to run your jobs on one-off dynos with cron's flexibility. You can also specify a timezone for your job and get notifications (email or webhook) when job fail, succeed or start.
(Full disclosure - I work for the company that created and operates Cron To Go)