DVA-C02 Exam QuestionsBrowse all questions from this exam

DVA-C02 Exam - Question 25


A company is migrating an on-premises database to Amazon RDS for MySQL. The company has read-heavy workloads. The company wants to refactor the code to achieve optimum read performance for queries.

Which solution will meet this requirement with LEAST current and future effort?

Show Answer
Correct Answer: C

To achieve optimum read performance for queries in a read-heavy workload, deploying Amazon RDS with one or more read replicas is the most effective solution. Read replicas allow the distribution of read traffic, significantly enhancing read performance while offloading the primary database. Modifying the application code to direct read queries to the read replicas ensures that the workload is efficiently balanced, minimizing future maintenance efforts and optimizing performance.

Discussion

17 comments
Sign in to comment
Devon_FazekasOption: C
May 9, 2023

Multi-AZ is for disaster recovery, not read scalability or performance.

Skywalker23Option: C
Sep 24, 2023

Read heavy access need read replicas as the right solution.

RpodOption: C
Apr 21, 2023

C answer

KrokOption: C
Apr 5, 2023

It's C.

Akash619Option: C
Aug 23, 2023

Read Replicas for high performance read operations

Tony88Option: C
Sep 3, 2023

Keyword: heavy read

Dikshika
Apr 18, 2024

C it is as it clearly mentions they want to achieve optimum read performance

MalkiaOption: C
May 5, 2023

C answer

jayvarma
Aug 9, 2023

Keyword: Achieve Optimum read performance for queries. Answer: Use Read Replicas and use that specific URL for read queries.

xdkonorek2Option: B
Dec 21, 2023

easiest solution is to use multi-az rds deployment with 2 readable standby instances setting up read replica is more effort than checking a single option

mghectorenjoyer69
Mar 27, 2024

ni mada ra

vinfoOption: C
Apr 7, 2024

C. El uso de replicas de lectura, aliviana las consultas intensivas sobre la BD principal

badsatiOption: C
Apr 8, 2024

C... No Question

dan_bjOption: C
Apr 10, 2024

C forever

Vaibs099
Apr 24, 2024

Option A and B are both talking about Multi AZ RDS instance which gives Primary and Secondary(Non Read Replica). This is good for high availability but will not help in reads. Read replica or Multi AZ Cluster deployment is the only option to achieve high reads.

65703c1Option: C
May 21, 2024

C is the correct answer.

nkroker
Jul 4, 2024

Option C is wrong because deploying a read replica will be more effort then just enabling the multi-AZ with RDS and also the multi-AZ is meant for high availability that's why option B is correct.

tomchandler077
Jul 7, 2024

Option C provides the most straightforward and effective solution for improving read performance with minimal changes to the current application code and the least ongoing maintenance effort. Deploying read replicas allows for scaling read capacity and distributing read traffic efficiently.