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
The overlay filesystem imposes some limitations, for example, it has undefined behavior if the files in lowerdirs change while it is mounted.
The suggested feature is to give users an option to disable copy-on-write so that a straightforward recursive copy of the base directory is performed instead
The text was updated successfully, but these errors were encountered:
Possible implementation that would be consistent with the mountpoint-dir-is-a-mount-point invariant (which the plugin needs do detect non-cleanly unmounted volumes, e.g., in case of reboot):
for a volatile no-COW volume, mount tmpfs onto mountpoint/
for a non-volatile no-COW volume, do a bind mount of mountpoint/ onto itself
The
overlay
filesystem imposes some limitations, for example, it has undefined behavior if the files inlowerdir
s change while it is mounted.The suggested feature is to give users an option to disable copy-on-write so that a straightforward recursive copy of the base directory is performed instead
The text was updated successfully, but these errors were encountered: