You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
995 B

  1. # symlinkify
  2. Due to the levels of indirection introduced by mergerfs and the
  3. underlying technology FUSE there can be varying levels of performance
  4. degradation. This feature will turn non-directories which are not
  5. writable into symlinks to the original file found by the `readlink`
  6. policy after the mtime and ctime are older than the timeout.
  7. **WARNING:** The current implementation has a known issue in which if
  8. the file is open and being used when the file is converted to a
  9. symlink then the application which has that file open will receive an
  10. error when using it. This is unlikely to occur in practice but is
  11. something to keep in mind.
  12. **WARNING:** Some backup solutions, such as CrashPlan, do not backup
  13. the target of a symlink. If using this feature it will be necessary to
  14. point any backup software to the original filesystems or configure the
  15. software to follow symlinks if such an option is
  16. available. Alternatively, create two mounts. One for backup and one
  17. for general consumption.