02/06/2026
AWS RDS Storage Types - Complete Summary
1. Magnetic Storage (Oldest)
What is it?
Traditional HDD (Hard Disk Drive) storage.
Features
Lowest cost
Slowest performance
High latency
Used mainly for legacy systems
Use Cases
Old applications
Databases that don't require high performance
Exam Point
❌ Not recommended for new applications.
2. General Purpose SSD (gp2)
What is it?
An SSD storage type designed for most workloads.
Key Concept
Performance depends on storage size.
Formula
IOPS = 3 \times Storage\,(GB)
Examples
Storage IOPS
100 GB 300
500 GB 1500
1000 GB 3000
Advantages
Faster than Magnetic
Good for most applications
Disadvantages
Need more storage to get more IOPS
Less flexible
Use Cases
Small websites
Medium business applications
Learning projects
3. General Purpose SSD (gp3)
What is it?
The newer version of gp2.
Biggest Improvement
Storage and IOPS are separate.
You can choose:
Storage = 100 GB
IOPS = 3000
without buying extra storage.
Advantages
✅ Better performance
✅ More flexible
✅ Cheaper than gp2
✅ Recommended for new deployments
Use Cases
E-commerce websites
CRM systems
Company applications
Most databases
Exam Point
If the question says:
> "General-purpose workload at low cost"
Answer:
gp3
Understanding IOPS
What is IOPS?
IOPS = Input/Output Operations Per Second
Measures how many read/write operations storage can perform in one second.
Example
3000 IOPS means:
Storage can perform approximately 3000 read/write operations every second.
Important
Storage (GB) = How much data you can store
IOPS = How fast storage works
4. Provisioned IOPS SSD (io1)
What is it?
High-performance SSD storage.
You choose exactly how many IOPS you need.
Example
Storage = 100 GB
IOPS = 10,000
AWS guarantees that performance.
Advantages
✅ Very fast
✅ Consistent performance
✅ Predictable
Disadvantages
❌ More expensive
Use Cases
Banking systems
Payment applications
Large production databases
5. Provisioned IOPS SSD (io2)
What is it?
The newer and improved version of io1.
Advantages
✅ Highest performance
✅ Highest durability
✅ Better reliability
✅ Lowest latency
Use Cases
Banking systems
Stock trading platforms
Financial systems
Mission-critical applications
Exam Point
If the question says:
> "Highest performance"
or
> "Mission-critical database"
Answer:
io2
gp3 vs io2
Feature gp3 io2
Cost Lower Higher
Performance High Very High
IOPS Good Excellent
Reliability High Highest
Latency Low Very Low
Recommended For Most applications Critical applications
Easy Real-Life Analogy
Magnetic
Old bicycle 🚲
gp2
Regular car 🚗
gp3
Modern efficient car 🚙
io1
Sports car 🏎️
io2
Formula 1 race car 🏁
Final AWS Certification Cheat Sheet
If Question Mentions:
Requirement Answer
Lowest Cost Magnetic
General Purpose gp3
Most Applications gp3
Need Better Than gp2 gp3
Guaranteed IOPS io1/io2
High Performance Database io1
Mission Critical io2
Highest Reliability io2
Banking/Financial System io2
Memory Shortcut
Magnetic → gp2 → gp3 → io1 → io2
From slowest and oldest to fastest and most reliable.
For your AWS learning journey, focus most on gp3 and io2 because these are the storage types you will see most often in modern AWS environments and certification exams.