Mutli-site Active/Active Disaster Recovery (DR) Architecture on AWS

0

Hi guys!

I'm researching DR on AWS and when I read the Active/Active strategy, I see that AWS notes this strategy is zero downtime. I don't understand why this is zero downtime.

For example, when customers are accessing our app in one region, when this region is down so the customers still have lost connection and then waiting for failing over to the new region. I think there is still downtime but it is very short.

Could you please explain more detail about this problem?

https://aws.amazon.com/blogs/architecture/disaster-recovery-dr-architecture-on-aws-part-i-strategies-for-recovery-in-the-cloud/

Enter image description here

Steven
已提问 2 年前705 查看次数
2 回答
1
已接受的回答

It depends on the nature of the service you're providing, in particular how you're storing state and data. If the service is stateless then users can be redirected to a working region as soon as Route53 deems the failed region unhealthy. In a more realistic scenario it's likely some existing sessions might be lost or delayed since the limits of CAP will be reached, but new sessions could be served from the healthy region.

已回答 2 年前
0

We are talking about multi-site Active/Active solution here. That means both sites are actively writing and syncing. If local copy fails, it's not about failing over for the DB but it just need a single retry from application side to read/write the data. We refer to this type of availability as continuous availability, to distinguish it from the high availability where there is brief downtime during failover.

Ideally there is no failover here as second copy in other region is active and up-to-date. e.g https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html

AWS
已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则