An insurance company is designing a disaster recovery (DR) solution to replicate its on-premises VMware workloads to Azure. The workload consists of two virtual machines:
- VM-App: An application server with an average write churn of and a peak write churn of .
- VM-Data: A database server with a single data disk that experiences an average write churn of and a peak write churn of .
The DR solution must support a Recovery Point Objective (RPO) of under 2 hours and a Recovery Time Objective (RTO) of under 1 hour.
Which two actions should you include in the disaster recovery design?
- Replicate VM-App to Azure by using Azure Site Recovery.Cevap
- Configure SQL Server Always On Availability Groups to replicate the database from the on-premises environment to SQL Server on Azure Virtual Machines.Cevap
- CReplicate VM-Data to Azure by using Azure Site Recovery.
- DReplicate VM-Data directly to a Read-Access Geo-Redundant Storage (RA-GRS) account to enable active-active database writes across regions.
Cevap
Replicate VM-App to Azure by using Azure Site Recovery, and configure SQL Server Always On Availability Groups to replicate the database from the on-premises environment to SQL Server on Azure Virtual Machines.
The correct solution involves replicating the low-churn application VM (VM-App) using Azure Site Recovery, and using SQL Server Always On Availability Groups for the database VM (VM-Data). Since VM-Data's write churn ( average, peak) exceeds the standard ASR limit of per Premium SSD disk, standard ASR replication is not suitable. Always On Availability Groups handle high-churn databases efficiently and can meet the strict RPO/RTO requirements.
Adım Adım Çözüm
Anahtar Kavram
Azure Site Recovery limits require checking disk write churn against limits (typically per Premium SSD disk); workloads exceeding these limits must use native replication solutions like SQL Server Always On Availability Groups.