-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RedeliveryCount is 0 on redelivery #18239
Comments
Hi @nakonczy , Currently only the client call redeliver messages(use redelivery method or enable ack timeout) will result in the message redelivery count increase. The redelivery count is introduced by the DLQ feature in Pulsar originally. If the connection broker also lead to the redelivery count increase, the consumer might never process the message but the message delivered to the DLQ. |
I can confirm this behaviour on Pulsar 2.8.1 using the Python client and shared subscription mode. My experiments suggest that the broken forgets redelivery counts for the given consumer name when the last consumer with that name disconnects. This IMHO prevents implementing reliable dead-letter policy. A message that always leads to OOM or an exception will never reach DLQ if there is just one consumer. If my observations are correct, is there any way for the broker to save redelivery counts for some time even after the last consumer with that name disconnects? Thank you for any help or explanation. |
The feature @asgeirrr describes would be incredibly useful for us. One or both of two things (the first probably easier than the second to implement) would be ideal:
|
Hi all, we are also looking for this feature to be implemented. Our use case is that we need to know deterministicly if a message is being redelivered due to nack or brand new. |
Hi @BewareMyPower. I suppose it's not really related to C++ client. It happened also with Java client and Python client. I wonder why this should be handled at client side at all. |
@MichalKoziorowski-TomTom It's because the original issue was tagged with Now I moved it back to Pulsar and tagged with the correct labels. |
I understand now. Thank you. |
We are also hoping there can be progress on this issue - Any updates now that its been a year later? |
Describe the bug
I have a pulsar server with a single topic and a message produced to the topic.
It is a standalone server.
I have a client app having a single consumer.
Subscription type is Shared.
When I receive the message, and then stop the client app before ack-ing, and then start the client app again, then the message is redelivered as expected, but with redeliveryCount=0 (expected 1).
Similarily, when the consumer reconnects due to temporary lack of connectivity to pulsar server before ack-ing, then the redelivered message has the redeliveryCount=0.
To Reproduce
Steps to reproduce the behavior:
sudo iptables -I INPUT -p tcp -m tcp --dport 6650 -j REJECT
sudo iptables -D INPUT -p tcp -m tcp --dport 6650 -j REJECT
OR:
Expected behavior
Redelivered message's redeliveryCount value should be 1 instead of 0.
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: