AWS SQS
Last updated
Last updated
Amazon SQS (Simple Queue Service) is a fully managed message queuing service designed to decouple and coordinate the components of distributed systems. It enables secure, reliable, and scalable communication between different parts of an application by sending, receiving, and storing messages.
Managed Messaging: No need to manage and scale your own messaging infrastructure.
Scalability: Automatically handles increasing or decreasing message throughput based on demand.
Reliability: Provides durable message storage with redundancy across multiple Availability Zones.
Security: Supports encryption for message data at rest and in transit.
Flexibility: Allows messages to be processed by multiple consumers independently.
Two Queue Types:
Standard Queue: Offers unlimited throughput with at-least-once message delivery and best-effort ordering.
FIFO Queue: Guarantees exactly-once message processing and message ordering for strict sequential workflows.