github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

collectiveidea / delayed_job forked from tobi/delayed_job

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 399
    • 134
  • Source
  • Commits
  • Network (134)
  • Issues (5)
  • Downloads (5)
  • Wiki (1)
  • Graphs
  • Branch: master

click here to add a description

click here to add a homepage

  • Branches (1)
    • master ✓
  • Tags (5)
    • v1.8.4
    • v1.8.3
    • v1.8.2
    • v1.8.1
    • v1.8.0
Sending Request…
Enable Donations

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.

Database based asynchronously priority queue system -- Extracted from Shopify — Read more

  cancel

http://groups.google.com/group/delayed_job

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

Fix error message when trying to send_later on a method that doesn't exist 
brandon (author)
Mon Feb 08 06:12:43 -0800 2010
commit  c7ce97ad2b857d33aa864cd629e3d1ca7a2a319c
tree    0ed7046b043af4b4572ce919d3866315995d9959
parent  7bec196b91187e30556a50395cc251d3ac967093
delayed_job /
name age
history
message
file .gitignore Fri Nov 28 22:06:07 -0800 2008 Made a gem out of delayed_job so I can use it i... [jaknowlden]
file MIT-LICENSE Sun Feb 17 13:01:35 -0800 2008 Initial extraction [tobi]
file README.textile Fri Feb 05 12:10:49 -0800 2010 Instructing user to setup a backend as part of ... [jqr]
file Rakefile Wed Jan 20 06:06:39 -0800 2010 List the daemons library as a dependency (for n... [brandon]
file VERSION Mon Oct 05 22:25:37 -0700 2009 Version bump to 1.8.4 [brandon]
directory contrib/ Fri Nov 27 09:22:30 -0800 2009 update monit examples [brandon]
file delayed_job.gemspec Thu Feb 04 19:31:19 -0800 2010 Regenerated gemspec for version 1.8.5 [brandon]
directory generators/ Mon Jan 11 19:06:17 -0800 2010 Reverse priority so the jobs table can be index... [brandon]
file init.rb Fri Nov 28 22:06:07 -0800 2008 Made a gem out of delayed_job so I can use it i... [jaknowlden]
directory lib/ Mon Feb 08 06:12:43 -0800 2010 Fix error message when trying to send_later on ... [brandon]
directory recipes/ Tue Sep 22 17:06:13 -0700 2009 Allow capistrano recipes to be loaded from the ... [brandon]
directory spec/ Mon Jan 18 21:30:50 -0800 2010 Refactor PerformableMethod so it's easier to ex... [brandon]
directory tasks/ Sun Sep 06 06:53:47 -0700 2009 Move rake task to lib and update directions for... [brandon]
README.textile

Delayed::Job

Delated_job (or DJ) encapsulates the common pattern of asynchronously executing longer tasks in the background.

It is a direct extraction from Shopify where the job table is responsible for a multitude of core tasks. Amongst those tasks are:

  • sending massive newsletters
  • image resizing
  • http downloads
  • updating smart collections
  • updating solr, our search server, after product changes
  • batch imports
  • spam checks

Installation

To install as a gem, add the following to config/environment.rb:

config.gem 'delayed_job'

Rake tasks are not automatically loaded from gems, so you’ll need to add the following to your Rakefile:

begin
  require 'delayed/tasks'
rescue LoadError
  STDERR.puts "Run `rake gems:install` to install delayed_job"
end

To install as a plugin:

script/plugin install git://github.com/collectiveidea/delayed_job.git

After delayed_job is installed, you will need to setup the backend.

Backends

delayed_job supports multiple backends for storing the job queue. The default is Active Record, which requires a jobs table.

script/generate delayed_job
rake db:migrate

You can change the backend in an initializer:

# config/initializers/delayed_job.rb
Delayed::Worker.backend = :mongo

Upgrading to 1.8

If you are upgrading from a previous release, you will need to generate the new script/delayed_job:

script/generate delayed_job --skip-migration

Known Issues: script/delayed_job does not work properly with anything besides the Active Record backend. That will be resolved before the next gem release.

Queuing Jobs

Call #send_later(method, params) on any object and it will be processed in the background.

# without delayed_job
Notifier.deliver_signup(@user)

# with delayed_job
Notifier.send_later :deliver_signup, @user

If a method should always be run in the background, you can call #handle_asynchronously after the method declaration:

class Device
  def deliver
    # long running method
  end
  handle_asynchronously :deliver
end

device = Device.new
device.deliver

Running Jobs

script/delayed_job can be used to manage a background process which will start working off jobs.

$ RAILS_ENV=production script/delayed_job start
$ RAILS_ENV=production script/delayed_job stop

# Runs two workers in separate processes.
$ RAILS_ENV=production script/delayed_job -n 2 start
$ RAILS_ENV=production script/delayed_job stop

Workers can be running on any computer, as long as they have access to the database and their clock is in sync. Keep in mind that each worker will check the database at least every 5 seconds.

You can also invoke rake jobs:work which will start working off jobs. You can cancel the rake task with CTRL-C.

Custom Jobs

Jobs are simple ruby objects with a method called perform. Any object which responds to perform can be stuffed into the jobs table. Job objects are serialized to yaml so that they can later be resurrected by the job runner.

class NewsletterJob < Struct.new(:text, :emails)
  def perform
    emails.each { |e| NewsletterMailer.deliver_text_to_email(text, e) }
  end    
end  
  
Delayed::Job.enqueue NewsletterJob.new('lorem ipsum...', Customers.find(:all).collect(&:email))

Gory Details

The library evolves around a delayed_jobs table which looks as follows:

create_table :delayed_jobs, :force => true do |table| table.integer :priority, :default => 0 # Allows some jobs to jump to the front of the queue table.integer :attempts, :default => 0 # Provides for retries, but still fail eventually. table.text :handler # YAML-encoded string of the object that will do work table.text :last_error # reason for last failure (See Note below) table.datetime :run_at # When to run. Could be Time.zone.now for immediately, or sometime in the future. table.datetime :locked_at # Set when a client is working on this object table.datetime :failed_at # Set when all retries have failed (actually, by default, the record is deleted instead) table.string :locked_by # Who is working on this object (if locked) table.timestamps end

On failure, the job is scheduled again in 5 seconds + N ** 4, where N is the number of retries.

The default Worker.max_attempts is 25. After this, the job either deleted (default), or left in the database with “failed_at” set.
With the default of 25 attempts, the last retry will be 20 days later, with the last interval being almost 100 hours.

The default Worker.max_run_time is 4.hours. If your job takes longer than that, another computer could pick it up. It’s up to you to
make sure your job doesn’t exceed this time. You should set this to the longest time you think the job could take.

By default, it will delete failed jobs (and it always deletes successful jobs). If you want to keep failed jobs, set
Delayed::Worker.destroy_failed_jobs = false. The failed jobs will be marked with non-null failed_at.

Here is an example of changing job parameters in Rails:

# config/initializers/delayed_job_config.rb
Delayed::Worker.destroy_failed_jobs = false
Delayed::Worker.sleep_delay = 60
Delayed::Worker.max_attempts = 3
Delayed::Worker.max_run_time = 5.minutes

Cleaning up

You can invoke rake jobs:clear to delete all jobs in the queue.

Mailing List

Join us on the mailing list at http://groups.google.com/group/delayed_job

How to contribute

If you find what looks like a bug:

  1. Check the GitHub issue tracker to see if anyone else has had the same issue.
    http://github.com/collectiveidea/delayed_job/issues/
  2. If you don’t see anything, create an issue with information on how to reproduce it.

If you want to contribute an enhancement or a fix:

  1. Fork the project on github.
    http://github.com/collectiveidea/delayed_job/
  2. Make your changes with tests.
  3. Commit the changes without making changes to the Rakefile, VERSION, or any other files that aren’t related to your enhancement or fix
  4. Send a pull request.

Changes

  • 1.7.0: Added failed_at column which can optionally be set after a certain amount of failed job attempts. By default failed job attempts are destroyed after about a month.
  • 1.6.0: Renamed locked_until to locked_at. We now store when we start a given job instead of how long it will be locked by the worker. This allows us to get a reading on how long a job took to execute.
  • 1.5.0: Job runners can now be run in parallel. Two new database columns are needed: locked_until and locked_by. This allows us to use pessimistic locking instead of relying on row level locks. This enables us to run as many worker processes as we need to speed up queue processing.
  • 1.2.0: Added #send_later to Object for simpler job creation
  • 1.0.0: Initial release
Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server