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
Because media/movies is not mounted, it decides to create the leaf children's snapshots recursively. (Which is an... interesting design decision, to not snapshot unmounted filesystems)
However, it fails to treat the parent (media) as non-recursive. This results in the creation (but not subsequent deletion) of snapshots in media/movies:
$ zfs list -t snapshot media/movies | wc -l
3989
If I may ask, why all this.. sophistication, especially given that it's (clearly) brittle and results in bugs? What's wrong with treating every dataset as independent and issuing a zfs snapshot per dataset?
The text was updated successfully, but these errors were encountered:
haasn
changed the title
Misclassification of parent vdev as 'recursive'
Misclassification of parent dataset as 'recursive'
Apr 27, 2021
Because
media/movies
is not mounted, it decides to create the leaf children's snapshots recursively. (Which is an... interesting design decision, to not snapshot unmounted filesystems)However, it fails to treat the parent (
media
) as non-recursive. This results in the creation (but not subsequent deletion) of snapshots inmedia/movies
:If I may ask, why all this.. sophistication, especially given that it's (clearly) brittle and results in bugs? What's wrong with treating every dataset as independent and issuing a
zfs snapshot
per dataset?The text was updated successfully, but these errors were encountered: