A healthcare organization hosts a patient record application on an Azure virtual machine named VM1 in the East US region. The application uses a SQL Server database. You are designing a disaster recovery (DR) solution to replicate the workload to the West US region while meeting a Recovery Point Objective (RPO) of 10 minutes and a Recovery Time Objective (RTO) of 2 hours. VM1 has the following disk configuration:
- Disk 0 (OS): Peak write churn of
- Disk 1 (Application Binaries): Peak write churn of
- Disk 2 (Database Data and Logs): Peak write churn of
Which disaster recovery design should you recommend?
- Configure Azure Site Recovery to replicate Disk 0 and Disk 1, exclude Disk 2 from replication, and use SQL Server Always On Availability Groups to replicate the database to the target region.Cevap
- BConfigure Azure Site Recovery to replicate the entire VM1, selecting the High Churn replication policy for all disks.
- CConfigure Read-Access Geo-Redundant Storage (RA-GRS) for VM1's virtual disks and perform a manual failover to the secondary region during a disaster.
- DConfigure Azure Backup with Cross-Region Restore (CRR) to perform daily backups of VM1 to a Recovery Services vault.
Cevap
Configure Azure Site Recovery to replicate Disk 0 and Disk 1, exclude Disk 2 from replication, and use SQL Server Always On Availability Groups to replicate the database to the target region.
The correct option proposes replicating Disk 0 and Disk 1 using Azure Site Recovery while excluding Disk 2, and utilizing SQL Server Always On Availability Groups for the database. This design successfully accommodates the write churn on Disk 2, which exceeds the maximum Azure Site Recovery High Churn limit of per disk, while ensuring that the OS and application binaries are protected and RPO/RTO targets are met.
Adım Adım Çözüm
Anahtar Kavram
Azure Site Recovery has strict write churn limits per disk ( for standard and for High Churn). Workloads exceeding these limits must be replicated using alternative, native application-level replication methods like SQL Server Always On Availability Groups.