SQS COPY Flashcards
True or False: SQS messages cannot be delivered multiple times.
False.
A single SQS request can have from 1 to __________ messages, up to a maximum total payload of __________.
- 256KB.
Define “visibility timeout.”
A period of time during which SQS prevents other consumers from receiving and processing a message.
True or False: In SQS, a message will remain visible for 24 hours by default.
False. Visibility times out after 12 hours by default.
True or False: SQS guarantees FIFO delivery of messages.
False.
A single SQS API call with a 256KB payload will be billed as __________ requests.
Four.
What is the purpose of long polling in SQS?
It helps reduce costs by reducing the number of empty responses and eliminating false empty responses.
What is the maximum retention period for an SQS message?
14 days.
How much do FIFO SQS queue requests cost (per million requests)?
$0.50
What is the maximum long poll timeout?
20 seconds.
Long polling doesn’t return a response until __________, or the long poll times out.
A message arrives in the queue.
A period of time during which SQS prevents other consumers from receiving and processing a message is called the __________.
Visibility timeout.
True or False: SQS can be configured for auto-scaling.
True.
What size chunks are SQS messages billed at?
64KB.
What is the minimum size of an SQS message?
1 byte.