Reputation: 6870
If I have a lot of jobs queued, by default, it looks like Sidekiq is running up to 5 jobs in parallel.
How can I increase this number ? I'd like to be able to run 10 or 15 jobs.
Upvotes: 1
Views: 1088
Had to edit the sidekiq.yml file with:
:concurrency: 25
Upvotes: 3