From ccaaae735b143427499169354987d8880fe67c83 Mon Sep 17 00:00:00 2001 From: Dave Marshall Date: Tue, 6 Jan 2015 12:16:03 +0000 Subject: [PATCH] Add note about SQS delay limit > The number of seconds (0 to 900 - 15 minutes) to delay a specific message. - http://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_SendMessage.html --- queues.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/queues.md b/queues.md index 4958279297d..0574aee9993 100644 --- a/queues.md +++ b/queues.md @@ -73,6 +73,8 @@ Sometimes you may wish to delay the execution of a queued job. For instance, you In this example, we're using the [Carbon](https://github.com/briannesbitt/Carbon) date library to specify the delay we wish to assign to the job. Alternatively, you may pass the number of seconds you wish to delay as an integer. +> **Note:** The Amazon SQS service has a delay limit of 900 seconds (15 minutes). + #### Deleting A Processed Job Once you have processed a job, it must be deleted from the queue, which can be done via the `delete` method on the `Job` instance: