Use simple recursion to limit sidekiq workers per job
Add this line to your application's Gemfile:
gem 'sidekiq-recursive'
And then execute:
$ bundle
Or install it yourself as:
$ gem install sidekiq-recursive
class CleanUpOldUsers
include Sidekiq::Worker
include Sidekiq::Recursive::Worker
recursive_worker_count 5
def process(user_id)
User.destroy(user_id)
end
end
user_ids = User.where(is_old: true).ids
CleanUpOldUsers.call(user_ids)
class CleanUpOldUsers
include Sidekiq::Worker
include Sidekiq::Recursive::Worker
recursive_worker_count 5
before_all :bar
after_all :foo
def bar
# do something before starting all workers
end
def process(user_id)
User.destroy(user_id)
end
def foo
# do something after all workers are finished
end
end
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and tags, and push the .gem
file to rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/justaskz/sidekiq-recursive. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the Sidekiq::Recursive project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.