Questions tagged [dead-letter]
250 questions
1
vote
3 answers
RabbitMQ - routing messages after they reach their expiration time
I've recently found out RabbitMQ feature that allows you to delay messages and it works great although I couldn't find any examples similar to what I need:
Let's say there are 3 types of messages: A, B and C. We've got 2 delay_queues with 1 hour and…

Herwish
- 93
- 1
- 9
1
vote
1 answer
RabbitMQ Dead Lettter queue never persistent
Is there a way to ensure when you NACK a message and it gets sent to a dead letter exchange/queue that it will be persistent? It seems by default even if the original message is set as persistent with SetPersistent(true), the dead lettered message…

Deofol
- 23
- 4
1
vote
1 answer
Configuring the same dead letter queue for several JMS queues in JBoss 7.1
I have a java application running on JBoss 7.1. It is using more than 20 JMS-queues.
My configuration to setup the JMS queues:

Ananth
- 65
- 1
- 7
1
vote
1 answer
RabbitMQ: Can dead-lettered message die again?
We have implemented delayed message processing with 2 queues and x-dead-letter-exchange/x-message-ttl where after message timeout in queue1 it will go to queue2.
Now is it possible to setup RabbitMQ so that if during processing messages from queue2…

Artem
- 7,275
- 15
- 57
- 97
1
vote
0 answers
Dead letter exchange queue set up not functioning as expected
I have an queue that is bound to an exchange as follows:
…

Nandita Rao
- 277
- 1
- 4
- 17
1
vote
1 answer
message goes to dead letter instead of sender (akka router) [scala]
Actually I`m having trouble with getting my actor (router) system to work correctly.
My Setup:
I`m trying to use an akka router within an play controller. For dependency injection I use scaldi.
scaldi module:
class UserDAOModule extends Module {
…

heiningair
- 441
- 1
- 6
- 23
1
vote
0 answers
Manage Azure deadletters via powershell scripts
Does powershell have commands to manage Topic-subscription deadletters. I want to write powershell scripts to download all deadletters or possibly iterate through deadletters and repost them based on certain criteria.

user2366265
- 35
- 6
1
vote
1 answer
nservicebus: events and dead letter queue
Using the Pub/Sub model with NSB, the following two scenarios seemingly cause the dead-letter queue to fill up, eventually resulting in a "Insufficient resources" error.
1) Publishing an event type that has no subscribers
2) Subscriber is…

user3429570
- 75
- 3
1
vote
1 answer
Dead-letter Queue
my question is about WebSphere MQ's Dead-letter.
How I can view on ISPF the queue manager's dead-letter?
Each queue manager has a default dead-letter queue or I need to define it?
Thanks so much!

Bruno Neuman
- 125
- 1
- 8
1
vote
1 answer
akka 2.2.0 Scala 2.11 "message was not delivered" - unless using Thread.sleep(50)
I am new to Scala and Akka but have a simple scenario... I am attempting to take a list of urls, sending each url as a message into a new actor that will make an http GET request. With only a list of 16 urls, I get about 40-65% successes with the…

mytwocents
- 847
- 17
- 29
1
vote
1 answer
Dealing with Dead Letter Queue (DLQ)
What is considered the best approach to deal with a JMS message that is causing an exception in a message queue?
What I have done is to setup a DLQ for a specific queue. I will retry to process the message 5 times with a retry delay of 30 seconds.…

ChristiaanP
- 655
- 6
- 20
1
vote
1 answer
Dead Letter Queue in Camel vs ActiveMQ?
I am using Dead Letter Channel EIP exactly as described in Camel docs for Dead Letter Channel. Here is my camel.xml (headers removed)