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?
-
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.
- This reply was modified 3 years, 6 months ago by Carlo-TutorialsDojo.
- This reply was modified 3 years, 6 months ago by Carlo-TutorialsDojo.