-
-
Notifications
You must be signed in to change notification settings - Fork 140
Open
Labels
Description
Hi,
Thanks for your work, the problem of #142 still seems to be present, here is my configuration.
Gemfile :
gem 'sidekiq'
gem 'sidekiq-limit_fetch'
Gemfile.lock :
sidekiq (7.0.2)
concurrent-ruby (< 2)
connection_pool (>= 2.3.0)
rack (>= 2.2.4)
redis-client (>= 0.11.0)
sidekiq-limit_fetch (4.4.0)
sidekiq (>= 6)
Sidekiq.yml :
:concurrency: 10
:max_retries: 0
:queues:
- default
- scan
:limits:
default: 5
scan: 2
The limit is well at 2 :
irb(main):001:0> Sidekiq::Queue['scan'].limit
2023-01-06T11:07:51.322Z pid=26 tid=13e6 INFO: Sidekiq 7.0.2 connecting to Redis with options {:url=>"redis://redis:6379/1", :size=>5, :pool_name=>"internal"}
=> 2
But if I launch 10 jobs, 10 workers are launched. It works as expected with Sidekiq 6 (6.5.8)
Let me know if you need more informations or if I can make more tests.
Regards