0 votes
in Azure by
What is the difference between Azure Queue Storage and Azure Service Bus with regards to dead letter queues & poison messages?

1 Answer

0 votes
by

A poison message is a message that is sent to the queue or topic that the consuming application cannot process correctly.

Both support poison messages but Azure Storage Queue does not support automatic dead-lettering.

This means that:

in Azure Service Bus you can set expired messages to be moved into a DLQ for later processing,

messages with a TTL value that expire in Azure Storage Queue will be deleted permanently.

Related questions

0 votes
asked Jul 4, 2023 in Azure by rajeshsharma
0 votes
asked Jul 4, 2023 in Azure by rajeshsharma
...