Skip to content

Commit a3dfeb3

Browse files
Merge pull request #307338 from MicrosoftDocs/main
Auto Publish – main to live - 2025-10-24 11:00 UTC
2 parents 678cd0e + d5a725b commit a3dfeb3

3 files changed

Lines changed: 33 additions & 7 deletions

File tree

articles/backup/backup-azure-arm-restore-vms.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Restore VMs by using the Azure portal using Azure Backup
33
description: Restore an Azure virtual machine from a recovery point by using the Azure portal, including the Cross Region Restore feature.
44
ms.reviewer: nikhilsarode
55
ms.topic: how-to
6-
ms.date: 08/14/2025
6+
ms.date: 10/24/2025
77
ms.service: azure-backup
88
author: AbhishekMallick-MS
99
ms.author: v-mallicka
@@ -36,7 +36,7 @@ Azure Backup provides several ways to restore a VM.
3636

3737
Some details about storage accounts:
3838

39-
- **Create VM**: When you create a new VM with managed disks, nothing is placed in the storage account you specify. If using unmanaged disks, the VHD files for the VM's disks will be placed in the storage account you specify.
39+
- **Create VM**: When you create a new VM, VHD files are also copied when restoring VMs with disks < 4 TB or VMs containing < 16 disks from a Vault-Standard recovery point. These files are then moved to Managed storage. To prevent extra charges, delete VHDs from the Staging Storage Account.
4040
- **Restore disk**: The VM restore job generates a template, which you can download and use to specify custom VM settings. VHD files are also copied when restoring managed disks **< 4 TB** or VMs containing **< 16 disks** from a Vault-Standard recovery point, or when restoring unmanaged disks. These files are then moved to Managed storage. To prevent extra charges, delete VHDs from the Staging Storage Account.
4141
- **Replace disk**: When replacing a managed disk from a Vault-Standard recovery point that's **< 4 TB** or a VM containing **< 16 disks**, a VHD file is created in the specified storage account. After replacement, source VM disks remain in the designated Resource Group, and VHDs stay in the storage account; you can delete or retain the source disk and the VHDs as needed.
4242
- **Storage account location**: The storage account must be in the same region as the vault. Only these accounts are displayed. If there are no storage accounts in the location, you need to create one.
@@ -339,7 +339,7 @@ For more information, see [Back up and restore Active Directory domain controlle
339339

340340
Managed identities eliminate the need for the user to maintain the credentials. Managed identities provide an identity for applications to use when connecting to resources that support Microsoft Entra authentication.
341341

342-
Azure Backup offers the flexibility to restore the managed Azure VM with [managed identities](../active-directory/managed-identities-azure-resources/overview.md). You can choose to select [system-managed identities](../active-directory/managed-identities-azure-resources/overview.md#managed-identity-types) or user-managed identities as shown in the figure below. This is introduced as one of the input parameters in the [**Restore configuration** pane](#create-a-vm) of Azure VM. Managed identities are used for accessing the storage accounts and automated cleanup of any resources created during restore process in case of restore failures. These managed identities have to be associated to the vault.
342+
Azure Backup offers the flexibility to restore the managed Azure VM with [managed identities](../active-directory/managed-identities-azure-resources/overview.md). You can choose to select [system-managed identities](../active-directory/managed-identities-azure-resources/overview.md#managed-identity-types) or user-managed identities as shown in the figure below. This is introduced as one of the input parameters in the [**Restore configuration** pane](#create-a-vm) of Azure VM. Managed identities are used for accessing the storage accounts and automated cleanup of any resources created during restore process. These managed identities have to be associated to the vault.
343343

344344
:::image type="content" source="./media/backup-azure-arm-restore-vms/select-system-managed-identities-or-user-managed-identities.png" alt-text="Screenshot for choice to select system-managed identities or user-managed identities.":::
345345

articles/data-factory/connector-microsoft-fabric-lakehouse.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.author: jianleishen
66
author: jianleishen
77
ms.subservice: data-movement
88
ms.topic: conceptual
9-
ms.date: 08/29/2025
9+
ms.date: 10/23/2025
1010
ms.custom:
1111
- synapse
1212
- sfi-image-nochange
@@ -649,6 +649,34 @@ When copying data to Microsoft Fabric Lakehouse table, the following mappings ar
649649
| Byte array | binary |
650650
| Decimal | decimal |
651651

652+
## Delta Lake table support
653+
654+
In the sections below, you will find detailed information on Delta Lake table support for both the source and sink.
655+
656+
### Source
657+
658+
[Delta column mapping](https://docs.delta.io/latest/delta-column-mapping.html) is supported when you apply reader version 2 or reader version 3 with `columnMapping` in `readerFeatures` in your Microsoft Fabric Lakehouse Table.
659+
660+
Delta table's column mapping capability allows for more flexible schema evolution, ensuring that changes in table structure do not disrupt data workflows. With column mapping, you can read data from an existing delta Lake table with `delta.columnMapping.mode` set to `name` or `id`.
661+
662+
[Deletion vectors](https://docs.delta.io/latest/delta-deletion-vectors.html) is supported
663+
when you apply reader version 3 with `deletionVectors` in `readerFeatures` in your Microsoft Fabric Lakehouse Table. Rows that are soft deleted are marked in deletion vector files and skipped when reading the delta lake table.
664+
665+
[Change Data Feed](https://docs.delta.io/delta-change-data-feed/) is supported.
666+
667+
### Sink
668+
669+
[Delta column mapping](https://docs.delta.io/latest/delta-column-mapping.html) is supported. This capability allows for more flexible schema evolution, ensuring that changes in table structure do not disrupt data workflows. With column mapping, you can:
670+
671+
- Write data to an existing delta lake table with `delta.columnMapping.mode` set to `name`.
672+
- Auto-create a table with `delta.columnMapping.mode` set to `name` when the sink table does not exist and the source columns include special characters and whitespaces.
673+
- Auto-create a table with `delta.columnMapping.mode` set to `name` when the table action is overwrite and the source dataset columns include special characters and whitespaces.
674+
675+
[Deletion vectors](https://docs.delta.io/latest/delta-deletion-vectors.html) is supported.
676+
677+
[Change Data Feed](https://docs.delta.io/delta-change-data-feed/) is supported.
678+
679+
652680
## Mapping data flow properties
653681

654682
When transforming data in mapping data flow, you can read and write to files or tables in Microsoft Fabric Lakehouse. See the corresponding sections for details.

articles/update-manager/support-matrix.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@ Use one of the following options to perform the settings change at scale:
6060

6161
#### [Windows](#tab/third-party-win)
6262

63-
Update Manager relies on the locally configured update repository to update supported Windows systems, either WSUS or Windows Update. Tools such as [System Center Updates Publisher](/mem/configmgr/sum/tools/updates-publisher) allow you to import and publish custom updates with WSUS.
64-
65-
This scenario allows Update Manager to update machines that use Configuration Manager as their update repository with third party software. To learn how to configure Updates Publisher, see [Install Updates Publisher](/mem/configmgr/sum/tools/install-updates-publisher).
63+
Azure Update Manager uses the locally configured update repository to update supported Windows systems. These repositories can be Windows Update or WSUS. When you use WSUS, import and publish third-party applications and custom updates to WSUS.
6664

6765
#### [Linux](#tab/third-party-lin)
6866

0 commit comments

Comments
 (0)