Configure Active Geo Replication for Azure SQL Database

By:   |   Updated: 2022-11-30   |   Comments   |   Related: > Azure SQL Database


Problem

What is the geo-replication feature of Azure SQL database? Please explain the geo-replication business continuity feature, its uses, and implementation.

Solution

Business continuity ensures your systems keep running with minimal impact in case of any disaster or unplanned disruption. Geo-replication is one of the business continuity features offered by the Azure SQL Database service to ensure continuous data replication to a single or multiple secondary SQL databases from a primary SQL database. We can replicate databases to other locations and if needed, initiate a failover to make the replicated database the primary to keep the business running in the event the database becomes inaccessible.

Active geo-replication uses Availability Group technology to continuously replicate data asynchronously to secondary databases. It does not support automatic failover, it requires manual intervention to failover to a secondary database. You can configure this feature as a business continuity solution if the application needs an RTO of 30 seconds and/or an RPO of 5 seconds. Note: This feature cannot be configured for SQL-managed instances as it does not support managed instances; however, you can configure it for a single Azure SQL database or a pool of databases, known as an elastic pool.

Configure Active Geo-Replication

In the section below, let's configure geo-replication for the Azure SQL database, AdventureWorks. We will access our target database using the Azure portal, configure geo-replication, and perform the failover process.

Access Database Using Azure Portal

Log in to the Azure portal using www.portal.azure.com. Launch the Azure SQL Database Dashboard to access your target database. To search, type "SQL database" in the search box to get a list of databases.

Access Azure SQL databases dashboard page

Click on the identified Azure SQL database, AdventureWorks, to get the image below. We can configure geo-replication using the Replicas tab under Data management on the left. You can also configure or validate whether geo-replication is configured for your database by accessing the Database features tab shown below. Note: the block Replicas under the Recovery subtab of Database features. Click on this block to see or configure geo-replication for the database.

Access identified SQL database page

Configure Active Geo-Replication

By clicking on Replicas, you will get the screenshot below, which shows there are no replicas, meaning geo-replication is not configured for this database. Click the + Create replica link (in red rectangle) to launch the geo replica configuration form.

Check existing geo replication configuration

The configuration form will create a new Azure SQL database based on our inputs for your desired secondary region. There are multiple sections given in the Basics tab of this form, such as:

  • Project details
  • Primary database details
  • Database details\Server details
  • Backup storage redundancy

All sections are self-explanatory but need to be filled in carefully. The Database details section is where you configure your secondary replica database by entering the server's name, authentication mode, compute sizes, etc., for your geo replica. I will show you all these configurations in a step-by-step process below.

Project details are for subscriptions and resource groups and will be prefilled. Primary database details will show the name of the primary database and its region. You need to validate these details and proceed to the next section, which is more important.

Initiate geo replication configuration

Below you can see the database name, AdventureWorks, which cannot be changed. Next, choose the server's name from the drop-down or create a new server by clicking the Create new li link below the server name drop-down.

Initiate geo replication configuration

By clicking the Create new li link, the screen below will appear. Enter the name of the server and choose your desired location as the secondary region where the database will be hosted. Click on the checkbox "Allow Azure services to access server" if you want this server to be accessed by other Azure services.

Initiate geo replication configuration

Next, we need to choose the preferred Authentication method for this database. We have three options available, as shown in the screenshot below. Choose the best option for your requirements. For this demonstration, I chose a mixed mode where both SQL and Azure AD authentication can be used. Once you select an option, provide the admin account details.

Since I chose SQL and Azure AD authentication, I need to provide admin accounts for both. Click on the Set admin link beside the Set Azure AD admin op option. Choose this account carefully: it will have administrative privileges, and unauthorized users must not have access to your database.

Next, provide a SQL login and password, which will have admin privileges, shown below. Then click OK.

Initiate geo replication configuration

Once you click OK, you will return to the original geo-replica form. Here, we can see the Database details section, where the server name and region are chosen and reflected in the desired section below.

Next, choose whether this database will be part of an elastic pool. Since there is only one database for this demo, we should keep it as No. Finally, we need to choose the compute size of this server. Click on the Configure database link under the Compute + storage option in the image below. Choose the desired compute size based on the workload. Ideally, it should be the same as the primary database configuration. I have kept it as general purpose with the given compute sizes for this demonstration.

Initiate geo replication configuration

The last section is Backup storage redundancy. Choose this option as per your backup policy. If you don't want to choose a specific option, the default option will be configured based on your primary Azure SQL database configuration. Click the Next: Networking button at the bottom of the image. I kept all settings for Networking and Additional settings the same and clicked Review + create to initiate the validation process.

Validate all details of geo replica

The estimated monthly cost for your selected configurations for this Azure SQL database will appear. Make sure to validate and understand the cost factor, then click Create to initiate deployment. Geo-replication will be configured, and data will flow to the newly created Azure SQL database.

Deploy a geo replica

Validation and Failover

Geo-replication has been configured for the Azure SQL database, AdventureWorks, with a single geo-replica in the previous section. Next, we will validate this configuration, initiate a failover to make the newly configured geo replica primary, and test this configuration to see if it is working correctly.

Log into the Azure portal and access your target database dashboard page. Access the Replicas tab using any of the two methods mentioned previously. You can click on the Replicas link given under Data management from the left side pane. Here you can see the configured geo replicas in the right-side pane. The primary database is online from the East US region, whereas its geo replica is online for read-only queries from the Central US region.

Validate geo replication configuration

Now, let's explore how to perform a manual failover in geo-replication. First, you need to identify which geo replica will become primary to serve your transactions in case you have more than one geo replica. Since we have only one geo-replica, we will initiate a failover for this one. Click on the three dots in the last column, as shown below. You will get the drop-down menu, where you can choose the "Forced failover" op option. Since this is a forced failover, you can expect some data loss.

Initiate geo replication manual failover

The pop-up window below will appear. Click Yes.

Initiate geo replication manual failover

Once you click the Yes button, the replica state will be changed for both primary and secondary databases. The new primary database replica state will change to Pending, whereas the replica state for the new geo-replica (once primary) will display as Failover. . The replica state for both databases will show this status for a while due to internal processing.

Failover in process

Click Refresh below to keep refreshing the replica state. The primary and geo-replica details have been changed in the image below. The new primary database is online from the Central US, while its geo-replica is now readable from the East US region.

SQL database replicas after Action geo replication failover

The failover process has been completed successfully. You can revert back to the previous primary databases as the primary region if you'd like.

Next Steps
  • Today, we explored the active geo-replication feature for Azure SQL databases. This feature replicates your data to other regions as a business continuity solution. We can configure up to four geo-replicas for an Azure SQL database. Consider the pricing before deciding the number of geo-replicas for your primary database. This article has also explained the step-by-step process to configure a geo-replica for a SQL database, along with its failover validation.
  • Check out these additional Azure articles.


sql server categories

sql server webinars

subscribe to mssqltips

sql server tutorials

sql server white papers

next tip



About the author
MSSQLTips author Manvendra Singh Manvendra Singh has over 5 years of experience with SQL Server and has focused on Database Mirroring, Replication, Log Shipping, etc.

This author pledges the content of this article is based on professional experience and not AI generated.

View all my tips


Article Last Updated: 2022-11-30

Comments For This Article

















get free sql tips
agree to terms