✍ AWS CSA Task 4


AWS SQS stands for simple queue service. It is managed service by AWS that helps you to manage message queues. The message queue is a special program that runs between 2 different programs (as a middleware) or services in the case of AWS. For example, let's say we have one e-commerce website that sells beauty products and we have a mail server in our architecture that sends a mail to the customer on each successful purchase. But since our architecture doesn't have 100% hive availability so we might face some issues with the mail server and our customers will not receive any mail. In such a scenario we use message queue program that holds the message from the application server(producer) till the time the mail server(consumer) is not up.

The SQS service provided by AWS cloud helps us to use a message queue. In SQS AWS allows us to store data persistently for 14 days which is sufficient for us. RabbitMQ, Apache MQ are open source products available that we can use for the MQ facility.

Industrial use cases of AWS SQS


  • For communication between mobile app and web app
  • In the real world whenever a mobile app wants to communicate to the web app message queue are used. AWS SDK is used by both mobile and web apps to pull and send messages to the SQS. Let's say if the mobile app has sent a message to the message queue then with the help of AWS SDK the web app will pull the messages from the queue and sends the feedback to the message queue so that the queue can delete it since it is consumed by the web app. This is one of the use case where er can use AWS SQS to provide communication between a mobile and a web app.

  • AWS SQS can be used for processing the things(Images,Audio) later and faster
  • Oyster is a company that shares reviews about Hotels in around 200 countries worldwide. The company has a very large collection of images and videos that they have to recreate for tablets and mobiles of different sizes. They use amazon SQS to store the images in the queue which can be processed later. With AWS SQS Oyster is processing 1 Million images in 20 hours which usually takes 400 hours to complete, which is around 95% improvement. With SQS Oyster is saving 20,000$ per year.