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
To programmatically determine the regions and zones you can deploy to, use either the Azure CLI, Azure PowerShell Modul.
56
+
To programmatically determine the regions and zones you can deploy to, use either the Azure CLI, Azure PowerShell Module.
57
57
58
58
---
59
59
@@ -190,15 +190,15 @@ You've now deployed a VM with a premium SSD v2.
190
190
191
191
## Adjust disk performance
192
192
193
-
Unlike other managed disks, the performance of a Premium SSD v2 can be configured independently of its size by using the Azure CLI and PowerShell. Making adjustments to disk performance by using the Azure portal is not currently supported.
193
+
Unlike other managed disks, the performance of Premium SSD v2 disks can be configured independently of its size by using the Azure CLI and PowerShell. Making adjustments to disk performance by using the Azure portal is not currently supported.
194
194
195
195
For conceptual information on adjusting disk performance, see [Premium SSD v2 performance](disks-types.md#premium-ssd-v2-performance).
196
196
197
197
# [Azure CLI](#tab/azure-cli)
198
198
199
199
Use the [az disk update](/cli/azure/disk#az-disk-update) command to change the performance configuration of your Premium SSD v2 disk. For example, you can use the `disk-iops-read-write` parameter to adjust the max IOPS limit, and the `disk-mbps-read-write` parameter to adjust the max throughput limit of your Premium SSD v2 disk.
200
200
201
-
Update the values to suit your business need, and then run the following command to adjust the performance of your disk:
201
+
The following command adjusts the performance of your disk. Update the values in the command, and then run it:
202
202
203
203
```azurecli
204
204
az disk update --subscription $subscription --resource-group $rgname --name $diskName --disk-iops-read-write=5000 --disk-mbps-read-write=200
@@ -208,7 +208,7 @@ az disk update --subscription $subscription --resource-group $rgname --name $dis
208
208
209
209
Use the [New-AzDiskUpdateConfig](/powershell/module/az.compute/new-azdiskupdateconfig) command to define your new performance configuration values for your Premium SSD v2 disks, and then use the [Update-AzDisk](/powershell/module/az.compute/update-azdisk) command to apply your configuration changes to your disk. For example, you can use the `DiskIOPSReadWrite` parameter to adjust the max IOPS limit, and the `DiskMBpsReadWrite` parameter to adjust the max throughput limit of your Premium SSD v2 disk.
210
210
211
-
Update the values to suit your business need, and then run the following command to adjust the performance of your disk:
211
+
The following command adjusts the performance of your disk. Update the values in the command, and then run it:
Copy file name to clipboardExpand all lines: articles/virtual-machines/disks-types.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,6 @@ Premium SSD v2 is suited for a broad range of workloads such as SQL server, Orac
102
102
103
103
Premium SSD v2 support a 4k physical sector size by default, but can be configured to use a 512E sector size as well. While most applications are compatible with 4k sector sizes, some require 512 byte sector sizes. Oracle Database, for example, requires release 12.2 or later in order to support 4k native disks.
104
104
105
-
View [Deploy a Premium SSD v2 disk](disks-deploy-premium-v2.md) to get started.
106
105
107
106
### Differences between Premium SSD and Premium SSD v2
0 commit comments