A digital publishing company is migrating its content management and rendering platforms to Azure. The system requires two compute tiers:
1. Editorial Backend: A stateful web application that runs continuously, requires a availability SLA, and must be isolated on dedicated physical hardware due to compliance requirements.
2. Rendering Workers: A stateless batch video-rendering workload that can tolerate interruptions and must run at the absolute lowest cost.
Which compute virtualization solution should you recommend to meet these requirements?
- Azure Dedicated Hosts deployed across multiple Availability Zones for the Editorial Backend, and Azure Virtual Machine Scale Sets using Spot Virtual Machines for the Rendering Workers.Answer
- BAzure Virtual Machine Scale Sets using Spot Virtual Machines for the Editorial Backend, and Azure Dedicated Hosts for the Rendering Workers.
- CAzure Dedicated Hosts deployed in a single Availability Zone for the Editorial Backend, and Azure Virtual Machine Scale Sets using Spot Virtual Machines for the Rendering Workers.
- DAzure Dedicated Hosts deployed across multiple Availability Zones for the Editorial Backend, and Azure Virtual Machine Scale Sets using Spot Virtual Machines with Locally Redundant Storage (LRS) configured for regional disaster resilience for the Rendering Workers.
Answer
Azure Dedicated Hosts deployed across multiple Availability Zones for the Editorial Backend, and Azure Virtual Machine Scale Sets using Spot Virtual Machines for the Rendering Workers.
The correct option configuration uses Azure Dedicated Hosts deployed across multiple Availability Zones for the Editorial Backend and Azure Virtual Machine Scale Sets using Spot VMs for the Rendering Workers. Dedicated Hosts satisfy the regulatory requirement for physical isolation. Spreading them across multiple zones ensures that the virtual machines can meet the availability SLA. Using Spot VMs in a Virtual Machine Scale Set satisfies the requirement for running the stateless, interruptible batch video-rendering workload at the lowest possible cost.
Step-by-Step Solution
Key Concept
Selecting and configuring Azure compute virtualization solutions based on availability, isolation, and cost requirements.