A solutions architect is deploying a high-performance distributed application on Amazon EC2 instances in a private subnet. The application nodes require low-latency node-to-node network communication. An Application Load Balancer (ALB) routes traffic to the application, which listens on custom port 8080.
Which combination of configurations will meet these requirements? (Select TWO.)
- Launch the EC2 instances in a cluster placement group.Cevap
- Configure the ALB target group health check to query port 8080.Cevap
- CLaunch the EC2 instances in a spread placement group.
- DConfigure the ALB target group health check to query the default HTTP port 80.
- ELaunch the EC2 instances in a partition placement group.
Cevap
Launch the EC2 instances in a cluster placement group, and configure the ALB target group health check to query port 8080.
To satisfy the low-latency network requirement, launching the instances in a cluster placement group is necessary because it places instances physically close together on the same underlying hardware. Additionally, because the application is listening on port 8080, configuring the ALB target group health checks to query port 8080 ensures that the health checks succeed and the load balancer can correctly route traffic.
Adım Adım Çözüm
Anahtar Kavram
Selecting cluster placement groups for low-latency compute workloads, and matching target group health check ports with application listening ports.