Domain 2 β€” Module 7 of 11 64%
14 of 26 overall
Domain 2: Describe Azure Architecture and Services Free ⏱ ~13 min read

Azure Storage Services

Azure offers multiple storage types β€” blobs for unstructured data, files for shared drives, tables for NoSQL, and queues for messaging. Plus redundancy options that keep your data safe across datacenters and regions.

Azure Storage β€” where your data lives

Simple explanation

Think of Azure Storage as a self-storage facility with different locker types.

Blob storage = a giant warehouse for anything β€” photos, videos, backups, documents. Just throw it in. It’s like a massive box room with no structure.

File storage = a shared filing cabinet. Multiple people can open the same drawer and access the same files, just like a network drive at work.

Table storage = a simple spreadsheet. Rows and columns for basic data that doesn’t need a full database.

Queue storage = a post office. Messages wait in a queue until someone picks them up and processes them.

And the best part? Azure makes copies of your data automatically so it’s never lost.

Storage services compared

Azure Storage services compared
FeatureBlob StorageAzure FilesTable StorageQueue Storage
What it storesUnstructured data (any binary or text)Files accessible via SMB/NFSNoSQL key-value pairsMessages (up to 64 KB each)
Access methodREST API, SDKs, Azure CLISMB (like a Windows file share)REST API, ODataREST API
Use caseImages, videos, backups, logsShared drives, config files, lift-and-shiftSimple data, IoT telemetryDecoupling app components
AnalogyWarehouse box roomShared filing cabinetSimple spreadsheetPost office queue

Blob Storage β€” the most common

Blob stands for Binary Large Object. It stores any type of unstructured data.

Three types of blobs:

TypeBest For
Block blobsFiles up to ~190 TB (images, videos, documents)
Append blobsData that’s always added to (log files, audit trails)
Page blobsRandom read/write operations (VM disks)

Peak Roasters uses Blob Storage for product images, menu PDFs, and nightly database backups.

Storage tiers β€” pay less for data you access rarely

Not all data is accessed equally. Azure offers access tiers to optimise cost:

TierAccess FrequencyStorage CostAccess CostUse Case
HotFrequently accessedHighestLowestActive app data, images
CoolInfrequently accessed (30+ days)LowerHigherShort-term backups, reports
ColdRarely accessed (90+ days)Even lowerEven higherCompliance data, old logs
ArchiveAlmost never accessed (180+ days)LowestHighest + rehydration delayLong-term legal records

Key exam concept: Hot tier = expensive to store, cheap to access. Archive tier = cheap to store, expensive and slow to access. Choose based on access patterns.

Archive tier rehydration

Data in the Archive tier is offline. You can’t read it directly. To access it, you must β€œrehydrate” β€” move it to Hot or Cool tier first. This takes hours (up to 15 hours for standard, or you can pay for priority at ~1 hour).

Exam tip: If a question mentions β€œimmediate access required,” Archive is the wrong tier. Even Cold tier is better for data that might be needed occasionally.

Redundancy options β€” protecting your data

Azure automatically replicates your data. You choose HOW MANY copies and WHERE they’re stored:

Azure Storage redundancy options
FeatureLRSZRSGRSGZRS
Full nameLocally RedundantZone-RedundantGeo-RedundantGeo-Zone-Redundant
Copies3 in one datacenter3 across 3 zones6 (3 local + 3 in paired region)6 (3 across zones + 3 in paired region)
Protects againstServer/drive failureDatacenter failureRegional disasterZone AND regional failure
Durability11 nines12 nines16 nines16 nines
CostLowestHigherHigherHighest

Read-access variants: GRS and GZRS also have RA-GRS and RA-GZRS β€” these add read access to the secondary region copy. Without the RA prefix, the secondary copy is only for failover.

How to choose redundancy

ScenarioRecommended Redundancy
Peak Roasters β€” small budget, basic protectionLRS (cheapest, protects against drive/server failure)
Summit Construction β€” needs zone protectionZRS (protects against datacenter failure)
Harbour Health β€” regulatory requirement for data in two regionsGRS or GZRS (copies in paired region)
Exam tip: Redundancy question patterns

Common exam patterns:

  • β€œProtect against datacenter failure within a region” β†’ ZRS
  • β€œProtect against a regional disaster” β†’ GRS or GZRS
  • β€œNeed read access to data in the secondary region” β†’ RA-GRS or RA-GZRS
  • β€œLowest cost, basic protection” β†’ LRS

Storage account types

Account TypeSupported ServicesPerformanceUse Case
Standard general-purpose v2Blob, File, Queue, TableStandard (HDD)Most workloads
Premium block blobsBlob onlyPremium (SSD)Low-latency apps
Premium file sharesFile onlyPremium (SSD)Enterprise file shares
Premium page blobsPage blob onlyPremium (SSD)VM disks

Exam tip: Standard general-purpose v2 is the default recommendation for most scenarios. It supports all storage services, all tiers, and all redundancy options.

🎬 Video walkthrough

Flashcards

Question

What are the four Azure Storage services?

Click or press Enter to reveal answer

Answer

Blob Storage (unstructured data), Azure Files (SMB file shares), Table Storage (NoSQL key-value), and Queue Storage (messaging between app components).

Click to flip back

Question

What are the four storage access tiers?

Click or press Enter to reveal answer

Answer

Hot (frequent access, expensive storage), Cool (30+ days, cheaper storage), Cold (90+ days, even cheaper), Archive (180+ days, cheapest storage but offline β€” needs rehydration to read).

Click to flip back

Question

What is the difference between LRS and GRS?

Click or press Enter to reveal answer

Answer

LRS stores 3 copies in one datacenter. GRS stores 6 copies β€” 3 in the primary datacenter and 3 in the paired region. GRS protects against regional disasters; LRS only protects against local hardware failures.

Click to flip back

Question

What does RA-GRS add over regular GRS?

Click or press Enter to reveal answer

Answer

Read Access. With regular GRS, the secondary region copy is only used during failover. RA-GRS lets you READ from the secondary copy at any time β€” useful for read-heavy apps that want lower latency in the secondary region.

Click to flip back

Knowledge Check

Knowledge Check

Peak Roasters stores product images that are accessed hundreds of times daily. Which storage tier is MOST cost-effective?

Knowledge Check

Harbour Health needs to ensure their patient data survives a complete regional outage. Which redundancy option should they choose?


Next up: Data migration tools β€” AzCopy, Storage Explorer, Azure File Sync, Azure Migrate, and Azure Data Box.