AMQP/RabbitMQ - Process messages sequentially
问题 I have one direct exchange. There is also one queue, bound to this exchange. I have two consumers for that queue. The consumers are manually ack'ing the messages once they've done the corresponding processing. The messages are logically ordered/sorted, and should be processed in that order. Is it possible to enforce that all messages are received and processed sequentially accross consumer A and consumer B? In other words, prevent A and B from processing messages at the same time. Note: the