A research institution is deploying a high-performance seismic data visualization application on a cluster of Amazon EC2 instances. The application requires extremely low-latency, high-throughput node-to-node communication for rendering complex 3D geological models in real time. The instances must read and write to a shared directory containing several terabytes of active simulation files. The application's visualization service runs on a custom port 9000, which is exposed to internal researchers through an Application Load Balancer (ALB). Which combination of configuration steps should the solutions architect implement to meet these requirements?
- Launch the instances in a cluster placement group, mount an Amazon Elastic File System (Amazon EFS) on all instances to share the simulation files, and configure the load balancer's target group health check to use port 9000.Cevap
- BLaunch the instances in a spread placement group, mount an Amazon Elastic File System (Amazon EFS) on all instances to share the simulation files, and configure the load balancer's target group health check to use port 9000.
- CLaunch the instances in a cluster placement group, attach a single Amazon Elastic Block Store (Amazon EBS) gp3 volume with Multi-Attach enabled to all instances to share the simulation files, and configure the load balancer's target group health check to use port 9000.
- DLaunch the instances in a cluster placement group, mount an Amazon Elastic File System (Amazon EFS) on all instances to share the simulation files, and configure the load balancer's target group health check to use the default port 80.
Cevap
Launch the instances in a cluster placement group, mount an Amazon Elastic File System (Amazon EFS) on all instances to share the simulation files, and configure the load balancer's target group health check to use port 9000.
The correct configuration addresses all constraints. It uses a cluster placement group to achieve minimal network latency between instances. It mounts Amazon EFS to provide a shared, scalable file system for concurrent read/write operations on simulation files. Lastly, it maps the target group health check to the active application port of 9000, preventing health check failures.
Adım Adım Çözüm
Anahtar Kavram
Designing high-performing and elastic compute environments requires choosing the correct EC2 placement groups for latency requirements, selecting appropriate shared storage, and matching load balancer health checks to the application's active ports.
Tahmini Süre:1m 30s