A smart manufacturing company needs to migrate its regional plant monitoring infrastructure to Google Cloud within a 14-day migration window. The legacy environment consists of a archive of historical sensor logs stored on local NFS storage and a operational PostgreSQL database. The on-premises site has a single dedicated internet connection, and the database cutover requires near-zero downtime.
Which TWO architectural strategies should the team implement to meet these requirements? (Select TWO.)
- Order a GCP Transfer Appliance to physically ingest and transfer the sensor archive to Cloud Storage.Answer
- Deploy Database Migration Service (DMS) with continuous Change Data Capture (CDC) to migrate the PostgreSQL database to Cloud SQL.Answer
- CConfigure Storage Transfer Service to upload the sensor archive directly over the internet connection.
- DProvision a Cloud Spanner instance and perform a full offline database export and restore during the cutover window.
Answer
The team should order a GCP Transfer Appliance to move the sensor archive offline to Cloud Storage and use Database Migration Service (DMS) with continuous Change Data Capture (CDC) to migrate the PostgreSQL database to Cloud SQL with minimal downtime.
For large multi-terabyte data transfers () over limited bandwidth (), online network transfer would take over 230 days, making an offline appliance like GCP Transfer Appliance essential to complete the transfer within a 14-day window. For operational relational database migrations requiring near-zero downtime, using Database Migration Service with CDC enables continuous replication from PostgreSQL to Cloud SQL, allowing a rapid cutover.
Step-by-Step Solution
Key Concept
Evaluating network transfer throughput versus offline physical data transport appliances, and designing continuous replication paths for low-downtime relational database migrations.