Skip to content

Commit 2baf2d2

Browse files
Merge pull request #300610 from PriskeyJeronika/pup
Added preview tags and updated PS command
2 parents 30a5dd9 + 82ea487 commit 2baf2d2

File tree

5 files changed

+13
-10
lines changed

5 files changed

+13
-10
lines changed

articles/site-recovery/azure-to-azure-architecture.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Azure to Azure disaster recovery architecture in Azure Site Recovery
33
description: Overview of the architecture used when you set up disaster recovery between Azure regions for Azure VMs, using the Azure Site Recovery service.
44
ms.service: azure-site-recovery
55
ms.topic: concept-article
6-
ms.date: 05/19/2025
6+
ms.date: 05/30/2025
77
ms.author: ankitadutta
88
author: ankitaduttaMSFT
99
---
@@ -22,7 +22,7 @@ The components involved in disaster recovery for Azure VMs are summarized in the
2222
**VMs in source region** | One of more Azure VMs in a [supported source region](azure-to-azure-support-matrix.md#region-support).<br/><br/> VMs can be running any [supported operating system](azure-to-azure-support-matrix.md#replicated-machine-operating-systems).
2323
**Source VM storage** | Azure VMs can be managed, or have nonmanaged disks spread across storage accounts.<br/><br/>[Learn about](azure-to-azure-support-matrix.md#replicated-machines---storage) supported Azure storage.
2424
**Source VM networks** | VMs can be located in one or more subnets in a virtual network (VNet) in the source region. [Learn more](azure-to-azure-support-matrix.md#replicated-machines---networking) about networking requirements.
25-
**Cache storage account** | You need a cache storage account in the source network. During replication, VM changes are stored in the cache before being sent to target storage. <br/><br/> Using a cache ensures minimal impact on production applications that are running on a VM.<br/><br/> [Learn more](azure-to-azure-support-matrix.md#cache-storage) about cache storage requirements.<br/><br/> **Note**: Virtual machines with Premium SSD v2 disks require High Churn and uses Premium Storage Account.
25+
**Cache storage account** | You need a cache storage account in the source network. During replication, VM changes are stored in the cache before being sent to target storage. <br/><br/> Using a cache ensures minimal impact on production applications that are running on a VM.<br/><br/> [Learn more](azure-to-azure-support-matrix.md#cache-storage) about cache storage requirements.<br/><br/> **Note**: Virtual machines with Premium SSD v2 disks (preview) require High Churn and uses Premium Storage Account.
2626
**Target resources** | Target resources are used during replication, and when a failover occurs. Site Recovery can set up target resource by default, or you can create/customize them.<br/><br/> In the target region, check that you're able to create VMs, and that your subscription has enough resources to support VM sizes that are needed in the target region.
2727

2828
![Diagram showing source and target replication.](./media/concepts-azure-to-azure-architecture/enable-replication-step-1-v2.png)

articles/site-recovery/azure-to-azure-common-questions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Common questions about Azure virtual machine disaster recovery with Azure
33
description: This article answers common questions about Azure virtual machine disaster recovery when you use Azure Site Recovery.
44
ms.author: ankitadutta
55
author: ankitaduttaMSFT
6-
ms.date: 05/28/2025
6+
ms.date: 05/30/2025
77
ms.topic: faq
88
ms.service: azure-site-recovery
99

@@ -137,7 +137,7 @@ The Azure portal displays *logical Zones*. In the datacenter, actual physical zo
137137

138138
In case the source and target zones are the same, you can't view zone for target configuration while enabling zonal replication.
139139

140-
### Premium SSD v2 disks
140+
### Premium SSD v2 disks (preview)
141141

142142
#### What disk sector size is supported when I protect VMs with Premium SSD v2 disks?
143143

articles/site-recovery/azure-to-azure-powershell.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.service: azure-site-recovery
55
author: ankitaduttaMSFT
66
manager: rochakm
77
ms.topic: how-to
8-
ms.date: 04/29/2025
8+
ms.date: 05/30/2025
99
ms.author: ankitadutta
1010
ms.custom: devx-track-azurepowershell
1111
---
@@ -322,7 +322,7 @@ $WusToEusPCMapping = Get-AzRecoveryServicesAsrProtectionContainerMapping -Protec
322322

323323
## Create cache storage account and target storage account
324324

325-
A cache storage account is a standard storage account in the same Azure region as the virtual machine being replicated. The cache storage account is used to hold replication changes temporarily, before the changes are moved to the recovery Azure region. High churn support is also available in Azure Site Recovery to get higher churn limits. To use this feature, please create a Premium Block Blob type of storage accounts and then use it as the cache storage account. You can choose to, but it's not necessary, to specify different cache storage accounts for the different disks of a virtual machine. If you use different cache storage accounts, ensure they are of the same type (Standard or Premium Block Blobs). For more information, see [Azure VM Disaster Recovery - High Churn Support](./concepts-azure-to-azure-high-churn-support.md).
325+
A cache storage account is a standard storage account in the same Azure region as the virtual machine being replicated. The cache storage account is used to hold replication changes temporarily, before the changes are moved to the recovery Azure region. High churn support is also available in Azure Site Recovery to get higher churn limits. To use this feature, please create a Premium Block Blob type of storage accounts and then use it as the cache storage account. Azure Site Recovery for Premium SSD v2 disks (preview) is supported only using high churn. Use SkuName Premium_LRS to enable high churn. You can choose to, but it's not necessary, to specify different cache storage accounts for the different disks of a virtual machine. If you use different cache storage accounts, ensure they are of the same type (Standard or Premium Block Blobs). For more information, see [Azure VM Disaster Recovery - High Churn Support](./concepts-azure-to-azure-high-churn-support.md).
326326

327327
```azurepowershell
328328
#Create Cache storage account for replication logs in the primary region
@@ -429,6 +429,9 @@ $OSDiskReplicationConfig = New-AzRecoveryServicesAsrAzureToAzureDiskReplicationC
429429
# Data disk
430430
$datadiskId1 = $vm.StorageProfile.DataDisks[0].ManagedDisk.Id
431431
$RecoveryReplicaDiskAccountType = $vm.StorageProfile.DataDisks[0].ManagedDisk.StorageAccountType
432+
if ($RecoveryReplicaDiskAccountType -in @("PremiumV2_LRS", "Ultra_LRS")) {
433+
$RecoveryReplicaDiskAccountType = "Premium_LRS"
434+
}
432435
$RecoveryTargetDiskAccountType = $vm.StorageProfile.DataDisks[0].ManagedDisk.StorageAccountType
433436
434437
$DataDisk1ReplicationConfig = New-AzRecoveryServicesAsrAzureToAzureDiskReplicationConfig -ManagedDisk -LogStorageAccountId $EastUSCacheStorageAccount.Id `

articles/site-recovery/azure-to-azure-quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Set up Azure VM disaster recovery to a secondary region with Azure Site Recovery
33
description: Quickly set up disaster recovery to another Azure region for an Azure VM, using the Azure Site Recovery service.
44
ms.topic: quickstart
5-
ms.date: 05/22/2025
5+
ms.date: 05/30/2025
66
ms.custom: mvc, mode-other
77
ms.author: ankitadutta
88
author: ankitaduttaMSFT
@@ -40,7 +40,7 @@ The following steps enable VM replication to a secondary location.
4040
>Azure Site Recovery has a *High Churn* option that you can choose to protect VMs with high data change rate. With this, you can use a *Premium Block Blob* type of storage account. By default, the **Normal Churn** option is selected. For more information, see [Azure VM Disaster Recovery - High Churn Support](./concepts-azure-to-azure-high-churn-support.md).
4141
>:::image type="High churn" source="media/concepts-azure-to-azure-high-churn-support/churn-for-vms.png" alt-text="Screenshot of Churn for VM.":::
4242
>
43-
>Azure Site Recovery for Premium SSD v2 by default uses High Churn and a Premium Block Blob type.
43+
>Azure Site Recovery for Premium SSD v2 (preview) by default uses High Churn and a Premium Block Blob type.
4444
1. To start the job that enables VM replication, select **Start replication**.
4545

4646
:::image type="content" source="media/azure-to-azure-quickstart/enable-replication1.png" alt-text="Enable replication.":::

articles/site-recovery/site-recovery-cost.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Understanding Azure Site Recovery for Managed Disks Charges
33
description: This article summarizes the costs disaster recovery and migration deployment scenarios.
44
ms.topic: overview
55
ms.service: azure-site-recovery
6-
ms.date: 05/19/2025
6+
ms.date: 05/30/2025
77
ms.author: ankitadutta
88
author: ankitaduttaMSFT
99
---
@@ -49,7 +49,7 @@ This cost includes:
4949

5050
- **Source**:
5151
- For Premium SSD disks, incremental snapshots are charged.
52-
- For Standard and Premium SSD v2 disks, one full snapshot followed by incremental snapshots is charged.
52+
- For Standard and Premium SSD v2 disks (preview), one full snapshot followed by incremental snapshots is charged.
5353
- **Target**:
5454
- Snapshot costs are associated with the recovery points created by Azure Site Recovery. These snapshots capture the replica storage at a point in time and are charged based on the consumed capacity. Pricing details align with Page Blob Snapshots. [Learn more](https://azure.microsoft.com/pricing/details/storage/page-blobs/#:~:text=Note%3A%20Snapshots%20are%20charged,at%20%240.12%20%2FGB%20per%20month.?msockid=3816c7206e2268e7035dd3316f7069f4).
5555

0 commit comments

Comments
 (0)