Can multiple sidekiq instances process the same queue Can multiple sidekiq instances process the same queue ruby ruby

Can multiple sidekiq instances process the same queue


Yes, sidekiq can absolutely run many processes against the same queue. Redis will just give the message to a random process.


Nope, I've ran Sidekiqs in different machines with no issues.

Each of the Sidekiqs read from the same redis server, and redis is very robust in multi-threaded, and distributed scenarios.

In addition, if you look at the web interface for Sidekiq, it will show all the workers across all machines because all the workers are logged in the same redis server.

So no, no issues.