Reputation: 615
Is it possible to have multiple categorized queues in RabbitMQ ?
Our application sends bulk SMS to phone numbers. when a client requests to send a very large number of SMSes , other normal client requests have to wait a lot. Is there a solution in RabbitMQ to have multiple queues ? ( So the worker can pick from all of them ? )
Upvotes: 0
Views: 1339
Reputation: 35149
Yes. it is possible to do in RabbitMQ. Since you didn't provide enough details about your problem, I'l give you a hight level overview of the things you might be interested in:
Upvotes: 2