A medical research company is designing a new cloud architecture on AWS to handle two distinct processing tasks:
1. A batch processing job that performs genome sequencing simulations. This job must run on a custom Linux distribution with a modified kernel and runs continuously for several days.
2. An image processing task that automatically runs whenever a patient uploads a medical scan to an Amazon S3 bucket. The execution time is less than a minute, and uploads occur sporadically throughout the day.
Which two AWS compute services should the company use to support these workloads? (Select two.)
- Amazon Elastic Compute Cloud (Amazon EC2)Cevap
- AWS LambdaCevap
- CAWS Elastic Beanstalk
- DAmazon Lightsail
Cevap
Amazon Elastic Compute Cloud (Amazon EC2) and AWS Lambda are the correct selections.
Amazon Elastic Compute Cloud (Amazon EC2) is correct because it provides full administrative access and allows running custom operating system kernels, which is required for the genome sequencing simulations. AWS Lambda is correct because it is a serverless, event-driven service that automatically runs code in response to Amazon S3 uploads and scales dynamically.
Adım Adım Çözüm
Anahtar Kavram
Selecting appropriate AWS compute services based on operating system control requirements and execution patterns (continuous vs. event-driven).