Questions tagged [poison-queue]

13 questions
16
votes
9 answers

Azure: How to move messages from poison queue to back to main queue?

I'm wondering if there is a tool or lib that can move messages between queues? Currently, i'm doing something like below public static void ProcessQueueMessage([QueueTrigger("myqueue-poison")] string message, TextWriter log) { …
vbn
  • 789
  • 1
  • 6
  • 16
6
votes
6 answers

Azure Storage Queue - processing messages on poison queue

I've been using Azure Storage Queues to post messages too, then write the messages to a db table. However I've noticed that when an error occurs processing messages on the queue, the message is written to a poison queue. Here is some background to…
laffaner
  • 61
  • 1
  • 1
  • 3
3
votes
1 answer

Azure Function Poison Queue Alerting

Is it possible to create alerts off of posion queue? I have a blob trigger function but when it fails x number of times, it throws this message onto the poison queue. What I am trying to do is create an alert when that poison queue has a count of…
Dr Schizo
  • 4,045
  • 7
  • 38
  • 77
3
votes
1 answer

Azure alerting rule for poison queue count

In a pervious project I have managed to setup a Alert rule that looks at poison queue message count and alerts using a webhook into slack when something is in the queue (once per day). I was trying to find where this exists in Azure as it looks like…
Faesel Saeed
  • 199
  • 1
  • 15
1
vote
1 answer

Azure poison queue not being created for azure queue trigger functions failure

I'm working on some automation work for azure activities with powershell, as a part of it we are using queuetrigger functions. But whenever an error occurs the poison queue for those messages is not creating. We are able to log the errors in…
1
vote
1 answer

Move to Rebus error queue not triggered after maximum abort failures

The default Rebus configuration, according to the error handling wiki, should move a poison message to the error queue. It is not happening in a situation where a third party component is causing a stackoverflow exception. The underlying queue is…
1
vote
1 answer

Handling Poisoned Queue Messages in Self-Hosted WCF/MSMQ

I'm trying to setup a WCF service to handle poison queue messages and I'm struggling to do so. I have a WCF service configured as:
Brian Mains
  • 50,520
  • 35
  • 148
  • 257
0
votes
2 answers

Python 3.10 multiprocessing hangs (only sometimes) after poisoning

I've got the following toy script: #!/usr/bin/env python3 import multiprocessing as mp def main(): queue = mp.Queue() stop = mp.Event() workers = [] n = mp.cpu_count() print(f"starting {n} processes") for i in range(n): …
Dan Jenson
  • 961
  • 7
  • 20
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

Time triggered Azure Function and queue processing

I have a Function called once a day processing all messages in a queue. But I would like to also have the retries and poison messages logic as with the Queue Trigger. Is this somehow possible?
Stig
  • 1,974
  • 2
  • 23
  • 50
0
votes
0 answers

MSMQ poison message time in subqueue

I wanna know for how long do poison messages live in the poison subqueue. I have been reading documentation and it does not seem to be clear... Thanks in advance
parayac
  • 3
  • 2
-1
votes
2 answers

Azure poison queue: nodejs - how to create a dequeue threshold

I've created a storage queue, inserted a message to the queue. I keep reading the message with a webjob written in node, I can see the dequeue count is increasing. However, its never been put to the poison queue. Is this taken care by azure or…
vbn
  • 789
  • 1
  • 6
  • 16
-2
votes
1 answer

Birth Death Code

My question: At an institute for experimental mathematics there is a computer that helps solve problems. Problems arrive to the computer at a poisson process with intensity "Landa" per hour. The time to solve each problem can be seen as a…
PeterNiklas
  • 75
  • 1
  • 9