문제

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?)

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top