What is the purpose of a dead letter queue?
- A Capturing messages that repeatedly fail processing so they are neither lost nor retried forever
- B Storing successfully processed messages
- C Prioritising urgent messages
- D Archiving old messages
Answer
Capturing messages that repeatedly fail processing so they are neither lost nor retried forever
Without one, a poison message either blocks the queue or is silently discarded, and the failure is invisible.





