A Solutions Architect is migrating a self-managed, on-premises MySQL 8.0 database to an Amazon Aurora PostgreSQL-Compatible Edition DB cluster. The migration strategy uses the AWS Schema Conversion Tool (SCT) to convert the schema and AWS Database Migration Service (DMS) for ongoing replication (Change Data Capture - CDC) to minimize downtime. After converting the schema and creating the target tables, the architect configures a DMS task with a migration type of 'Full load, ongoing replication'. The task successfully completes the full load phase, but fails shortly after starting the CDC phase. Investigation reveals that binary logging is enabled on the source MySQL server with the format set to ROW, but the replication task cannot process UPDATE operations. Which configuration action on the source MySQL database will resolve this issue?
- Set the parameter binlog_row_image to FULL in the MySQL configuration file and restart the MySQL service.Cevap
- BExecute ALTER TABLE statements on the source database to enable supplemental logging for primary keys on all tables.
- CSet the binlog_format parameter to MIXED in the MySQL configuration file and restart the MySQL service.
- DInstall the AWS DMS Binary Reader agent on the source database host and configure it to read the transaction logs directly.