In a multi-region architecture, what is the main advantage of an active-active setup compared to active-passive?
Think about how traffic is handled in both setups.
Active-active means multiple regions serve traffic at the same time, improving availability and latency. Active-passive keeps one region idle until failover.
You want to design a multi-region system on GCP that keeps data consistent across regions with minimal delay. Which replication strategy fits best?
Consider consistency and delay trade-offs.
Synchronous replication ensures data is consistent across regions by confirming writes only after all regions have the data, minimizing inconsistency but may add latency.
In a multi-region architecture using DNS failover, what is a common limitation affecting failover speed?
Think about how DNS caching works on the internet.
DNS caching by clients and resolvers can cause delays in failover because cached IP addresses may still point to the failed region until the cache expires.
Which practice best secures data replicated across multiple GCP regions?
Consider encryption best practices for cloud data.
Encrypting data at rest and in transit with managed keys protects data confidentiality and integrity during replication across regions.
Which design choice best supports fast disaster recovery with minimal data loss in a multi-region GCP architecture?
Think about automation and replication consistency for recovery speed.
Synchronous replication combined with automated failover and health checks enables quick recovery with minimal data loss by switching traffic automatically to a healthy region.