> For the complete documentation index, see [llms.txt](https://queue-docs.rightsline.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://queue-docs.rightsline.com/sqs/overview.md).

# Overview

These queues are best when there is only one consumer.  All char types and actions are represented on the FIFO queue.  Acknowledgement of the message is necessary in order to take the message off the queue.  If no acknowledgement is received, the message is placed back onto the queue.

Our queues adhere to the following:

1. Each queue is set to the SQS FIFO queue defaults: visibility timeout is 30 seconds, and maximum message retention period is 4 days.
2. Since these are FIFO queues, maximum inflight messages per queue is 20,000.  If that limit is hit, you won’t receive any overlimit errors (unlike Standard queues).
3. There is no dead letter or redrive policy set up on these queues; which means you can receive messages as many times without deleting them.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://queue-docs.rightsline.com/sqs/overview.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
