Difference between P30 & P40 Azure Disks

Geeaz 121 Reputation points
2021-02-03T12:29:00.257+00:00

Hi Team,

I am new to Azure :(

I dont see much of a difference between P30 & P40 Premium disks. Can you please elaborate as to where and how does it differ.

Azure Disk Storage
Azure Disk Storage
A high-performance, durable block storage designed to be used with Azure Virtual Machines and Azure VMware Solution.
590 questions
0 comments No comments
{count} votes

Accepted answer
  1. Sumarigo-MSFT 44,996 Reputation points Microsoft Employee
    2021-02-15T06:46:29.417+00:00

    @Geeaz Firstly, apologies for the delay in responding here and any inconvenience this issue may have caused.

    There is difference between IOPS, please refer to the below image:68063-capture.png

    When you provision a premium storage disk, unlike standard storage, you are guaranteed the capacity, IOPS, and throughput of that disk. For example, if you create a P50 disk, Azure provisions 4,095-GB storage capacity, 7,500 IOPS, and 250-MB/s throughput for that disk. Your application can use all or part of the capacity and performance. Premium SSD disks are designed to provide low single-digit millisecond latencies and target IOPS and throughput described in the preceding table 99.9% of the time.

    For more information, please refer to this article: https://video2.skills-academy.com/en-us/azure/virtual-machines/disks-types

    Hope this helps!

    Kindly let us know if the above helps or you need further assistance on this issue.

    --------------------------------------------------------------------------------------------------------------------------------

    Please don’t forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.

    1 person found this answer helpful.
    0 comments No comments

3 additional answers

Sort by: Most helpful
  1. Andriy Bilous 11,176 Reputation points MVP
    2021-02-03T12:36:55.72+00:00

    Hello @Geeaz
    Both P30 and P40 are Premium Disks
    https://video2.skills-academy.com/en-us/azure/virtual-machines/disks-types#premium-ssd

    Here is the comparison table for Azure Premium Disks
    https://video2.skills-academy.com/en-us/azure/virtual-machines/disks-types#disk-size-1

    Briefly - P40 has more space (2TB), IOPS (7,500), Throughput (250 MB/sec)

    0 comments No comments

  2. Sumarigo-MSFT 44,996 Reputation points Microsoft Employee
    2021-02-04T03:16:28.503+00:00

    @Geeaz Welcome to Microsoft Q&A, Thank you for posting your question!

    - P30 Disk : You can achieve ,5000 IOPS with a P30 you need to use a VM capable of achieving that number of IOPS and use small operations since 5,000 * 40KB = 200MB/s. You will also need to do many parallel operations since Azure Storage is optimized for that. In general, small operations maximize IOPS while large operations maximize throughput. Cached operations maximize IOPS at the cost of lowered throughput. see https://video2.skills-academy.com/en-us/azure/virtual-machines/premium-storage-performance#nature-of-io-requests.

    63742-capture.png

    ****- P40 Disk**-** To provide flexibility for customers to provision an appropriate disk size which matches their workloads, we introduce two disk sizes in P40 (2TB) and P50 (4TB) for both Managed and unmanaged Premium Disks; S40 (2TB) and S50 (4TB) for Standard Managed Disks. Customers can also provision the maximum disk size of 4,095 GB for Standard unmanaged disks.

    54386-capture.png

    Larger Premium Disks P40 and P50 will support your IO intensive workload, consequently, offers higher provisioned disk performance. The maximum Premium Disk IOPS and bandwidth is increased to 7,500 IOPS and 250 MBps respectively. Standard Disks, of all sizes, will offer up to 500 IOPS and 60 MBps.

    54405-capture.png

    The maximum IOPS limits per VM and per disk are different and independent of each other. Make sure that the application is driving IOPS within the limits of the VM as well as the premium disks attached to it. In other words, VM throughput limit supersedes the aggregated Disks throughput limit. Otherwise, the application performance will experience throttling. For example, a P50 disk provisions 250 MB per second disk throughput. Each high scale VM size also has a specific throughput limit that it can sustain. For example, Standard GS5 VM has a maximum throughput of 2,000 MB per second. If you attach 10 x P50 disk to GS5 VM, you will get throttled at 2,000 MB sec.

    “When you attach a premium storage disk to your high scale VM, Azure provisions for you a guaranteed number of IOPS as per the disk specification. For example, a P50 disk provisions 7500 IOPS. Each high scale VM size also has a specific IOPS limit that it can sustain. For example, a Standard GS5 VM has 80,000 IOPS limit.”

    Metrics that help diagnose disk IO capping:

    • Data Disk IOPS Consumed Percentage - the percentage calculated by the data disk IOPS completed over the provisioned data disk IOPS. If this amount is at 100%, your application running will be IO capped from your data disk's IOPS limit.
    • Data Disk Bandwidth Consumed Percentage - the percentage calculated by the data disk throughput completed over the provisioned data disk throughput. If this amount is at 100%, your application running will be IO capped from your data disk's bandwidth limit.
    • OS Disk IOPS Consumed Percentage - the percentage calculated by the OS disk IOPS completed over the provisioned OS disk IOPS. If this amount is at 100%, you'll your application running will be IO capped from your OS disk's IOPS limit.
    • OS Disk Bandwidth Consumed Percentage - the percentage calculated by the OS disk throughput completed over the provisioned OS disk throughput. If this amount is at 100%, your application running will be IO capped from your OS disk's bandwidth limit.

    Metrics that help diagnose VM IO capping:

    • VM Cached IOPS Consumed Percentage - the percentage calculated by the total IOPS completed over the max cached virtual machine IOPS limit. If this amount is at 100%, your application running will be IO capped from your VM's cached IOPS limit.
    • VM Cached Bandwidth Consumed Percentage - the percentage calculated by the total disk throughput completed over the max cached virtual machine throughput. If this amount is at 100%, your application running will be IO capped from your VM's cached bandwidth limit.
    • VM uncached IOPS Consumed Percentage - the percentage calculated by the total IOPS on a virtual machine completed over the max uncached virtual machine IOPS limit. If this amount is at 100%, your application running will be IO capped from your VM's uncached IOPS limit.
    • VM Uncached Bandwidth Consumed Percentage - the percentage calculated by the total disk throughput on a virtual machine completed over the max provisioned virtual machine throughput. If this amount is at 100%, your application running will be IO capped from your VM's uncached bandwidth limit. You can also find new documentation explaining how VM + Disk +Caching can affect applications performance:

    https://video2.skills-academy.com/en-us/azure/virtual-machines/linux/disk-performance-linux

    Hope this helps!

    Kindly let us know if the above helps or you need further assistance on this issue.


    Please don’t forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.

    0 comments No comments

  3. Geeaz 121 Reputation points
    2021-02-10T12:05:18.407+00:00

    @Sumarigo-MSFT,
    While checking the above answer, I noticed that both P30 and P40 have the same IOPS and Bandwidth except the size.

    How does that help us in going for the premium disk selection?

    0 comments No comments