You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/virtual-machines/disks-enable-performance.md
+13-12Lines changed: 13 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: Increase performance of Premium SSDs and Standard SSD/HDDs
2
+
title: Preview - Increase performance of Premium SSDs and Standard SSD/HDDs
3
3
description: Increase the performance of Azure Premium SSDs and Standard SSD/HDDs using performance plus.
4
4
author: roygara
5
5
ms.service: storage
@@ -9,15 +9,15 @@ ms.author: rogarana
9
9
ms.subservice: disks
10
10
---
11
11
12
-
# Increase IOPS and throughput limits for Azure Premium SSDs and Standard SSD/HDDs
12
+
# Preview - Increase IOPS and throughput limits for Azure Premium SSDs and Standard SSD/HDDs
13
13
14
-
The Input/Output Operations Per Second (IOPS) and throughput limits for Azure Premium solid-state drives (SSD), Standard SSDs, and Standard hard disk drives (HDD) that are 1024 GB and larger can be increased by enabling performance plus. Enabling performance plus improves the experience for workloads that require high IOPS and throughput, such as database and transactional workloads. There's no extra charge for enabling performance plus on a disk.
14
+
The Input/Output Operations Per Second (IOPS) and throughput limits for Azure Premium solid-state drives (SSD), Standard SSDs, and Standard hard disk drives (HDD) that are 513 GiB and larger can be increased by enabling performance plus. Enabling performance plus (preview) improves the experience for workloads that require high IOPS and throughput, such as database and transactional workloads. There's no extra charge for enabling performance plus on a disk.
15
15
16
16
Once enabled, the IOPS and throughput limits for an eligible disk increase to the higher maximum limits. To see the new IOPS and throughput limits for eligible disks, consult the columns that begin with "*Expanded" in the [Scalability and performance targets for VM disks](disks-scalability-targets.md) article.
17
17
18
18
## Limitations
19
19
20
-
- Can only be enabled on Standard HDD, Standard SSD, and Premium SSD managed disks that are 1024 GiB or larger.
20
+
- Can only be enabled on Standard HDD, Standard SSD, and Premium SSD managed disks that are 513 GiB or larger.
21
21
- Can only be enabled on new disks.
22
22
- To work around this, create a snapshot of your disk, then create a new disk from the snapshot.
23
23
- Not supported for disks recovered with Azure Site Recovery or Azure Backup.
@@ -41,8 +41,9 @@ myVM=yourVMName
41
41
region=desiredRegion
42
42
# Valid values are Premium_LRS, Premium_ZRS, StandardSSD_LRS, StandardSSD_ZRS, or Standard_LRS
43
43
sku=desiredSKU
44
-
45
-
az disk create -g $myRG -n $myDisk --size-gb 1024 --sku $sku -l $region –performance-plus true
44
+
#Size must be 513 or larger
45
+
size=513
46
+
az disk create -g $myRG -n $myDisk --size-gb $size --sku $sku -l $region –performance-plus true
46
47
47
48
az vm disk attach --vm-name $myVM --name $myDisk --resource-group $myRG
48
49
```
@@ -56,8 +57,8 @@ myVM=yourVMName
56
57
region=desiredRegion
57
58
# Valid values are Premium_LRS, Premium_ZRS, StandardSSD_LRS, StandardSSD_ZRS, or Standard_LRS
58
59
sku=desiredSKU
59
-
#Size must be 1024 or larger
60
-
size=1024
60
+
#Size must be 513 or larger
61
+
size=513
61
62
sourceURI=yourDiskOrSnapshotURI
62
63
63
64
az disk create --name $myDisk --resource-group $myRG --size-gb $size -- --performance-plus true --sku $sku --source $sourceURI --location $region
@@ -74,8 +75,8 @@ $myVM=yourVMName
74
75
$region=desiredRegion
75
76
# Valid values are Premium_LRS, Premium_ZRS, StandardSSD_LRS, StandardSSD_ZRS, or Standard_LRS
Copy file name to clipboardExpand all lines: includes/disk-storage-standard-hdd-sizes.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
author: roygara
6
6
ms.service: virtual-machines
7
7
ms.topic: include
8
-
ms.date: 02/22/2023
8
+
ms.date: 03/16/2023
9
9
ms.author: rogarana
10
10
ms.custom: include file
11
11
---
@@ -18,4 +18,4 @@
18
18
| Base throughput per disk | Up to 60 MB/s | Up to 60 MB/s | Up to 60 MB/s | Up to 60 MB/s | Up to 60 MB/s | Up to 60 MB/s | Up to 60 MB/s | Up to 60 MB/s| Up to 300 MB/s | Up to 500 MB/s | Up to 500 MB/s |
19
19
|*Expanded throughput per disk | N/A | N/A | N/A | N/A | N/A | Up to 150 MB/s | Up to 300 MB/s | Up to 500 MB/s| Up to 500 MB/s | Up to 500 MB/s | Up to 500 MB/s |
20
20
21
-
\* Only applies to disks with performance plus enabled.
21
+
\* Only applies to disks with performance plus (preview) enabled.
0 commit comments