- 新しい順
- 投票が多い順
- コメントが多い順
Hi there,I understand you are performing a failover on your Aurora PostureSQL cluster and you are not seeing any changes on your DB instance. Please correct me if I misunderstood.
A network access control list (ACL) is an optional layer of security for your VPC that acts as a firewall for controlling traffic in and out of one or more subnets. In your case, I understand that you wanted to use the blackhole NACL as a way to failover your AZ. However, the blackhole created only blocks the DB instances’ reachability, but doesn’t make it unavailable.
Failover occurs in the event of (but not limited to) loss of availability in primary availability zone, loss of network connectivity to primary, compute unite failure on primary and storage failure on primary.As a result, you are unable to see any changes on your DB instance.Also note that being unable to connect to the instance does not result on the instance being unavailable.
If the primary instance in a DB cluster fails, Aurora automatically fails over in the following order: i) if Aurora read replicas are available it will then promote an existing read replica to the new primary instance. ii)if no read replicas are available, then you will have to create a new primary instance. If the DB cluster has one or more Aurora Replicas, then an Aurora Replica is promoted to the primary instance during a failure event. A failure event results in a brief interruption, during which read and write operations fail with an exception.
For failover I would suggest using failover with amazon Aurora by following this link[1].
I have attached documents to more information in the reference.
I hope this was helpful.
Reference
[1]https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReadRepl.html#USER_ReadRepl.Promote
[2]https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.MultiAZSingleStandby.html
[3]https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.MultiAZSingleStandby.html
関連するコンテンツ
- 質問済み 6年前
- AWS公式更新しました 1年前
Thanks , got clarifications.