Graham Slick
Graham Slick

Reputation: 6870

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.

Upvotes: 1

Views: 1088

Answers (1)

Graham Slick
Graham Slick

Reputation: 6870

Had to edit the sidekiq.yml file with:

:concurrency: 25

Upvotes: 3

Related Questions