An energy utility provider is migrating its historical meter telemetry data archive of and an operational relational database from an on-premises data center to Google Cloud. The facility has a dedicated internet uplink available for the migration process, and business requirements specify that all data must be transferred within a window with minimal disruption to ongoing database transactions. Which data transfer strategy best satisfies these technical and operational constraints?
- Order a Google Cloud Transfer Appliance to transfer the telemetry archive offline, and use Database Migration Service (DMS) with continuous replication over a dedicated network connection for the operational database.Answer
- BUse Storage Transfer Service over the existing internet uplink to move both the telemetry archive and the database files directly into Cloud Storage buckets.
- CMigrate the operational database to Cloud Spanner and use Cloud VPN over the internet link to stream the archive using parallel gsutil uploads.
- DEstablish a single HA VPN tunnel to stream the telemetry archive while using VPC Network Peering to directly copy database snapshots to target subnets.
Answer
Order a Google Cloud Transfer Appliance for the telemetry archive and use Database Migration Service (DMS) for the operational database.
The correct strategy combines Transfer Appliance for the static dataset with Database Migration Service (DMS) for the database. Transferring over a network line requires over 400 days, making online transfer impossible within the 30-day requirement. Transfer Appliance bypasses this network bottleneck by physically shipping high-capacity hardware. Meanwhile, DMS supports continuous change data capture for the active operational database to minimize cutover downtime.
Step-by-Step Solution
Key Concept
Selecting data transfer tools based on bandwidth math and workload state (offline physical transfer for petabyte/terabyte-scale static data over limited links vs. continuous replication for databases).