Why can't you look at messages in the Rabbit Queue

后端 未结 9 551
庸人自扰
庸人自扰 2021-02-02 05:39

If my understanding is correct, you can\'t actually look at messages in the rabbit queue without taking them out and putting them back in. There\'s no way to use rabbitmqctl to

9条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-02 06:37

    It's possible to get a message without acknowledging and then reject it, that wouldn't get the message out of the queue. But this is not implemented in the management tool.

    And also the message is locked until released meaning that no other consumer can consume it before it gets rejected.

提交回复
热议问题