KCNA Cloud Native Architecture Practice Question
A retail company runs its e-commerce platform on Kubernetes. During a flash sale, the application experiences high latency. The team notices that the database pods are CPU-bound and the application pods are waiting on database responses. Which architectural change would best address this bottleneck?
⚠ Common exam trap
CNCF often tests the misconception that scaling application pods (Option C) is a universal fix for performance issues, but here it would amplify the database bottleneck rather than resolve it.
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
✓
Implement read replicas for the database and configure the application to use them for read operations.
The bottleneck is caused by the database being CPU-bound, meaning it cannot process requests fast enough. Implementing read replicas offloads read queries from the primary database, reducing its CPU load and allowing it to handle write operations more efficiently. The application can be configured to route read operations to the replicas, which directly addresses the latency caused by waiting on database responses.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Change the database service type from ClusterIP to NodePort.
Why it's wrong here
Service type affects network access, not database CPU load.
- ✓
Implement read replicas for the database and configure the application to use them for read operations.
Why this is correct
Read replicas distribute the read load, reducing CPU pressure on the primary database.
- ✗
Increase the number of application pod replicas.
Why it's wrong here
This would increase the number of requests to the database, worsening the bottleneck.
- ✗
Store database configuration in a ConfigMap to improve startup time.
Why it's wrong here
ConfigMaps manage configuration, not database performance.
Go deeper
Related to this question
About these practice questions
This KCNA question is part of Courseiva's 833-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This KCNA practice question is part of Courseiva's free CNCF 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 KCNA exam.