user2186425
user2186425

Reputation: 475

Microservices broadcast messages

I'm looking for a way to broadcast messages to all clients in microservice architecture.

Right in my project I'm using RabbitMQ, and I can't achieve this without manually binding exchanges with each instance queue.

What else could I use to achieve more or less out of the box brodcasting of messages across all clients of some "channel"?

PS. Java client would be nice

Upvotes: 0

Views: 692

Answers (1)

Lalit Kale
Lalit Kale

Reputation: 557

You have to use fan out exchange. https://www.rabbitmq.com/tutorials/amqp-concepts.html

Upvotes: 1

Related Questions