Sidekiq for multiple domains

Asked

Viewed 125 times

0

I have a production server that will contain several clients, and I want to add the sidekiq to manage image processing queues. But, I don’t know how it behaves for multiple domains, that is, each system will have a queue or all systems will compete for a particular queue?

1 answer

1


You have 2 options.

Use in the same redis, using a queue for each app

https://github.com/mperham/sidekiq/wiki/Advanced-Options#queues

Or use a redis for each app ( obviously running on different port ).

I work with the 1 case, but this way, within the admin of the sidekiq of all apps you will see all the queues, if this is a problem use a redis for each.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.