Questions tagged [dead-letter]

250 questions
0
votes
1 answer

How to work with Dead Letter Queue in Azure Service Bus Binding Function 2.x?

The Azure Service Bus Binding Function 2.x is straight forward to subscribe message from the queue, however, is there anyway that I can use same scenario to deal with any message that's being pushed into the DLQ using Azure Functions? I've been…
Drex
  • 3,346
  • 9
  • 33
  • 58
0
votes
1 answer

Actor is getting killed before processing the message

I am using akka streams. So i am having one actor with this functionality. Both messages were getting processed in order sometimes . but due to async call (I THINK) , i am getting dead letter in this. actor.tell(message,ActorRef.noSender());…
Mayank
  • 21
  • 2
0
votes
0 answers

What is the best approach to handle application errors in a Spring cloud stream with kafka-stream-binder based applications?

The error handling approaches mentioned in the spring cloud stream documentations does not work with kafka stream binders. Also, explicitly calling the DLQ handler only works with kafka lower level processing. There does not seem to any application…
0
votes
1 answer

How to filter messages that I want to send to SQS - AWS Lambda

I have a Lambda function to send messages from a SQS deadletter to another SQS, but now I want to customize it, where I can specificate the range of the dates, type, another among, maybe from AWS CLI where I can specificate the configuration test…
Carlos Andres
  • 12,740
  • 7
  • 18
  • 34
0
votes
2 answers

AWS SQS Dead Letter Queue - only in certain cases

My question isn't very easy but I believe I will find with Your help the solution for my problem. I have a microservice that reads messages from AWS SQS queue and saves it in Redis. On AWS I have two queues: AQueue (standard…
Matley
  • 1,953
  • 4
  • 35
  • 73
0
votes
1 answer

How to ignore maxAttempts & send message to DLQ?

I am using RabbitMQ. The consumer-api is using spring-cloud-steam. Currently, as maxAttempts is 3, if the consumer fails to process the message, then it will be queued again. And this will happen 3 times. If 3rd time also message fails, then it…
0
votes
1 answer

ActiveMQ - What is the TTL value of an Advisory Message?

I need to know What is the TTL value of an advisory message ? I have around 17 thousand messages enqueued in my Advisory topics and it shows 0 dequeues messages. I want to get rid of these messages. What is the possible way to do that. …
learner
  • 906
  • 2
  • 10
  • 39
0
votes
0 answers

Messages ending up in dead letter queue

I have the following code @Override public void onReceive(Object msg) throws Exception { if (msg instanceof newRequest) { ActorRef childRouter = getContext() .actorOf( new…
user_mda
  • 18,148
  • 27
  • 82
  • 145
0
votes
1 answer

Unable to find property descriptor useOriginalBody on class org.apache.camel.builder.DeadLetterChannelBuilder

I'm trying to use the deadLetterChannelBuilder but can't find the correct properties for it. does anyone know what they are or where to find them? the one's in the doc don't seem to work. ? Unable to find property descriptor useOriginalBody on…
GLMills
  • 558
  • 1
  • 12
  • 37
0
votes
0 answers

MQ messages keep looping between destination, backout and dead letter queue

I have a queue Q1 which has backout queue as QB and backout threshold as 3. I'm working on various possibilities of handling poison messages so I have made my application throw exception whenever I read a message from the queue and keep polling the…
Ravi Shankar
  • 11
  • 1
  • 2
0
votes
1 answer

Does it make sense to route every third-party API call through RabbitMq to use its dead-letter mechanism?

For example, we want to pass some of our information to third-party API. We can't rely when this API would go down i.e. network error. So, we have two choices: Log failures of the request being pushed in this API and try pushing them through some…
Sahil Sharma
  • 3,847
  • 6
  • 48
  • 98
0
votes
1 answer

spring boot rabbitmq dead letter queue config not work

I config spring boot rabbit' dead letter queue, but ErrorHandler never receive any message. I search all the questiones about dead letter queue, but could not figure out. Can anyone help me ? RabbitConfig.java to config dead letter…
user7403364
  • 21
  • 1
  • 5
0
votes
2 answers

How to stop messages from going to Dead LetterQueue(DLQ) in Activemq after re-delivery policy

private BrokerService createBroker() throws IOException, Exception { BrokerService broker = new BrokerService();KahaDBStore kaha=new KahaDBStore(); File file =new File(path); TransportConnector connector = new…
hars
  • 127
  • 4
  • 17
0
votes
1 answer

Akka Cluster - message coming from dead letters?

I am using Akka Cluster and I have an interesting issue. I have one actor Actor1 on node A (akka.tcp://as@127.0.0.1:2554). This actor finds another actor on another node using val actor2sel = context.actorSelection(RootActorPath(m.address) / "user"…
ticofab
  • 7,551
  • 13
  • 49
  • 90
0
votes
2 answers

Resubmitting dead letter queue message inside a transaction scope

How can I read a message from a dead letter queue and put it back on the parent queue inside a transaction scope given the restriction of only one top level entity being able to participate in a transaction? Ordinarily I'd use a transfer queue to…