Backburner is a beanstalkd-powered job queue that can handle a very high volume of jobs. You create background jobs and place them on multiple work queues to be processed later.
Processing background jobs reliably has never been easier than with beanstalkd and Backburner. This gem works with any ruby-based web framework, but is especially suited for use with Sinatra, Padrino and Rails.
If you want to use beanstalk for your job processing, consider using Backburner. Backburner is heavily inspired by Resque and DelayedJob. Backburner stores all jobs as simple JSON message payloads. Persistent queues are supported when beanstalkd persistence mode is enabled.
Backburner supports multiple queues, job priorities, delays, and timeouts. In addition, Backburner has robust support for retrying failed jobs, handling error cases, custom logging, and extensible plugin hooks.
Backburner is well tested and has a familiar, no-nonsense approach to job processing, but that is of secondary importance. Let's face it, there are a lot of options for background job processing. DelayedJob, and Resque are the first that come to mind immediately. So, how do we make sense of which one to use? And why use Backburner over other alternatives?
The key to understanding the differences lies in understanding the different projects and protocols that power these popular queue libraries under the hood. Every job queue requires a queue store that jobs are put into and pulled out of. In the case of Resque, jobs are processed through Redis, a persistent key-value store. In the case of DelayedJob, jobs are processed through ActiveRecord and a database such as PostgreSQL.
The work queue underlying these gems tells you infinitely more about the differences than anything else. Beanstalk is probably the best solution for job queues available today for many reasons. The real question then is... "Why Beanstalk?".
Illya has an excellent blog post Scalable Work Queues with Beanstalk and Adam Wiggins posted an excellent comparison.
You will quickly see that beanstalkd is an underrated but incredible project that is extremely well-suited as a job queue. Significantly better suited for this task than Redis or a database. Beanstalk is a simple, and a very fast work queue service rolled into a single binary - it is the memcached of work queues. Originally built to power the backend for the 'Causes' Facebook app, it is a mature and production ready open source project. PostRank uses beanstalk to reliably process millions of jobs a day.
A single instance of Beanstalk is perfectly capable of handling thousands of jobs a second (or more, depending on your job size) because it is an in-memory, event-driven system. Powered by libevent under the hood, it requires zero setup (launch and forget, à la memcached), optional log based persistence, an easily parsed ASCII protocol, and a rich set of tools for job management that go well beyond a simple FIFO work queue.
Beanstalkd supports the following features out of the box:
Feature | Description |
---|---|
Parallelized | Supports multiple work queues created on demand. |
Reliable | Beanstalk’s reserve, work, delete cycle ensures reliable processing. |
Scheduling | Delay enqueuing jobs by a specified interval to schedule processing later |
Fast | Processes thousands of jobs per second without breaking a sweat. |
Priorities | Specify priority so important jobs can be processed quickly. |
Persistence | Jobs are stored in memory for speed, but logged to disk for safe keeping. |
Federation | Horizontal scalability provided through federation by the client. |
Error Handling | Bury any job which causes an error for later debugging and inspection. |
Keep in mind that these features are supported out of the box with beanstalk and require no special code within this gem to support. In the end, beanstalk is the ideal job queue while also being ridiculously easy to install and setup.
First, you probably want to install beanstalkd, which powers the job queues. Depending on your platform, this should be as simple as (for Ubuntu):
$ sudo apt-get install beanstalkd
Add this line to your application's Gemfile:
gem 'backburner'
And then execute:
$ bundle
Or install it yourself as:
$ gem install backburner
Backburner is extremely simple to setup. Just configure basic settings for backburner:
Backburner.configure do |config|
config.beanstalk_url = ["beanstalk://127.0.0.1", "..."]
config.tube_namespace = "some.app.production"
config.on_error = lambda { |e| puts e }
config.max_job_retries = 3 # default 0 retries
config.retry_delay = 2 # default 5 seconds
config.default_priority = 65536
config.respond_timeout = 120
config.default_worker = Backburner::Workers::Simple
config.logger = Logger.new(STDOUT)
end
The key options available are:
Option | Description |
---|---|
beanstalk_url |
Address such as 'beanstalk://127.0.0.1' or an array of addresses. |
tube_namespace |
Prefix used for all tubes related to this backburner queue. |
on_error |
Lambda invoked with the error whenever any job in the system fails. |
default_worker |
Worker class that will be used if no other worker is specified. |
max_job_retries |
Integer defines how many times to retry a job before burying. |
retry_delay |
Integer defines the base time to wait (in secs) between job retries. |
logger |
Logger recorded to when backburner wants to report info or errors. |
Backburner allows you to create jobs and place them on a beanstalk queue, and later pull those jobs off the queue and process them asynchronously.
At the core, Backburner is about jobs that can be processed. Jobs are simple ruby objects with a method defined named perform
.
Any object which responds to perform
can be queued as a job. Job objects are queued as JSON to be later processed by a task runner.
Here's an example:
class NewsletterJob
include Backburner::Queue
queue "newsletter" # defaults to 'newsletter-job'
queue_priority 1000 # most urgent priority is 0
def self.perform(email, body)
NewsletterMailer.deliver_text_to_email(email, body)
end
end
Notice that you can include the optional Backburner::Queue
module so you can specify a queue
name for this job.
Jobs can be enqueued with:
Backburner.enqueue NewsletterJob, '[email protected]', 'lorem ipsum...'
Backburner.enqueue
accepts first a ruby object that supports perform
and then a series of parameters
to that object's perform
method. The queue name used by default is the normalized class name (i.e {namespace}.newsletter-job
)
if not otherwise specified.
In addition to defining custom jobs, a job can also be enqueued by invoking the async
method on any object which
includes Backburner::Performable
. Async enqueuing works for both instance and class methods on any performable object.
class User
include Backburner::Performable
queue "user-jobs" # defaults to 'user'
queue_priority 500 # most urgent priority is 0
def activate(device_id)
@device = Device.find(device_id)
# ...
end
def self.reset_password(user_id)
# ...
end
end
# Async works for instance methods on a persisted model
@user = User.first
@user.async(:ttr => 100, :queue => "activate").activate(@device.id)
# ..as well as for class methods
User.async(:pri => 100, :delay => 10.seconds).reset_password(@user.id)
This will automatically enqueue a job for that user record that will run activate
with the specified argument.
Note that you can set the queue name and queue priority at the class level and
you are also able to pass pri
, ttr
, delay
and queue
directly as options into async
.
The queue name used by default is the normalized class name (i.e {namespace}.user
) if not otherwise specified.
Backburner workers are processes that run forever handling jobs that get reserved. Starting a worker in ruby code is simple:
Backburner.work
This will process jobs in all queues but you can also restrict processing to specific queues:
Backburner.work('newsletter_sender')
The Backburner worker also exists as a rake task:
require 'backburner/tasks'
so you can run:
$ QUEUES=newsletter-sender,push-message rake backburner:work
You can also run the backburner binary for a convenient worker:
bundle exec backburner newsletter-sender,push-message -d -P /var/run/backburner.pid -l /var/log/backburner.log
This will daemonize the worker and store the pid and logs automatically.
Jobs are persisted to queues as JSON objects. Let's take our User
example from above. We'll run the following code to create a job:
User.async.reset_password(@user.id)
The following JSON will be stored in the {namespace}.user
queue:
{
'class': 'User',
'args': [nil, 'reset_password', 123]
}
The first argument is the 'id' of the object in the case of an instance method being async'ed. For example:
@device = Device.find(987)
@user = User.find(246)
@user.async.activate(@device.id)
would be stored as:
{
'class': 'User',
'args': [246, 'activate', 987]
}
Since all jobs are persisted in JSON, your jobs must only accept arguments that can be encoded into that format. This is why our examples use object IDs instead of passing around objects.
In Backburner, there are several different strategies for processing jobs which are reflected by multiple worker subclasses. Custom workers can be defined fairly easily. By default, Backburner comes with the following workers built-in:
Worker | Description |
---|---|
Backburner::Workers::Simple |
Single threaded, no forking worker. Simplest option. |
Backburner::Workers::Forking |
Basic forking worker that manages crashes and memory bloat. |
Backburner::Workers::ThreadsOnFork |
Forking worker that utilizes threads for concurrent processing. |
You can select the default worker for processing with:
Backburner.configure do |config|
config.default_worker = Backburner::Workers::Forking
end
or determine the worker on the fly when invoking work
:
Backburner.work('newsletter_sender', :worker => Backburner::Workers::ThreadsOnFork)
or through associated rake tasks with:
$ QUEUES=newsletter-sender,push-message THREADS=2 GARBAGE=1000 rake backburner:threads_on_fork:work
For more information on the threads_on_fork worker, check out the
ThreadsOnFork Worker documentation.
Additional workers such as individual threaded
and forking
strategies will hopefully be contributed in the future.
If you are interested in helping out, please let us know.
Workers can be easily restricted to processing only a specific set of queues as shown above. However, if you want a worker to process all queues instead, then you can leave the queue list blank.
When you execute a worker without queues specified, any queue for a known job queue class with include Backburner::Queue
will be processed.
To access the list of known queue classes, you can use:
Backburner::Worker.known_queue_classes
# => [NewsletterJob, SomeOtherJob]
Dynamic queues created by passing queue options will not be processed by a default worker. For this reason, you may want to take control over the default list of
queues processed when none are specified. To do this, you can use the default_queues
class method:
Backburner.default_queues.concat(["foo", "bar"])
This will ensure that the foo and bar queues are processed by default. You can also add job queue names:
Backburner.default_queues << NewsletterJob.queue
The default_queues
stores the specific list of queues that should be processed by default by a worker.
When a job fails in backburner (usually because an exception was raised), the job will be released
and retried again (with progressive delays in between) until the max_job_retries
configuration is reached.
Backburner.configure do |config|
config.max_job_retries = 3 # retry jobs 3 times
config.retry_delay = 2 # wait 2 seconds in between retries
end
Note the default max_job_retries
is 0, meaning that by default jobs are not retried.
If continued retry attempts fail, the job will be buried and can be 'kicked' later for inspection.
You can also setup a custom error handler for jobs using configure:
Backburner.configure do |config|
config.on_error = lambda { |ex| Airbrake.notify(ex) }
end
Now all backburner queue errors will appear on airbrake for deeper inspection.
Logging in backburner is rather simple. When a job is run, the log records that. When a job fails, the log records that. When any exceptions occur during processing, the log records that.
By default, the log will print to standard out. You can customize the log to output to any standard logger by controlling the configuration option:
Backburner.configure do |config|
config.logger = Logger.new(STDOUT)
end
Be sure to check logs whenever things do not seem to be processing.
Backburner is highly extensible and can be tailored to your needs by using various hooks that can be triggered across the job processing lifecycle. Often using hooks is much easier then trying to monkey patch the externals.
Check out HOOKS.md for a detailed overview on using hooks.
Once you have Backburner setup in your application, starting workers is really easy. Once beanstalkd is installed, your best bet is to use the built-in rake task that comes with Backburner. Simply add the task to your Rakefile:
# Rakefile
require 'backburner/tasks'
and then you can start the rake task with:
$ rake backburner:work
$ QUEUES=newsletter-sender,push-message rake backburner:work
The best way to deploy these rake tasks is using a monitoring library. We suggest God which watches processes and ensures their stability. A simple God recipe for Backburner can be found in examples/god.
Be sure to check out the Sinatra-powered project beanstalkd_view by denniskuczynski which provides an excellent overview of the tubes and jobs processed by your beanstalk workers. An excellent addition to your Backburner setup.
- Nathan Esquenazi - Project maintainer
- Kristen Tucker - Coming up with the gem name
- Tim Lee, Josh Hull, Nico Taing - Helping me work through the idea
- Miso - Open-source friendly place to work
- Renan T. Fernandes - Added threads_on_fork worker
- Daniel Farrell - Added forking worker
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
The code in this project has been made in light of a few excellent projects:
Thanks to these projects for inspiration and certain design and implementation decisions.
- Code:
git clone git://github.com/nesquena/backburner.git
- Home: http://github.com/nesquena/backburner
- Docs: http://rdoc.info/github/nesquena/backburner/master/frames
- Bugs: http://github.com/nesquena/backburner/issues
- Gems: http://gemcutter.org/gems/backburner