RabbitMQ“ What are ”Ready“ and ”Unacked" types of messages?

前端 未结 2 745
一整个雨季
一整个雨季 2021-02-01 11:50

I\'m getting confused between these two types of messages in RabbitMQ.

I\'ve seen that some of my queues have 0 \"Unacked\" and 1000 \"Ready\" messages, while some have

2条回答
  •  心在旅途
    2021-02-01 12:26

    Un-acknowledgment: It is used for Data Safety Considerations. it guaranteed to reach the peer and successfully processed. In case consumer lost in-between of processing of message and not acknowledge the Rabbit MQ. message will not lost and available for cosumer to process it again.

提交回复
热议问题