A global online travel booking platform is migrating its infrastructure to Google Cloud within a strict 3-week cutover window. The application stack includes a operational PostgreSQL relational database that requires less than 2 hours of downtime during cutover, and a historical search log archive. The enterprise maintains an existing Dedicated Interconnect connection to Google Cloud, but network policies restrict migration bandwidth on this link to off-peak hours (maximum 12 hours per day). Which migration and data transfer strategy should the cloud architect recommend to meet all business and technical constraints?
- Order a Google Cloud Transfer Appliance to transfer the historical search log archive offline, and use Database Migration Service (DMS) with continuous Change Data Capture (CDC) over the Dedicated Interconnect for the PostgreSQL database.Answer
- BUse Storage Transfer Service over the Dedicated Interconnect during off-peak hours to transfer both the historical log archive and periodic PostgreSQL database backups.
- CMigrate the PostgreSQL database to Cloud Spanner using Database Migration Service to eliminate cutover downtime, and transfer the search log archive via Storage Transfer Service over a temporary HA VPN connection.
- DProvision additional HA VPN tunnels to stream the log archive using Storage Transfer Service, and perform a cold database migration using static database exports during the final maintenance window.
Answer
Order a Google Cloud Transfer Appliance to transfer the historical search log archive offline, and use Database Migration Service (DMS) with continuous Change Data Capture (CDC) over the Dedicated Interconnect for the PostgreSQL database.
Transferring of data over a line capped at 12 hours per day provides only of daily ingestion, requiring over two months. Utilizing Google Cloud Transfer Appliance enables shipping the archive offline to meet the 3-week timeline constraint. Meanwhile, Database Migration Service (DMS) continuously replicates PostgreSQL transactions using Change Data Capture (CDC) over the Dedicated Interconnect, allowing the database cutover to complete well within the 2-hour target window.
Step-by-Step Solution
Key Concept
Designing hybrid migration plans that combine offline physical appliances (Transfer Appliance) for bandwidth-constrained large datasets with continuous online replication tools (DMS with CDC) for low-downtime database cutovers.