Skip to main content
Durable work queues backed by managed Amazon SQS — standard or FIFO, with optional dead-letter queues. The natural pairing for a compute worker.

Create & manage

Produce & consume

Messages you don’t ack reappear after the visibility timeout — at-least-once delivery with retries. A receipt handle belongs to one receive on one queue. naive queue ack with a stale or reused handle returns invalid_input — run naive queue receive again and ack the handle from that response.

Worker pattern

Combined with compute’s scale-to-zero and the queue’s depth, that’s a cheap autoscaling pipeline. Full guide: /docs/getting-started/queue.