Closed xdmx closed 1 year ago
I didn't realise Sidekiq 7 had released but I'll take a look. Can you share your sidekiq.yml
?
Sure, it's a pretty simple one:
---
:concurrency: 5
:dynamic: true
:queues:
- mailers
- critical
- default
- low
And then I have a limit on dynamic queues in the sidekiq.rb
:
Sidekiq.configure_server do |config|
config[:limits] = Hash.new do |_, queue_name|
queue_name.to_s.starts_with?("proj:") ? 1 : nil
end
end
Any update on this issue? @xdmx
I'm afraid I've not had chance to properly look into this yet but if anyone finds a fix, feel free to create a PR
Hi everyone, I did propose some possible fix in #147 and #150. I didn't know much about the sidekiq-limit_fetch
implementation, so I can't guarantee that the fix is right and optimal 😬 !
If @xdmx and @andreasunterhuber can test PR #150 fixes this, that would be great :)
I've just pushed v4.4.0 which should fix this :)
I've just tried to upgrade to Sidekiq 7 and I'm getting an error when Sidekiq starts:
I think it's from this but I haven't checked deeply. With the 6.x version works without problems