Serverless and Application Services Flashcards

1
Q

Are SQS messages ordered when using standard queues?

A

No, messages can arrive in a different order than received.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Do SQS standard queues support at-least-once deliver, exactly-once, or both?

A

At-least-once. FIFO queues must be used for exactly-once type behavior.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

When a client polls a queue and receives a message, what happens to the message itself?

A

It is hidden in the queue, preventing other clients from receiving the message, until the client either deletes the message (usually indicating a successful processing) or the VisibilityTimeout elapses, in which case they re-appears in the queue for retries.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly