A digital media agency uses a fleet of Amazon EC2 instances to run a distributed 3D rendering engine. The rendering nodes require sub-millisecond, low-latency network communication to synchronize frame buffers during active renders. Additionally, a central scheduler distributes tasks to the rendering nodes on port behind an Application Load Balancer. The rendering service is configured to start and bind to port only after the instance finishes loading its local textures. Which two configuration steps must a solutions architect implement to ensure optimal performance and prevent the load balancer from marking active nodes as unhealthy? (Select TWO.)
- Provision the EC2 instances within a cluster placement group.Answer
- Modify the health check port in the target group to match the application port of .Answer
- CProvision the EC2 instances within a spread placement group.
- DProvision the EC2 instances within a partition placement group.
- ELeave the target group health check port configuration at its default value.
Answer
To achieve the required low-latency performance and prevent the load balancer from marking healthy instances as unhealthy, the EC2 instances should be provisioned within a cluster placement group, and the target group health check port must be modified to match the application port of .
The correct configurations involve provisioning the instances within a cluster placement group and specifying the health check port as in the ALB target group. A cluster placement group ensures that instances are physically close together in a single Availability Zone, which delivers the low-latency network connection needed for the rendering engine. Modifying the target group health check port to ensures the load balancer queries the correct port where the application is listening, preventing healthy nodes from being marked as unhealthy.
Step-by-Step Solution
Key Concept
Optimizing EC2 instance placement for low-latency networking while correctly configuring load balancer health checks for custom application ports.