Resubmitting a message from dead letter queue - Azure Service Bus

后端 未结 6 1524
太阳男子
太阳男子 2021-01-11 14:30

I have created a service bus queue in Azure and it works well. And if the message is not getting delivered within default try (10 times), it is correctly moving the message

6条回答
  •  囚心锁ツ
    2021-01-11 14:54

    We had a batch of around 60k messages, which need to be reprocessed from the dead letter queue. Peeking and send the messages back via Service Bus Explorer took around 6 minutes per 1k messages from my machine. I solved the issue by setting a forward rule for DLQ messages to another queue and from there auto forward it to the original queue. This solution took around 30 seconds for all 60k messages.

提交回复
热议问题