A smart energy grid company plans to migrate its legacy telemetry and management infrastructure to Google Cloud within a strict 4-week window. The environment consists of of historical meter reading archives stored on an on-premises NFS storage system and an active transactional PostgreSQL database. The organization has an existing dedicated network connection to Google Cloud, which is currently heavily utilized by business-critical operations. The business requires minimal downtime for the transactional database during cutover and must complete the entire static file migration within the 4-week timeframe. Which data transfer and migration strategy should you recommend?
- Order a Google Cloud Transfer Appliance to physically transport the of historical meter archives to Cloud Storage, and deploy Database Migration Service (DMS) with continuous Change Data Capture (CDC) over the existing network connection to replicate the PostgreSQL database prior to cutover.Cevap
- BConfigure Storage Transfer Service with self-hosted transfer agents to stream the of historical archives directly over the network connection, and deploy Database Migration Service (DMS) for the PostgreSQL database.
- COrder a Google Cloud Transfer Appliance for the historical archives, and migrate the PostgreSQL database by exporting full database dumps to Cloud Storage and loading them into Cloud Spanner during the cutover window.
- DEstablish multiple high-throughput Cloud VPN tunnels in parallel to transfer the static archives to Cloud Storage, and perform a manual database backup and restore procedure to Cloud SQL during cutover.
Cevap
Order a Google Cloud Transfer Appliance for the static archives and use Database Migration Service (DMS) with CDC for the PostgreSQL database.
The correct strategy combines Google Cloud Transfer Appliance for offline transfer of the historical archives and Database Migration Service (DMS) with continuous Change Data Capture (CDC) for the PostgreSQL database. Network calculations show that transferring over a link requires over 74 days, making online streaming impossible within the 4-week window. Transfer Appliance avoids network congestion and completes the bulk load on time. Meanwhile, DMS with CDC handles continuous database replication in the background, allowing a near-zero downtime cutover.
Adım Adım Çözüm
Anahtar Kavram
Selecting data transfer appliances vs. online transfer services based on bandwidth calculations and choosing CDC-based database migration tools for minimal downtime cutovers.