Skip to content

Commit b584040

Browse files
MashaMSFTroygara
andauthored
Apply suggestions from code review
Co-authored-by: rogara <[email protected]>
1 parent 6e19384 commit b584040

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

articles/virtual-machines/disks-deploy-premium-v2.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Get-AzComputeResourceSku | where {$_.ResourceType -eq 'disks' -and $_.Name -eq '
5353

5454
# [Azure portal](#tab/portal)
5555

56-
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.
5757

5858
---
5959

@@ -190,15 +190,15 @@ You've now deployed a VM with a premium SSD v2.
190190

191191
## Adjust disk performance
192192

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.
194194

195195
For conceptual information on adjusting disk performance, see [Premium SSD v2 performance](disks-types.md#premium-ssd-v2-performance).
196196

197197
# [Azure CLI](#tab/azure-cli)
198198

199199
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.
200200

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:
202202

203203
```azurecli
204204
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
208208

209209
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.
210210

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:
212212

213213
```azurepowershell
214214
$diskupdateconfig = New-AzDiskUpdateConfig -DiskIOPSReadWrite 5000 -DiskMBpsReadWrite 200

articles/virtual-machines/disks-types.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ Premium SSD v2 is suited for a broad range of workloads such as SQL server, Orac
102102

103103
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.
104104

105-
View [Deploy a Premium SSD v2 disk](disks-deploy-premium-v2.md) to get started.
106105

107106
### Differences between Premium SSD and Premium SSD v2
108107

0 commit comments

Comments
 (0)