მკვდარი წერილების რიგი (DLQ) არის ის, სადაც წერილები გადის, როდესაც ისინი არ შეიძლება დამუშავდეს ან პირობები სრულდება (უარყოფილი, ვადაგასული, რიგი სავსე). DLQ-ები ხელს უშლიან პრობლემურ წერილებს კარგაობის ან დამუშავების დაბლოკვისგან, რაც შემდეგში შემოწმებისა და მკურნალობის საშუალებას აძლევს.
რა არის მკვდარი წერილების რიგი
DEAD LETTER QUEUE → a queue that receives messages that couldn't be delivered/processed
normally:
→ messages are "dead-lettered" (routed to the DLQ) when they:
- are REJECTED/nacked (consumer can't process them) without requeue
- EXPIRE (message TTL exceeded)
- exceed the queue's MAX LENGTH (overflow)
→ the DLQ collects these for inspection/handling instead of losing them
→ a "holding area" for problematic messages
