> For the complete documentation index, see [llms.txt](https://openai.gitbook.io/code-cheatsheets/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://openai.gitbook.io/code-cheatsheets/deployment/aws/sqs.md).

# Simple Queue Service

**See Deployment/Task\_Queues for comparing between services, this is just a stub**

* Simplest to spin up in AWS with free tier offering 1M free messages
* The service must be long **polled** for messages
* Offers high throughput Standard "at least-once-delievery" which requeues a message if it was consumed from the queue and a visibility timeout passes
* Can also do up to 3k message/sec when order important with SQS FIFO "exactly once delivery"
* Base rate of 20k+/sec with more expensive options to request
* Messages must be less than 256KiB in size, but can turn it into S3 object
