A bioinformatics research institute is deploying a distributed genomic sequence alignment pipeline on Amazon EC2 instances. The analysis nodes must communicate with each other using a specialized Message Passing Interface (MPI) implementation, requiring sub-millisecond, low-latency node-to-node network performance. Client requests are distributed across these instances using a Network Load Balancer (NLB) that routes incoming traffic to a custom processing engine listening on TCP port . A lightweight status daemon is running on TCP port on each instance to monitor the node's system-level health. Which combination of actions should a solutions architect take to meet these requirements? (Choose TWO.)
- Deploy the EC2 instances in a cluster placement group within a single Availability Zone.Cevap
- Configure the NLB target group to route traffic to TCP port and explicitly set the health check port to TCP port .Cevap
- CDeploy the EC2 instances in a spread placement group across multiple Availability Zones.
- DConfigure the NLB target group to route traffic to TCP port and use the default traffic-port setting for health checks.
- EDeploy the EC2 instances in a partition placement group distributed across multiple partitions.
Cevap
Deploy the EC2 instances in a cluster placement group within a single Availability Zone, and configure the NLB target group to route traffic to TCP port and set the health check port to TCP port .
To achieve sub-millisecond, low-latency node-to-node network performance for MPI-based communications, instances must be placed as close together as possible, which is achieved by deploying them in a cluster placement group within a single Availability Zone. Additionally, because the client traffic is routed to the custom processing engine on TCP port but system-level health is monitored by a separate status daemon on TCP port , the Network Load Balancer target group must route traffic to port while explicitly querying port for health checks. This prevents the load balancer from sending health check requests to the custom engine port, which would otherwise result in nodes being marked as unhealthy.
Adım Adım Çözüm
Anahtar Kavram
High-performing compute architectures require low-latency placement groups combined with correctly aligned load balancer health check configurations.
Tahmini Süre:2m 30s