-
Notifications
You must be signed in to change notification settings - Fork 38.4k
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
Doc: AbstractMessageListenerContainer rejecting messages on shutdown causes message loss in AUTO_ACK mode [SPR-16487] #21030
Comments
Juergen Hoeller commented If you care about message loss, I'd generally recommend transacted JMS sessions. Any form of non-transactional acknowledgment may lose messages (after a number of retry attempts) and is only really meant to be used with notifications in event queues and topic subscriptions. I don't see So from |
hezhou commented Thanks for reply. |
hezhou commented I mean Asynchronous ways : Jms1.1 tutorial excactly specify when ack should happens in AUTO_ACK module Asynchronous: acknowledgement happens right after the “onMessage” method returns successfully after invoking consumer’s MessageListener. Thus if JMS crashes after “onMessage” completed but before the acknowledgement was recorded, a duplicate of the message will redeliver. So if user‘s “onMessage” method not completed or throw runtimeException ,JMS provider will guarantee the message not loss. Thus why not throw the MessageRejectedWhileStoppingException exception to Jms Provider, depends on its behavoir. |
Juergen Hoeller commented I see your point but unfortunately that part of JMS is not as well-specified as it may seem. JMS providers react to exceptions from Another noteworthy difference is between For that reason, Spring's message listener containers never propagate exceptions to the JMS provider. Instead, they offer a All in all, |
hezhou commented Thanks a lot. In code , just override the handleListenerException(AbstractMessageListenerContainer) method in SimpleMessageListenerContainer class , and its docs also suggests to be overridden. We hope Spring's default usage and config is enough for users, and not need users to do such more. |
Juergen Hoeller commented We opted for consistent behavior between our message listener container variants here, and also for defensiveness against different JMS providers. See my quote from the JMS specification above: A The hint at "immediate redelivery" in the spec is not helpful for our purposes either: We don't want immediate redelivery for regular processing exceptions and we don't want them on shutdown either. Instead, we want an unprocessable message to go back to its queue and be redelivered to a different consumer later on, ideally without increasing its redelivery count. There are no reliable semantics for All in all, I stand by my recommendation:
I've turned this ticket into a documentation task along those lines. While this topic is covered in several places already, it arguably deserves a more prominent note in the reference docs. |
Juergen Hoeller commented I've added several explicit notes on transacted sessions vs AUTO_ACKNOWLEDGE now: to the reference documentation as well as to the javadoc of the affected annotations. |
hezhou opened SPR-16487 and commented
The property acceptMessagesWhileStopping in AbstractMessageListenerContainer has defult value false, which will reject messages when shutdown and causes message lossing for AUTO_ACK.
But JMS1.1 tutorial section 4.5.2 specify :
The result of a listener throwing a RuntimeException depends on the session's
acknowledgment mode.
• AUTO_ACKNOWLEDGE - the message will be immediately redelivered.
The number of times a JMS provider will redeliver the same message before
giving up is provider dependent.
Affects: 4.3.14
Attachments:
Referenced from: commits d60446a, 95f7180
Backported to: 4.3.15
The text was updated successfully, but these errors were encountered: