Skip to content

A resque plugin for limiting how many of a specific job can run concurrently

License

Notifications You must be signed in to change notification settings

unlimit/resque-concurrent-restriction

 
 

Repository files navigation

resque-concurrent-restriction

Resque Concurrent Restriction is a plugin for the Resque queueing system (http://github.com/defunkt/resque). It allows one to specify how many of the given job can run concurrently.

Resque Concurrent Restriction requires Resque 1.10 and redis 2.2

Install

sudo gem install resque-concurrent-restriction

To use

It is especially useful when a system has intensive jobs for which you should only run a few at a time. What you should do for the IntensiveJob is to make it extend Resque::Plugins::ConcurrentRestriction and specify the concurrent limit (defaults to 1). For example:

class IntensiveJob
  extend Resque::Plugins::ConcurrentRestriction
  concurrent 4

  #rest of your class here
end

That means the IntensiveJob can not have more than 4 jobs running simultaneously

Author

Code was originally forkd from the resque-restriction plugin (Richard Huang :: [email protected] :: @flyerhzm), but diverged enough that it warranted being its own plugin to keep the code simple.

Matt Conway :: [email protected] :: @mattconway

Copyright

Copyright (c) 2011 Matt Conway. See LICENSE for details.

About

A resque plugin for limiting how many of a specific job can run concurrently

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%