I’m trying to use RabbitMQ in a containerized microservices infrastructure and, by default, containers are shut down when in idle I wanted to keep this kind of handling of idling but, afaik, the container must be awake in order to listen to messages Is there a way to make RabbitMQ wake up the consumer containers subbed to the interested queue?
I've tried to search online but no one is making any reference to what I needed
What I imagined is something that works like this:
┌────────────► Consumer
│
Producer ─── message ────► RabbitMQ ── wakes ──┼────────────► Consumer
│
└────────────► Consumer
Then, RabbitMQ after triggered the containers should deliver the messages
┌────────────► Consumer
│
RabbitMQ ── message -┼────────────► Consumer
│
└────────────► Consumer
When a container wakes creates a channel so what I really need is just the "wake" command on message that should be sent, as told before only to interested containers/microservices