Cloud Fundamentals
/Intermediate
Block Storage (EBS / Persistent Disk)
Definition
A storage architecture that splits data into evenly sized blocks and stores them independently. It acts exactly like a raw physical hard drive (SSD/HDD) attached directly to a specific virtual machine.
Explain Like I'm New
The C: Drive or D: Drive of your cloud server. It is incredibly fast, allows you to install operating systems, and acts exactly like a normal hard drive.
Real World Example
AWS EBS, Azure Managed Disks, GCP Persistent Disk. When you launch a new Virtual Machine, you attach a 50GB Block Storage volume to it so the VM has a place to install Linux and the database files.
Common Use Cases
- •Operating System boot drives
- •High-performance databases
Interview Questions
basic
- If you terminate/delete a Virtual Machine, what happens to its attached Block Storage drive?
intermediate
- Why would you choose Block Storage for a massive database instead of Object Storage (S3)?