🚀 LEVEL UP TO SENIOR:Unlock 500+ Advanced Practical Challenges & Exercises.
🎓 COURSERA PARTNER:Earn professional Google, Meta, and IBM certificates to supercharge your resume.
HTML MASTER CLASS /// LEARN TAGS /// BUILD STRUCTURE /// SEMANTIC WEB /// HTML MASTER CLASS /// LEARN TAGS ///
Total XP: 0|💻 cloud XP: 0

The Persistent Drive in Cloud Computing

Learn about The Persistent Drive in this comprehensive Cloud Computing tutorial. Why we use block storage and how it differs from object storage.

LOADING ENGINE...

Skill Matrix

UNLOCK NODES BY LEARNING NEW TAGS.

Select an unlocked node to view details root

1Block vs Object

EBS is Block Storage. It behaves like a raw, unformatted hard drive. You install file systems on it (like ext4 or NTFS) and it can boot operating systems. S3, on the other hand, is Object Storage, accessed via APIs, and cannot run an OS.

2The Magic of Snapshots

Snapshots are incremental. If you have a 100GB volume and take a snapshot, it backs up 100GB. If you change 2GB of data and take another snapshot, the second snapshot only stores the 2GB difference, saving you massive amounts of money on backup storage.

Pascual Vila

Pascual Vila

Frontend Instructor // Code Syllabus

Lesson Glossary

[01]EBS

Elastic Block Store; provides block level storage volumes for use with EC2 instances.

Code Preview
// EBS context

[02]Snapshot

A point-in-time backup of an EBS volume stored in Amazon S3.

Code Preview
// Snapshot context

[03]IOPS

Input/Output Operations Per Second; a measure of how fast a drive can read/write data.

Code Preview
// IOPS context

[04]Block Storage

A type of data storage used in SANs where data is stored in volumes (blocks) rather than files or objects.

Code Preview
// Block Storage context

Continue Learning