Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Two Questions Regarding AWS' RDS Multi AZ

  1. I understand that when upgrading to a Multi-AZ rds from a Single-AZ, there occurs a "breef i/o freeze". What exactly does that mean?

  2. When an upgrade is made to a Multi-AZ deployment, say from small to large, will the production database be impacted at all? Will it be able to use the backup databse, then failover?

like image 637
Nick Avatar asked Apr 05 '11 08:04

Nick


People also ask

What is the benefit of a multi-AZ deployment of Amazon RDS?

In an Amazon RDS Multi-AZ deployment, Amazon RDS automatically creates a primary database (DB) instance and synchronously replicates the data to an instance in a different AZ. When it detects a failure, Amazon RDS automatically fails over to a standby instance without manual intervention.

Does Multi-AZ require downtime?

An existing Single AZ instance can be converted into a Multi-AZ instance by modifying the DB instance without any downtime.

What are two benefits of using Read Replicas over multi-AZ?

Benefits of Read Replica Read Replica helps in decreasing load on the primary DB by serving read-only traffic. A Read Replica can be manually promoted as a standalone database instance. You can create Read Replicas within AZ, Cross-AZ or Cross-Region.

What would happen to an RDS relational database service multi availability Zone?

What would happen to an RDS (Relational Database Service) Multi-Availability Zone deployment if the primary DB instance fails? IP of the primary DB Instance is switched to the standby DB Instance. A new DB instance is created in the standby availability zone.


1 Answers

Answers to your questions are written down :

  1. When you choose to move from Single AZ to Multi AZ, brief I/O freeze happens. It means that for some duration database won't be accessible. No read,write operations will be performed on the database. Mostly, the duration for this is around 3-4 minutes.

  2. Yeah, production database will be affected when you resize the compute(from small to large). The best idea to perform resize operation is during scheduled maintenance window. If select Apply Immediately option, for sometime the database won't be accessible(time to switch control to backup server).

Regards, Sanket Dangi

like image 127
Sanket Dangi Avatar answered Oct 11 '22 03:10

Sanket Dangi