A company is planning to migrate its on-premises MySQL 8.0 database to an Amazon Aurora PostgreSQL-Compatible Edition DB cluster. The database contains several tables with JSON and large binary object (BLOB) columns that are updated frequently. A solutions architect has already used the AWS Schema Conversion Tool (SCT) to migrate the schema. The architect now configures an AWS Database Migration Service (AWS DMS) replication instance and task to perform a full load with ongoing replication (Change Data Capture - CDC). During initial testing of the CDC phase, the replication task fails with errors when update operations occur on tables containing the BLOB columns. Which configuration change must the solutions architect apply to resolve this issue and ensure successful CDC replication?
- AModify the source database configuration to set the binlog_format parameter to MIXED to allow both statement-based and row-based replication during high-throughput updates.
- BEnable Microsoft Change Data Capture (MS-CDC) on the source database engine and start the SQL Server Agent to track updates on the BLOB columns.
- Configure the binlog_row_image parameter to FULL in the source database parameters, and restart the source database instance.Answer
- DConfigure the AWS DMS replication task settings to enable Inline LOB mode with a MaxLobSize parameter of 0 to force immediate replication of all BLOB data.