What's the best way to run scheduled tasks in a Rails environment? Script/runner? Rake?

link|improve this question

39% accept rate
how often will the task be run? – Mike Breen Nov 12 '08 at 23:47
frequently! every few minutes – jes5199 Nov 13 '08 at 20:57
23  
For those coming here from Google, look beyond the accepted answer for better approaches. – jrdioko Jul 8 '11 at 22:54
feedback

10 Answers

up vote 22 down vote accepted

Assuming your tasks don't take too long to complete, just create a new controller with an action for each task. Implement the logic of the task as controller code, Then set up a cronjob at the OS level that uses wget to invoke the URL of this controller and action at the appropriate time intervals. The advantages of this method are : 1) you have full access to all your Rails objects just as in a normal controller. 2) you can develop and test just as you do normal actions. 3) you can also invoke your tasks adhoc from a simple web page. 4) You don't consume any more memory by firing up additional ruby/rails processes.

link|improve this answer
5  
How to prevent others from access this task ? If the task taking cpu and called it frequently will cause problems. – art Dec 12 '09 at 15:02
Same way you would for any other controller. Make sure you implement some sort of security - AuthLogic or restful_authentication, then add role management on top of that with acl9 or something. You can then you your rails app to serve all tasks via restful interface with security and stuff, just like any other web service. This gives things like: you can use your Domain to authenticate and let "server" user run tasks that are scheduled in cron or Scheduled Tasks if you use windows. Also this allows you to access same things throgh script/runner if you need to. Continued in the next comment. – Nick Gorbikoff Mar 12 '10 at 3:13
7  
I know this was a while ago, but this is definitely not the best way to do cron jobs anymore. Why go through the web interface, violating what the interface really represents, when there are plenty of other ways to access the Rails environment? – Matchu Nov 27 '10 at 23:49
5  
The qualification "assuming your tasks don't take too long to complete" seems like a HUGE one. Wouldn't it be better to use an approach that is more generally useful, and not only in those cases where tasks are very quick? That way you're not constantly reevaluating whether this or that task needs to be rewritten using a different approach. – iconoclast Apr 15 '11 at 1:44
12  
This old question is the top google result for "rails cron". This answer is far from the best approach. Please see the other responses for more sane suggestions. – Jim Garvin Jun 16 '11 at 19:47
show 2 more comments
feedback

I'm using the rake approach (as supported by heroku)

With a file called lib/tasks/cron.rake ..

task :cron => :environment do
  puts "Pulling new requests..."
  EdiListener.process_new_messages
  puts "done."
end

To execute from the command line, this is just "rake cron". This command can then be put on the operating system cron/task scheduler as desired.

link|improve this answer
What should the cron entry be for this case, so the OS knows the correct path to the rake task? – jrdioko Jul 8 '11 at 22:55
5  
NB: these days I'm using whenever (see Jim Garvin's answer), but a raw cron entry to run rake task would be something like: 30 4 * * * /bin/bash -l -c 'cd /opt/railsapp && RAILS_ENV=production rake cron --silent' – tardate Jul 12 '11 at 10:08
1  
How do you call this from the console? I did load "#{Rails.root}/lib/tasks/cron.rake" and rake cron, but got NameError: undefined local variable or method `cron' for main:Object – B Seven Jul 22 '11 at 15:40
1  
The problem with this approach is the :environment dependency. We have a very heavy Rails application that takes long to start up, our Rake is called every minute and consume more resources starting up the Rails environment that executing the task. I'd love to have an already started up Rails environment to be called through the cron, have to be something between the controller approach and the rake environment one. – fguillen Jan 17 at 9:52
feedback

I've used the extremely popular Whenever on projects that rely heavily on scheduled tasks, and it's great. It gives you a nice DSL to define your scheduled tasks instead of having to deal with crontab format. From the README:

Whenever is a Ruby gem that provides a clear syntax for writing and deploying cron jobs.

Example from the README:

every 3.hours do
  runner "MyModel.some_process"       
  rake "my:rake:task"                 
  command "/usr/bin/my_great_command"
end

every 1.day, :at => '4:30 am' do 
  runner "MyModel.task_to_run_at_four_thirty_in_the_morning"
end
link|improve this answer
Thanks, this seems the simplest and best solution. – brutuscat Oct 6 '11 at 17:27
1  
If it is run every minute the environment will be restarted everytime, which can be costly. It seems that github.com/ssoroka/scheduler_daemon avoids this. – lulalala Oct 20 '11 at 3:11
1  
+1 for keeping the cron configuration in with your version control system – brittohalloran Nov 22 '11 at 15:27
Anyone knows how this thing works? Timers? – Tony Feb 16 at 16:40
I think this is the best solution. If you're using rails, i think is better to write everything in rails. With this approach you can also forget about the cron task when changing servers, it moves with the app. – Adrian May 17 at 20:04
feedback

Recently Railscasts.com deployed some very interesting casts about this. They cover many cases. Watch the episodes and decide by yourself.

Episode 127 - Rake in background

Episode 128 - Starling and workling (This one was made for you)

Episode 129 - Custom Daemon

link|improve this answer
feedback

Use Craken (rake centric cron jobs)

link|improve this answer
This is cool tool, thank you. – Jirapong Feb 3 '11 at 1:55
Glad it helped! – Thibaut Barrère Feb 3 '11 at 20:59
feedback

script/runner and rake tasks are perfectly fine to run as cron jobs.

Here's one very important thing you must remember when running cron jobs. They probably won't be called from the root directory of your app. This means all your requires for files (as opposed to libraries) should be done with the explicit path: e.g. File.dirname(__FILE__) + "/other_file". This also means you have to know how to explicitly call them from another directory :-)

Check if your code supports being run from another directory with

# from ~
/path/to/ruby /path/to/app/script/runner -e development "MyClass.class_method"
/path/to/ruby /path/to/rake -f /path/to/app/Rakefile rake:task RAILS_ENV=development

Also, cron jobs probably don't run as you, so don't depend on any shortcut you put in .bashrc. But that's just a standard cron tip ;-)

link|improve this answer
feedback

Both will work fine. I usually use script/runner.

Here's an example:

0 6 * * * cd /var/www/apps/your_app/current; ./script/runner --environment production 'EmailSubscription.send_email_subscriptions' >> /var/www/apps/your_app/shared/log/send_email_subscriptions.log 2>&1

You can also write a pure-Ruby script to do this if you load the right config files to connect to your database.

One thing to keep in mind if memory is precious is that script/runner (or a Rake task that depends on 'environment') will load the entire Rails environment. If you only need to insert some records into the database, this will use memory you don't really have to. If you write your own script, you can avoid this. I haven't actually needed to do this yet, but I am considering it.

link|improve this answer
feedback

I use backgroundrb.

http://backgroundrb.rubyforge.org/

I use it to run scheduled tasks as well as tasks that take too long for the normal client/server relationship.

link|improve this answer
feedback

Here's how I have setup my cron tasks. I have one to make daily backups of SQL database (using rake) and another to expire cache once a month. Any output is logged in a file log/cron_log. My crontab looks like this:

crontab -l # command to print all cron tasks
crontab -e # command to edit/add cron tasks

# Contents of crontab
0 1 * * * cd /home/lenart/izziv. whiskas.si/current; /bin/sh cron_tasks >> log/cron_log 2>&1
0 0 1 * * cd /home/lenart/izziv.whiskas.si/current; /usr/bin/env /usr/local/bin/ruby script/runner -e production lib/monthly_cron.rb >> log/cron_log 2>&1

The first cron task makes daily db backups. The contents of cron_tasks are the following:

/usr/local/bin/rake db:backup RAILS_ENV=production; date; echo "END OF OUTPUT ----";

The second task was setup later and uses script/runner to expire cache once a month (lib/monthly_cron.rb):

#!/usr/local/bin/ruby
# Expire challenge cache
Challenge.force_expire_cache
puts "Expired cache for Challenges (Challenge.force_expire_cache) #{Time.now}"

I guess I could backup database some other way but so far it works for me :)

The paths to rake and ruby can vary on different servers. You can see where they are by using:

whereis ruby # -> ruby: /usr/local/bin/ruby
whereis rake # -> rake: /usr/local/bin/rake
link|improve this answer
feedback

I'm not really sure, I guess it depends on the task: how ofte, how complicated, how much direct communication with the rails project is needed etc. I guess if there was just "One Best Way" to do something, there wouldn't be so many different ways to do it... ;P

At my last job in a Rails project, we needed to make a batch invitation mailer (survey invitations, not spamming ;)), wich should send the planned mails whenever the server had time. I think we was going to use daemontools to run the rake tasks I had created.

Unfortunately, our company had some money problems and was "bought" by the main rival so the project was never completed, so I don't know what we would eventually have used.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.