A weather research institute is deploying a distributed numerical weather prediction model on Amazon EC2. The application consists of tightly-coupled compute nodes that require sub-millisecond node-to-node network latency and maximum throughput to exchange state data. Additionally, a Solutions Architect must configure an Application Load Balancer (ALB) to route incoming analysis requests to the compute nodes, which listen on custom port 8080. Which combination of actions should the Solutions Architect take to meet these requirements? (Select TWO.)
- Deploy the EC2 instances in a cluster placement group.Answer
- Configure the Application Load Balancer target group health check to query port 8080.Answer
- CDeploy the EC2 instances in a spread placement group.
- DDeploy the EC2 instances in a partition placement group.
- EConfigure the Application Load Balancer target group health check to query the default port 80.
Answer
Deploying the EC2 instances in a cluster placement group and configuring the Application Load Balancer target group health check to query port 8080.
Deploying the EC2 instances in a cluster placement group places the instances close together within a single Availability Zone, which satisfies the requirement for sub-millisecond node-to-node latency and maximum network throughput. Additionally, because the application is listening on a custom port 8080, the target group health check must be explicitly configured to query port 8080 to ensure the load balancer can correctly monitor the application's status.
Step-by-Step Solution
Key Concept
High-Performance Compute placement groups and target group health check port synchronization.
Estimated Time:2m 0s