We are going to be developing a client which subscribes to an AMQP channel, but the client is going to be clustered (in Kubernetes) and we want only one of the clustered client to process the subscribed message.
For example, if we have a replica set of 3, we only want one to get the message, not all 3.
In JMS 2.0 this is possible using the shared consumers: https://www.oracle.com/technical-resources/articles/java/jms2messaging.html
1 message is sent to RabbitMQ Channel 1:
Consumer 1 (with 3 replicas) <----- RabbitMQ Channel 1
Consumer 2 (with 3 replicas) <----- RabbitMQ Channel 1
Only 2 messages would be processed
Is something similar possible with AMQP? The client will be developed either in C# or MuleSoft.
Cheers, Steve