user3341697
user3341697

Reputation: 325

Amazon RDS Multi-AZ scaling downtime

I have a question about scaling up MySql RDS - Multi-AZ downtime.

I think firstly Amazon will scale the Slave, then do fail over ( there is a downtime here ). then it will scale the master.

my question: is fail over the only downtime?. is there any downtime to redirect the requests back from the slave to the master after scaling the master.

Thank you

Upvotes: 3

Views: 2459

Answers (1)

Matt Healy
Matt Healy

Reputation: 18531

In a Multi-AZ setup, any change you make to the instance will first be done on the standby instance. Then, failover will occur (during this phase your application won't be able to connect to the database) and the change will be applied to the primary instance. The failover is the only downtime.

More information: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.MultiAZ.html

Upvotes: 6

Related Questions