-
-
Notifications
You must be signed in to change notification settings - Fork 303
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
Support for sending and receiving large message in SQS #858
Comments
Hi @vijayrcse, thanks for bringing this up. It should be possible to send larger messages by using S3 to store the payload, and sending only the reference in the message There's a java-extended-client-lib that has this feature built in, as described here Unfortunately it implements the blocking Let me know how it works for you. Thanks. |
Hello ! |
Hi @NightFox7, if anyone is interested in creating a prototype of an adapter to use the client I linked above, or a separate implementation, I'd be happy to take a look. |
We used SQS Extended client library to publish the message to the queue. We didn't use SQStemplate of spring cloud aws |
Ok I see. Thank you @vijayrcse |
@vijayrcse do you have an example of your workaround that you can share? |
hi @outcomes-josef-salyer , we referred only java-extended-client-lib. You will find example code snippets in AWS documentation |
@tomazfernandes I believe async support has been added to the |
Looks like it @agarcia-te! I wonder what we we'd need to do here to support that though, maybe the user can simply declare such client as a bean and the framework would use it? |
Type: Feature
Is your feature request related to a problem? Please describe.
We have a use case where our message size is larger than 254kb. is there a support in spring-cloud-sqs-messaging to send and receive large size messages using SQS extended client library
The text was updated successfully, but these errors were encountered: