Which statement correctly describes the difference between Recovery Time Objective (RTO) and Recovery Point Objective (RPO) in disaster recovery?
Think about what each objective aims to limit: downtime or data loss.
RTO defines how quickly you want to recover your system after a failure. RPO defines how much data loss is acceptable, measured by time since last backup.
You want to design a disaster recovery solution for a critical application on Google Cloud Platform. The application requires minimal downtime and data loss. Which architecture best fits this need?
Consider which option balances readiness and cost for minimal downtime.
Warm standby keeps a scaled-down environment running, allowing quick scaling and minimal downtime, suitable for critical apps.
Which configuration snippet correctly enables cross-region replication for a Google Cloud Storage bucket named 'source-bucket' to replicate objects to 'destination-bucket' in another region?
gsutil versioning set on gs://source-bucket # Replication configuration below
Check the correct gsutil command syntax for bucket replication creation.
The correct command is 'gsutil replication create gs://source-bucket gs://destination-bucket'.
To ensure secure access to disaster recovery resources in a secondary region, which IAM policy practice is best?
Think about minimizing risk while allowing access.
Granting only necessary permissions to specific users follows best security practices and reduces risk.
In a Cloud SQL instance configured with high availability across multiple regions, what happens automatically when the primary region becomes unavailable?
Consider how managed services handle failover for high availability.
Cloud SQL automatically fails over to the standby instance in the secondary region with minimal downtime.