Return message to the end of queue in rabbitmq
问题 I have exchange and queue. Producer doesn't need consumption confirmation, but messages in some cases can be un-processable by consumer in current moment, because of lack of other data. Because of this, I want to return those messages to the end of queue. How to do this? Or is it done automatically when I reject message? Flow: Message1 gets consumed and creates some record in database. Message2 gets consumed and checks if there is record in database, and if yes, then it updates the record. If