Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
72 views

I’m using Spring Boot with Kafka and the @RetryableTopic annotation. What I want to achieve: Messages that end up in the DLQ should instead be wrapped in a custom type (DlqEventWrapper) that includes ...
bob's user avatar
  • 280
0 votes
1 answer
43 views

I am an integration tester on a project that has only just started using Azure Service Bus Topics and although I have permission to view the Dead Letter Queue, it's becoming difficult to find the ...
elaine clark's user avatar
-1 votes
1 answer
75 views

For items in an Azure queue that my application cannot process, I want them in a dead letter queue. Ignoring the differences between a DLQ and a PMQ, we only want to be able to deal with two queues. ...
happybuddha's user avatar
  • 1,346
0 votes
1 answer
57 views

Background: I have the following flow process: Peer Actor on one instance generated and sends a PeerRequest proto (via http) to another instance The PeerServer receives and process the request It ...
Kris Rice's user avatar
  • 923
0 votes
1 answer
571 views

I'm currently facing problem where sometimes when a pubsub message is published, the message goes straight into the dead letter, without any attempt to deliver it to the corresponding subscriber. The ...
Rayhan Mustofa's user avatar
0 votes
1 answer
142 views

I'm trying to move ServiceBus triggered message to deadletter queue inside once of the Azure durable function activity. [FunctionName(nameof(CaviContainerStart))] public async Task CaviContainerStart( ...
novice developer's user avatar
0 votes
1 answer
499 views

I am trying to resubmit messages from the deadletter queue on a Azure service bus that is configured with a topic queue that has partitioning and duplicate detection enabled. When I try to add one or ...
andersmi's user avatar
2 votes
1 answer
698 views

According to the internet (my question is at the bottom), when using the drop-head overflow behavior in RabbitMQ, it's important to understand that this behavior is distinct from the mechanisms that ...
Alexander Mills's user avatar
0 votes
0 answers
63 views

I'm using Apache Camel to build integrations, and I want to persist failed messages so I can build the UI and allow user to redeliver / reprocess them when they decide it's time to do it. I have a ...
Damir Palinić's user avatar
0 votes
1 answer
355 views

I have set up a PubSub BigQuery Subscription. My topic has a schema, and I am able to succesfully write to the BigQuery table. I have been stress testing the workflow to ensure that all messages sent ...
gcp-man's user avatar
0 votes
1 answer
168 views

I'm trying to get better at using micro services and I'm stuck on something. I'm working with: ASP.NET Core 7 Web API (for the micro services) C# SQL Server RabbitMQ and MassTransit Docker compose (...
PicBuilder's user avatar
-1 votes
1 answer
115 views

Have Consumer that should process DLQ queue messages also want additionally log information about messages that come to DLQ by Lambda. See two possible solutions. from these two solutions on image ...
nahab's user avatar
  • 1,374
0 votes
1 answer
66 views

Why I got message which is set 10min ttl before the 20min ttl message which is sent early than the 10min ttl message? I expect that get 20min message firstly, and then get 10min message secondly. ...
cwww3's user avatar
  • 11
0 votes
1 answer
614 views

I am working on building an integration project which involves the usage of Azure Service Bus Topic subscriptions and an Azure Function app subscribing to the topic. My essential requirement is to ...
Raju Rudru's user avatar
  • 1,132
0 votes
1 answer
186 views

MSMQ system queues include a) journal messages, b) dead-letter messages, c) transactional dead-letter messages. In "Journal messages" there are all journal messages of private queues. I have ...
joanin's user avatar
  • 11
0 votes
0 answers
437 views

I'm new to MassTransit and Azure Service Bus. When a received message fails due to an unexpected exception, or maybe an unlucky power failure, I would like the message to go to the deadletter queue (...
IConfuseEasily's user avatar
2 votes
0 answers
130 views

Is there posibility to setup RabbitMQ dead-letter queue to auto-deleteing itself when has no waiting messages to re-deliever? I have dead-letter queue with arguments: x-message-ttl: 15000 x-dead-...
Marcin Duszyński's user avatar
0 votes
0 answers
191 views

I have a kafka consumer class which has 2 listener TOPICS and a DLQ listener. When load testing with million records i.e.producing 15 requests per second that reaches topic-1 and 1 request per second ...
KGT's user avatar
  • 37
0 votes
1 answer
2k views

For context We currently have a data mining script which collects a massive throughput of event data and publishes it to a Pub/Sub topic with a schema enforcement (with all fields being optional). A ...
Keith Cozart's user avatar
1 vote
1 answer
301 views

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 ...
Henri's user avatar
  • 69
0 votes
1 answer
101 views

I have a topic that delivers to a push subscription with ordering keys enabled. The retry limit is about 15 with exponential backoff up to 10 minutes. It looks like some messages are being processed ...
Gavin Haynes's user avatar
  • 2,080
1 vote
1 answer
313 views

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 ...
Gavin Haynes's user avatar
  • 2,080
0 votes
1 answer
117 views

My dev env : Java 8 spring-kafka - 2.6.1 spring-kafka-test- 2.6.7 spring-boot - 2.3.10 Rest API to send message @PostMapping( value = {"publish"}) @ExternalApi public ResponseEntity&...
Learner's user avatar
5 votes
2 answers
3k views

Is it possible to create Dead letter queue for cloud tasks (GCP) ? I am using cloud tasks instead of pub/sub to have control over the concurrent massages send. However, unlike pub/sub, cloud task ...
jelly's user avatar
  • 51
0 votes
1 answer
1k views

I have a RabbitMQ instance that has an exchange, a regular queue and a dead letter queue. Rejected messages are moved from the regular queue to the dead letter queue. These rejected messages are not ...
Isegrimm's user avatar

1
2 3 4 5 6