Patterns: Retries, DLQs, Visibility Timeouts
When work fails, retry with backoff; after N tries, send to a dead-letter queue (DLQ)
for inspection. Some systems use a visibility timeout
: if not acked within the window, the message is redelivered. (Classic in SQS; conceptually present in many brokers via ack deadlines.)
