A financial services company is planning to migrate its on-premises self-managed PostgreSQL 14 database containing large tables with complex PL/pgSQL stored procedures to an Amazon Aurora MySQL-Compatible Edition DB cluster. The migration must minimize downtime and ensure continuous replication during the transition period. The company also wants to analyze schema compatibility and perform conversion before starting the data transfer. Which of the following actions should the Solutions Architect take to configure this migration? (Select two.)
- Use the AWS Schema Conversion Tool (SCT) to generate a migration assessment report and convert the database schema, including PL/pgSQL stored procedures, to equivalent MySQL structures.Cevap
- Configure the on-premises PostgreSQL source database by setting the wal_level parameter to logical and increasing max_replication_slots and max_wal_senders to enable Change Data Capture (CDC) replication in AWS DMS.Cevap
- CEnable binary logging on the on-premises PostgreSQL database by setting the binlog_format parameter to ROW and enabling supplemental logging for all tables.
- DPerform a Replatform migration by directly using AWS DMS to automatically convert the source PostgreSQL schemas, custom types, and stored procedures to Aurora MySQL format during the initial data load.
- EConfigure an AWS DMS task with Full Load only, and use an AWS Lambda function triggered by Amazon EventBridge to manually scan the source database for incremental changes using timestamp columns to minimize source database performance impact.
Cevap
Use the AWS Schema Conversion Tool (SCT) to convert the schema and stored procedures, and configure the source PostgreSQL database parameters (wal_level to logical, max_replication_slots, and max_wal_senders) to support continuous Change Data Capture (CDC) replication.
The correct options are using the AWS Schema Conversion Tool (SCT) to perform the schema translation for the heterogeneous migration, and configuring PostgreSQL's native logical replication parameters (wal_level, max_replication_slots, max_wal_senders) on the source database to support Change Data Capture (CDC) replication.
Adım Adım Çözüm
Anahtar Kavram
Heterogeneous database migration using SCT for schema translation and DMS logical replication settings (wal_level, replication slots) for continuous replication (CDC).