RabbitMQ plugin to remove duplicate messages

后端 未结 3 1109
情书的邮戳
情书的邮戳 2021-02-06 10:53

I have a RabbitMQ queues for documents generation. Basically, each document has type and state (new, processing, ready), so I use topic exchange with r

3条回答
  •  眼角桃花
    2021-02-06 11:33

    As you wrote, ActiveMQ has "duplicate message detection", but it works differently. It does not remove old message from the queue but it does not add new message to it instead. So it works the same as plugin for RabbitMQ.

提交回复
热议问题