AWS Certified Solutions Architect – Professional — Question 851

A Solutions Architect is migrating a 10 TB PostgreSQL database to Amazon RDS for PostgreSQL. The company's internet link is 50 MB with a VPN in the
Amazon VPC, and the Solutions Architect needs to migrate the data and synchronize the changes before the cutover. The cutover must take place within an 8-day period.
What is the LEAST complex method of migrating the database securely and reliably?

Answer options

Correct answer: A

Explanation

Migrating a 10 TB database over a 50 Mbps network connection would take more than 20 days, which exceeds the 8-day window, making an offline migration via AWS Snowball necessary for the initial bulk load. Using AWS DMS with Snowball allows for seamless data loading into S3 and RDS, followed by change data capture (CDC) replication over the VPN to synchronize incremental changes. The AWS Schema Conversion Tool (SCT) is unnecessary because this is a homogeneous PostgreSQL-to-PostgreSQL migration, and manual log shipping is significantly more complex than using AWS DMS.