From 411f9806ca64d8b96e5794bc6b8139a0f2fb796f Mon Sep 17 00:00:00 2001 From: Jacob Nestor Date: Wed, 28 Aug 2019 16:39:35 -0400 Subject: [PATCH] Update AWS SQS specific features and limitations to include FIFO Queues and their exactly once processing https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/FIFO-queues.html --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ff765ff..29641a3b 100644 --- a/README.md +++ b/README.md @@ -1340,7 +1340,7 @@ The user is not blocked and the job is processed in the background. During this **[RabbitMQ](https://www.rabbitmq.com/)** is popular but requires you to adapt to the 'AMQP' protocol and manage your own nodes. -**[Amazon SQS](https://aws.amazon.com/sqs/)** is hosted but can have high latency and has the possibility of messages being delivered twice. +**[Amazon SQS](https://aws.amazon.com/sqs/)** Standard Queue is hosted but can have high latency and has the possibility of messages being delivered twice. The SQS First-In-First-Out Queue offers exactly once processing but has limited transactions per second. (3000/second with batching and 300/second without) ### Task queues