async-aws / aws

AWS SDK with readable code and async responses
https://async-aws.com
MIT License
428 stars 129 forks source link

[SQS] Support message size over 256KB #912

Open starred-gijs opened 3 years ago

starred-gijs commented 3 years ago

Just a quick question: do you have any plans to create an extended SQS client that will support messages over 256KB (by storing the message body on S3), like this Java client? https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-s3-messages.html

Nyholm commented 3 years ago

Hm. This is interesting.

It sounds like we should add an integration for SQS that supports this. I guess we should override the send and receive methods. Similar to SimpleS3.

GromNaN commented 3 years ago

The Java implementation is here: amazon-sqs-java-extended-client-lib

Notes from this implementation: