SQS Simple Queue Service Flashcards

1
Q

What is Amazon Simple Queue Service (SQS)?

A

Amazon SQS is a scalable and fully managed message queuing service that enables you to decouple and scale microservices, distributed systems, and serverless applications by reliably delivering messages between software components.

Example: Amazon SQS can be used to trigger Lambda functions in a serverless architecture.

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

What are the key features of Amazon SQS?

A

Durability and Scalability: SQS stores messages across multiple servers to prevent losses and can handle virtually unlimited numbers of messages per second.
Two Types of Queues: Offers Standard queues for maximum throughput and at-least-once delivery, and FIFO queues for order-sensitive applications requiring messages to be processed exactly once and in order.

Example: Standard queues are suitable for processing high volumes of messages quickly, while FIFO queues ensure strict message ordering.

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