Moving a single message in RabbitMq

I have several messages in the error queue that has a name TestQueue_errors.

One of the messages in the error queue is important and must be returned to the service queue TestQueueso that it can be processed again. Other messages in the error queue are interrupted and must remain in the error queue.

I tried to do this with a smooth plugin, but it seems that it can only move all messages from one queue to another. Is there a way I could achieve this to move one message from one queue to another?

+4
source share
1 answer

, Rabbit Management . , , .

, , , .

, ( RabbitMQ):

  • requeue ( ) enter image description here

  • N ,

+1

Source: https://habr.com/ru/post/1673569/


All Articles