Search code examples
ruby-on-railssidekiq

Sidekiq: increase number of jobs executed in parallel


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.


Solution

  • Had to edit the sidekiq.yml file with:

    :concurrency: 25