A DBA needs to create a new Azure SQL Database and wants to ensure that the database automatically fails over to a secondary region without manual intervention. The recovery point objective (RPO) is 5 seconds. What should the DBA configure?
Trap 1: Standard geo-replication
Standard geo-replication creates an asynchronous secondary database on another server and region, but it does not provide any automatic failover: the DBA must manually issue ALTER DATABASE ... FAILOVER or use the portal to promote the secondary. Because the stated requirement is zero manual intervention, this offering is disqualified, and it also lacks the listener/endpoint abstraction that failover groups provide, so connection strings cannot automatically switch to the new primary.
Trap 2: Local redundancy with automatic failover
Local redundancy with automatic failover, such as Azure SQL Database's built-in high availability within a single region, detects local replica failures and reroutes connections to a healthy replica, but it does not replicate data to a different geographic location. In a regional outage, the entire Azure SQL Database becomes unavailable because all replicas reside in the same region, so this option cannot satisfy the requirement for cross-region disaster recovery.
Trap 3: Read-scale out
Read-scale out creates a read-only replica in the Premium or Business Critical service tier to offload reporting and analytics traffic, but the replica is never writeable and has no failover or promotion mechanism. It cannot act as a disaster recovery target because it does not maintain an independently replicated copy of the database in another region and cannot take over the primary role under any circumstance.
- A
Active geo-replication with failover group
Active geo-replication with a failover group is correct because it links an Azure SQL Database to a secondary in a different region and automatically fails over the primary and secondary endpoints when the failover group's health policy detects an outage, within a configurable grace period. The asynchronous replication maintains an RPO of up to 5 seconds, and the failover group manages the DNS endpoint so applications are redirected to the new primary without manual intervention or code changes. Note that the replication is asynchronous, not synchronous, meaning the 5-second RPO is a lag target rather than a zero-data-loss guarantee.
- B
Standard geo-replication
Why wrong: Standard geo-replication creates an asynchronous secondary database on another server and region, but it does not provide any automatic failover: the DBA must manually issue ALTER DATABASE ... FAILOVER or use the portal to promote the secondary. Because the stated requirement is zero manual intervention, this offering is disqualified, and it also lacks the listener/endpoint abstraction that failover groups provide, so connection strings cannot automatically switch to the new primary.
- C
Local redundancy with automatic failover
Why wrong: Local redundancy with automatic failover, such as Azure SQL Database's built-in high availability within a single region, detects local replica failures and reroutes connections to a healthy replica, but it does not replicate data to a different geographic location. In a regional outage, the entire Azure SQL Database becomes unavailable because all replicas reside in the same region, so this option cannot satisfy the requirement for cross-region disaster recovery.
- D
Read-scale out
Why wrong: Read-scale out creates a read-only replica in the Premium or Business Critical service tier to offload reporting and analytics traffic, but the replica is never writeable and has no failover or promotion mechanism. It cannot act as a disaster recovery target because it does not maintain an independently replicated copy of the database in another region and cannot take over the primary role under any circumstance.