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
What happened:
After setting the juicefs file system to mount automatically on boot, every time you execute mount -a manually, there will be one more juicefs mount processes, corresponding to X umount
However, when NFS automounts are recorded in /etc/fstab, no matter how many times mount -a is executed, there is only 1 NFS mounted process, corresponding to 1 umount
What you expected to happen:
mount -a will not mount an existing juicefs file system repeatedly
How to reproduce it (as minimally and precisely as possible):
Set JuiceFS to mount automatically on boot, then repeat mount -a several times
Anything else we need to know?
Environment:
JuiceFS version (use juicefs --version) or Hadoop Java SDK version:
mount -a will compare the entry in fstab and mountinfo (/proc/self/mountinfo or /run/mount/utab), and ignore already mounted file systems. JuiceFS use META-URL as the first argument in fstab, and volume name as the FsName of FUSE, while both of them are considered to be SRC in mount commands. Since they are usually different, so whenever mount -a is executed it will always call juicefs mount.
There is no plan to change this behavior of JuiceFS (META-URL is not a good option to display as FsName because it's usually pretty long), so for now we may just leave this issue as it is.
What happened:
After setting the juicefs file system to mount automatically on boot, every time you execute mount -a manually, there will be one more juicefs mount processes, corresponding to X umount
However, when NFS automounts are recorded in /etc/fstab, no matter how many times mount -a is executed, there is only 1 NFS mounted process, corresponding to 1 umount
What you expected to happen:
mount -a will not mount an existing juicefs file system repeatedly
How to reproduce it (as minimally and precisely as possible):
Set JuiceFS to mount automatically on boot, then repeat mount -a several times
Anything else we need to know?
Environment:
juicefs --version
) or Hadoop Java SDK version:cat /etc/os-release
):uname -a
):Linux node75 5.15.0-33-generic #34-Ubuntu SMP Wed May 18 13:34:26 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
The text was updated successfully, but these errors were encountered: