Questions tagged [dead-letter]

250 questions
2
votes
1 answer

How to get the URL for a Dead Letter Queue for an SQS queue generated using Terraform?

I can get the URL of an SQS queue by creating a Terraform Data Source like below, data "aws_sqs_queue" "my-sqs-queue-name" { name = "my-sqs-queue-name" } and then by referring to it as, QUEUE_URL = data.aws_sqs_queue.my-sqs-queue-name.url How…
2
votes
2 answers

What is the maximum length of DeadLetterErrorDescription for dead lettering an Azure Service Bus message?

What the maximum accepted length of the DeadLetterErrorDescriptio? Relating to C#…
Maze
  • 401
  • 2
  • 8
  • 18
2
votes
1 answer

With the retry options in durable functions, what happens after the last attempt?

I'm using a durable function that's triggered off a queue. I'm sending messages off the queue to a service that is pretty flaky, so I set up the RetryPolicy. Even still, I'd like to be able to see the failed messages even if the max retries has been…
2
votes
1 answer

Rabbit MQ backup consumer

I have the following use case that I'm trying to setup in rabbit MQ: Normally process A should handle all messages sent to queue A. However if process A goes down (is no longer consuming from queue A) Then process B should handle the messages until…
innominate227
  • 11,109
  • 1
  • 17
  • 20
2
votes
1 answer

Consumer Error Handling in Symfony Messenger / RabbitMQ

I'm using the new Symfony Messenger Component 4.1 and RabbitMQ 3.6.10-1 to queue and asynchronously send email and SMS notifications from my Symfony 4.1 web application. My Messenger configuration (messenger.yaml) looks like this: framework: …
thomaskonrad
  • 665
  • 1
  • 9
  • 24
2
votes
2 answers

Configuring Java/Camel/AMQ with route-specific DLQs

Java 8/Camel 2.19.x/AMQ 5.15.x here. I have a Java app that uses Camel to consume messages off of AMQ queues, process those messages, and do stuff with them. Sometimes the output of a route is putting the processing result back up on another queue…
hotmeatballsoup
  • 385
  • 6
  • 58
  • 136
2
votes
0 answers

Reason why a message was put to a DLQ in JBoss

Assume I have a Queue with a DLQ, no redelivery. (Runtime) Exceptions during the processing of a message (in an MDB) cause the message to be sent to the DLQ, so I can decide how to deal with it. So far so good. But I think in many situations it…
Sandor Murakozi
  • 4,372
  • 25
  • 27
2
votes
1 answer

Spring JMS and ActiveMQ where to see messages in dead letter queue

This is my configuration: @Bean ActiveMQConnectionFactory activeMQConnectionFactory() { String url = this.environment.getProperty("jms.broker.url"); ActiveMQConnectionFactory connectionFactory = new ActiveMQConnectionFactory(); …
michele
  • 26,348
  • 30
  • 111
  • 168
2
votes
1 answer

Why is message put into a dead-letter queue (MSMQ)?

Preamble: I have a web application, which sends MSMQ messages (with UseDeadLetterQueue = true) from time to time. I can also see that some of those messages are put into a system dead letter queue. However, I can't see the failure reason directly…
Maxim
  • 35
  • 5
2
votes
1 answer

Can you clear the DeadLetter queue in Azure

My DeadLetter queue in Microsoft Azure (for a topic) currently contains 60,000 records. I want to clear this but I can't seem to find any information on how to do this. I've tried using service bus explorer but it took a long time just trying to…
dreza
  • 3,605
  • 7
  • 44
  • 55
2
votes
1 answer

Can I obtain the exception or reason a message put into the dead letter / poison queue?

I am using Azure's service bus with the web jobs SDK as described in this tutorial with the dead letter (poison) queue. Keeping it simple, I'm using POCO queue messages. When a message processing function fails enough times, the message is moved to…
Aaron B
  • 859
  • 11
  • 17
2
votes
1 answer

Camel Dead Letter Channel Processor

Below is my camel route code .errorHandler(deadLetterChannel("jmstx:queue:ErrorHandler") .useOriginalMessage() .maximumRedeliveries(1)); from("jmstx:queue:ErrorHandler") .log("Sending Exception to MyErrorProcessor") …
Balaji Kannan
  • 407
  • 6
  • 24
2
votes
1 answer

How can I check if a message is about to pass the MessageRetentionPeriod?

I have an app that uses SQS to queue jobs. Ideally I want every job to be completed, but some are going to fail. Sometimes re-running them will work, and sometimes they will just keep failing until the retention period is reached. . I want to keep…
Trevor
  • 995
  • 3
  • 10
  • 25
2
votes
1 answer

How to use RepublishMessageRecoverer in Dead lettering?

I have dead lettering set up for a few queues that I am using. In the configuration I use:
Nandita Rao
  • 277
  • 1
  • 4
  • 17
2
votes
0 answers

Reading the transactional dead-letter queue by wcf

I'm trying to create a dead letter queue service in wcf with following service configuration:
Enyra
  • 17,542
  • 12
  • 35
  • 44