Questions tagged [dlq]

28 questions
0
votes
1 answer

AWS SQS how does SQS know that processing of a message failed?

I'm reading aws documents on deadletter queue and re-drive policy, and the document mentioned "The redrive policy specifies the source queue, the dead-letter queue, and the conditions under which Amazon SQS moves messages from the former to the…
Yituo
  • 1,458
  • 4
  • 17
  • 26
0
votes
0 answers

How to consume a dead letter queue in AWS SQS using Justsaying

I'm working with SQS in my application. I have the following configuration. justSaying .WithSqsTopicSubscriber() .IntoQueue(_busNamingConvention.QueueName()) .ConfigureSubscriptionWith(x => { …
Venkatesh Dharavath
  • 500
  • 1
  • 5
  • 18
0
votes
0 answers

AWS SQS - Configure the number of times the message to move from DLQ to source queue using Redrive policy

Is there a way to configure the redrive policy so that the number of times the messages to move from DLQ to source queue, or it keeps on redriving the messages to the source queue from DLQ if we set the redrive policy? I went through the AWS…
Sumanth
  • 1
  • 1
0
votes
1 answer

How to implement Kafka DLQ in asp.net

How can I create kafka DLQ for consumer using asp.net core var kafkaConfig = new ConsumerConfig { GroupId = _configuration["ConsumerGroup"], BootstrapServers = _configuration["KafkaServer"] …
Venkat
  • 31
  • 4
0
votes
1 answer

how to programatically trigger "Start DLQ Redrive"

In my application we are using aws SDK along with Nodejs, i have a source queue and DLQ Queue, i need to programatically trigger "Start DLQ Redrive", Through the console it is pretty strighforward, but how we can trigger this programatically, i…
yasarui
  • 6,209
  • 8
  • 41
  • 75
0
votes
0 answers

How to find how many messages have gone to the DLQ for the past year in Azure Servicebus queue?

We have a query that archives all of the DLQ messages in our service bus queue after a set period of time. The problem is that these messages are archived in bulk so we don't have a specific number. Is there a way to find the total number of…
0
votes
0 answers

How to set the SQS redrive allow policy in Java CDK

I'm using Java CDK to create a queue and a dead-letter-queue (DLQ) in AWS. In my DLQ, I need to set the Redrive allow policy to enabled so that it can be used as DLQ, but I can't find the function in CDK that allows me to set it. Queue…
Caesar
  • 9,483
  • 8
  • 40
  • 66
0
votes
0 answers

SQS fifo with dead letter queue and lambda failing to process messages within the same group after getting runtime exception

I’m using SQS fifo with a dead letter queue with Lambda. My maxReceivecount is 1 and visibility timeout is 15 minutes. When one message fails with a runtime exception, it is not immediately removed to the dead letter queue, it waits 15 minutes. Also…
Marina Sovic
  • 167
  • 2
  • 9
0
votes
1 answer

ServiceBusClient to read Dead letter message reason

I am creating an instance of ServiceBusClient to create MessageReceiver object. The MessageReceiver gives access to PeekMessageAsync method to peek into the DLQ messages and read the reason and error description. I want to use the ManagedIdentity to…
0
votes
0 answers

Alert for message landing in a DLQ with consumer

I have a AWS DLQ linked to an AWS SQS. Such DLQ has a consumer so any message landing in the DLQ is immediately consumed and stored in a DynamoDB table. I'd like to implement an alert that is triggered every time a message lands in the DLQ. I wanted…
Akinn
  • 1,896
  • 4
  • 23
  • 36
0
votes
1 answer

How to set expiry for specific ActiveMQ queue

the documentation of ActiveMQ is giving me a hard time so you are my last hope :D What i want: An expiration date on messages in the outgoing queue. Messages in the incoming, DLQ and RTS Queue should stay for ever. So expiration is always 0 except…
TheBohne
  • 79
  • 1
  • 10
0
votes
0 answers

NO error but still messages are moved to DLQ

I am using SQS queue for task execution and DLQ enabled for this queue. In my case successfully processed task messages are also moved to DLQ.. We cross checked in our logs for particular task no nay error log but still could see that task in DLQ.…
Subburaj
  • 5,114
  • 10
  • 44
  • 87
0
votes
1 answer

Google Pubsub - how to add/update custom attributes before NACK()

Google pubsub allows to add custom attributes to messages before publishing them, e.g.: { data: { something: "value" }, attributes: { attribute1: "value" } }; When receiving a message in a subscription, you must ack() or nack() the…
1
2