Questions tagged [dead-letter]
250 questions
1
vote
1 answer
Is it possible to set up a TTL on a ServiceBus Dead Letter Queue messages?
It is possible to set up TTL for messages in Azure Service Bus. I am wondering if there is a possibility to do the same for Dead Letter Queue?
What I want to achieve is "auto-cleaning" of the DLQ of the old messages that are probably not relevant…

Ilya Chernomordik
- 27,817
- 27
- 121
- 207
1
vote
1 answer
Google cloud Pub/Sub - subscriber not forwarding messages to dead letter topic
I am trying to configure dead letter topic for unack messages to handle failures gracefully, however, it doesn't seem to be working. I tried two approaches:
I created a dead letter topic and subscription through google cloud console but it didn't…

MQ.
- 365
- 6
- 28
1
vote
0 answers
Rabbitmq TTL expired messages (through queue policy) aren't removed
I want to have messages that end up in a Dead Letter Queue automatically deleted after a certain period of time.
My understanding of the documentation is that messages that are in the head of the queue will be automatically deleted when they expire…

Aage
- 5,932
- 2
- 32
- 57
1
vote
2 answers
When is an SQS message sent to deadletter queue via redrive policy?
I have an SQS queue linked to a deadletter queue via a redrive policy. Terraform sample:
redrive_policy = jsonencode({
deadLetterTargetArn = aws_sqs_queue.deadletter_queue.arn
maxReceiveCount = 10
})
The queue processing is…

wilmol
- 1,429
- 16
- 22
1
vote
1 answer
How to read a message from Azure Dead Letter Queue using MassTransit
I'm trying to find a code to read a message from Azure dead letter queue using MassTransit and print it in the console. Looking for the right class and method to do the job.

ash
- 11
- 1
1
vote
0 answers
Are we able to get the active, dead letter, transfer dead letter message count for a topic at a particular point of time?
In this blog, it is mentioned that is not possible to get dead letter msg count at a topic level since the messages are transferred to the subscriptions within a second. I am just wondering are we able to get the count of active messages, transfer…

Sandhiya
- 57
- 1
- 8
1
vote
1 answer
Is it possible to have a DeadLetter Queue topic on Kafka Source Connector side?
Is it possible to have a DeadLetter Queue topic on Kafka Source Connector side?
We have a challenge with the events processed by the IBM MQ Source connector, which is processing N number of messages but sending N-100 messages, where 100 messages are…

Dachs84
- 11
- 4
1
vote
1 answer
MassTransit and Azure Service Bus: EnableDeadLetteringOnMessageExpiration for all created subscriptions
We configure MassTransit to use Azure Service Bus in this way:
mtConfig.UsingAzureServiceBus((context, busConfig) =>
{
busConfig.Host(new HostSettings
{
…

Peter Wyss
- 395
- 2
- 16
1
vote
1 answer
How to apply retention time configuration for Dead Letter Queue in Spring Cloud Stream Kafka Binder?
I have an application using Spring Cloud Stream Kafka.
For user defined topics I can delete records from specified topics by giving the configuration I mentioned below. But this configuration doesn't work for DLQ Topics.
For example in the…

omerstack
- 535
- 9
- 23
1
vote
1 answer
How to Properly Unit Test Dlq within Spring Cloud Stream
There's some native configurations like enableDlq within spring cloud stream kafka binder, but there's not any example's that i've found on how to properly unit test if the enableDlq is working properly. Are there any examples out there of how to…

TypicalTypingTom
- 49
- 3
1
vote
1 answer
How to move error message to Azure dead letter queue(Topics - Subscription) using Java?
I need to send my messages to Dead letter queue from azure topic subscription incase of any error while reading and processing the message from topic. So I tried testing pushing message directly to DLQ.
My sample code will be like
static void…

Debugger
- 690
- 1
- 18
- 41
1
vote
0 answers
What kind of data got routed to a dead letter queue topic?
I Have implemented Dead Letter Queues error handling in Kafka. It works and the data are sent to DLQ topics. I am not understanding what types of data got routed in DLQ topics.
1st picture is the data that got routed into DLQ Topics and the second…

Sajita
- 41
- 5
1
vote
1 answer
Google PubSub ordered Messages to Dead Letter Queue process
I have a scenario of Pub/Sub with ordered messages and a Dead Letter queue.
Do all the ordered messages land on a Dead Letter queue or just the one of the Ordered messages, that is not able to be processed, lands individually on the DL Queue.

gkatzioura
- 2,655
- 2
- 26
- 39
1
vote
1 answer
dead letter queue for kafka connect http sink
I am writing HTTP Sink plugin for Kafka connect. Its purpose is to send HTTP requests for each message in the configured Kafka topic. I want to send the message to dead letter queue in case HTTP request fails. Can I make use of dead letter queue…

Durgesh O Mishra
- 51
- 1
- 2
- 8
1
vote
1 answer
Multiple queues receiving same message from virtual topic creates a deadletter entry for one queue only
I'm am using Virtual Destinations to implement Publish Subscribe model in ActiveMQ 5.15.13.
I have a virtual topic VirtualTopic and there are two queues bound to it. Each queue has its own redelivery policy. Let's say Queue 1 will retry message 2…

Gagan Arora
- 86
- 5