i want to ask when standby node work and how it mirror primary node? is it mirrioring in real-time?
so the data itself will be exact same on real-time.
and what if the datacenter is down? is the standby database will go down too?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Sign up for Infrastructure as a Newsletter.
Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Hello,
In the event of a failure, Managed Databases will automatically switch data handling to a standby node to minimize downtime.
The data between the nodes is being replicated using SQL replication.
All database clusters have automated failover, meaning they automatically detect and replace degraded or failing nodes.
With one standby node, if the primary node fails, the service remains available. The standby node is immediately promoted to primary and begins serving requests while a replacement standby node is provisioned in the background.
If both nodes fail simultaneously, the service becomes unavailable until at least one of the nodes is reprovisioned.
To increase the stability further, you could have two standby nodes, that way the cluster would be highly available and very resilient against downtime.
Even if two nodes fail simultaneously, the service remains available while two replacements are provisioned in the background.
The service only becomes unavailable in the unlikely event of all three nodes failing at the same time.
Regards, Bobby
This comment has been deleted