A global biomedical research organization plans to migrate its core infrastructure to Google Cloud within a strict 14-day timeline. The workload comprises two main components:
1. An uncompressed genomic dataset stored on an on-premises Network Attached Storage (NAS) array. The organization has a dedicated Internet connection with an average baseline usage of .
2. A transactional PostgreSQL database supporting active clinical trials that requires continuous replication with zero-downtime cutover.
Which migration strategy meets the operational and time constraints while following Google Cloud architectural best practices?
- Order GCP Transfer Appliance devices to perform an offline bulk transfer of the genomic dataset into Cloud Storage, while configuring Database Migration Service (DMS) with continuous Change Data Capture (CDC) over HA VPN for the PostgreSQL database.Answer
- BUtilize Storage Transfer Service over the existing Internet link to transfer the genomic dataset directly into Cloud Storage, while deploying Database Migration Service (DMS) for the PostgreSQL database continuous replication.
- CDeploy GCP Transfer Appliance devices for the genomic dataset migration, while using Storage Transfer Service to continuously replicate the PostgreSQL database into Cloud Spanner.
- DConfigure multiple HA VPN tunnels to aggregate bandwidth across the existing Internet link up to for streaming the genomic dataset via Storage Transfer Service, while using Database Migration Service for the database.
Answer
The optimal solution is to order Transfer Appliance devices for the offline migration of the genomic data, combined with Database Migration Service (DMS) using Change Data Capture (CDC) over HA VPN for the PostgreSQL database cutover.
The correct strategy combines offline physical data transfer (Transfer Appliance) for large static datasets that cannot physically stream over existing network connections within the required timeline, alongside native database continuous replication (Database Migration Service with CDC over HA VPN) to achieve minimal downtime for active transactional workloads.
Step-by-Step Solution
Key Concept
Selecting data migration strategies based on dataset scale, available network bandwidth, and application downtime tolerance.
Estimated Time:2m 30s