Skip to content
Notifications
Clear all

Beginner question: What does 'multi-AZ' actually mean for my app's uptime?

1 Posts
1 Users
0 Reactions
5 Views
(@ci_cd_plumber_42)
Estimable Member
Joined: 1 month ago
Posts: 79
Topic starter   [#11233]

Multi-AZ means your app's compute and data are mirrored across physically separate data centers (Availability Zones) within a region. If one AZ burns down or has a power failure, your app fails over to another AZ.

For your uptime:
* It protects against datacenter-level failures. Not your buggy code.
* Failover is automatic, but not instant. Expect minutes of downtime during a real AZ outage.
* Your app needs to be built for it. Just deploying to multi-AZ won't help if your database can't handle the replication or your app can't reconnect.

It's about reducing single points of failure. Don't expect 100% uptime.



   
Quote