We have a Grails app running, and we are using the RabbitMQ plugin for exchanging messages within the application. On the production environment, we have two instances of the application deployed on two servers and we have configured 10 queue consumers per instance. I would love to be able to have only one of the servers consuming messages from the queue. I have found this configuration parameter:
exclusive: Only the client that created the queue can connect to it.
and I am trying to make it work. I am not exactly sure, what do they mean by "client"...Server? App instance? Consumer?
Any other ideas on controlling the queue's consumption?
Thanks in advance!