What's the best way to run scheduled tasks in a Rails environment? Script/runner? Rake?
|
|
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 you:
|
|||||||||||||||||||||
|
|
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:
Example from the README:
|
|||||||||||||||||||
|
|
I'm using the rake approach (as supported by heroku) With a file called lib/tasks/cron.rake ..
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. |
|||||||||||||||
|
|
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) |
||||
|
|
|
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
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 ;-) |
|||
|
|
|
Use Craken (rake centric cron jobs) |
|||||||
|
|
|
Both will work fine. I usually use script/runner. Here's an example:
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. |
|||
|
|
|
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. |
|||
|
|
|
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:
The first cron task makes daily db backups. The contents of cron_tasks are the following:
The second task was setup later and uses script/runner to expire cache once a month (lib/monthly_cron.rb):
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:
|
|||
|
|
|
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. |
||||
|
|
|
Probably the best way to do it is using rake to write the tasks you need and the just execute it via command line. You can see a very helpful video at railscasts Also take a look at this other resources: |
|||
|
|
|
The problem with whenever (and cron) is that it reloads the rails environment every time it's executed, which is a real problem when your tasks are frequent or have a lot of initialization work to do. I have had issues in production because of this and must warn you. Rufus scheduler does it for me ( https://github.com/jmettraux/rufus-scheduler ) When I have long jobs to run, I use it with delayed_job ( https://github.com/collectiveidea/delayed_job ) I hope this helps! |
|||
|
|
|
A lot of the answers here presume that the schedule will be purely time-based. You can schedule an action to occur triggered by file changes using the Guard gem. A really common example is scheduling Rspec tests when files change for TDD. Check out the github repository for more info: https://github.com/guard/guard |
|||
|
|