An enterprise is designing a disaster recovery (DR) solution from the East US region to the West US region for a critical retail application. The source environment consists of the following Azure Virtual Machines:
- `web-vm1`: A web server VM with Premium SSD v1 disks. Each disk has a write churn rate of , resulting in a total VM write churn of .
- `db-vm1`: A database server VM running SQL Server on Azure VMs. It has Premium SSD v1 disks: one OS disk with a write churn of , one database data disk with a write churn of , and one transaction log disk with a write churn of .
The DR design must meet the following business continuity requirements:
- The web server must achieve a Recovery Point Objective (RPO) of under and a Recovery Time Objective (RTO) of under .
- The database server must achieve an RPO of under and an RTO of under during a regional outage.
Which recovery design should you recommend to meet these requirements?
- Replicate `web-vm1` using Azure Site Recovery. For `db-vm1`, deploy a secondary SQL Server virtual machine in the West US region and configure SQL Server Always On Availability Groups with asynchronous commit replication.Answer
- BReplicate both `web-vm1` and `db-vm1` using Azure Site Recovery, configuring the high-churn replication tier for all disks associated with the database virtual machine.
- CReplicate `web-vm1` using Azure Site Recovery. For `db-vm1`, migrate the database to Azure SQL Database and configure active geo-replication to provide automatic failover and a single read-write listener endpoint.
- DReplicate both `web-vm1` and `db-vm1` using Azure Site Recovery, and route incoming user traffic using Azure Traffic Manager configured to perform SSL offloading and path-based routing.