Why is making an application stateless important for scaling on AWS?
- A Any instance can serve any request, so instances become disposable
- B It reduces storage costs
- C It improves encryption
- D It is required by Auto Scaling
Answer
Any instance can serve any request, so instances become disposable
Sessions move to ElastiCache or DynamoDB and uploads to S3, so terminating an instance loses nothing.





