An organization is designing a high-performance, three-tier web application in Azure. The compute tier will host virtual machines (VMs) running business logic. The architecture must meet the following requirements:
- Achieve a minimum VM uptime service level agreement (SLA) of 99.99%.
- Maintain network latency of less than 1 millisecond between the web servers, application servers, and database servers.
- Ensure that compute resources are distributed across distinct physical hardware racks to prevent localized host outages from taking down the entire application.
Which two configurations should you include in the compute infrastructure design? (Select two.)
- Create one Proximity Placement Group for each availability zone, and associate the virtual machines in each zone with their respective Proximity Placement Group.Cevap
- Deploy the virtual machines across multiple availability zones using a Virtual Machine Scale Set in Flexible orchestration mode.Cevap
- CDeploy all virtual machines within a single availability zone and associate them with a single Proximity Placement Group.
- DCreate a single Proximity Placement Group that spans all target availability zones, and associate all virtual machines with this group.
Cevap
To meet the requirements, you must deploy the virtual machines across multiple availability zones using a Virtual Machine Scale Set in Flexible orchestration mode, and create one Proximity Placement Group for each availability zone.
The correct configurations are to deploy the virtual machines across multiple availability zones using a Virtual Machine Scale Set in Flexible orchestration mode, and to create one Proximity Placement Group for each availability zone. Distributing virtual machines across multiple availability zones provides the 99.99% uptime SLA required by Azure. Flexible orchestration mode allows full control over individual VMs and fault domains. Creating a Proximity Placement Group for each availability zone ensures that VMs within each zone are colocated to meet the sub-millisecond latency requirement without violating zone isolation.
Adım Adım Çözüm
Anahtar Kavram
Designing zone-redundant, low-latency compute solutions in Azure using Proximity Placement Groups and VMSS Flexible orchestration.