Question bank · $150 Free reference Certifications

AWS database services, compared

Which AWS database fits which job — relational, NoSQL, in-memory, warehouse, document and graph — at a glance for the Solutions Architect exam.

Advertisement · 728×90

The services at a glance

ServiceTypeUse when…
RDSManaged relationalYou want managed MySQL/PostgreSQL/Oracle/SQL Server/MariaDB.
AuroraCloud-native relationalMySQL/PostgreSQL compatibility with higher performance and auto-scaling storage.
DynamoDBNoSQL key-value/documentServerless, single-digit-millisecond scale; unpredictable/huge throughput.
ElastiCacheIn-memory cacheSub-ms caching/sessions with Redis or Memcached.
RedshiftData warehouse (OLAP)Analytics over large datasets with columnar storage.
DocumentDBDocument (MongoDB-compatible)JSON document workloads with MongoDB APIs.
NeptuneGraphHighly connected data — social, fraud, recommendations.

OLTP vs OLAP — the key split

The deciding question

OLTP (many small transactions → RDS/Aurora/DynamoDB) vs OLAP (analytical queries over big data → Redshift). Getting this right answers most "which database" exam questions.

Exam traps

  • Redshift for transactions. It's a warehouse (OLAP), not for high-volume OLTP.
  • DynamoDB for complex joins/relations. It's key-value; relational needs RDS/Aurora.
  • ElastiCache as a primary store. It's a cache layer, not durable primary storage.

Test yourself

4 quick questions — tap an answer to check it instantly. Nothing is sent anywhere.

1. Which service is a managed data warehouse (OLAP)?

Answer: C. Redshift is the columnar OLAP data warehouse.

2. Which is a NoSQL key-value/document database?

Answer: B. DynamoDB is the managed NoSQL key-value/document service.

3. ElastiCache is used for…

Answer: B. ElastiCache (Redis/Memcached) is an in-memory cache, not a primary store.

4. OLTP (many small transactions) is best served by…

Answer: B. OLTP workloads use RDS/Aurora or DynamoDB; Redshift is OLAP.

Sources

  1. Amazon Web Services — AWS Databases.
  2. AWS official documentation and the AWS Certified Solutions Architect exam guide.

Reference summary only. "AWS" is a trademark of Amazon. Confirm current details in the official AWS documentation.