Find answers, ask questions, and connect with our
community around the world.

Home Forums AWS AWS Certified Solutions Architect Associate what software do i need to put on my ec2 to make it process shopping orders? Reply To: what software do i need to put on my ec2 to make it process shopping orders?

  • Carlo-TutorialsDojo

    Member
    March 22, 2021 at 11:59 pm

    Hello Erjan,

    A common design pattern for handling orders in load-balanced EC2 instances is to use a decoupling layer between the client and your servers. A popular choice is Amazon SQS. You get the order data from the SQS queue and process them in the instances. The advantage of this is that in the event of an instance failure, orders will still persist in the queue and will not be lost.