libvirt/tests/domainbackupxml2xmlin/backup-pull.xml
Peter Krempa 7e5b993d3b backup: Allow configuring incremental backup per-disk individually
The semantics of the backup operation don't strictly require that all
disks being backed up are part of the same incremental part (when a disk
was checkpointed/backed up separately or in a different VM), or even
they may not have a previous checkpoint at all (e.g. when the disk
was freshly hotplugged to the vm).

In such cases we can still create a common checkpoint for all of them
and backup differences according to configuration.

This patch adds a per-disk configuration of the checkpoint to do the
incremental backup from via the 'incremental' attribute and allows
perform full backups via the 'backupmode' attribute.

Note that no changes to the qemu driver are necessary to take advantage
of this as we already obey the per-disk 'incremental' field.

https://bugzilla.redhat.com/show_bug.cgi?id=1829829

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
2020-07-08 08:40:30 +02:00

23 lines
723 B
XML

<domainbackup mode="pull">
<incremental>1525889631</incremental>
<server transport='tcp' name='localhost' port='10809'/>
<disks>
<disk name='vda' type='file'>
<scratch file='/path/to/file'/>
</disk>
<disk name='hda' backup='no'/>
<disk name='vdc' type='file' backupmode='full'>
<scratch file='/path/to/file'/>
</disk>
<disk name='vdd' type='file' backupmode='incremental'>
<scratch file='/path/to/file'/>
</disk>
<disk name='vde' type='file' backupmode='incremental' incremental='blah'>
<scratch file='/path/to/file'/>
</disk>
<disk name='vdf' type='file' incremental='bleh'>
<scratch file='/path/to/file'/>
</disk>
</disks>
</domainbackup>