Azure Storage Explained: Blobs, Files, and the "Digital Garage"

So far, we have rented computers in the cloud (Compute) and built a secure neighborhood for them to talk to each other (Networking). But what happens when you need to save a file?

In the on-premise world, you would buy a hard drive. In Azure, you use a Storage Account.

Azure offers several different ways to store data, and the AZ-900 exam will test if you know which one to pick. Let's break it down using the Digital Garage analogy. 📦

1. The 3 Main Storage Types

Blob Storage (The Massive Warehouse)

Blob stands for "Binary Large Object." This is for storing massive amounts of unstructured data—meaning it doesn't fit neatly into a database. Think images, video files, audio, and backups.

  • The Analogy: A giant, open warehouse where you can just throw millions of random boxes. It is incredibly cheap and highly scalable.

Azure Files (The Office Filing Cabinet)

Azure Files provides fully managed file shares in the cloud that can be accessed using standard protocols (like SMB).

  • The Analogy: A shared filing cabinet in an office. Multiple employees (or servers) can open the cabinet, read the same document, and edit it at the same time. If you have ever "mapped a network drive" (like your Z: drive at work), that is Azure Files.

Disk Storage (The Internal Hard Drive)

  • The Analogy: The hard drive physically screwed into your laptop. Disk storage is specifically meant to be attached to an Azure Virtual Machine so the VM has an operating system and a place to install applications.

2. Access Tiers: How to Save Money

When you store data in Azure Blobs, you pay for two things: Storing the data, and Accessing (reading/writing) the data. Azure gives you three "Tiers" to optimize your costs based on how often you actually look at your files.

  • 🔥 Hot Tier (The Kitchen Counter): For data you use every single day.
    Cost: Highest storage cost, but lowest access cost.
  • 🧊 Cool Tier (The Garage): For data you need to keep for at least 30 days, but don't look at often (like monthly reports).
    Cost: Cheaper to store, but it costs a little more every time you open a file.
  • 📦 Archive Tier (The Rented Storage Unit): For long-term backups you hope you never have to look at (kept for at least 180 days).
    Cost: The absolute cheapest storage cost, but it is expensive to access, and it can take up to 15 hours to retrieve your data!

🚨 AZ-900 Exam Trap

The exam loves to ask you which tier is best for "legal compliance backups that must be kept for 5 years but rarely accessed." The answer is always the Archive Tier to save on storage costs!

Cheat Sheet: Storage Types

Storage Type Analogy Best For
Blobs Massive Warehouse Images, videos, unstructured data.
Files Shared Office Cabinet Shared network drives (SMB/NFS).
Disks Internal Laptop Hard Drive Attaching to a Virtual Machine (OS/Apps).

Next Up: We have our compute, our network, and our storage. But who is allowed to use them? In our final core services post, we tackle the VIP club of Azure: Identity & Microsoft Entra ID.