项目作者: dtaniwaki

项目描述 :
Merge Sidekiq jobs
高级语言: Ruby
项目地址: git://github.com/dtaniwaki/sidekiq-merger.git
创建时间: 2017-01-30T14:54:15Z
项目社区:https://github.com/dtaniwaki/sidekiq-merger

开源协议:MIT License

下载


sidekiq-merger

Gem Version
Dependency Status
Build Status
Coverage Status
Code Climate

Docker

Merge sidekiq jobs occurring before the execution times. Inspired by sidekiq-grouping.

Demo

Use Case

Cancel Task

Cancel Task

Bulk Notification

Bulk Notification

Installation

Add this line to your application’s Gemfile:

  1. gem 'sidekiq-merger'

And then execute:

  1. $ bundle

Or install it yourself as:

  1. $ gem install sidekiq-merger

Usage

Add merger option into your workers.

  1. class SomeWorker
  2. include Sidekiq::Worker
  3. sidekiq_options merger: { key: -> (args) { args[0] } }
  4. def perform(*merged_args)
  5. merged_args.each do |args|
  6. # Do something
  7. end
  8. end
  9. end

Then, enqueue jobs by perform_in or perform_at.

  1. SomeWorker.perform_in 100, 4
  2. SomeWorker.perform_in 100, 3
  3. SomeWorker.perform_in 100, 5
  4. # Passed 100 seconds from the first enqueue.
  5. SomeWorker.perform_in 100, 6
  6. SomeWorker.perform_in 100, 1

SomeWorker will be executed in 100 seconds with args of [4], [3], [5], then with args of [6], [1].

perform_async works without merging args.

  1. SomeWorker.perform_async 4
  2. SomeWorker.perform_async 3
  3. SomeWorker.perform_async 5

In this case, SomeWorker will be executed 3 times with args of [4], [3] and [5].

Quick Check

Run docker containers to check the behavior of this gem.

  1. $ docker-compose up

Then, open http://localhost:3000/. You can push jobs from the UI and see what happens in the sidekiq console.

Options

key (optional, default: nil)

Defines merge key so different arguments can be merged.

Format: String or Proc

e.g. sidekiq_options merger: { key: -> (args) { args[0..1] } }

unique (optional, default: false)

Prevents enqueue of jobs with identical arguments.

Format: Boolean

e.g. true

batch_size (optional, default: nil)

Allow to specify how many jobs max to provide as arguments per aggregation

Format: Int

e.g. 50

Web UI

Web UI

Add this line to your config/routes.rb to activate web UI:

  1. require "sidekiq/merger/web"

Test

  1. $ bundle exec appraisal rspec

The test coverage is available at ./coverage/index.html.

Lint

  1. $ bundle exec appraisal rubocop

Contributing

  1. Fork it
  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

Copyright (c) 2017 dtaniwaki. See LICENSE for details.