Questions tagged [dead-letter]

250 questions
4
votes
0 answers

DeathWatchNotification when stopping parent actor

I have the following actor hierarchy: The receiver is responsible for handling HTTP requests. When a request comes this actor creates a child actor coordinator (actually with a dynamic name). After the coordinator finishes its work it executes…
Monsignor
  • 2,671
  • 1
  • 36
  • 34
4
votes
1 answer

Azure web job, service bus trigger not triggered for old messages available in the queue

I have implemented the azure web job to consume messages from azure service bus. Service bus trigger works fine for new messages arrived to service bus but its not picking up the messages that were already available on the service bus before service…
4
votes
1 answer

Dead-letter in Akka Scala actors

I have a very simple structure based on Akka actors in Scala, but I keep on receiving warnings about undelivered messages. This is the code for the main class, Collector is a separate class extending Actor: object Executor extends App { class…
Michal B
  • 280
  • 5
  • 10
3
votes
1 answer

Dead letter queue for cloud tasks

Is it possible to create Dead letter queue for cloud tasks (GCP) ? I am using cloud tasks instead of pub/sub to have control over the concurrent massages send. However, unlike pub/sub, cloud task doesn't seem to use dead letter queue. Is there other…
3
votes
1 answer

GCP Pub/Sub does more retries than configured

I have a Pub/Sub push subscription that is triggering Cloud Function. There is retry policy with expotential backoff and dead lettering enabled. Configuration is next: Acknowledge deadline is 60s Exactly once delivery enabled Maximum delivery…
3
votes
1 answer

Force a message from SQS Queue to its dead letter queue?

Trying to write some tests for my AWS SQS Queue and its associated Dead letter queue. I want to somehow in my tests force the message from the queue to its DLQ, then read from the dlq to see if the message is there. Reading from the DLQ is no…
Slippy
  • 93
  • 1
  • 10
3
votes
2 answers

AWS SQS How can I reset a message's ReceiveCount

For various reasons my consumer on AWS sometimes reads a few messages from an SQS queue and decides to put some of them back in the queue to be processed later. The way I do that is by setting their VisibilityTimeout to 0 which makes them…
user972014
  • 3,296
  • 6
  • 49
  • 89
3
votes
1 answer

PubSub deadlettering and retry policy not working as expected

As seen below, I have a subscription set to retry 5 times and them move the message to a deadlettering queue. I also have the retry policy set to exponentially back off. This is however not happening. All the config was done using the web console…
3
votes
1 answer

How to send mail/alert when message moved to Dead Letter Queue (ASB DLQ)?

I am trying to send a mail alert when message passed to Azure Service Bus Dead Letter Queue. I did not find any proper solution to send mail alert. Can we process this in which side azure or .net core? if so can anyone help with the process
3
votes
1 answer

AWS SNS Topic Sub: Dead-letter queue (redrive policy) permissions denied

I've got an SNS topic & subscription (actually more than 1) setup to use a SQS DLQ. However each one is telling me I have a policy error. My SNS subscription has the DLQ set: My queue exists: And I have this access policy set on the SQS Queue: { …
Blundell
  • 75,855
  • 30
  • 208
  • 233
3
votes
0 answers

RabbitMQ DLX does not work when publishing directly to a queue

I have encountered an issue, and I can't find any solutions for it either. I have 2 RMQ servers, let's call them RMQ1 and RMQ2. A Message is first published to main_exchange on RMQ1 which routes it to main_queue on RMQ1. There are no consumers set…
A. Kalantari
  • 133
  • 9
3
votes
1 answer

Get max retry count for queue message in xDeath in rabbit Mq in C#

I want to implement DLX in rabbit MQ which sets the retry count for the failed messages. If the retry count is greater then 5 then the message will automatically be discarded. Below is the snippet for the DLX. string WORK_EXCHANGE =…
TrinTrin
  • 430
  • 5
  • 12
3
votes
1 answer

getting cause:null in property dlqDeliveryFailureCause

I am trying to set up Dead Letter Queue monitoring for a system. So far, I can get it to be thrown in the DLQ queue without problems when the message consumption fails on the consumer. Now I'm having some trouble with getting the reason why it…
lfernandez93
  • 143
  • 1
  • 1
  • 7
3
votes
2 answers

How do we analyze messages in Dead Letter queue for Activemq

The Broker then takes the message and sends it to a Dead Letter Queue so that it can be analyzed later on. These are the quotes from apache activemq article. My strategy is also the same. I want to analyze the messages in dead letter queue…
hars
  • 127
  • 4
  • 17
3
votes
0 answers

How to keep messages in an SQS queue for longer than 14 days?

I have a queue that is going to have a massive number of messages on it, which will be processed over many days. It is likely that some of the first messages onto the queue could still be there waiting for a chance to be processed for longer than 14…
Mitchell Griest
  • 467
  • 1
  • 7
  • 21
1 2
3
16 17