🔒 Guided

Pre-launch preview. Authorised access only.

Incorrect code

Guided by A Guide to Cloud
Explore AB-900 AI-901
Guided AZ-900 Domain 2
Domain 2 — Module 7 of 11 64%
14 of 26 overall

AZ-900 Study Guide

Domain 1: Describe Cloud Concepts

  • What is Cloud Computing? Free
  • Cloud Models: Public, Private, and Hybrid Free
  • Cloud Pricing: Consumption, Serverless, and Pay-as-You-Go Free
  • High Availability and Scalability Free
  • Reliability, Security, and Manageability Free
  • IaaS, PaaS, and SaaS Explained Free
  • Choosing the Right Cloud Service Free

Domain 2: Describe Azure Architecture and Services

  • Azure Regions, Zones, and Datacenters
  • Resources, Resource Groups, and Subscriptions
  • Azure Virtual Machines
  • Azure Compute: Containers, Functions, and App Service
  • Azure Networking: VNets, Subnets, and Peering
  • Connecting to Azure: VPNs, ExpressRoute, and DNS
  • Azure Storage Services
  • Data Migration: Moving to Azure
  • Microsoft Entra ID: Your Identity Hub
  • Authentication and External Identities
  • Azure Security: RBAC, Zero Trust, and Defender

Domain 3: Describe Azure Management and Governance

  • What Affects Your Azure Bill
  • Pricing Calculators: TCO and Azure Pricing
  • Cost Management and Tags
  • Azure Governance: Purview, Policy, and Locks
  • The Azure Portal and Cloud Shell
  • Infrastructure as Code: ARM, Bicep, and Arc
  • Azure Advisor and Service Health
  • Azure Monitor: Logs, Alerts, and Insights

AZ-900 Study Guide

Domain 1: Describe Cloud Concepts

  • What is Cloud Computing? Free
  • Cloud Models: Public, Private, and Hybrid Free
  • Cloud Pricing: Consumption, Serverless, and Pay-as-You-Go Free
  • High Availability and Scalability Free
  • Reliability, Security, and Manageability Free
  • IaaS, PaaS, and SaaS Explained Free
  • Choosing the Right Cloud Service Free

Domain 2: Describe Azure Architecture and Services

  • Azure Regions, Zones, and Datacenters
  • Resources, Resource Groups, and Subscriptions
  • Azure Virtual Machines
  • Azure Compute: Containers, Functions, and App Service
  • Azure Networking: VNets, Subnets, and Peering
  • Connecting to Azure: VPNs, ExpressRoute, and DNS
  • Azure Storage Services
  • Data Migration: Moving to Azure
  • Microsoft Entra ID: Your Identity Hub
  • Authentication and External Identities
  • Azure Security: RBAC, Zero Trust, and Defender

Domain 3: Describe Azure Management and Governance

  • What Affects Your Azure Bill
  • Pricing Calculators: TCO and Azure Pricing
  • Cost Management and Tags
  • Azure Governance: Purview, Policy, and Locks
  • The Azure Portal and Cloud Shell
  • Infrastructure as Code: ARM, Bicep, and Arc
  • Azure Advisor and Service Health
  • Azure Monitor: Logs, Alerts, and Insights
Domain 2: Describe Azure Architecture and Services Premium ⏱ ~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.

Azure Storage provides massively scalable, durable, and highly available cloud storage. A storage account is the container that groups your storage services and provides a unique namespace (e.g., peakroasters.blob.core.windows.net).

Azure Storage includes four data services: Blob Storage (unstructured objects), Azure Files (SMB/NFS file shares), Table Storage (NoSQL key-value), and Queue Storage (messaging). Each serves different access patterns and use cases.

Data is automatically replicated for durability. Redundancy options range from 3 copies in one datacenter (LRS) to 6 copies across two regions (GRS/GZRS) with optional read access to the secondary region.

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

🎬 Video coming soon

Azure Storage Services — AZ-900

Azure Storage Services — AZ-900

~11 min

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.

← Previous

Connecting to Azure: VPNs, ExpressRoute, and DNS

Next →

Data Migration: Moving to Azure

Guided

I learn, I simplify, I share.

A Guide to Cloud YouTube Feedback

© 2026 Sutheesh. All rights reserved.

Guided is an independent study resource and is not affiliated with, endorsed by, or officially connected to Microsoft. Microsoft, Azure, and related trademarks are property of Microsoft Corporation. Always verify information against Microsoft Learn.