A financial services institution is migrating its reporting warehouse and transactional workloads from an on-premises data center to Google Cloud. The dataset consists of of historical raw analytics logs stored on Network-Attached Storage (NAS) and an active operational MySQL database. The institution has a dedicated WAN bandwidth of available for migration activities, and business requirements mandate a maximum downtime window of 4 hours during the final cutover.
Which TWO architectural decisions should the Cloud Architect incorporate into the migration plan to satisfy these requirements?
- Order GCP Transfer Appliance devices to perform an offline bulk data transfer of the historical analytics logs into Cloud Storage.Cevap
- Use Database Migration Service (DMS) with continuous Change Data Capture (CDC) to replicate the operational MySQL database prior to cutover.Cevap
- CStream the historical analytics dataset directly into Cloud Storage over the network link using Storage Transfer Service.
- DMigrate the operational MySQL database directly to Cloud Spanner to ensure single-region transactional consistency without requiring schema refactoring.
Cevap
The correct architecture requires utilizing GCP Transfer Appliance for the offline bulk transfer of the historical files and Database Migration Service (DMS) with Change Data Capture (CDC) for continuous database synchronization prior to final cutover.
For the raw analytics logs, an online transfer over would take over 550 days. Transfer Appliance provides an offline physical hardware shipping model that ingests petabyte-scale data into Cloud Storage efficiently. For the active MySQL database, Database Migration Service (DMS) with CDC continuously streams change logs to Cloud SQL in real time, allowing a seamless cutover within the 4-hour window.
Adım Adım Çözüm
Anahtar Kavram
Selecting appropriate GCP data migration tools based on network bandwidth calculations, dataset size, and database downtime windows.