Skip to content

Commit e78d33c

Browse files
Merge pull request #248693 from roygara/zrsFeedback
Updating ZRS disk information
2 parents 627a5f8 + cec527f commit e78d33c

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

articles/storage/common/redundancy-migration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: jimmart-dev
77

88
ms.service: azure-storage
99
ms.topic: how-to
10-
ms.date: 07/14/2023
10+
ms.date: 08/18/2023
1111
ms.author: jammart
1212
ms.subservice: storage-common-concepts
1313
ms.custom: engagement-fy23, references_regions
@@ -253,12 +253,12 @@ The following table provides an overview of redundancy options available for sto
253253
| Premium file shares | &#x2705; | &#x2705; | | &#x2705; <sup>1</sup> | &#x2705; |
254254
| Premium block blob | &#x2705; | &#x2705; | | | &#x2705; |
255255
| Premium page blob | &#x2705; | | | | |
256-
| Managed disks<sup>2</sup> | &#x2705; | | | | |
256+
| Managed disks<sup>2</sup> | &#x2705; | &#x2705; | &#x2705; | | &#x2705; |
257257
| Standard general purpose v1 | &#x2705; | | <sup>3</sup> | | &#x2705; |
258258
| ZRS Classic<sup>4</sup><br /><sub>(available in standard general purpose v1 accounts)</sub> | &#x2705; | | | |
259259

260260
<sup>1</sup> Conversion for premium file shares is only available by [opening a support request](#support-requested-conversion); [Customer-initiated conversion](#customer-initiated-conversion) is not currently supported.<br />
261-
<sup>2</sup> Managed disks are only available for LRS and cannot be migrated to ZRS. You can store snapshots and images for standard SSD managed disks on standard HDD storage and [choose between LRS and ZRS options](https://azure.microsoft.com/pricing/details/managed-disks/). For information about integration with availability sets, see [Introduction to Azure managed disks](../../virtual-machines/managed-disks-overview.md#integration-with-availability-sets).<br />
261+
<sup>2</sup> Managed disks are available for LRS and ZRS, though ZRS disks have some [limitations](../../virtual-machines/disks-redundancy.md#limitations). If a LRS disk is regional (no zone specified) it may be converted by [changing the SKU](../../virtual-machines/disks-convert-types.md). If a LRS disk is zonal, then it can only be manually migrated by following the process in [Migrate your managed disks](../../reliability/migrate-vm.md#migrate-your-managed-disks). You can store snapshots and images for standard SSD managed disks on standard HDD storage and [choose between LRS and ZRS options](https://azure.microsoft.com/pricing/details/managed-disks/). For information about integration with availability sets, see [Introduction to Azure managed disks](../../virtual-machines/managed-disks-overview.md#integration-with-availability-sets).<br />
262262
<sup>3</sup> If your storage account is v1, you'll need to upgrade it to v2 before performing a conversion. To learn how to upgrade your v1 account, see [Upgrade to a general-purpose v2 storage account](storage-account-upgrade.md).<br />
263263
<sup>4</sup> ZRS Classic storage accounts have been deprecated. For information about converting ZRS Classic accounts, see [Converting ZRS Classic accounts](#converting-zrs-classic-accounts).<br />
264264

articles/virtual-machines/disks-convert-types.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ author: roygara
55
ms.service: azure-disk-storage
66
ms.custom: devx-track-azurecli, devx-track-azurepowershell
77
ms.topic: how-to
8-
ms.date: 08/08/2023
8+
ms.date: 08/18/2023
99
ms.author: rogarana
1010
---
1111

1212
# Change the disk type of an Azure managed disk
1313

1414
**Applies to:** :heavy_check_mark: Linux VMs :heavy_check_mark: Windows
1515

16-
There are five disk types of Azure managed disks: Azure Ultra Disks, Premium SSD v2, premium SSD, Standard SSD, and Standard HDD. You can easily switch between Premium SSD, Standard SSD, and Standard HDD based on your performance needs. You aren't yet able to switch from or to an Ultra Disk or a Premium SSD v2, you must deploy a new one.
16+
There are five disk types of Azure managed disks: Azure Ultra Disks, Premium SSD v2, premium SSD, Standard SSD, and Standard HDD. You can easily switch between Premium SSD, Standard SSD, and Standard HDD based on your performance needs. Premium SSD and Standard SSD are also available with [Zone-redundant storage](disks-redundancy.md#zone-redundant-storage-for-managed-disks). You aren't yet able to switch from or to an Ultra Disk or a Premium SSD v2, you must deploy a new one.
1717

1818
This functionality isn't supported for unmanaged disks. But you can easily convert an unmanaged disk to a managed disk with [CLI](linux/convert-unmanaged-to-managed-disks.md) or [PowerShell](windows/convert-unmanaged-to-managed-disks.md) to be able to switch between disk types.
1919

@@ -40,7 +40,7 @@ $rgName = 'yourResourceGroup'
4040
# Name of the your virtual machine
4141
$vmName = 'yourVM'
4242
43-
# Choose between Standard_LRS, StandardSSD_LRS and Premium_LRS based on your scenario
43+
# Choose between Standard_LRS, StandardSSD_LRS, StandardSSD_ZRS, Premium_ZRS, and Premium_LRS based on your scenario
4444
$storageType = 'Premium_LRS'
4545
4646
# Premium capable size
@@ -87,7 +87,7 @@ vmName='yourVM'
8787
#Required only if converting from Standard to Premium
8888
size='Standard_DS2_v2'
8989
90-
#Choose between Standard_LRS, StandardSSD_LRS and Premium_LRS based on your scenario
90+
#Choose between Standard_LRS, StandardSSD_LRS, StandardSSD_ZRS, Premium_ZRS, and Premium_LRS based on your scenario
9191
sku='Premium_LRS'
9292
9393
#Deallocate the VM before changing the size of the VM
@@ -124,7 +124,7 @@ For your dev/test workload, you might want a mix of Standard and Premium disks t
124124
$diskName = 'yourDiskName'
125125
# resource group that contains the managed disk
126126
$rgName = 'yourResourceGroupName'
127-
# Choose between Standard_LRS, StandardSSD_LRS and Premium_LRS based on your scenario
127+
# Choose between Standard_LRS, StandardSSD_LRS, StandardSSD_ZRS, Premium_ZRS, and Premium_LRS based on your scenario
128128
$storageType = 'Premium_LRS'
129129
# Premium capable size
130130
$size = 'Standard_DS2_v2'
@@ -169,7 +169,7 @@ diskName='yourManagedDiskName'
169169
#Required only if converting from Standard to Premium
170170
size='Standard_DS2_v2'
171171
172-
#Choose between Standard_LRS, StandardSSD_LRS and Premium_LRS based on your scenario
172+
#Choose between Standard_LRS, StandardSSD_LRS, StandardSSD_ZRS, Premium_ZRS, and Premium_LRS based on your scenario
173173
sku='Premium_LRS'
174174
175175
#Get the parent VM Id

0 commit comments

Comments
 (0)