You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Custom parameters for QCOW2 snapshot used for mirror in migration
It's needed for migration because the mirror parent is empty, meaning
that if the access size is bigger than 512, it will try to read the
parent to complete with empty parent, corrupting part of the cluster
when we will coalesce it in the real parent.
The cluster size of the snapshot is the only one changed so that when
it's coalesced in its parent, we find ourselves with the original
cluster size again.
It limits the max size of images to 64TiB otherwise it would not work
with migration.
Signed-off-by: Damien Thenot <damien.thenot@vates.tech>
# is_mirror_image override the cluster size to ensure that we have a write of 512 to avoid having to read the parent during a migration.
812
+
# It also enable extended_l2 for this purpose, this is only done in the snapshot used for the mirror, this configuration will be lost when coalesced in its parent
813
+
# Ensuring we go back to a better cluster_size for performance reasons. This limit our images max size to 64TiB.
0 commit comments