An energy exploration firm runs a distributed seismic data processing application on Amazon EC2 instances. The application performs heavy parallel calculations and requires sub-millisecond node-to-node network latency across all instances to synchronize state. The application is accessed by internal visualization tools on port 7001, and a Network Load Balancer (NLB) is deployed to distribute client requests. The operations team notices that newly launched instances fail health checks and are not receiving traffic. Which configuration will resolve the health check failures and satisfy the low-latency network requirements?
- ACreate the instances inside a spread placement group. Route traffic to port 7001 in the NLB target group, and set the health check port to 7001.
- BCreate the instances inside a cluster placement group. Route traffic to port 7001 in the NLB target group, and set the health check port to the default HTTP port 80.
- Create the instances inside a cluster placement group. Route traffic to port 7001 in the NLB target group, and set the health check port to 7001.Cevap
- DCreate the instances inside a partition placement group. Route traffic to port 7001 in the NLB target group, and set the health check port to the default HTTP port 80.
Cevap
The correct configuration is to create the EC2 instances inside a cluster placement group and configure the NLB target group to route traffic and perform health checks on the application's port, which is port 7001.
The correct configuration launches the instances in a cluster placement group to ensure they are physically close enough to achieve sub-millisecond node-to-node latency, and sets the health check port to port 7001 to match the port on which the seismic application is running, allowing the load balancer to verify instance health successfully.
Adım Adım Çözüm
Anahtar Kavram
Tightly-coupled compute workloads require cluster placement groups for low-latency network communication, and target group health checks must align with the application port to prevent routing failures.
Tahmini Süre:2m 0s