Microsoft Azure has put instant access snapshots for Premium SSD v2 (Pv2) and Ultra Disks into public preview — a change that reduces snapshot restore time from hours to minutes or seconds by allowing newly-created snapshots of Azure’s highest-performance disks to be used immediately to create disks while background data copy (hydration) continues.
Azure has long supported incremental snapshots for managed disks as a way to capture point-in-time state for backups, testing, and disaster-recovery workflows. Traditionally, snapshots created from high-performance disk types such as Ultra Disk and Premium SSD v2 required a background copy (hydration) to finish before they could be used to create new disks or be copied across regions — a process that could take a long time for large, busy disks. With the new instant access snapshot capability, you can explicitly mark a snapshot as instant access for a limited window, allowing rapid disk creation and dramatically faster hydration for the newly-created disk. Microsoft documents the feature and related caveats in its Azure Managed Disks snapshot guidance.
Azure’s own blog frames this as part of a broader Ultra Disk refresh — performance tuning, cost and provisioning flexibility, and business-continuity features such as instant-access snapshots intended to close the recovery-time gap for mission-critical workloads. Independent industry coverage and cloud-focused podcasts quickly picked up the announcement and compared it to similar "fast restore" features offered by other hyperscalers.
After creation, check the snapshot access state and hydration progress:
Microsoft provides CLI, PowerShell, and template examples in the official documentation.
To summarize the practical billing points:
Inside community archives related to Azure infrastructure topics, engineers are tracking both the technical details and the real-world test results that will determine whether this becomes a standard tool in DR playbooks or a niche optimization used for fast clones and short-lived test restores.
Source: Neowin Microsoft Azure rolls out instant access snapshots for Pv2 and Ultra Disk
Background / Overview
Azure has long supported incremental snapshots for managed disks as a way to capture point-in-time state for backups, testing, and disaster-recovery workflows. Traditionally, snapshots created from high-performance disk types such as Ultra Disk and Premium SSD v2 required a background copy (hydration) to finish before they could be used to create new disks or be copied across regions — a process that could take a long time for large, busy disks. With the new instant access snapshot capability, you can explicitly mark a snapshot as instant access for a limited window, allowing rapid disk creation and dramatically faster hydration for the newly-created disk. Microsoft documents the feature and related caveats in its Azure Managed Disks snapshot guidance.Azure’s own blog frames this as part of a broader Ultra Disk refresh — performance tuning, cost and provisioning flexibility, and business-continuity features such as instant-access snapshots intended to close the recovery-time gap for mission-critical workloads. Independent industry coverage and cloud-focused podcasts quickly picked up the announcement and compared it to similar "fast restore" features offered by other hyperscalers.
What "instant access snapshot" actually means
The user-visible behavior
- When you create an instant access snapshot of an Ultra Disk or a Premium SSD v2 disk, the snapshot is placed into an InstantAccess state. In that state, the snapshot can immediately be used to create a new disk (of the same disk families where supported) and disks created from it will be rapidly hydrated with minimal first-read latency impact.
- Hydration continues in the background while the new disk is already usable, so recovery operations or test environment provisioning can begin without waiting for a full copy to finish. Microsoft claims disks created from instant access snapshots can hydrate up to 10x faster compared with the standard background copy path.
- Instant access snapshots are time-limited: you must specify an instant access duration when creating the snapshot (60–300 minutes via API/CLI; portal defaults to 300 minutes / 5 hours), and after that window the snapshot reverts to a standard snapshot and standard background copy semantics apply.
Key technical controls
- The InstantAccessDurationMins parameter controls how long the snapshot remains in the InstantAccess state (minimum 60, maximum 300 minutes). When the duration elapses (or after 5 hours from creation), the snapshot becomes a standard storage snapshot and continues with the remaining background copy as usual.
- You can monitor the snapshot access state through the snapshot resource property SnapshotAccessState and track hydration via CompletionPercent. These are exposed in the Azure CLI, PowerShell, and Resource Manager APIs.
Supported disk types, constraints and important limits
Instant access snapshots are not a universal snapshot mode — Microsoft currently limits it to the fastest disk types with additional restrictions that administrators must understand before relying on the capability for production recovery.- Supported disk families: Ultra Disk and Premium SSD v2. Snapshots of Premium SSD, Standard SSD, and Standard HDD have been instant access by default for some time; this preview extends the explicit instant-access option to the two highest-performance disk types.
- Disk creation constraints:
- Instant access snapshots of Ultra Disks and Premium SSD v2 can only be used to create disks of the same family (i.e., you cannot use an Ultra instant access snapshot to create a Standard SSD).
- During the InstantAccess state, underlying snapshot data is not yet fully copied into standard snapshot storage. Consequently, instant access snapshots depend on the source disk remaining available and do not provide protection against disk or zonal failures until the background copy completes. This has implications for disaster-recovery planning.
- Snapshot concurrency and quotas:
- Instant access snapshots count toward the disk’s limit of three in-progress snapshots.
- From one instant access snapshot you can create up to 15 disks concurrently.
- If a disk is currently being hydrated from a snapshot, you cannot create additional instant access snapshots of that disk.
- Sector size and format notes:
- Snapshots created with a 4096 logical sector size are stored as VHDX and can only be used to create Ultra Disks and Premium SSD v2 disks; those created with 512 logical sectors are stored as VHD and are usable to create any disk type. This matters for cross-family compatibility.
- Operational caveats:
- Instant access snapshots cannot be copied across regions or downloaded until the background copy completes (i.e., while in InstantAccess state you cannot migrate the snapshot off‑region).
How to create and monitor instant access snapshots
Azure supports the feature across the usual management surfaces: Azure CLI, Azure PowerShell, ARM templates, and the portal (portal defaults to 300 minutes). Here’s a concise CLI-style example (simplified) showing the pattern to create an instant access snapshot:
Code:
subscriptionId="yourSubscriptionId"
diskName="yourDiskName"
resourceGroupName="yourResourceGroupName"
snapshotName="instantAccessSnapshotName"
az account set --subscription $subscriptionId
diskId=$(az disk show -n $diskName -g $resourceGroupName --query "id" -o tsv)
az snapshot create -g $resourceGroupName -n $snapshotName --source $diskId --incremental true --sku Standard_ZRS --ia-duration 300
Code:
az resource show --ids $(az snapshot show --name $snapshotName --resource-group $resourceGroupName --query id -o tsv) --query "properties.snapshotAccessState"
az resource show --ids $(az snapshot show --name $snapshotName --resource-group $resourceGroupName --query id -o tsv) --query "properties.creationData.instantAccessDurationMinutes"
Billing, pricing model and preview status — what to expect
Microsoft’s official documentation states that during the preview there is no billing to use Instant Access snapshots for Ultra Disks and Premium SSD v2. At the same time, Microsoft documents a general usage-based billing model for instant access snapshots composed of (1) a storage charge for the incremental data the snapshot actually consumes over time, and (2) a one-time restore/operation fee when restoring from an instant access snapshot. The public pricing pages list these components but often show placeholder values during preview periods; Microsoft warns customers that pricing and billing may change when the feature becomes generally available. Administrators should treat the preview as cost-free for testing today but plan for a potential shift to a metered model on GA.To summarize the practical billing points:
- Preview: Microsoft currently states no charge for instant access snapshots of Ultra and Pv2 disks.
- Planned model (documented): storage charge (incremental storage consumed) + one-time restore operation fee per disk restore. Pricing pages exist but may show placeholders and are updated as GA approaches. Expect per-GB storage metering and per-restore fees once GA arrives.
Why this matters: practical use cases and operational impact
Instant access snapshots are designed to shrink recovery time objectives (RTOs) and accelerate workflows that previously required long waits:- Fast disaster recovery and failover testing: For high-performance databases (Oracle, SQL Server, SAP HANA) running on Ultra or Premium v2 disks, the ability to spin up recoveries in minutes rather than hours materially reduces business impact during outages.
- Rapid provisioning of ephemeral test or staging environments: Developers and QA can create environment clones from production snapshots for fast triage or upgrade testing without the long hydration window.
- Backup verification and database consistency checks: Create and mount a restored disk immediately to run consistency or verification tasks as part of backup validation pipelines.
- Cloud-native operational playbooks: Combined with automation and IaC, instant access snapshots can speed up runbooks for incident response and shorten maintenance windows.
Risks, caveats and failure modes (what can go wrong)
No disruptive feature is without trade-offs. Below are the principal operational and risk considerations to plan for.- Source-disk dependency while InstantAccess is active: an instant access snapshot does not fully protect you until the background copy completes. If the source disk or zone fails during the InstantAccess window, your snapshot may not be usable — it relies on the original disk for some data while hydration is still underway. This behavior reduces the snapshot’s reliability as a standalone backup during the InstantAccess window. Plan for cross-region or cross-zone copies if you require true independence.
- Not copyable or downloadable while InstantAccess is active: you cannot copy instant access snapshots across regions or download the underlying data until hydration completes. That affects DR drills that expect a snapshot to be available for cross-region replication immediately.
- Concurrency and quota friction: the instant access snapshot consumes existing quotas for in-progress snapshots and the number of disks that can be created concurrently. Large fleet operations may need quota increases or architectural changes.
- Encryption and configuration locks: encryption settings for disks created from instant access snapshots cannot be changed during disk hydration; you must plan encryption and key usage ahead of recovery operations.
- Billing surprises at GA: preview pricing is sometimes waived; when a feature hits GA a metered billing model can change the cost calculus. Budget teams must track announcements and test chargeback scenarios.
How this compares to similar features from other clouds
Hyperscalers have converged on the idea that snapshots should support fast restore modes — but implementation details and limits differ.- Amazon Web Services — EBS Fast Snapshot Restore (FSR): AWS supports a fast snapshot restore mode you explicitly enable per snapshot per AZ. When enabled, volumes created from the snapshot in that AZ are fully initialized (no lazy-loading penalties). FSR has its own limits (e.g., quotas per region, snapshot size limits) and a cost model for enabling FSR.
- Google Cloud — Compute Engine instant snapshots: Google’s instant snapshots are an in-place backup with low RTOs and similar retention caveats: instant snapshots are stored in the same zone and are deleted if the source disk is deleted — they are not intended as cross-region backups. Google documents that instant snapshots offer very fast restoration but emphasize zone-local retention.
Operational recommendations and checklist
If you plan to test or adopt instant access snapshots, use the following checklist to avoid common pitfalls.- Inventory risk-critical disks that would benefit from instant restore and confirm they are Ultra or Premium SSD v2.
- Add instant access snapshot creation into automated runbooks with explicit InstantAccessDurationMins and monitoring for SnapshotAccessState and CompletionPercent.
- Do not delete the source disk until the snapshot’s background copy has reached 100% unless you accept the risk of depending on the original disk.
- For geo-DR needs, create a standard snapshot after hydration completes, then copy that snapshot to a different region. Programmatically convert instant access -> standard snapshot if your playbook requires cross-region portability.
- Test the restore sequence in a non-production environment: create an instant access snapshot, create a disk from it, validate the workload, and measure hydration performance and any initial latency impact.
- Model costs with the assumption of GA pricing (storage + restore fees) rather than the current preview-free state. Update chargeback and cost-allocation models after GA pricing is published.
- Ask for quota increases if you anticipate creating many instant access snapshots or restoring many disks concurrently — the preview’s concurrent creation limits can be a bottleneck.
Security and compliance considerations
Snapshots contain full point-in-time data and thus inherit the same security and compliance obligations as disks. Keep these controls in mind:- IAM for snapshot operations: restrict snapshot creation and restore privileges to trusted principals. A compromised principal can restore snapshots in another project or tenant if permissions allow. This applies equally to instant snapshots.
- Key management: if you use customer-managed keys (CMK/CMEK), ensure the restore process has access to the appropriate keys. Azure documents encryption and notes that encryption properties cannot be updated mid-hydration for disks created from instant access snapshots.
- Retention and deletion semantics: understand that instant access snapshots in InstantAccess state depend on source disk availability; they may be deleted if the source disk is removed before hydration finishes. If you require retention for compliance, convert the instant snapshot to a standard snapshot stored in durable storage.
Community and expert reaction
Cloud engineering communities and storage practitioners welcomed the capability because it closes a longstanding operational gap for high-performance workloads. Podcast coverage and independent blog posts quickly contextualized the feature within the Ultra Disk refresh and compared it to similar fast-restore features offered by AWS and Google Cloud. Community discussion threads also raised the same operational caveats that Microsoft documents — chiefly the dependency on the source disk while InstantAccess is active and the need to validate backup and DR plans accordingly.Inside community archives related to Azure infrastructure topics, engineers are tracking both the technical details and the real-world test results that will determine whether this becomes a standard tool in DR playbooks or a niche optimization used for fast clones and short-lived test restores.
Final judgment: strengths, unanswered questions, and what to watch
Instant access snapshots for Ultra Disk and Premium SSD v2 are a meaningful, pragmatic improvement for organizations that run latency-sensitive, mission-critical workloads in Azure. The feature’s strengths are clear:- Dramatically reduced RTOs for large, high-I/O disks.
- Better developer and test productivity through immediate snapshot-based provisioning.
- Competitive parity with fast-restore offerings on other clouds, giving enterprises more choices.
- The snapshot’s dependence on the source disk during the InstantAccess window reduces its value as a standalone backup until hydration completes. For true resilience against disk or zone failure you still need cross-region copies or standard snapshots.
- The preview’s free billing model may change at GA — plan for per-GB storage and per-restore charges and test cost models before production adoption.
- Operational quotas (three in-progress snapshots per disk; up to 15 disks created concurrently) could be limiting for very large fleets unless you design around them.
- GA announcement and final pricing: once GA pricing appears, recompute cost vs. benefit for routine use.
- Any changes to cross-region portability or the mechanics of when an instant snapshot becomes fully independent from the source disk.
- Community reports on hydration performance in large, real-world production workloads — early preview tests will surface nuanced behaviors not seen in documentation.
Conclusion
Azure’s instant access snapshots for Ultra Disk and Premium SSD v2 close an important operational gap for high-performance, latency-sensitive workloads by enabling near-instant disk restores and rapid hydration. The feature is technically sound and aligns Azure with similar fast-restore capabilities offered by other hyperscalers, but it comes with important constraints: instant access snapshots are time-limited, depend on the source disk during the InstantAccess window, and are not immediately portable across regions. For SREs and cloud architects, instant access snapshots are best treated as a tool in the recovery toolbox — excellent for fast restores, testing, and ephemeral clones, but not a substitute for durable cross-region backups and well-tested DR plans. Review Microsoft’s snapshot documentation for the exact parameter list and limits before adoption, test the restore flow in your environment, and budget for potential GA pricing changes.Source: Neowin Microsoft Azure rolls out instant access snapshots for Pv2 and Ultra Disk

