Reza Shadman
Reza Shadman

Reputation: 615

RabbitMQ multiple channels

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

Answers (1)

Vor
Vor

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:

  1. Take a look at topic exchange. It does exactly what you described.
  2. Take a look at consumer priority.
  3. And random exhcnage that allows you to spread messages between queues.

Upvotes: 2

Related Questions