Reputation: 326
A question about architecture of data flows in RabbitMQ
Is it possible to collect messages from different queues to one exchange point? And later consumers subscribe to this point?
I make service for sending messages, and I want to be able to create for each delivery process one queue. And manage this Q. But consumers needs to be subscribed on all of this Q
The idea of gathering all the queues at one point and pick up messages from this point But how to implement it?
Upvotes: 0
Views: 105
Reputation: 1136
In RabbitMQ, usually messages should be published to "exchanges" and consumed from "queues". And there are bindings between exchanges and queues. In your case, naturally, you could create exchanges for each of your senders, and bind these exchanges all to one queue for consuming.
Upvotes: 1