Lelouch Lamperouge
Lelouch Lamperouge

Reputation: 8411

SQS Message size

From my understanding of the docs, the queue entry size is limited to 256KB. Is the SQS even supposed to hold "objects" that need to passed on to readers of the queue?
What alternate solutions are available in case I need to pass objects that are >256KB in size (split them, maybe?)

Upvotes: 2

Views: 3226

Answers (1)

datasage
datasage

Reputation: 19563

In such cases you would store most of the object outside of the message, in S3 or another database and store a pointer to that object within your SQS message.

Upvotes: 7

Related Questions