Snapshot Azure Elastic SAN volumes (preview)

Azure Elastic SAN volume snapshots (preview) are incremental point-in-time backups of your volumes. The first snapshot you take occupies no space, and every subsequent snapshot consists only of the changes to the Elastic SAN volume since the last snapshot. This is different from a managed disk snapshot, wherein the first snapshot you take will be a full copy of the managed disk and each subsequent snapshot will consist of only the changes to the disk since the last snapshot. Snapshots of your volumes don't have any separate billing, but they reside in your elastic SAN and consume the SAN's capacity. Snapshots can't be used to change the state of an existing volume, you can only use them to either deploy a new volume or export the data to a managed disk snapshot.

You can take as many snapshots of your volumes as you like, as long as there's available capacity in your elastic SAN. Snapshots persist until either the volume itself is deleted or the snapshots are deleted. Snapshots don't persist after the volume is deleted. If you need your data to persist after deleting a volume, export your volume's snapshot to a managed disk snapshot.

Limitations

  • If a volume is larger than 4 TiB, export of a volume snapshot to a disk snapshot is not supported.

General guidance

You can take a snapshot anytime, but if you’re taking snapshots while the VM is running, keep these things in mind:

When the VM is running, data is still being streamed to the volumes. As a result, snapshots of a running VM might contain partial operations that were in flight. If there are several volumes attached to a VM, snapshots of different volumes might occur at different times. In the described scenario, snapshots weren't coordinated. This lack of coordination is a problem for striped volumes whose files might be corrupted if changes were being made during a backup. So the backup process must implement the following steps:

  • Freeze all the volumes.
  • Flush all the pending writes.
  • Create an incremental snapshot for each volume.

Some Windows applications, like SQL Server, provide a coordinated backup mechanism through a volume shadow service to create application-consistent backups. On Linux, you can use a tool like fsfreeze to coordinate disks (this tool provides file-consistent backups, not application-consistent snapshots).

Create a volume snapshot

You can create snapshots of your volumes snapshots using the Azure portal, the Azure PowerShell module, or the Azure CLI.

  1. Sign in to the Azure portal.
  2. Navigate to your elastic SAN, select volume snapshots.
  3. Select create a snapshot, then fill in the fields.

Create a volume from a volume snapshot

You can use snapshots of elastic SAN volumes to create new volumes using the Azure portal, the Azure PowerShell module, or the Azure CLI. You can't use snapshots to change the state of existing volumes.

  1. Navigate to your elastic SAN and select Volumes.
  2. Select + Create volume and fill out the details.
  3. For Source type select Volume snapshot and fill out the details, specifying the snapshot you want to use.
  4. Select Create.

Create a volume from a managed disk snapshot

You can use snapshots of managed disks to create new elastic SAN volumes using the Azure portal, the Azure PowerShell module, or the Azure CLI.

  1. Navigate to your elastic SAN and select Volumes.
  2. Select + Create volume and fill out the details.
  3. For Source type select Disk snapshot and fill out the details, specifying the snapshot you want to use.
  4. Select Create.

Delete volume snapshots

You can use the Azure portal, Azure PowerShell module, or Azure CLI to delete individual snapshots. Currently, you can't delete more than an individual snapshot at a time.

  1. Navigate to your elastic SAN and select Volume snapshots.
  2. Select a volume group, then select the snapshot you'd like to delete.
  3. Select delete.

Export volume snapshot

Elastic SAN volume snapshots are automatically deleted when the volume is deleted. For your snapshot's data to persist beyond deletion, export them to managed disk snapshots. Exporting a volume snapshot to a managed disk snapshot takes time, how much time it takes depend on the size of the snapshot. You can check how much is left before completion by checking the CompletionPercentage property of the managed disk snapshot.

Billing implications

Elastic SAN snapshots don't have any extra billing associated with them, they only consume your elastic SAN's capacity. Once you export an elastic SAN snapshot to a managed disk snapshot, the managed disk snapshot begins to incur billing charges.

  1. Navigate to your elastic SAN and select Volume snapshots.
  2. Select a volume group, then select the snapshot you'd like to export.
  3. Select Export and fill out the details, then select Export.