Skip to content
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

DefaultMessageListenerContainer reports incorrect jms.process.message count #33758

Closed
sgnanask opened this issue Oct 20, 2024 · 3 comments
Closed
Assignees
Labels
in: messaging Issues in messaging modules (jms, messaging) type: bug A general bug
Milestone

Comments

@sgnanask
Copy link

sgnanask commented Oct 20, 2024

I have a simple JmsListener that is listening to messages published to an ActiveMQ classic queue

@JmsListener(destination = "ReportScheduleQueue")
public void receiveMessage(String message) {
  log.info("Received message - {}", message);
}

@Scheduled(cron = "0 */1 * ? * *")
public void sendMessage() {
  jmsTemplate.convertAndSend("ReportScheduleQueue", "test message sent at " + new Date());
}

After a couple of message were triggered, I notice that the publish count is 2 but the process count is 4

  "jms.message.process.error.none.exception.none.messaging.destination.name.ReportScheduleQueue.count": "4",
  "jms.message.publish.error.none.exception.none.messaging.destination.name.ReportScheduleQueue.count": "2"

Looks like both AbstractPollingMessageListenerContainer and AbstractMessageListenerContainer are recording the observation and since AbstractPollingMessageListenerContainer extends AbstractMessageListenerContainer , we end up reporting the process count twice.

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged or decided on label Oct 20, 2024
@bclozel
Copy link
Member

bclozel commented Oct 20, 2024

Please provide a minimal sample application

@bclozel bclozel added status: waiting-for-feedback We need additional information before we can continue in: messaging Issues in messaging modules (jms, messaging) labels Oct 20, 2024
@sgnanask
Copy link
Author

Have modified gs-messaging-jms/complete project mentioned in https://spring.io/guides/gs/messaging-jms sample to reproduce the problem
complete.tar.gz

@spring-projects-issues spring-projects-issues added status: feedback-provided Feedback has been provided and removed status: waiting-for-feedback We need additional information before we can continue labels Oct 21, 2024
@bclozel bclozel self-assigned this Oct 21, 2024
@bclozel bclozel added type: bug A general bug and removed status: waiting-for-triage An issue we've not yet triaged or decided on status: feedback-provided Feedback has been provided labels Oct 21, 2024
@bclozel bclozel added this to the 6.1.15 milestone Oct 21, 2024
@bclozel
Copy link
Member

bclozel commented Oct 21, 2024

Thanks for the repro @sgnanask , this will be fixed with our next maintenance releases.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: messaging Issues in messaging modules (jms, messaging) type: bug A general bug
Projects
None yet
Development

No branches or pull requests

3 participants