An energy utility company operates a smart grid telemetry platform on Google Cloud. The primary workload runs in region `us-east1`, utilizing Compute Engine Managed Instance Groups (MIGs) behind an External HTTP(S) Load Balancer and a Cloud SQL for PostgreSQL database. To maintain a Warm Standby disaster recovery pattern targeting an RTO of less than 15 minutes and an RPO of less than 5 minutes in secondary region `us-central1`, the team maintains a cross-region Cloud SQL read replica and a baseline MIG of 2 instances in `us-central1`. During a simulated disaster recovery failover test where `us-east1` is declared offline, the automation script successfully promotes the Cloud SQL read replica in `us-central1` to standalone primary status and attempts to scale out the `us-central1` MIG to 50 instances to handle full production traffic. However, the MIG scaling operation fails immediately and cannot launch additional compute instances, causing the failover to stall. Which of the following is the most likely cause of this execution failure?
- The Google Cloud project lacks sufficient regional Compute Engine resource quota in `us-central1`, as quota increases were only granted for the primary region.Cevap
- BVPC Network Peering was omitted between `us-east1` and `us-central1`, preventing the newly scaled MIG in `us-central1` from establishing a valid network path to the database.
- CCloud SQL for PostgreSQL cross-region read replicas cannot be promoted unless the primary database is migrated to Cloud Spanner for multi-region global consistency.
- DHA VPN was selected for inter-region connectivity instead of Dedicated Interconnect, restricting the control plane throughput necessary to provision new Compute Engine instances.