A cron job for rails: best practices? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T14:53:24Z http://stackoverflow.com/feeds/question/285717 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/285717/a-cron-job-for-rails-best-practices 10 A cron job for rails: best practices? jes5199 2008-11-12T22:59:50Z 2009-06-15T11:40:50Z <p>What's the best way to run scheduled tasks in a Rails environment? Script/runner? Rake?</p> http://stackoverflow.com/questions/285717/a-cron-job-for-rails-best-practices/285870#285870 6 Answer by Freakent for A cron job for rails: best practices? Freakent 2008-11-12T23:56:38Z 2008-11-12T23:56:38Z <p>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.</p> http://stackoverflow.com/questions/285717/a-cron-job-for-rails-best-practices/285898#285898 2 Answer by salt.racer for A cron job for rails: best practices? salt.racer 2008-11-13T00:12:04Z 2008-11-13T00:12:04Z <p>I use backgroundrb.</p> <p><a href="http://backgroundrb.rubyforge.org/" rel="nofollow">http://backgroundrb.rubyforge.org/</a></p> <p>I use it to run scheduled tasks as well as tasks that take too long for the normal client/server relationship.</p> http://stackoverflow.com/questions/285717/a-cron-job-for-rails-best-practices/286050#286050 6 Answer by Ricardo Acras for A cron job for rails: best practices? Ricardo Acras 2008-11-13T01:56:42Z 2008-11-13T01:56:42Z <p>Recently Railscasts.com deployed some very interesting casts about this. They cover many cases. Watch the episodes and decide by yourself.</p> <p><a href="http://railscasts.com/episodes/127-rake-in-background" rel="nofollow">Episode 127 - Rake in background</a></p> <p><a href="http://railscasts.com/episodes/128-starling-and-workling" rel="nofollow">Episode 128 - Starling and workling</a> (This one was made for you)</p> <p><a href="http://railscasts.com/episodes/129-custom-daemon" rel="nofollow">Episode 129 - Custom Daemon</a></p> http://stackoverflow.com/questions/285717/a-cron-job-for-rails-best-practices/286489#286489 0 Answer by Stein Gauslaa Strindhaug for A cron job for rails: best practices? Stein Gauslaa Strindhaug 2008-11-13T08:11:20Z 2008-11-13T08:18:50Z <p>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 <em>"One Best Way"</em> to do something, there wouldn't be so many different ways to do it... ;P</p> <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 <a href="http://en.wikipedia.org/wiki/Daemontools" rel="nofollow">daemontools</a> to run the rake tasks I had created. </p> <p>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.</p> http://stackoverflow.com/questions/285717/a-cron-job-for-rails-best-practices/287107#287107 3 Answer by webmat for A cron job for rails: best practices? webmat 2008-11-13T14:43:53Z 2008-11-13T14:43:53Z <p>script/runner and rake tasks are perfectly fine to run as cron jobs.</p> <p>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 :-)</p> <p>Check if your code supports being run from another directory with </p> <pre><code># 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 </code></pre> <p>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 ;-)</p> http://stackoverflow.com/questions/285717/a-cron-job-for-rails-best-practices/290935#290935 2 Answer by Luke Francl for A cron job for rails: best practices? Luke Francl 2008-11-14T18:19:17Z 2008-11-14T18:19:17Z <p>Both will work fine. I usually use script/runner. </p> <p>Here's an example:</p> <p><code>0 6 * * * cd /var/www/apps/your_app/current; ./script/runner --environment production 'EmailSubscription.send_email_subscriptions' &gt;&gt; /var/www/apps/your_app/shared/log/send_email_subscriptions.log 2&gt;&amp;1</code></p> <p>You can also write a pure-Ruby script to do this if you load the right config files to connect to your database.</p> <p>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.</p> http://stackoverflow.com/questions/285717/a-cron-job-for-rails-best-practices/396688#396688 4 Answer by Thibaut Barrère for A cron job for rails: best practices? Thibaut Barrère 2008-12-28T21:11:22Z 2008-12-28T21:11:22Z <p>Use <a href="http://dougmcinnes.com/2008/07/14/craken/" rel="nofollow">Craken</a> (rake centric cron jobs)</p> http://stackoverflow.com/questions/285717/a-cron-job-for-rails-best-practices/480255#480255 1 Answer by Lenart for A cron job for rails: best practices? Lenart 2009-01-26T15:54:15Z 2009-01-26T15:54:15Z <p>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:</p> <pre><code>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 &gt;&gt; log/cron_log 2&gt;&amp;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 &gt;&gt; log/cron_log 2&gt;&amp;1 </code></pre> <p>The first cron task makes daily db backups. The contents of cron_tasks are the following:</p> <pre><code>/usr/local/bin/rake db:backup RAILS_ENV=production; date; echo "END OF OUTPUT ----"; </code></pre> <p>The second task was setup later and uses script/runner to expire cache once a month (lib/monthly_cron.rb):</p> <pre><code>#!/usr/local/bin/ruby # Expire challenge cache Challenge.force_expire_cache puts "Expired cache for Challenges (Challenge.force_expire_cache) #{Time.now}" </code></pre> <p>I guess I could backup database some other way but so far it works for me :)</p> <p>The <strong>paths</strong> to rake and ruby can vary on different servers. You can see where they are by using:</p> <pre><code>whereis ruby # -&gt; ruby: /usr/local/bin/ruby whereis rake # -&gt; rake: /usr/local/bin/rake </code></pre> http://stackoverflow.com/questions/285717/a-cron-job-for-rails-best-practices/995643#995643 1 Answer by tardate for A cron job for rails: best practices? tardate 2009-06-15T11:40:50Z 2009-06-15T11:40:50Z <p>I'm using the rake approach (as supported by <a href="http://docs.heroku.com/cron" rel="nofollow">heroku</a>)</p> <p>With a file called lib/tasks/cron.rake ..</p> <pre><code>task :cron =&gt; :environment do puts "Pulling new requests..." EdiListener.process_new_messages puts "done." end </code></pre> <p>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.</p>