An enterprise is migrating an online transaction processing system to Google Cloud. The architecture consists of two primary components with distinct storage requirements:
1. A transactional relational database requiring full ANSI SQL support, multi-region global strong consistency, and automatic horizontal write scaling without manual database sharding.
2. A real-time telemetry processing pipeline running on Compute Engine instances that requires a local block storage volume for temporary scratch files, capable of delivering over 100,000 IOPS at sub-millisecond latency.
Which combination of Google Cloud database and block storage services satisfies all operational and performance requirements with minimal administrative overhead?
- Cloud Spanner for the transactional relational database, and Local SSD for the telemetry scratch storage.Cevap
- BCloud SQL with cross-region read replicas for the transactional relational database, and SSD Persistent Disk (pd-ssd) for the telemetry scratch storage.
- CCloud Bigtable for the transactional relational database, and Standard Persistent Disk (pd-standard) for the telemetry scratch storage.
- DSelf-managed PostgreSQL instances on Spot Compute Engine VMs for the transactional database, and Cloud Storage Coldline for the telemetry scratch storage.
Cevap
Cloud Spanner for the transactional relational database, and Local SSD for the telemetry scratch storage.
The correct answer combines Cloud Spanner and Local SSD. Cloud Spanner is Google Cloud's fully managed relational database designed specifically for workloads requiring enterprise ANSI SQL compliance, global multi-region ACID transactions, and horizontal write scaling without sharding. Local SSDs provide high-performance ephemeral block storage physically attached to the VM host instance, delivering high throughput and sub-millisecond latency for temporary processing scratch space.
Adım Adım Çözüm
Anahtar Kavram
Choosing Cloud Spanner for globally scalable relational SQL workloads and Local SSD for ultra-low latency VM scratch space.
Tahmini Süre:2m 0s