Application-Consistent Backups

Application-consistent backups are used to back up entities with high or extremely high transaction loads. Good examples of such entities can be Microsoft SharePoint, Active Directory, MS SQL Server, Oracle database solutions, or any other.

When such high-transactional solutions are subject to backup, the key point is the memory state and current transactions are stopped, flushed to disk, and are included in the backup dataset.

In cases memory cannot be flushed to disk for some reason, a backup dataset may not be valid for restore or some important data may be missing.

Thus, an application-consistent backup is a backup that is equipped with tools to notify applications about coming backup operation and allow applications to achieve a quiescent and consistent state by flushing all operations to disk.

Frameworks for Application-Consistent Backups

Volume Shadow Copy Service (VSS) is a framework designed primarily to solve the application-consistent problems for Windows operating systems. VSS is an infrastructure that provides backup applications with the feature of creating application-consistent backups.

When a backup procedure is initiated, VSS works as follows:

  1. Every running application that needs to flush its data kept in RAM to disk is notified by VSS.
  2. Then a Copy-On-Write operation is performed on volume.
  3. A volume snapshot is done and can be processed by a backup application.

Available Hyper-V Checkpoint Types

Windows 10 Hyper-V includes two types of checkpoints:

  • Standard Checkpoints. Standard checkpoint takes a snapshot of the virtual machine and virtual machine memory state at the time the checkpoint is initiated. A snapshot is not a full backup and can cause data consistency issues with systems that replicate data between different nodes such as Active Directory. Hyper-V only offered standard checkpoints (formerly called snapshots) prior to Windows 10
  • Production Checkpoints. Production checkpoint uses Volume Shadow Copy Service or File System Freeze on a Linux virtual machine to create a data-consistent backup of the virtual machine. No snapshot of the virtual machine memory state is taken.

Checkpoint Creation

Checkpoint creation depends on Hyper-V configuration. The following cases are possible:

  • Production checkpoint creation is enabled
  • Standard checkpoint creation is enabled
  • Checkpoints are disabled (no checkpoint type)

As a backup plan runs, an attempt to create a checkpoint of a specified type first is made. If a checkpoint is not created, a recovery inconsistent checkpoint is created instead. This checkpoint type does not contain a VSS snapshot of a virtual machine.

If no checkpoints are available (the Enable Checkpoints check box is unselected in the virtual machine properties), an attempt to create a recovery consistent checkpoint with a VSS snapshot of a virtual machine is made. If a recovery consistent checkpoint failed to create, a recovery inconsistent checkpoint is created instead: it does not contain a VSS snapshot of a virtual machine.

For recovery consistent checkpoints, input/output activities that are quiesced in the moment of VSS snapshot creation will be resumed.

It is not recommended to use recovery inconsistent checkpoints for restore purposes: restore may fail

To learn how to configure checkpoints in Hyper-V Manager, refer to Using checkpoints to revert virtual machines to a previous state chapter at docs.microsoft.com

Configure Application-Consistent Backups (BETA)

You can configure the Application processing options after the Select Virtual Machines step of the VMware backup wizard. These options can be configured separately for each virtual machine.

By default, the Try application processing setting is set. you can change it, if necessary.

The following options are available:

  • Try application processing. Back up virtual machines 'as is' if failed. Once this option is selected, virtual machines are backed up one by one. The state of applications running on virtual machines is checked, then a recovery consistent checkpoint is made and an application-consistent backup is performed. In case an recovery consistent checkpoint cannot be not made for some reason, this virtual machine will be backed up 'as is'.
  • Require successful application processing. Skip virtual machines if failed. Once this option is selected, virtual machines with applications that did not flush pending I/O operations from memory to disks, are skipped and an appropriate warning is displayed for a user.
  • Disable application processing. Back up virtual machines 'as is'. Once this option is selected, regular VM snapshots are done without quiescing.

Upgrading to Version 7.9 from Previous Versions

If you have VMware plans created in previous Backup Agent versions (7.8 or earlier), upon upgrade to the Backup Agent for Windows 7.9 or higher the new application-aware backup settings will be applied as follows:

  • If the Quiesce guest file system option was enabled, after an upgrade to version 7.9 the Back up virtual machines with application-consistency issues option will be set
  • If the Quiesce guest file system option was disabled, after an upgrade to version 7.9 the Do not use application-consistent backup option will be set

The Changed Block Tracking settings will be kept unchanged.

https://git.cloudberrylab.com/egor.m/doc-help-mbs.git