Introduction
Not all data is accessed equally often. Cloud providers offer multiple storage classes, or tiers, so you pay less for data you rarely touch while keeping frequently accessed data fast and cheap to retrieve. Choosing the right storage class is one of the simplest ways to reduce a cloud storage bill without changing any application code.
Cricket analogy: A team keeps its current season's bat and pads in the dressing room for instant access but stores old trophy-winning kits from a decade ago in a distant storeroom, since paying to keep everything courtside would be wasteful.
Explanation
Hot (frequent-access) storage is optimized for data accessed constantly, such as a live website's images or an active application's files. It has the highest per-gigabyte storage cost but the lowest retrieval cost and latency — data is available in milliseconds with no extra fees or delay to read it.
Cricket analogy: The scoreboard operator's live ball-by-ball feed during an IPL final must update in milliseconds with zero lag, just as hot storage serves a live website's images instantly at the highest readiness but greatest ongoing cost.
Cool (infrequent-access) storage is designed for data accessed occasionally, perhaps monthly, such as older backups or logs kept for troubleshooting. Storage cost per gigabyte is lower than hot tiers, but retrieval typically incurs a per-gigabyte fee, and there may be a minimum storage duration before you can delete or transition the data without a penalty.
Cricket analogy: A cricket board keeps last season's match highlight reels available for monthly review by analysts, paying a small fee each time they're pulled up, cheaper to store than live footage but not instant or free to retrieve.
Cold or archive storage is built for data that is rarely, if ever, accessed but must be retained for compliance or long-term backup, such as regulatory records kept for seven years. It has the lowest storage cost by far, but retrieval is slow — it can take minutes to many hours to restore the data — and retrieval fees are higher than the other tiers.
Cricket analogy: The scorecards and match footage from a 1983 World Cup final must be preserved for historical record but are almost never watched, so they sit in a cheap vault that could take hours to retrieve if a documentary team ever requests it.
Example
Tier Storage cost Retrieval latency Typical use
Hot Highest Milliseconds Active website assets
Cool Medium Milliseconds-hours Monthly backups
Archive Lowest Minutes-hours 7-year compliance records# Move an S3 object to a cold/archive storage class from the CLI
aws s3 cp s3://my-bucket/old-report.pdf s3://my-bucket/old-report.pdf \
--storage-class GLACIER --metadata-directive REPLACEAnalysis
The tradeoff is always cost versus retrieval speed: cheaper storage per gigabyte means slower and more expensive retrieval when you actually need the data back. Many teams automate this decision with lifecycle policies — for example, moving log files to cool storage after 30 days and to archive storage after 180 days — so data 'ages' into cheaper tiers automatically without manual intervention. Choosing archive storage for data you access weekly would actually cost more overall once retrieval fees are included, so tiering decisions must be based on real access patterns, not just raw storage price.
Cricket analogy: A franchise doesn't keep every retired player's full training footage on fast storage forever; after a season it moves to a cheaper archive, and pulling out last week's warm-up drills from deep archive would cost more than just keeping them handy.
Key Takeaways
- Hot storage: highest storage cost, fastest and cheapest retrieval — for frequently accessed data.
- Cool storage: lower storage cost, retrieval fees apply — for occasionally accessed data.
- Archive/cold storage: lowest storage cost, slow retrieval (minutes to hours) — for rarely accessed, long-retention data.
- Lifecycle policies can automatically transition data between tiers based on age or access pattern.
Practice what you learned
1. Which storage tier has the highest per-gigabyte storage cost?
2. What is the main tradeoff when moving data to an archive/cold storage tier?
3. A company keeps compliance records it must retain for 7 years but almost never reads. Which tier fits best?
4. What tool helps automatically move data between storage tiers as it ages?
Was this page helpful?
You May Also Like
Object, Block, and File Storage
Compare object, block, and file storage models and learn which one fits databases, boot disks, and shared file access.
Cost Optimization Basics
Learn concrete cloud cost-optimization levers such as right-sizing, reserved and spot instances, storage tiering, and auto-scaling.
Data Backup and Disaster Recovery
Understand RPO and RTO and compare disaster recovery strategy tiers from backup-and-restore to multi-site active-active.