A biotechnology firm is deploying a distributed genomic sequencing analysis suite on Amazon EC2 instances within an Auto Scaling group. The processing nodes require low-latency, high-throughput network communication between each other to assemble DNA sequence fragments. A web-based management portal for the suite is hosted on the same instances and listens on custom TCP port . An Application Load Balancer (ALB) routes traffic to this portal. Which combination of configurations should a solutions architect implement to support this workload? (Choose two.)
- Launch the EC2 instances in a cluster placement group.Answer
- Configure the ALB target group health check port to .Answer
- CLaunch the EC2 instances in a spread placement group.
- DLaunch the EC2 instances in a partition placement group.
- EConfigure the ALB target group health checks to use the default port .
Answer
Launching the EC2 instances in a cluster placement group and configuring the Application Load Balancer target group health check port to .
The correct configurations are to launch the instances in a cluster placement group and configure the ALB target group health checks to use port . Launching instances in a cluster placement group places them close together inside a single Availability Zone, which minimizes latency and maximizes throughput for node-to-node communication. Configuring the health check port to match the custom application port () prevents the load balancer from incorrectly marking the instances as unhealthy.
Step-by-Step Solution
Key Concept
Selecting the correct EC2 placement group and configuring load balancer health checks to match custom application ports.