Update:
October - December 2022: General Availability of zone redundancy for General Purpose tier expanded to East US2, East US & Southeast Asia regions.
January 2023: General Availability of zone redundancy for General Purpose tier expanded to Qatar Central region.
Now generally available in select regions, your new and existing Azure SQL Databases and elastic pools that use the general purpose tier can enable the zone redundant configuration. This configuration is offered for both serverless and provisioned compute.
The zone redundant configuration utilizes Azure Availability Zones to replicate databases across multiple physical locations within an Azure region. By selecting zone redundancy, you can make your serverless and provisioned general purpose single databases and elastic pools resilient to a much larger set of failures, including catastrophic datacenter outages, without any changes of the application logic. This configuration offers 99.995% availability SLA and RPO=0. For more information see general purpose service tier zone redundant availability.
The zone redundant configuration can be enabled for both new and existing serverless and provisioned general purpose databases and elastic pools. Once the zone redundant option is enabled, Azure SQL Database will automatically reconfigure the database or pool. You can configure this setting by using Portal, CLI, PowerShell, or ARM API.
The following diagrams illustrate how to use Azure portal to configure a new general purpose provisioned database to be zone redundant.
Step 1: Select Configure database in the Create SQL Database blade.
Step 2: In the Configure blade select Yes to make the database zone redundant then click Apply.
The following CLI commands can be used to enable the zone redundant configuration using the –zone-redundant {false, true} parameter.
Below is an example CLI command for creating a new zone redundant provisioned general purpose tier Azure SQL database.
az sql db create -g mygroup -s myserver -n mydb -e GeneralPurpose --zone-redundant
The following PowerShell commands can be used to enable the zone redundant configuration using the -ZoneRedundant parameter.
Below is an example CLI command for creating a new zone redundant provisioned general purpose tier Azure SQL database.
New-AzSqlDatabase -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -DatabaseName "Database03" -Edition "GeneralPurpose" -ZoneRedundant
The zone redundant configuration can be enabled using create or update in ARM.
Zone redundant Azure SQL database general purpose tier is generally available in the following regions:
Note:
General availability expanded to East US 2, East US & Southeast Asia regions during Oct-Dec 2022.
General availability expanded to Qatar Central region in January 2023.
Zone redundant Azure SQL database general purpose tier is available in preview in the following regions:
Additional regions will be added over time. Visit the documentation for up-to-date information on regions that support Availability Zones in Azure.
Please visit the pricing pages for single databases and elastic pools for pricing details for this configuration.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.