A database administrator is using AWS DMS to migrate an on-premises Oracle database to Amazon RDS for PostgreSQL. The migration has been running for several hours, but the full load phase is taking much longer than expected. The CPU utilization on the DMS replication instance is consistently below 10%. What is the MOST likely cause of the slow performance?
Low IOPS on the target can cause DMS to wait, leading to low CPU on the replication instance.
Why this answer
Option C is correct because when migrating to a target with limited write capacity (e.g., RDS instance with low IOPS), DMS may be throttled by the target's write throughput, while the replication instance itself is underutilized. Option A is incorrect because DMS can use multiple tasks, but the issue is not about parallelism. Option B is incorrect because DMS uses its own engine, not PostgreSQL.
Option D is incorrect because using LOBs can slow down migration, but the symptom is low CPU on the replication instance, not high.