Generic base class to implement metadata, compression and chunked data operations
Bases: BackupDriver
Abstract chunked backup driver.
Implements common functionality for backup drivers that store volume data in multiple “chunks” in a backup repository when the size of the backed up cinder volume exceeds the size of a backup repository “chunk.”
Provides abstract methods to be implemented in concrete chunking drivers.
Backup the given volume.
If backup[‘parent_id’] is given, then an incremental backup is performed.
Delete the given backup.
Delete object from container.
Get container entry names.
Return extra metadata to use in prepare_backup.
This method allows for collection of extra metadata in prepare_backup() which will be passed to get_object_reader() and get_object_writer(). Subclass extensions can use this extra information to optimize data transfers. Return a json serializable object.
Returns a reader object for the backed up chunk.
The object reader methods must not have any logging calls, as eventlet has a bug (https://github.com/eventlet/eventlet/issues/432) that would result in failures.
Returns a writer object which stores the chunk data.
The object returned should be a context handler that can be used in a “with” context.
The object writer methods must not have any logging calls, as eventlet has a bug (https://github.com/eventlet/eventlet/issues/432) that would result in failures.
Create the container if needed. No failure if it pre-exists.
Restore the given volume backup from backup repository.
Raises BackupRestoreCancel on any backup status change.
Allow sub-classes to override container name.
This method exists so that sub-classes can override the container name as it comes in to the driver in the backup object. Implementations should return None if no change to the container name is desired.
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.