Which two strategies should be implemented to ensure high availability for a Compute Engine instance group running a stateless web application?
Regional MIG distributes instances across zones for automatic failover.
Why this answer
Regional managed instance groups (MIGs) distribute instances across multiple zones within a region, providing automatic healing and high availability by recovering from zone failures. Combined with a global load balancer, they ensure traffic is routed only to healthy instances, making them ideal for stateless web applications that require resilience against zonal outages.
Exam trap
The PCD exam often tests the misconception that global load balancing alone provides high availability, but it only distributes traffic; the underlying compute resources must be resilient, which requires a regional MIG or multi-zone deployment to survive zone failures.