Match each application workload requirement to the most appropriate AWS compute service.
- A simple web application that needs a low-cost, all-in-one virtual private server (VPS) with pre-configured software stacks.Amazon Lightsail
- A containerized microservice that must run continuously without the overhead of provisioning, configuring, or scaling physical virtual machine instances.AWS Fargate
- An event-driven backend service that processes files in response to uploads, running only for a few seconds per execution.AWS Lambda
- A legacy database application requiring custom operating system kernel modifications and full administrative root access to the virtual machine.Amazon EC2
Answer
The correct matches pair the simple VPS application with Amazon Lightsail, the serverless containerized microservice with AWS Fargate, the event-driven short-lived service with AWS Lambda, and the legacy database requiring root OS access with Amazon EC2.
The matches correctly align each business workload with the most appropriate AWS compute service based on the level of management control, scaling behavior, and application packaging. Amazon Lightsail is best for simple, bundled VPS hosting. AWS Fargate is ideal for serverless container workloads. AWS Lambda is the standard service for short-lived, event-driven functions. Amazon EC2 provides the required root operating system access for custom legacy applications.
Step-by-Step Solution
Key Concept
AWS Compute Service Selection
Estimated Time:1m 30s