Azure – You can now use incremental snapshots for your virtual machines

As you may already know, you can create a snapshot of a virtual machine running on Azure when using managed disks.

While this is a useful capability, there was a limitation; when creating a snapshot you were creating a full snapshot, meaning the full disk was snapshotted, involving an increase in your storage cost.

Well, good news, you can now create incremental snapshot. This feature has been in preview for some time now and is now generally available.

Incremental snapshot generates a snapshot based on the delta/difference between 2 snapshots.

An incremental snapshot is always stored on the most cost-effective storage – standard HDD, irrespective of the storage type of the parent disk and on a Zone Redundant Storage (ZRS) for reliability.

Incremental snapshots are charged per Gb.

You can create incremental snapshots using either Azure Cli or Azure portal

  • From the portal using this specific link https://aka.ms/incrementalsnapshots as this is not yet fully available through Azure portal, fill up the required fields (subscription, resource group, name…) and ensure you select Incremental as snapshot type

image_thumb[1]

  • Using Azure Cli, use the below command; note the –incremental parameter

sourceResourceId=$(az disk show -g <your resource group> -n <the disk to snapshot> –query ‘[id]’ -o tsv)
az snapshot create -g <your resource group> -n <name of the snapshot> -l <location> –source “$sourceResourceId” –incremental

Enjoy