You have an application that writes heavily to Azure-managed disks and requires the highest consistent IOPS and lowest latency. Which disk type should you choose?
Trap 1: Standard HDD
Standard HDD is a magnetic spindle-based disk that offers the lowest storage cost but suffers from high rotational latency (often tens of milliseconds) and limited IOPS, typically capped at a few hundred per disk. For an application that writes heavily, this will produce severe write bottlenecks and poor response times, so it is unsuitable. While it can handle infrequent reads or writes in dev/test scenarios, it completely fails the 'heavy write' and low-latency requirement of this scenario.
Trap 2: Standard SSD
Standard SSD uses flash-based media and provides a moderate balance of price and performance, but its per-disk IOPS and throughput are noticeably lower than Premium SSD v2, and it often relies on burst behavior for short periods of elevated activity. Under a sustained heavy write load, once the burst budget is exhausted, performance degrades substantially, leading to inconsistent latency and throughput. This makes it incorrect for an application that continuously writes large volumes of data and requires stable, high-performance storage.
Trap 3: Premium SSD v2
Premium SSD v2 is the correct choice for a write-heavy application because it delivers sub-millisecond latency and consistent, highly scalable IOPS that are critical for sustained write-intensive workloads. Unlike lower tiers, it allows you to provision IOPS and throughput independently, so you can size performance to match your write volume without over-provisioning storage. Azure documents that Premium SSD v2 is optimized specifically for production workloads that demand both high IOPS and low jitter, making it the only option here that meets the stated performance requirement.
- A
Standard HDD
Why wrong: Standard HDD is a magnetic spindle-based disk that offers the lowest storage cost but suffers from high rotational latency (often tens of milliseconds) and limited IOPS, typically capped at a few hundred per disk. For an application that writes heavily, this will produce severe write bottlenecks and poor response times, so it is unsuitable. While it can handle infrequent reads or writes in dev/test scenarios, it completely fails the 'heavy write' and low-latency requirement of this scenario.
- B
Standard SSD
Why wrong: Standard SSD uses flash-based media and provides a moderate balance of price and performance, but its per-disk IOPS and throughput are noticeably lower than Premium SSD v2, and it often relies on burst behavior for short periods of elevated activity. Under a sustained heavy write load, once the burst budget is exhausted, performance degrades substantially, leading to inconsistent latency and throughput. This makes it incorrect for an application that continuously writes large volumes of data and requires stable, high-performance storage.
- C
Premium SSD v2
Why wrong: Premium SSD v2 is the correct choice for a write-heavy application because it delivers sub-millisecond latency and consistent, highly scalable IOPS that are critical for sustained write-intensive workloads. Unlike lower tiers, it allows you to provision IOPS and throughput independently, so you can size performance to match your write volume without over-provisioning storage. Azure documents that Premium SSD v2 is optimized specifically for production workloads that demand both high IOPS and low jitter, making it the only option here that meets the stated performance requirement.
- D
Ultra Disk
Archive storage is not a managed disk type at all; it is a blob access tier meant for storing rarely accessed data in Azure Blob Storage with the cheapest storage cost and extremely high retrieval latency. Managed disks appear as page blobs in Azure and are the only directly attachable disk storage for VMs, and archive tier is not supported for page blobs or VHD-based VM disks. Even if it could be attached, write-heavy access is antithetical to the archive tier, which prioritizes read access to long-term data over write performance.