RDS And Multi-AZ Failover Flashcards
What is RDS Multi-AZ?
Creates a copy of the RDS DB in another AZ. AWS manages the failure from one AZ to another automatically.
How does RDS Multi-AZ work?
RDS DB is provided with a DNS that points to one AZ. if the AZ fails, AWS will update the DNS to point to another AZ.
When AWS RDS implements failover and changes the DNS to point to another AZ, what steps does that customer take?
None. Since the DNS changes automatically, as long as the customer points their application to the DNS, the transition is automatic.
What steps must the customer take to ensure the standby RDS instance is in sync with the primary?
None. AWS manages the replication.
During an RDS failover event, how long can a customer expect their application to be unresponsive?
About 1 minute.
for synchronizing MySQL, Oracle, and PostgreSQL, what does AWS utilize?
synchronous physical replication
for synchronizing MSSQL what does AWS utilize?
synchronous logical replication, employing SQL Server-native mirroring technology
True or False, backups and restores are taken from the primary DB?
False. They are both taken from the secondary to avoid I/O interference on the primary.
How can you test failover functionality?
By forcing a reboot of the primary DB instance.
What two ways can you reboot a DB instance?
AWS Management console
RebootDBInstance API call
would RDS Multi-AZ be used for scaling and increasing performance?
No. Use read replicas for scaling and performance.