This is unreleased documentation for SUSE® Storage 1.9.0 (Dev). |
Backing Images
SUSE Storage natively supports backing images.
A QCOW2 or RAW image can be set as the backing/base image of a SUSE Storage volume, which allows SUSE Storage to be integrated with a virtualization solution such as SUSE Virtualization.
The image size must be a multiple of 512 bytes. SUSE Storage uses direct I/O, which requires alignment of file sizes with the underlying storage block size. |
Create a V1 Data Engine Backing Image
Parameters
Data Source
You can prepare a V1 backing image using any of the supported data sources.
-
Download a backing image file (using a URL).
-
Upload a file from your local machine. This option is available to SUSE Storage UI users.
-
Export an existing in-cluster volume as a backing image.
-
Restore a backing image from the backupstore, For more information, see Backing Image Backup.
-
Clone a backing image.
Volume exporting
A backing image serves as the initial snapshot in the snapshot chain of a SUSE Storage volume. When you export a volume with an associated backing image, SUSE Storage merges that image with the delta changes, resulting in a new consolidated backing image.
Checksum
-
The checksum of a backing image is the SHA512 checksum of the whole backing image file rather than that of the actual content. What’s the difference? When SUSE Storage calculates the checksum of a qcow2 file, it will read the file as a raw file instead of using the qcow library to read the correct content. In other words, users always get the correct checksum by executing
shasum -a 512 <the file path>
regardless of the file format. -
It’s recommended to provide the expected checksum during backing image creation. Otherwise, SUSE Storage will consider the checksum of the first file as the correct one. Once there is something wrong with the first file preparation, which then leads to an incorrect checksum as the expected value, this backing image is probably unavailable.
Scheduling
-
SUSE Storage first prepares and stores the backing image file on a random node and disk, and then duplicates the file to the disks that are storing the replicas.
-
For improved space efficiency, you can add
nodeSelector
anddiskSelector
to force storing of backing image files on a specific set of nodes and disks. -
The replicas cannot be scheduled on nodes or disks where the backing image cannot be scheduled.
Methods of Creating a Backing Image
Create a Backing Image Using the SUSE Storage UI
On
page, users can create backing images with any kinds of data source.Create a V1 Backing Image Using YAML
You can download a file or export an existing volume as a backing image via YAML. It’s better not to "upload" a file via YAML. Otherwise, you need to manually handle the data upload via HTTP requests.
Here are some examples:
apiVersion: longhorn.io/v1beta2
kind: BackingImage
metadata:
name: bi-download
namespace: longhorn-system
spec:
dataEngine: v1
minNumberOfCopies: 2
nodeSelector:
- "node1"
diskSelector:
- "disk1"
sourceType: download
sourceParameters:
url: https://longhorn-backing-image.s3-us-west-1.amazonaws.com/parrot.raw
checksum: 304f3ed30ca6878e9056ee6f1b02b328239f0d0c2c1272840998212f9734b196371560b3b939037e4f4c2884ce457c2cbc9f0621f4f5d1ca983983c8cdf8cd9a
apiVersion: longhorn.io/v1beta2
kind: BackingImage
metadata:
name: bi-export
namespace: longhorn-system
spec:
dataEngine: v1
minNumberOfCopies: 2
nodeSelector:
- "node1"
diskSelector:
- "disk1"
sourceType: export-from-volume
sourceParameters:
volume-name: vol-export-src
export-type: qcow2
Create a Backing Image Using a StorageClass and PVC
-
In a Longhorn StorageClass.
-
Setting parameter
backingImageName
means asking SUSE Storage to use this backing image during volume creation. -
If you want to create the backing image, as long as it does not exist during the CSI volume creation, parameters
backingImageDataSourceType
andbackingImageDataSourceParameters
should be set. Similarly to YAML, it’s better not to create a backing image via "upload" in StorageClass. Note that if all of these parameters are set and the backing image already exists, SUSE Storage will validate if the parameters match the existing one before using it.-
For
download
:kind: StorageClass apiVersion: storage.k8s.io/v1 metadata: name: longhorn-backing-image-example provisioner: driver.longhorn.io allowVolumeExpansion: true reclaimPolicy: Delete volumeBindingMode: Immediate parameters: numberOfReplicas: "3" staleReplicaTimeout: "2880" backingImage: "bi-download" backingImageDataSourceType: "download" backingImageDataSourceParameters: '{"url": "https://backing-image-example.s3-region.amazonaws.com/test-backing-image"}' backingImageChecksum: "SHA512 checksum of the backing image" backingImageMinNumberOfCopies: "2" backingImageNodeSelector: "node1" backingImageDiskSelector: "disk1" dataEngine: "v1"
-
For
export-from-volume
:kind: StorageClass apiVersion: storage.k8s.io/v1 metadata: name: longhorn-backing-image-example provisioner: driver.longhorn.io allowVolumeExpansion: true reclaimPolicy: Delete volumeBindingMode: Immediate parameters: numberOfReplicas: "3" staleReplicaTimeout: "2880" backingImage: "bi-export-from-volume" backingImageDataSourceType: "export-from-volume" backingImageDataSourceParameters: '{"volume-name": "vol-export-src", "export-type": "qcow2"}' backingImageMinNumberOfCopies: "2" backingImageNodeSelector: "node1" backingImageDiskSelector: "disk1" dataEngine: "v1"
-
-
Create a PVC with the StorageClass. Then the backing image will be created (with the SUSE Storage volume) if it does not exist.
-
SUSE Storage starts to prepare the backing images to disks for the replicas when a volume using the backing image is attached to a node.
|
Use a Backing Image in a Volume
Users can directly create then immediately use a backing image via StorageClass or utilize an existing backing image as mentioned below.
Use an Existing Backing Image
Use an Existing Backing Image During Volume Creation
-
Click
in the SUSE Storage UI. -
Click Create Backing Image to create a backing image with a unique name and a valid URL.
-
Select a backing image from the list. The volume and the backing image must use the same data engine.
-
SUSE Storage starts to download the backing image to disks for the replicas when a volume using the backing image is attached to a node.
Use an Existing Backing Image During Volume Restoration
-
Click
Backup
and pick up a backup volume for the restore. -
As long as the backing image is already set for the backup volume, SUSE Storage will automatically choose the backing image during the restore.
-
SUSE Storage allows you to re-specify or override the backing image during the restore.
Download a Backing Image File
Since v1.3.0, users can download existing backing image files to the local machine via UI.
|
Create a V2 Data Engine Backing Image
Starting v1.8.0, you can create a backing image that is supported by the V2 Data Engine by configuring Data Engine
in the YAML (through the UI or a StorageClass).
Parameters
All parameters are the same as that of the V1 Data Engine backing image, except for Data Engine
.
Data Sources
You can prepare a V2 Data Engine backing image using any of the supported data sources.
-
Download a backing image file (using a URL).
-
Upload a file from your local machine. This option is available to SUSE Storage UI users.
-
Export an existing in-cluster V1 Data Engine volume as a backing image.
-
Restore a backing image from the backupstore. For more information, see Backing Image Backup.
-
Clone a V1 backing image.
|
Clean Up Backing Images
Clean Up Backing Images in Disks
-
SUSE Storage automatically cleans up the unused backing image files on the disks based on the setting
Backing Image Cleanup Wait Interval
. But SUSE Storage will retain at least one file on a disk for each backing image. -
You can manually remove backing images from disks using the SUSE Storage UI. Go to Setting > Backing Image, and then click the name of a specific backing image. In the window that opens, select one or more disks and then click Clean Up.
-
Once there is one replica in a disk using a backing image, no matter what the replica’s current state is, the backing image file in this disk cannot be cleaned up.
Delete Backing Images
-
The backing image can be deleted only when there is no volume using it.
Backing Image Recovery
-
If there is still a ready backing image file on one disk, SUSE Storage will automatically clean up the failed backing image files, then re-launch these files from the ready one.
-
If somehow all files of a backing image become failed, and the first file is :
-
downloaded from a URL, SUSE Storage will restart the downloading.
-
exported from an existing volume, SUSE Storage will (attach the volume if necessary then) restart the export.
-
uploaded from user local env, there is no way to recover it. Users need to delete this backing image then re-create a new one by re-uploading the file.
-
-
When a node is down or the backing image manager pod on the node is unavailable, all backing image files on the node will become
unknown
. Later, if the node is back and the pod is running, SUSE Storage will detect that and then reuse the existing files automatically.
Backing Image Eviction
-
You can manually evict all backing image files from a node or disk by setting
Scheduling
toDisabled
andEviction Requested
toTrue
on the SUSE Storage UI. -
If only one backing image file exists in the cluster, SUSE Storage first duplicates the file to another disk and then deletes the file.
-
If the backing image file cannot be duplicated to other disks, SUSE Storage does not delete the file. You can update the settings to resolve the issue.
Backing Image Workflow
-
To manage all backing image files on a disk, SUSE Storage creates a single backing image manager pod for each disk. Once the disk has no backing image file requirement, the backing image manager is removed automatically.
-
Once a backing image file is prepared by the backing image manager for a disk, the file will be shared among all volume replicas in this disk.
-
When a backing image is created, SUSE Storage launches a backing image data source pod to prepare the initial file. The file data comes from a source specified by the user—such as a download from a remote location, an upload from a local file, or an export from an existing volume. Once preparation is done, the backing image manager pod on the same disk takes over the file, and SUSE Storage stops the data source pod.
-
Once a new backing image is used by a volume, the backing image manager pods in the disks that the volume replicas reside on will be asked to sync the file from the backing image manager pods that already contain the file.
-
As mentioned in the section #clean_up_backing_images_in_disks, the file will be cleaned up automatically if all replicas in one disk do not use one backing image file.
Concurrent Limit of Backing Image Syncing
-
Concurrent Backing Image Replenish Per Node Limit
in the global settings controls how many backing images copies on a node can be replenished simultaneously. -
When set to 0, SUSE Storage does not automatically replenish the copy, even if it is below the minNumberOfCopies.
Warning
-
The download URL of the backing image should be public. We will improve this part in the future.
-
If there is high memory usage of one backing image manager pod after file download, this is caused by the system cache/buffer. The memory usage will decrease automatically hence you don’t need to worry about it. See the GitHub ticket for more details.
History
-
Support upload and volume exporting
-
Support download to local and volume exporting