Questions tagged [dead-letter]

250 questions
1
vote
1 answer

Where do enqueued messages go after an actor is stopped Akka

So I understand that if you send a message to a dead actor the message goes to DeadLetters but what happens to the messages that were already enqueued for that actor. Do they also get forwarded there or do they get lost?
HashBr0wn
  • 387
  • 1
  • 11
1
vote
1 answer

Kafka dead letter queue, for messages with same key only

I have a kafka topic HrEvents, which contains a lot of Hire, Fire, Quit, Promotion and Demotion messages. Each HR event message has an employee_id property (also the key used for partitioning) and a data property which may contain arbitrary details…
derabbink
  • 2,419
  • 1
  • 22
  • 47
1
vote
3 answers

How to display dead-letter messages in Azure CLI

Currently we use Service Bus Explorer to connect to our Service Bus Namespace and manage our dead letters. However as this is a third party tool it's been asked that we do not use this anymore as there is a lot of sensitive data being pulled from…
1
vote
1 answer

Azure Service Bus Queue - Operation is not valid due to the current state of the object

I am using Azure Service Bus Queues in one of my .net core application to receive the messages from the Queue in the FIFO order. Once received the message from the Queue, then I have processed the business logic with each message. Once processed the…
Pradeep
  • 5,101
  • 14
  • 68
  • 140
1
vote
1 answer

SpringAMQP - Retry/Resend messages dlx

I'm trying to use a retry mechanism using DLX. So, basically I want to send an message for 3 times and than stop and keep this message stopped on dlx queue; What I did: Created WorkQueue bound to WorkExchange Created RetryQueue bound to…
1
vote
1 answer

Add additional information to Azure Function Dead-letter-queue if exception happened

I was writing a Azure function with service bus trigger while I noticed that if there is any exception occurred, after certain times of built-in retries, it will put the incoming message into the dead letter queue (or called poison-queue? in…
Drex
  • 3,346
  • 9
  • 33
  • 58
1
vote
2 answers

How to send service bus message to deadletter queue in NodeJS?

How can I send message to deadletter queue? serviceBusService.receiveQueueMessage(MESSAGE_QUEUE, {isPeekLock: true}, (error, message) => { ...... // want to put message to deadletter queue if there is exception …
DaiKeung
  • 1,077
  • 1
  • 19
  • 38
1
vote
0 answers

Handle Deserialization Error (Dead Letter Queue) in a kafka consumer

After some research i found few configuration i can use to handle this. default.deserialization.exception.handler - from the StreamsConfig errors.deadletterqueue.topic.name - from the SinkConnector config I cant seem to find the equivalent valid…
sharon gur
  • 343
  • 5
  • 22
1
vote
1 answer

RabbitMQ dead letter handling guarantees

If I use publisher confirms, I can be (reasonably) sure that a message sent to an exchange on the RabbitMQ server, and which received ACK from the RabbitMQ server is not lost even if the RabbitMQ server crashes (power outage for example). However…
John Donn
  • 1,718
  • 2
  • 19
  • 45
1
vote
1 answer

Amazon SQS message disappeared

I have an Amazon SQS queue and a dead letter queue. My python program gets a message from the SQS queue and then, if it raise an exception, it will send the message to the dead letter queue. Now I have a program that checks dead letter queue if…
Woootiness
  • 1,882
  • 2
  • 15
  • 18
1
vote
1 answer

Handling dead actors in Akka Typed

I have some actors that kill themselves when idle or other system constraints require them to. The actors that have ActorRefs to them are watching for their Terminated(ref), but there is a race condition of messages meant for the actors being sent…
Arne Claassen
  • 14,088
  • 5
  • 67
  • 106
1
vote
2 answers

Lambda does not put message in dlq

I just trying to test my DLQ for Lambda and I do not undesrtand why messages does not put on it. My code just doing 1 thing throw new Exception("Test");. The first mistake was understandable, I was trying to do this synchronously using button Test.…
1
vote
0 answers

Spring-Boot with RabbitMQ and TaskQueue / WorkerQueue

I'm trying to use the TaskQueue with RabbitMQ, enhanced with a Deadletter Queue. I have a number of Spring Instances which all take Tasks via REST, put them to the RabbitQueue and a RabbitListener Method receives the Message. The receiverMethod…
Tom K.
  • 51
  • 9
1
vote
1 answer

How to close JMS Connection properly

I have the following piece of code to poll my Dead Letter Queue in JMS. Message m = mconsumer.receive(3000L); while (m != null) { try { sendMessageToDB(m); } catch (DBException ex) { …
station
  • 6,715
  • 14
  • 55
  • 89
1
vote
2 answers

How to reject messages after shoveling from one queue to another?

With Spring and RabbitMQ I set up two topic-exchanges xand dlx and two queues qand dlq. q is bound to x and dlq to dlx. dlx is configured as dead-letter-exchange for q. When a message in q is rejected (with unqueue) it is successfully send to dlx…
Datz
  • 3,156
  • 3
  • 22
  • 50