<div>Hello,</div><div><br></div><div>I have 1 broker, 1 consumer, many queues. the queues are arbitrary such as ACCOUNT_ID.1 ACCOUNT_ID.2 etc. I&#39;m trying to avoid 1 account flooding its queue and starving the other accounts. <br>
</div><br>If the queues look like this (items in array are the messages) <br><br>ACCOUNT_ID.1 = [ 1a, 1b, 1c, 1d ] <br>ACCOUNT_ID.2 = [ 2a, 2b, 2c, 2d ] <br>ACCOUNT_ID.3 = [ 3a, 3b, 3c, 3d ] <br><br>I want the consumer to receive messages in a fair order such as = 1a, 2a, 3a, 1b, 2b, 3b, ... <br>
<br>Can i achieve above scenario via rabbitmq? If yes how would I do this?�<br><br>Thanks.<br>