• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

ZFS Snapshot Deletion Question

AUPhil

n00b
Joined
Nov 28, 2012
Messages
11
Guys,

Just wondering, if I recursively delete all snapshots in a ZFS zpool, is that operation analogous to deleting virtual machine snapshots in VMware ESXi ?

Meaning, you are merely deleting all intervening checkpoints and "flattening" the object?

Thanks,
AUPhil
 
Guys,

Just wondering, if I recursively delete all snapshots in a ZFS zpool, is that operation analogous to deleting virtual machine snapshots in VMware ESXi ?

Meaning, you are merely deleting all intervening checkpoints and "flattening" the object?

Thanks,
AUPhil


ESXi snaps and ZFS snaps are completely different.
While ESXi snaps are diff-files that contains the modifications to the last state - with the
effect that your number of snaps are limited and every snap lowers performance.
A snap deletion (can last hours) is a integration of the diff file into the base file.

ZFS snaps are based on CopyOnWrite where every data-modification results in creating new datablocks.
A snap in such a situation is only a mark: do not overwrite old data. With this technology, a snap creation is
done without delay. Even thousands of snaps are possible. A deletion is: allow to overwrite old datablocks.
This is done very fast (if dedup is not activated).

There is no need to modificate any actual data like in ESXi.
 
Back
Top