Questions tagged [dead-letter]

250 questions
2
votes
1 answer

Akka Remote Routing using Java

I am trying to implement a basic broadcast router in which the routees are on remote machines. The code is as follows : localApp.conf akka { log-dead-letters = 10 log-dead-letters-during-shutdown = off actor { provider =…
Aditya Pawade
  • 866
  • 9
  • 19
2
votes
1 answer

configuring dead letter queue in WebSphere MQ

I am using IBM Websphere and MQ in my application and now I wanted to know how I can configure (or) make Websphere understand that there is a dead letter queue say DEAD.QUEUE created in MQ and it should use this queue in case of any failure while…
user1455463
  • 23
  • 2
  • 7
2
votes
0 answers

Stomp ruby gem does not publish on dead letter exchange queue Rabbitmq

I'm trying to publish on a queue (RabbitMQ) with x-dead-letter-exchange and x-message-ttl header via ruby stomp gem https://github.com/stompgem/stomp It works fine via management panel, but I can't see my message published using this code: …
2
votes
0 answers

VBScript MSMQ Dead-Letter Queue Count

I'm trying to get a count of the number of messages in the dead-letter queue using VBScript. Here's my code: Option Explicit Dim mqQ, QueueName set mqQ = CreateObject("MSMQ.MSMQManagement") mqQ.Init "localhost", ,…
Ken J
  • 4,312
  • 12
  • 50
  • 86
1
vote
0 answers

Nats try to add a consumer attached to $JS.EVENT.ADVISORY.CONSUMER.MAX_DELIVERIES

I'm using jetstream with interest approach. I see that to create a dead-letter, one of the approach is binding to event of $JS.EVENT.ADVISORY.CONSUMER.MAX_DELIVERIES and call to get particular message to save it. I try it using the subscribe…
ETorre
  • 104
  • 3
1
vote
2 answers

Deleting dead letter messages with Python

Helo, I have the next code that delete a dlq messages from Azure Service Bus Topics: import asyncio from azure.servicebus.aio import ServiceBusClient from azure.servicebus import ServiceBusSubQueue from azure.servicebus.management import…
1
vote
0 answers

Configure AWS SQS Dead Letter Queue in AWS for a specific error message

Is there any way in AWS SQS to route only the messages failed with particular error message to DLQ (Dead Letter Queue)? By default, all the unprocessed messages are sent to DLQ. Is there any way to customize it based on error message?
Kingston X
  • 65
  • 5
1
vote
1 answer

How does Azure Dead-Lettered Message count work in Service Bus Standard Metrics?

I configured azure metric alert when there is a dead-lettered message in a specific topic. The dead-lettered queue only has one message but I discovered that when using Average, it is not always remain as absolute number (1) sometime it shows as 0.8…
Henri
  • 69
  • 1
  • 6
1
vote
1 answer

IBMMQDotnetClient deat letter queue .net6

I had a problem in implementation of dead letter queue in IBM MQ in .net6. I am using IBMMQDotnetClient library from nuGet. The problem is that when we face to any message which is not successfully commited, the message from queue continues in…
1
vote
1 answer

Does google pub sub deliver messages to dead letter queues with the same message id?

If you have topic t1 with subscriber s1 and s1 has dead letter forwarding to topic t2 with subscription s2, then do messages delivered to s1 have the same ids as their versions delivered to s2? My preliminary testing indicates the ids are not the…
Gavin Haynes
  • 1,721
  • 11
  • 21
1
vote
1 answer

Axon FW 4.6 comes with Dead Letter Queue support, but is it possible to still have rollback support in case of exception?

we're looking into using the new feature of Axon, dead letter queue(DLQ). In our previous application (axon 4.5x) we have a lot of eventhandlers updating projections. Our default is to rethrow exceptions when they occur, which will trigger a…
davince
  • 13
  • 2
1
vote
2 answers

RabbitMQ message still retries after throwing AmqpRejectAndDontRequeueException

I have a simple Spring Boot application where I have the following settings for RabbitMQ (spring-boot-starter-amqp version is 2.7.0): spring: rabbitmq: host: localhost port: 5672 virtual-host: my_host username: admin password:…
victorio
  • 6,224
  • 24
  • 77
  • 113
1
vote
1 answer

AWS FIFO SQS: How does SQS maintain ordering in a group when a message is stuck in DLQ?

I am planning to use AWS FIFO SQS to keep record of current status of each item in my datastore. I will be using the unique identifier of each item as the messageGroupId to ensure strict ordering of messages for each item. Does SQS ensure that if a…
1
vote
1 answer

How to configure DLQ in a stateful application with Spring-Boot?

I need to create an application using stateful retry, that listen to a Kafka topic and make calls to some APIs and then commit the message. If in one of these calls an error occurs, for example a timeout, the application must retry 4 attempts with…
1
vote
0 answers

Kinesis with DLQ message struct

I defined a DLQ for Kinesis stream and now I'm creating a lambda that will receive SQS messages and handle them. I saw at AWS docs that the message format is: { "requestContext": { "requestId": "c9b8fa9f-5a7f-xmpl-af9c-0c604cde93a5", …