0

jms queues has jmsdeliverycount.If message read from queue one more time we can track with this property.What is the equvaliant of this RabbitMQ .net. I want to check how many times this message read from queue(in transactional reads)

Bilgehan
  • 1,135
  • 1
  • 14
  • 41
  • Solution is possible now. Refer - https://stackoverflow.com/questions/23158310/how-do-i-set-a-number-of-retry-attempts-in-rabbitmq – deathrace May 18 '23 at 07:00

2 Answers2

1

Currently there is nothing out-of-the-box. All you get is a redelivery flag to say it has been redelivered, but not how many times.

You can track this issue.

Vanlightly
  • 1,389
  • 8
  • 10
1

Quorum queues track the number of redeliveries, in the x-delivery-count header. See here

There is a feature request to add the same to classic queues.

Gert van den Berg
  • 2,448
  • 31
  • 41