Courseiva
Workload-Specific Database DesignmediumMultiple ChoiceObjective-mapped

DBS-C01 Workload-Specific Database Design Practice Question

Network Topology
aws rds describe-db-instancesdb-instance-identifier mydbRefer to the exhibit.```"DBInstances": ["DBInstanceIdentifier": "mydb","DBInstanceClass": "db.r5.large","Engine": "mysql","DBInstanceStatus": "available","MasterUsername": "admin","Endpoint": {"Address": "mydb.123456789012.us-east-1.rds.amazonaws.com","Port": 3306},"AllocatedStorage": 100,"StorageType": "gp2","VpcSecurityGroups": [{"VpcSecurityGroupId": "sg-12345678", "Status": "active"}],"DBSubnetGroup": {"DBSubnetGroupName": "default","Subnets": [{"SubnetIdentifier": "subnet-11111111", "SubnetAvailabilityZone": "us-east-1a"},{"SubnetIdentifier": "subnet-22222222", "SubnetAvailabilityZone": "us-east-1b"}"MultiAZ": false,"ReadReplicaSourceDBInstanceIdentifier": null,"BackupRetentionPeriod": 7

Refer to the exhibit. An application team notices that the MySQL RDS instance 'mydb' is running at 80% CPU utilization during peak hours. They need to improve read performance without increasing the CPU load on the primary instance. Which action should they take?

⚠ Common exam trap

Candidates often confuse Multi-AZ (which provides failover but no read scaling) with Read Replicas (which offload reads), leading candidates to select Multi-AZ when the goal is to reduce CPU load on the primary.

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Create a Read Replica in the same region

Creating a Read Replica offloads read traffic from the primary MySQL RDS instance, reducing CPU load on the primary while improving read performance for applications. Read Replicas asynchronously replicate data using MySQL’s native binlog-based replication, allowing the primary to focus on write operations without additional CPU overhead from serving reads.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Increase the DB instance class to db.r5.xlarge

    Why it's wrong here

    Scales vertically but does not offload reads; still single point of load.

  • Create a Read Replica in the same region

    Why this is correct

    Read Replica offloads read queries, reducing CPU on primary.

  • Change storage type to io1 with higher IOPS

    Why it's wrong here

    Storage change does not reduce CPU utilization.

  • Enable Multi-AZ deployment

    Why it's wrong here

    Multi-AZ provides high availability, not read scaling.

About these practice questions

Courseiva writes every DBS-C01 question from scratch — 1,663 in total, each with an explanation and a wrong-answer breakdown. None are copied from real exams or dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This DBS-C01 practice question is part of Courseiva's free Amazon Web Services certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the DBS-C01 exam.