Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dwbutler/multi_worker
Common interface to Ruby worker/queue libraries
https://github.com/dwbutler/multi_worker
Last synced: about 2 months ago
JSON representation
Common interface to Ruby worker/queue libraries
- Host: GitHub
- URL: https://github.com/dwbutler/multi_worker
- Owner: dwbutler
- License: mit
- Created: 2014-01-07T07:10:03.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-28T19:24:26.000Z (over 10 years ago)
- Last Synced: 2024-10-18T03:09:44.008Z (3 months ago)
- Language: Ruby
- Homepage:
- Size: 328 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# MultiWorker
[![Build Status](https://travis-ci.org/dwbutler/multi_worker.png?branch=master)](https://travis-ci.org/dwbutler/multi_worker) [![Code Climate](https://codeclimate.com/github/dwbutler/multi_worker.png)](https://codeclimate.com/github/dwbutler/multi_worker) [![Dependency Status](https://gemnasium.com/dwbutler/multi_worker.svg)](https://gemnasium.com/dwbutler/multi_worker)MultiWorker provides a common interface to the (many) Ruby queueing/worker libraries.
They are all very similar, but provide slightly different interfaces. This makes it difficult
to switch from one library to another, or to use multiple libraries at the same time.Similar to MultiJSON or ExecJS, MultiWorker automatically detects installed queuing libaries
and the correct adapter is loaded up by default. Changing queueing libraries does not require
any change to worker code, as long as the standard interface is used.## Installation
Add this line to your application's Gemfile:
gem 'multi_worker'
And then execute:
$ bundle
Or install it yourself as:
$ gem install multi_worker
## Basic Usage
### Define worker
```ruby
require 'sidekiq'
require 'multi_worker'class ExampleWorker
workerdef perform(foo, bar)
# long running code
end
end
```### Queue jobs
```ruby
ExampleWorker.perform_async(1, 2)
# Equivalent:
MultiWorker.enqueue(ExampleWorker, 1, 2)
```### Work jobs
Add to Rakefile:
```ruby
require 'resque'
require 'multi_worker/tasks'# If not using Rails, define your own :environment task that will require dependencies
task :environment do
require 'resque'
end
```Run:
```
QUEUE=default rake multi_worker:work
```## Advanced Configuration
```ruby
MultiWorker.configure do
default_queue :processing
default_adapter :resque
default_options :retry => true
endclass AdvancedWorker
worker :queue => :background, :unique => true, :adapter => :sidekiqdef perform(foo)
...
end
end
```## Feature Comparison
| Library | Backends | Status | Retry | Lock | Unique | Scheduling | Priority | Async Method Proxy | Rake Task | Inline |
|--------------------------|----------------------|--------|-------|------|--------|------------|----------|--------------------|-----------|--------|
| Resque | Redis | Gem | Gem | Gem | Gem | Gem | | Gem | ✓ | ✓ |
| Sidekiq | Redis | Gem | ✓ | Gem | Gem | ✓ | | ✓ | ✗ | ✓ |
| Delayed Job | Active Record, Mongo | | | | | ✓ | | ✓ | ✓ | ✓ |
| Qu | Redis, Mongo, SQS | | | | | | | | ✓ | ✓ |
| Queue Classic | PostgreSQL | | | | | | | | ✓ | ✗ |
| Que | PostgreSQL | | | | | ✓ | ✓ | | ✓ | ✓ |
| Toro | PostgreSQL | ✓ | ✓ | | | ✓ | | | ✓ | ✗ |
| Sneakers | RabbitMQ | | | | | | | | ✗ | ✗ |
| TorqueBox Backgroundable | HornetQ | ✓ | | | | | | ✓ | ✗ | ✗ |
| Backburner | Beanstalkd | | ✓ | | | ✓ | ✓ | ✓ | ✓ | ✓ |
| Threaded in Memory Queue | In-Memory | | | | | | | | N/A | ✓ |
| Sucker Punch | In-Memory | | | | | | | | N/A | ✓ |
| Inline | N/A | | | | | | | | N/A | ✓ |## Contributing
1. Fork it ( http://github.com/dwbutler/multi_worker/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request