Skip to content
5 min read·Lesson 5 of 10

Azure Storage Services

Learn Azure storage options — Blob Storage, Azure Files, Disk Storage, and Queue/Table Storage — including access tiers and redundancy options.

Azure Storage is a massively scalable, durable cloud storage service. A single Storage Account provides access to several types of storage — blobs, files, queues, and tables — all within the same account.

Storage Account Types

  • Standard general-purpose v2 (GPv2): Supports Blob, File, Queue, Table. The recommended default for most scenarios.
  • Premium Block Blobs: SSD-backed, for high transaction rates and low-latency blob workloads.
  • Premium File Shares: SSD-backed Azure Files for latency-sensitive SMB/NFS workloads.
  • Premium Page Blobs: For VM OS disks (Azure Disk Storage).

Azure Blob Storage

Blob Storage is Azure's object storage service for unstructured data. Blobs are organised in containers (similar to GCP buckets or AWS S3 buckets). Use cases: images, videos, logs, backups, static websites.

Three blob types:

  • Block blobs: Optimised for uploading large objects. The standard choice for most data.
  • Append blobs: Optimised for append operations. Best for logging.
  • Page blobs: Optimised for random read/write. Used by Azure VM disks.

Blob Access Tiers

TierAccess FrequencyStorage CostRetrieval Cost
HotFrequently accessedHighestLowest
CoolInfrequently (once/month)LowerLow (30-day min)
ColdRarely (once/quarter)Lower stillMedium (90-day min)
ArchiveRarely (once/year)LowestHighest (180-day min, hours to rehydrate)

Lifecycle Management Policies automatically transition blobs between tiers or delete them after a specified number of days — reducing manual cost management.

Azure Files

Azure Files provides fully managed cloud file shares accessible over the SMB (Windows) and NFS (Linux) protocols. Files can be mounted simultaneously on Windows, Linux, and macOS — both on-premises and in Azure.

Use cases:

  • Replace on-premises NAS/file servers
  • Shared configuration files for multiple VMs
  • Lift-and-shift applications that expect a file system interface

Azure Disk Storage

Azure Disk Storage provides block-level storage volumes (similar to Persistent Disk in GCP). Types:

TypeMax IOPSBest For
Ultra Disk160,000Most demanding databases, SAP HANA
Premium SSD v280,000Latency-sensitive databases
Premium SSD20,000Production VMs and databases
Standard SSD6,000Web servers, dev/test
Standard HDD2,000Backups, archival

Redundancy Options

OptionCopiesLocations
LRS (Locally Redundant Storage)3Single data centre
ZRS (Zone-Redundant Storage)33 AZs in one region
GRS (Geo-Redundant Storage)6Primary + paired region (LRS each)
GZRS (Geo-Zone-Redundant Storage)63 AZs in primary + LRS in paired region

For critical data, use GRS or GZRS and enable Read-access GRS (RA-GRS) to allow reading from the secondary region even during primary outages.

Key Takeaways

  • Azure Storage accounts are the container for all Azure Storage services.
  • Blob Storage is Azure's object storage for unstructured data — images, videos, backups.
  • Access tiers (Hot, Cool, Cold, Archive) balance storage cost vs retrieval cost.
  • Azure Files provides fully managed SMB/NFS file shares, mountable on Windows, Linux, and macOS.
  • Redundancy options (LRS, ZRS, GRS, GZRS) determine how many copies Azure keeps and where.

Test your knowledge

Try exam-style practice questions to reinforce what you've learned.

Practice Questions →