CloudGuild · Blog · Cheat sheets · Lessons · Certifications

Exam Question Walkthrough: AWS Certified Solutions Architect - Associate (SAA-C03)

Understand the key concepts behind choosing the right database for a gaming leaderboard in the SAA-C03 exam.

A decision about database selection can trip up candidates. Understanding the specific needs of a use case is crucial. In this scenario, we need to choose the best database for a gaming leaderboard with unpredictable traffic.

The question

A single-digit-millisecond, massively scalable key-value store is needed for a gaming leaderboard with unpredictable traffic. Which database is BEST?

Think before you scroll

Before you choose an answer, consider the requirements: low latency, scalability, and the ability to manage unpredictable traffic. Each option has distinct capabilities that cater to different use cases.

The answer

The correct option is B. Amazon DynamoDB. It is a serverless NoSQL key-value store that provides single-digit-millisecond latency at any scale. This makes it perfect for high-traffic scenarios like a gaming leaderboard.

Why the other options lose

The concept behind it

The principle here is understanding the specific database types and their strengths. DynamoDB excels in scenarios requiring quick read/write capabilities at scale, particularly when dealing with unpredictable workloads. Always match the database choice to the application's demands.

Exam trap to remember

When selecting a database for unpredictable workloads, remember: choose a key-value store for speed and scale, not a relational or graph database.

Take the free SAA-C03 mock exam

Take a free mock exam →