Reputation: 566
I have an Azure SQL in WEST US with GEO-REPLICATION enabled to sync with EAST US.
and I want to know
Upvotes: 0
Views: 258
Reputation: 6043
Update:
Automated backups, according to this documentation: Both SQL Database and SQL Managed Instance use SQL Server technology to create full backups every week, differential backups every 12-24 hours, and transaction log backups every 5 to 10 minutes. The frequency of transaction log backups is based on the compute size and the amount of database activity.
According to this documentation, if an outage is detected, Azure waits for the period you specified by GracePeriodWithDataLossHours
. The default value is 1 hour. If you cannot afford data loss, make sure to set GracePeriodWithDataLossHours
to a sufficiently large number, such as 24 hours. Use manual group failover to fail back from the secondary to the primary.
According to this answer, Grace period means to allow time for the database to failover within the primary region.
Upvotes: 2