Skip to content

AbstractMethodMessageHandler does not rethrow Errors [SPR-16912] #21451

@spring-projects-issues

Description

@spring-projects-issues

Bernhard Streit opened SPR-16912 and commented

We're using Spring Cloud AWS to receive messages from SQS.

Now, due to a bug, one of our services threw an OutOfMemoryError.

Having a redrive policy to a dead-letter queue set on the SQS queue, I assumed that with deletion policy NO_REDRIVE, the messages would get returned to the queue.

But that is not happening, as the AbstractMethodMessageHandler, that re-throws exceptions in case they occur, does not do that with errors (to be more precise, with all Throwables that are not of type Exception):

try {
	[...]

}
catch (Exception ex) {
	processHandlerMethodException(handlerMethod, ex, message);
}
catch (Throwable ex) {
	if (logger.isErrorEnabled()) {
		logger.error("Error while processing message " + message, ex);
	}
}

That has the effect that the SimpleMessageListenerContainer of Spring Cloud AWS Messaging assumes the execution finished without any error, and hence deletes the message from the queue:

 try {
        executeMessage(queueMessage);
        applyDeletionPolicyOnSuccess(receiptHandle);
} catch (MessagingException messagingException) {
        applyDeletionPolicyOnError(receiptHandle, messagingException);
}

executeMessage() returns silently, as the throwable was swallowed, and hence, applyDeletionPolicyOnSuccess() is executed next.

In case of an Exception, it would execute applyDeletionPolicyOnError, but not in case of an error.

Question: Is the Spring Framework violating the contract, by swallowing the Error? IMHO it should be re-thrown, just like ordinary Exceptions are.

Or is the SimpleMessageListenerContainer wrong to assume that if executeMessage has returned normally, the processing went fine without any problem? If yes, how can it figure out that an error has occurred?
 


Affects: 4.3.17, 5.0.6

Issue Links:

Referenced from: commits 1d6f717, f39adcf, 0c8cfa0, 646d7f9

Backported to: 4.3.18

Metadata

Metadata

Assignees

Labels

in: messagingIssues in messaging modules (jms, messaging)status: backportedAn issue that has been backported to maintenance branchestype: bugA general bug

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions