-
-
Notifications
You must be signed in to change notification settings - Fork 312
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
Messages not consumed from SQS queue #1132
Comments
@sabarees19 which Spring Cloud AWS version? Can you provide a git repo with a sample that reproduces this issue? |
@sabarees19 2.x is out of support and maintenance. Please upgrade to 3.x (you'd have to upgrade to Spring Boot 3.x too). |
The higher version of Spring Cloud AWS messaging is 2.2.6 in org and 2.2.4 in io that are available on mvnrepository. is there any higher ? |
Look at releases in GitHub repo to see the latest versions, also at the reference docs. Starting from 3.0, SQS and SNS have separate modules |
I'll close this issue for lack of feedback, but we can reopen if necessary. Thanks. |
Type: Bug
Component:
"SQS" -->
Describe the bug
I am currently having two queues and using separate @SqsListener , while spinning in Dev environment it's start listening
and receiving by both queues but after some time it's stop listening only to one queue.
But while am trying in Local with the stopped Queue the messages have been received also in Messages in flight state and before i running my Local all the messages in Messages available state but the queue configurations are all same. Don't the what the exact issue is happening.
Sample
@SqlListener(value="${queue.name.req}", deletionPolicy=SqsMessageDeletionPolicy.ON_SUCCESS) {
...
}
@SqlListener(value="${queue.name.pro}", deletionPolicy=SqsMessageDeletionPolicy.ON_SUCCESS) {
...
}
The text was updated successfully, but these errors were encountered: