You are on page 1of 15

Why Do we need Trusted Advisor ?

Cost Optimization
Performance
Security
Fault Tolerance
Service Limits
Simple Queue Service

 Amazon Simple Queue Service (SQS) is a fully managed message queuing


service that makes it easy to decouple and scale microservices,
distributed systems, and serverless applications.
 Building applications from individual components that each perform a
discrete function improves scalability and reliability, and is best practice
design for modern applications.

 SQS makes it simple and cost-effective to decouple and coordinate the


components of a cloud application. Using SQS, you can send, store, and
receive messages between software components at any volume, without
losing messages or requiring other services to be always available .
What is a Message Queue?

A message queue is a form of asynchronous service-


to-service communication used in serverless and
microservices architectures. Messages are stored
on the queue until they are processed and deleted.
Each message is processed only once, by a single
consumer. Message queues can be used to
decouple heavyweight processing, to buffer or
batch work, and to smooth spiky workloads

You might also like