nerdexam
Amazon

DBS-C01 · Question #303

A financial services company is using AWS Database Migration Service (AWS DMS) to migrate its databases from on-premises to AWS. A database administrator is working on replicating a database to AWS…

The correct answer is D. There was no primary key or index in the target database. E. There were resource bottlenecks in the replication instance. High and increasing target latency during AWS DMS CDC replication often indicates either a lack of primary keys or indexes on the target database, leading to inefficient updates and deletes, or resource bottlenecks on the DMS replication instance itself.

Submitted by marco_it· Mar 6, 2026Monitoring and Troubleshooting

Question

A financial services company is using AWS Database Migration Service (AWS DMS) to migrate its databases from on-premises to AWS. A database administrator is working on replicating a database to AWS from on-premises using full load and change data capture (CDC). During the CDC replication, the database administrator observed that the target latency was high and slowly increasing. What could be the root causes for this high target latency? (Choose two.)

Options

  • AThere was ongoing maintenance on the replication instance.
  • BThe source endpoint was changed by modifying the task.
  • CLoopback changes had affected the source and target instances.
  • DThere was no primary key or index in the target database.
  • EThere were resource bottlenecks in the replication instance.

How the community answered

(31 responses)
  • A
    3% (1)
  • B
    3% (1)
  • C
    10% (3)
  • D
    84% (26)

Why each option

High and increasing target latency during AWS DMS CDC replication often indicates either a lack of primary keys or indexes on the target database, leading to inefficient updates and deletes, or resource bottlenecks on the DMS replication instance itself.

AThere was ongoing maintenance on the replication instance.

While maintenance on a replication instance could cause temporary disruptions, it typically leads to a specific downtime event or restart, not a slowly increasing target latency, as the service is designed for high availability.

BThe source endpoint was changed by modifying the task.

Modifying the source endpoint of an AWS DMS task generally requires restarting the task, which might cause a temporary pause or reset in replication but does not inherently lead to high and slowly increasing target latency during CDC.

CLoopback changes had affected the source and target instances.

"Loopback changes" typically refer to a scenario where replicated changes are sent back to the source or cause an infinite replication loop, which might lead to data duplication or unexpected behavior, but it's not a direct or primary cause of high target latency within DMS itself.

DThere was no primary key or index in the target database.Correct

Without a primary key or suitable index on the target table, AWS DMS must perform a full table scan to locate the rows to update or delete during CDC, which is highly inefficient and causes target latency to increase significantly.

EThere were resource bottlenecks in the replication instance.Correct

Resource bottlenecks, such as insufficient CPU, memory, or network I/O on the AWS DMS replication instance, can directly hinder its ability to process and apply change data efficiently, leading to a build-up of unapplied changes and thus increased target latency.

Concept tested: AWS DMS CDC latency troubleshooting

Source: https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Troubleshooting.html#CHAP_Troubleshooting.TargetLatency

Topics

#AWS DMS#CDC replication#migration troubleshooting#replication latency

Community Discussion

No community discussion yet for this question.

Full DBS-C01 Practice