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.

1336 lines
98 KiB

11 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. % mergerfs(1) mergerfs user manual
  2. % Antonio SJ Musumeci <trapexit@spawn.link>
  3. % 2021-10-25
  4. # NAME
  5. mergerfs - a featureful union filesystem
  6. # SYNOPSIS
  7. mergerfs -o&lt;options&gt; &lt;branches&gt; &lt;mountpoint&gt;
  8. # DESCRIPTION
  9. **mergerfs** is a union filesystem geared towards simplifying storage and management of files across numerous commodity storage devices. It is similar to **mhddfs**, **unionfs**, and **aufs**.
  10. # FEATURES
  11. * Configurable behaviors / file placement
  12. * Ability to add or remove filesystems at will
  13. * Resistance to individual filesystem failure
  14. * Support for extended attributes (xattrs)
  15. * Support for file attributes (chattr)
  16. * Runtime configurable (via xattrs)
  17. * Works with heterogeneous filesystem types
  18. * Moving of file when filesystem runs out of space while writing
  19. * Ignore read-only filesystems when creating files
  20. * Turn read-only files into symlinks to underlying file
  21. * Hard link copy-on-write / CoW
  22. * Support for POSIX ACLs
  23. * Misc other things
  24. # HOW IT WORKS
  25. mergerfs logically merges multiple paths together. Think a union of sets. The file/s or directory/s acted on or presented through mergerfs are based on the policy chosen for that particular action. Read more about policies below.
  26. ```
  27. A + B = C
  28. /disk1 /disk2 /merged
  29. | | |
  30. +-- /dir1 +-- /dir1 +-- /dir1
  31. | | | | | |
  32. | +-- file1 | +-- file2 | +-- file1
  33. | | +-- file3 | +-- file2
  34. +-- /dir2 | | +-- file3
  35. | | +-- /dir3 |
  36. | +-- file4 | +-- /dir2
  37. | +-- file5 | |
  38. +-- file6 | +-- file4
  39. |
  40. +-- /dir3
  41. | |
  42. | +-- file5
  43. |
  44. +-- file6
  45. ```
  46. mergerfs does **NOT** support the copy-on-write (CoW) or whiteout behaviors found in **aufs** and **overlayfs**. You can **not** mount a read-only filesystem and write to it. However, mergerfs will ignore read-only drives when creating new files so you can mix read-write and read-only drives. It also does **NOT** split data across drives. It is not RAID0 / striping. It is simply a union of other filesystems.
  47. # TERMINOLOGY
  48. * branch: A base path used in the pool.
  49. * pool: The mergerfs mount. The union of the branches.
  50. * relative path: The path in the pool relative to the branch and mount.
  51. * function: A filesystem call (open, unlink, create, getattr, rmdir, etc.)
  52. * category: A collection of functions based on basic behavior (action, create, search).
  53. * policy: The algorithm used to select a file when performing a function.
  54. * path preservation: Aspect of some policies which includes checking the path for which a file would be created.
  55. # BASIC SETUP
  56. If you don't already know that you have a special use case then just start with one of the following option sets.
  57. #### You need `mmap` (used by rtorrent and many sqlite3 base software)
  58. `allow_other,use_ino,cache.files=partial,dropcacheonclose=true,category.create=mfs`
  59. #### You don't need `mmap`
  60. `allow_other,use_ino,cache.files=off,dropcacheonclose=true,category.create=mfs`
  61. See the mergerfs [wiki for real world deployments](https://github.com/trapexit/mergerfs/wiki/Real-World-Deployments) for comparisons / ideas.
  62. # OPTIONS
  63. These options are the same regardless you use them with the `mergerfs` commandline program, used in fstab, or in a config file.
  64. ### mount options
  65. * **config**: Path to a config file. Same arguments as below in key=val / ini style format.
  66. * **branches**: Colon delimited list of branches.
  67. * **allow_other**: A libfuse option which allows users besides the one which ran mergerfs to see the filesystem. This is required for most use-cases.
  68. * **minfreespace=SIZE**: The minimum space value used for creation policies. Can be overridden by branch specific option. Understands 'K', 'M', and 'G' to represent kilobyte, megabyte, and gigabyte respectively. (default: 4G)
  69. * **moveonenospc=BOOL|POLICY**: When enabled if a **write** fails with **ENOSPC** (no space left on device) or **EDQUOT** (disk quota exceeded) the policy selected will run to find a new location for the file. An attempt to move the file to that branch will occur (keeping all metadata possible) and if successful the original is unlinked and the write retried. (default: false, true = mfs)
  70. * **use_ino**: Causes mergerfs to supply file/directory inodes rather than libfuse. While not a default it is recommended it be enabled so that linked files share the same inode value.
  71. * **inodecalc=passthrough|path-hash|devino-hash|hybrid-hash**: Selects the inode calculation algorithm. (default: hybrid-hash)
  72. * **dropcacheonclose=BOOL**: When a file is requested to be closed call `posix_fadvise` on it first to instruct the kernel that we no longer need the data and it can drop its cache. Recommended when **cache.files=partial|full|auto-full** to limit double caching. (default: false)
  73. * **symlinkify=BOOL**: When enabled and a file is not writable and its mtime or ctime is older than **symlinkify_timeout** files will be reported as symlinks to the original files. Please read more below before using. (default: false)
  74. * **symlinkify_timeout=UINT**: Time to wait, in seconds, to activate the **symlinkify** behavior. (default: 3600)
  75. * **nullrw=BOOL**: Turns reads and writes into no-ops. The request will succeed but do nothing. Useful for benchmarking mergerfs. (default: false)
  76. * **ignorepponrename=BOOL**: Ignore path preserving on rename. Typically rename and link act differently depending on the policy of `create` (read below). Enabling this will cause rename and link to always use the non-path preserving behavior. This means files, when renamed or linked, will stay on the same drive. (default: false)
  77. * **security_capability=BOOL**: If false return ENOATTR when xattr security.capability is queried. (default: true)
  78. * **xattr=passthrough|noattr|nosys**: Runtime control of xattrs. Default is to passthrough xattr requests. 'noattr' will short circuit as if nothing exists. 'nosys' will respond with ENOSYS as if xattrs are not supported or disabled. (default: passthrough)
  79. * **link_cow=BOOL**: When enabled if a regular file is opened which has a link count > 1 it will copy the file to a temporary file and rename over the original. Breaking the link and providing a basic copy-on-write function similar to cow-shell. (default: false)
  80. * **statfs=base|full**: Controls how statfs works. 'base' means it will always use all branches in statfs calculations. 'full' is in effect path preserving and only includes drives where the path exists. (default: base)
  81. * **statfs_ignore=none|ro|nc**: 'ro' will cause statfs calculations to ignore available space for branches mounted or tagged as 'read-only' or 'no create'. 'nc' will ignore available space for branches tagged as 'no create'. (default: none)
  82. * **nfsopenhack=off|git|all**: A workaround for exporting mergerfs over NFS where there are issues with creating files for write while setting the mode to read-only. (default: off)
  83. * **follow-symlinks=never|directory|regular|all**: Turns symlinks into what they point to. (default: never)
  84. * **link-exdev=passthrough|rel-symlink|abs-base-symlink|abs-pool-symlink**: When a link fails with EXDEV optionally create a symlink to the file instead.
  85. * **rename-exdev=passthrough|rel-symlink|abs-symlink**: When a rename fails with EXDEV optionally move the file to a special directory and symlink to it.
  86. * **posix_acl=BOOL**: Enable POSIX ACL support (if supported by kernel and underlying filesystem). (default: false)
  87. * **async_read=BOOL**: Perform reads asynchronously. If disabled or unavailable the kernel will ensure there is at most one pending read request per file handle and will attempt to order requests by offset. (default: true)
  88. * **fuse_msg_size=UINT**: Set the max number of pages per FUSE message. Only available on Linux >= 4.20 and ignored otherwise. (min: 1; max: 256; default: 256)
  89. * **threads=INT**: Number of threads to use in multithreaded mode. When set to zero it will attempt to discover and use the number of logical cores. If the lookup fails it will fall back to using 4. If the thread count is set negative it will look up the number of cores then divide by the absolute value. ie. threads=-2 on an 8 core machine will result in 8 / 2 = 4 threads. There will always be at least 1 thread. NOTE: higher number of threads increases parallelism but usually decreases throughput. (default: 0)
  90. * **fsname=STR**: Sets the name of the filesystem as seen in **mount**, **df**, etc. Defaults to a list of the source paths concatenated together with the longest common prefix removed.
  91. * **func.FUNC=POLICY**: Sets the specific FUSE function's policy. See below for the list of value types. Example: **func.getattr=newest**
  92. * **category.action=POLICY**: Sets policy of all FUSE functions in the action category. (default: epall)
  93. * **category.create=POLICY**: Sets policy of all FUSE functions in the create category. (default: epmfs)
  94. * **category.search=POLICY**: Sets policy of all FUSE functions in the search category. (default: ff)
  95. * **cache.open=UINT**: 'open' policy cache timeout in seconds. (default: 0)
  96. * **cache.statfs=UINT**: 'statfs' cache timeout in seconds. (default: 0)
  97. * **cache.attr=UINT**: File attribute cache timeout in seconds. (default: 1)
  98. * **cache.entry=UINT**: File name lookup cache timeout in seconds. (default: 1)
  99. * **cache.negative_entry=UINT**: Negative file name lookup cache timeout in seconds. (default: 0)
  100. * **cache.files=libfuse|off|partial|full|auto-full**: File page caching mode (default: libfuse)
  101. * **cache.writeback=BOOL**: Enable kernel writeback caching (default: false)
  102. * **cache.symlinks=BOOL**: Cache symlinks (if supported by kernel) (default: false)
  103. * **cache.readdir=BOOL**: Cache readdir (if supported by kernel) (default: false)
  104. * **direct_io**: deprecated - Bypass page cache. Use `cache.files=off` instead. (default: false)
  105. * **kernel_cache**: deprecated - Do not invalidate data cache on file open. Use `cache.files=full` instead. (default: false)
  106. * **auto_cache**: deprecated - Invalidate data cache if file mtime or size change. Use `cache.files=auto-full` instead. (default: false)
  107. * **async_read**: deprecated - Perform reads asynchronously. Use `async_read=true` instead.
  108. * **sync_read**: deprecated - Perform reads synchronously. Use `async_read=false` instead.
  109. **NOTE:** Options are evaluated in the order listed so if the options are **func.rmdir=rand,category.action=ff** the **action** category setting will override the **rmdir** setting.
  110. #### Value Types
  111. * BOOL = 'true' | 'false'
  112. * INT = [MIN_INT,MAX_INT]
  113. * UINT = [0,MAX_INT]
  114. * SIZE = 'NNM'; NN = INT, M = 'K' | 'M' | 'G' | 'T'
  115. * STR = string
  116. * FUNC = filesystem function
  117. * CATEGORY = function category
  118. * POLICY = mergerfs function policy
  119. ### branches
  120. The 'branches' argument is a colon (':') delimited list of paths to be pooled together. It does not matter if the paths are on the same or different drives nor does it matter the filesystem (within reason). Used and available space will not be duplicated for paths on the same device and any features which aren't supported by the underlying filesystem (such as file attributes or extended attributes) will return the appropriate errors.
  121. Branches currently have two options which can be set. A type which impacts whether or not the branch is included in a policy calculation and a individual minfreespace value. The values are set by prepending an `=` at the end of a branch designation and using commas as delimiters. Example: /mnt/drive=RW,1234
  122. #### branch type
  123. * RW: (read/write) - Default behavior. Will be eligible in all policy categories.
  124. * RO: (read-only) - Will be excluded from `create` and `action` policies. Same as a read-only mounted filesystem would be (though faster to process).
  125. * NC: (no-create) - Will be excluded from `create` policies. You can't create on that branch but you can change or delete.
  126. #### minfreespace
  127. Same purpose as the global option but specific to the branch. If not set the global value is used.
  128. #### globbing
  129. To make it easier to include multiple branches mergerfs supports [globbing](http://linux.die.net/man/7/glob). **The globbing tokens MUST be escaped when using via the shell else the shell itself will apply the glob itself.**
  130. ```
  131. # mergerfs -o allow_other,use_ino /mnt/disk\*:/mnt/cdrom /media/drives
  132. ```
  133. The above line will use all mount points in /mnt prefixed with **disk** and the **cdrom**.
  134. To have the pool mounted at boot or otherwise accessible from related tools use **/etc/fstab**.
  135. ```
  136. # <file system> <mount point> <type> <options> <dump> <pass>
  137. /mnt/disk*:/mnt/cdrom /mnt/pool fuse.mergerfs allow_other,use_ino 0 0
  138. ```
  139. **NOTE:** the globbing is done at mount or when updated using the runtime API. If a new directory is added matching the glob after the fact it will not be automatically included.
  140. **NOTE:** for mounting via **fstab** to work you must have **mount.fuse** installed. For Ubuntu/Debian it is included in the **fuse** package.
  141. ### inodecalc
  142. Inodes (st_ino) are unique identifiers within a filesystem. Each mounted filesystem has device ID (st_dev) as well and together they can uniquely identify a file on the whole of the system. Entries on the same device with the same inode are in fact references to the same underlying file. It is a many to one relationship between names and an inode. Directories, however, do not have multiple links on most systems due to the complexity they add.
  143. FUSE allows the server (mergerfs) to set inode values but not device IDs. Creating an inode value is somewhat complex in mergerfs' case as files aren't really in its control. If a policy changes what directory or file is to be selected or something changes out of band it becomes unclear what value should be used. Most software does not to care what the values are but those that do often break if a value changes unexpectedly. The tool `find` will abort a directory walk if it sees a directory inode change. NFS will return stale handle errors if the inode changes out of band. File dedup tools will usually leverage device ids and inodes as a shortcut in searching for duplicate files and would resort to full file comparisons should it find different inode values.
  144. mergerfs offers multiple ways to calculate the inode in hopes of covering different usecases.
  145. * passthrough: Passes through the underlying inode value. Mostly intended for testing as using this does not address any of the problems mentioned above and could confuse file deduplication software as inodes from different filesystems can be the same.
  146. * path-hash: Hashes the relative path of the entry in question. The underlying file's values are completely ignored. This means the inode value will always be the same for that file path. This is useful when using NFS and you make changes out of band such as copy data between branches. This also means that entries that do point to the same file will not be recognizable via inodes. That **does not** mean hard links don't work. They will.
  147. * path-hash32: 32bit version of path-hash.
  148. * devino-hash: Hashes the device id and inode of the underlying entry. This won't prevent issues with NFS should the policy pick a different file or files move out of band but will present the same inode for underlying files that do too.
  149. * devino-hash32: 32bit version of devino-hash.
  150. * hybrid-hash: Performs `path-hash` on directories and `devino-hash` on other file types. Since directories can't have hard links the static value won't make a difference and the files will get values useful for finding duplicates. Probably the best to use if not using NFS. As such it is the default.
  151. * hybrid-hash32: 32bit version of hybrid-hash.
  152. 32bit versions are provided as there is some software which does not handle 64bit inodes well.
  153. While there is a risk of hash collision in tests of a couple million entries there were zero collisions. Unlike a typical filesystem FUSE filesystems can reuse inodes and not refer to the same entry. The internal identifier used to reference a file in FUSE is different from the inode value presented. The former is the `nodeid` and is actually a tuple of 2 64bit values: `nodeid` and `generation`. This tuple is not client facing. The inode that is presented to the client is passed through the kernel uninterpreted.
  154. From FUSE docs regarding `use_ino`:
  155. ```
  156. Honor the st_ino field in the functions getattr() and
  157. fill_dir(). This value is used to fill in the st_ino field
  158. in the stat(2), lstat(2), fstat(2) functions and the d_ino
  159. field in the readdir(2) function. The filesystem does not
  160. have to guarantee uniqueness, however some applications
  161. rely on this value being unique for the whole filesystem.
  162. Note that this does *not* affect the inode that libfuse
  163. and the kernel use internally (also called the "nodeid").
  164. ```
  165. In the future the `use_ino` option will probably be removed as this feature should replace the original libfuse inode calculation strategy. Currently you still need to use `use_ino` in order to enable `inodecalc`.
  166. ### fuse_msg_size
  167. FUSE applications communicate with the kernel over a special character device: `/dev/fuse`. A large portion of the overhead associated with FUSE is the cost of going back and forth from user space and kernel space over that device. Generally speaking the fewer trips needed the better the performance will be. Reducing the number of trips can be done a number of ways. Kernel level caching and increasing message sizes being two significant ones. When it comes to reads and writes if the message size is doubled the number of trips are approximately halved.
  168. In Linux 4.20 a new feature was added allowing the negotiation of the max message size. Since the size is in multiples of [pages](https://en.wikipedia.org/wiki/Page_(computer_memory)) the feature is called `max_pages`. There is a maximum `max_pages` value of 256 (1MiB) and minimum of 1 (4KiB). The default used by Linux >=4.20, and hardcoded value used before 4.20, is 32 (128KiB). In mergerfs its referred to as `fuse_msg_size` to make it clear what it impacts and provide some abstraction.
  169. Since there should be no downsides to increasing `fuse_msg_size` / `max_pages`, outside a minor bump in RAM usage due to larger message buffers, mergerfs defaults the value to 256. On kernels before 4.20 the value has no effect. The reason the value is configurable is to enable experimentation and benchmarking. See the BENCHMARKING section for examples.
  170. ### follow-symlinks
  171. This feature, when enabled, will cause symlinks to be interpreted by mergerfs as their target (depending on the mode).
  172. When there is a getattr/stat request for a file mergerfs will check if the file is a symlink and depending on the `follow-symlinks` setting will replace the information about the symlink with that of that which it points to.
  173. When unlink'ing or rmdir'ing the followed symlink it will remove the symlink itself and not that which it points to.
  174. * never: Behave as normal. Symlinks are treated as such.
  175. * directory: Resolve symlinks only which point to directories.
  176. * regular: Resolve symlinks only which point to regular files.
  177. * all: Resolve all symlinks to that which they point to.
  178. Symlinks which do not point to anything are left as is.
  179. WARNING: This feature works but there might be edge cases yet found. If you find any odd behaviors please file a ticket on [github](https://github.com/trapexit/mergerfs/issues).
  180. ### link-exdev
  181. If using path preservation and a `link` fails with EXDEV make a call to `symlink` where the `target` is the `oldlink` and the `linkpath` is the `newpath`. The `target` value is determined by the value of `link-exdev`.
  182. * passthrough: Return EXDEV as normal.
  183. * rel-symlink: A relative path from the `newpath`.
  184. * abs-base-symlink: A absolute value using the underlying branch.
  185. * abs-pool-symlink: A absolute value using the mergerfs mount point.
  186. NOTE: It is possible that some applications check the file they link. In those cases it is possible it will error or complain.
  187. ### rename-exdev
  188. If using path preservation and a `rename` fails with EXDEV:
  189. 1. Move file from **/branch/a/b/c** to **/branch/.mergerfs_rename_exdev/a/b/c**.
  190. 2. symlink the rename's `newpath` to the moved file.
  191. The `target` value is determined by the value of `rename-exdev`.
  192. * passthrough: Return EXDEV as normal.
  193. * rel-symlink: A relative path from the `newpath`.
  194. * abs-symlink: A absolute value using the mergerfs mount point.
  195. NOTE: It is possible that some applications check the file they rename. In those cases it is possible it will error or complain.
  196. NOTE: The reason `abs-symlink` is not split into two like `link-exdev` is due to the complexities in managing absolute base symlinks when multiple `oldpaths` exist.
  197. ### symlinkify
  198. Due to the levels of indirection introduced by mergerfs and the underlying technology FUSE there can be varying levels of performance degradation. This feature will turn non-directories which are not writable into symlinks to the original file found by the `readlink` policy after the mtime and ctime are older than the timeout.
  199. **WARNING:** The current implementation has a known issue in which if the file is open and being used when the file is converted to a symlink then the application which has that file open will receive an error when using it. This is unlikely to occur in practice but is something to keep in mind.
  200. **WARNING:** Some backup solutions, such as CrashPlan, do not backup the target of a symlink. If using this feature it will be necessary to point any backup software to the original drives or configure the software to follow symlinks if such an option is available. Alternatively create two mounts. One for backup and one for general consumption.
  201. ### nullrw
  202. Due to how FUSE works there is an overhead to all requests made to a FUSE filesystem that wouldn't exist for an in kernel one. Meaning that even a simple passthrough will have some slowdown. However, generally the overhead is minimal in comparison to the cost of the underlying I/O. By disabling the underlying I/O we can test the theoretical performance boundaries.
  203. By enabling `nullrw` mergerfs will work as it always does **except** that all reads and writes will be no-ops. A write will succeed (the size of the write will be returned as if it were successful) but mergerfs does nothing with the data it was given. Similarly a read will return the size requested but won't touch the buffer.
  204. See the BENCHMARKING section for suggestions on how to test.
  205. ### xattr
  206. Runtime extended attribute support can be managed via the `xattr` option. By default it will passthrough any xattr calls. Given xattr support is rarely used and can have significant performance implications mergerfs allows it to be disabled at runtime. The performance problems mostly comes when file caching is enabled. The kernel will send a `getxattr` for `security.capability` *before every single write*. It doesn't cache the responses to any `getxattr`. This might be addressed in the future but for now mergerfs can really only offer the following workarounds.
  207. `noattr` will cause mergerfs to short circuit all xattr calls and return ENOATTR where appropriate. mergerfs still gets all the requests but they will not be forwarded on to the underlying filesystems. The runtime control will still function in this mode.
  208. `nosys` will cause mergerfs to return ENOSYS for any xattr call. The difference with `noattr` is that the kernel will cache this fact and itself short circuit future calls. This is more efficient than `noattr` but will cause mergerfs' runtime control via the hidden file to stop working.
  209. ### nfsopenhack
  210. NFS is not fully POSIX compliant and historically certain behaviors, such as opening files with O_EXCL, are not or not well supported. When mergerfs (or any FUSE filesystem) is exported over NFS some of these issues come up due to how NFS and FUSE interact.
  211. This hack addresses the issue where the creation of a file with a read-only mode but with a read/write or write only flag. Normally this is perfectly valid but NFS chops the one open call into multiple calls. Exactly how it is translated depends on the configuration and versions of the NFS server and clients but it results in a permission error because a normal user is not allowed to open a read-only file as writable.
  212. Even though it's a more niche situation this hack breaks normal security and behavior and as such is `off` by default. If set to `git` it will only perform the hack when the path in question includes `/.git/`. `all` will result it it applying anytime a readonly file which is empty is opened for writing.
  213. # FUNCTIONS, CATEGORIES and POLICIES
  214. The POSIX filesystem API is made up of a number of functions. **creat**, **stat**, **chown**, etc. For ease of configuration in mergerfs most of the core functions are grouped into 3 categories: **action**, **create**, and **search**. These functions and categories can be assigned a policy which dictates which branch is chosen when performing that function.
  215. Some functions, listed in the category `N/A` below, can not be assigned the normal policies. These functions work with file handles, rather than file paths, which were created by `open` or `create`. That said many times the current FUSE kernel driver will not always provide the file handle when a client calls `fgetattr`, `fchown`, `fchmod`, `futimens`, `ftruncate`, etc. This means it will call the regular, path based, versions. `readdir` has no real need for a policy given the purpose is merely to return a list of entries in a directory. `statfs`'s behavior can be modified via other options.
  216. When using policies which are based on a branch's available space the base path provided is used. Not the full path to the file in question. Meaning that mounts in the branch won't be considered in the space calculations. The reason is that it doesn't really work for non-path preserving policies and can lead to non-obvious behaviors.
  217. NOTE: While any policy can be assigned to a function or category though some may not be very useful in practice. For instance: **rand** (random) may be useful for file creation (create) but could lead to very odd behavior if used for `chmod` if there were more than one copy of the file.
  218. ### Functions and their Category classifications
  219. | Category | FUSE Functions |
  220. |----------|-------------------------------------------------------------------------------------|
  221. | action | chmod, chown, link, removexattr, rename, rmdir, setxattr, truncate, unlink, utimens |
  222. | create | create, mkdir, mknod, symlink |
  223. | search | access, getattr, getxattr, ioctl (directories), listxattr, open, readlink |
  224. | N/A | fchmod, fchown, futimens, ftruncate, fallocate, fgetattr, fsync, ioctl (files), read, readdir, release, statfs, write, copy_file_range |
  225. In cases where something may be searched for (such as a path to clone) **getattr** will usually be used.
  226. ### Policies
  227. A policy is the algorithm used to choose a branch or branches for a function to work on. Think of them as ways to filter and sort branches.
  228. Any function in the `create` category will clone the relative path if needed. Some other functions (`rename`,`link`,`ioctl`) have special requirements or behaviors which you can read more about below.
  229. #### Filtering
  230. Policies basically search branches and create a list of files / paths for functions to work on. The policy is responsible for filtering and sorting the branches. Filters include **minfreespace**, whether or not a branch is mounted read-only, and the branch tagging (RO,NC,RW). These filters are applied across all policies unless otherwise noted.
  231. * No **search** function policies filter.
  232. * All **action** function policies filter out branches which are mounted **read-only** or tagged as **RO (read-only)**.
  233. * All **create** function policies filter out branches which are mounted **read-only**, tagged **RO (read-only)** or **NC (no create)**, or has available space less than `minfreespace`.
  234. Policies may have their own additional filtering such as those that require existing paths to be present.
  235. If all branches are filtered an error will be returned. Typically **EROFS** (read-only filesystem) or **ENOSPC** (no space left on device) depending on the most recent reason for filtering a branch. **ENOENT** will be returned if no elegible branch is found.
  236. #### Path Preservation
  237. Policies, as described below, are of two basic types. `path preserving` and `non-path preserving`.
  238. All policies which start with `ep` (**epff**, **eplfs**, **eplus**, **epmfs**, **eprand**) are `path preserving`. `ep` stands for `existing path`.
  239. A path preserving policy will only consider drives where the relative path being accessed already exists.
  240. When using non-path preserving policies paths will be cloned to target drives as necessary.
  241. With the `msp` or `most shared path` policies they are defined as `path preserving` for the purpose of controlling `link` and `rename`'s behaviors since `ignorepponrename` is available to disable that behavior. In mergerfs v3.0 the path preserving behavior of rename and link will likely be separated from the policy all together.
  242. #### Policy descriptions
  243. A policy's behavior differs, as mentioned above, based on the function it is used with. Sometimes it really might not make sense to even offer certain policies because they are literally the same as others but it makes things a bit more uniform. In mergerfs 3.0 this might change.
  244. | Policy | Description |
  245. |------------------|------------------------------------------------------------|
  246. | all | Search: Same as **epall**. Action: Same as **epall**. Create: for **mkdir**, **mknod**, and **symlink** it will apply to all branches. **create** works like **ff**. |
  247. | epall (existing path, all) | Search: Same as **epff** (but more expensive because it doesn't stop after finding a valid branch). Action: apply to all found. Create: for **mkdir**, **mknod**, and **symlink** it will apply to all found. **create** works like **epff** (but more expensive because it doesn't stop after finding a valid branch). |
  248. | epff (existing path, first found) | Given the order of the branches, as defined at mount time or configured at runtime, act on the first one found where the relative path exists. |
  249. | eplfs (existing path, least free space) | Of all the branches on which the relative path exists choose the drive with the least free space. |
  250. | eplus (existing path, least used space) | Of all the branches on which the relative path exists choose the drive with the least used space. |
  251. | epmfs (existing path, most free space) | Of all the branches on which the relative path exists choose the drive with the most free space. |
  252. | eppfrd (existing path, percentage free random distribution) | Like **pfrd** but limited to existing paths. |
  253. | eprand (existing path, random) | Calls **epall** and then randomizes. Returns 1. |
  254. | erofs | Exclusively return **-1** with **errno** set to **EROFS** (read-only filesystem). |
  255. | ff (first found) | Search: Same as **epff**. Action: Same as **epff**. Create: Given the order of the drives, as defined at mount time or configured at runtime, act on the first one found. |
  256. | lfs (least free space) | Search: Same as **eplfs**. Action: Same as **eplfs**. Create: Pick the drive with the least available free space. |
  257. | lus (least used space) | Search: Same as **eplus**. Action: Same as **eplus**. Create: Pick the drive with the least used space. |
  258. | mfs (most free space) | Search: Same as **epmfs**. Action: Same as **epmfs**. Create: Pick the drive with the most available free space. |
  259. | msplfs (most shared path, least free space) | Search: Same as **eplfs**. Action: Same as **eplfs**. Create: like **eplfs** but walk back the path if it fails to find a branch at that level. |
  260. | msplus (most shared path, least used space) | Search: Same as **eplus**. Action: Same as **eplus**. Create: like **eplus** but walk back the path if it fails to find a branch at that level. |
  261. | mspmfs (most shared path, most free space) | Search: Same as **epmfs**. Action: Same as **epmfs**. Create: like **epmfs** but walk back the path if it fails to find a branch at that level. |
  262. | msppfrd (most shared path, percentage free random distribution) | Search: Same as **eppfrd**. Action: Same as **eppfrd**. Create: Like **eppfrd** but will walk back the path if it fails to find a branch at that level. |
  263. | newest | Pick the file / directory with the largest mtime. |
  264. | pfrd (percentage free random distribution) | Search: Same as **eppfrd**. Action: Same as **eppfrd**. Create: Chooses a branch at random with the likelihood of selection based on a branch's available space relative to the total. |
  265. | rand (random) | Calls **all** and then randomizes. Returns 1. |
  266. **NOTE:** If you are using an underlying filesystem that reserves blocks such as ext2, ext3, or ext4 be aware that mergerfs respects the reservation by using `f_bavail` (number of free blocks for unprivileged users) rather than `f_bfree` (number of free blocks) in policy calculations. **df** does NOT use `f_bavail`, it uses `f_bfree`, so direct comparisons between **df** output and mergerfs' policies is not appropriate.
  267. #### Defaults ####
  268. | Category | Policy |
  269. |----------|--------|
  270. | action | epall |
  271. | create | epmfs |
  272. | search | ff |
  273. #### ioctl
  274. When `ioctl` is used with an open file then it will use the file handle which was created at the original `open` call. However, when using `ioctl` with a directory mergerfs will use the `open` policy to find the directory to act on.
  275. #### rename & link ####
  276. **NOTE:** If you're receiving errors from software when files are moved / renamed / linked then you should consider changing the create policy to one which is **not** path preserving, enabling `ignorepponrename`, or contacting the author of the offending software and requesting that `EXDEV` (cross device / improper link) be properly handled.
  277. `rename` and `link` are tricky functions in a union filesystem. `rename` only works within a single filesystem or device. If a rename can't be done atomically due to the source and destination paths existing on different mount points it will return **-1** with **errno = EXDEV** (cross device / improper link). So if a `rename`'s source and target are on different drives within the pool it creates an issue.
  278. Originally mergerfs would return EXDEV whenever a rename was requested which was cross directory in any way. This made the code simple and was technically compliant with POSIX requirements. However, many applications fail to handle EXDEV at all and treat it as a normal error or otherwise handle it poorly. Such apps include: gvfsd-fuse v1.20.3 and prior, Finder / CIFS/SMB client in Apple OSX 10.9+, NZBGet, Samba's recycling bin feature.
  279. As a result a compromise was made in order to get most software to work while still obeying mergerfs' policies. Below is the basic logic.
  280. * If using a **create** policy which tries to preserve directory paths (epff,eplfs,eplus,epmfs)
  281. * Using the **rename** policy get the list of files to rename
  282. * For each file attempt rename:
  283. * If failure with ENOENT (no such file or directory) run **create** policy
  284. * If create policy returns the same drive as currently evaluating then clone the path
  285. * Re-attempt rename
  286. * If **any** of the renames succeed the higher level rename is considered a success
  287. * If **no** renames succeed the first error encountered will be returned
  288. * On success:
  289. * Remove the target from all drives with no source file
  290. * Remove the source from all drives which failed to rename
  291. * If using a **create** policy which does **not** try to preserve directory paths
  292. * Using the **rename** policy get the list of files to rename
  293. * Using the **getattr** policy get the target path
  294. * For each file attempt rename:
  295. * If the source drive != target drive:
  296. * Clone target path from target drive to source drive
  297. * Rename
  298. * If **any** of the renames succeed the higher level rename is considered a success
  299. * If **no** renames succeed the first error encountered will be returned
  300. * On success:
  301. * Remove the target from all drives with no source file
  302. * Remove the source from all drives which failed to rename
  303. The the removals are subject to normal entitlement checks.
  304. The above behavior will help minimize the likelihood of EXDEV being returned but it will still be possible.
  305. **link** uses the same strategy but without the removals.
  306. #### readdir ####
  307. [readdir](http://linux.die.net/man/3/readdir) is different from all other filesystem functions. While it could have its own set of policies to tweak its behavior at this time it provides a simple union of files and directories found. Remember that any action or information queried about these files and directories come from the respective function. For instance: an **ls** is a **readdir** and for each file/directory returned **getattr** is called. Meaning the policy of **getattr** is responsible for choosing the file/directory which is the source of the metadata you see in an **ls**.
  308. #### statfs / statvfs ####
  309. [statvfs](http://linux.die.net/man/2/statvfs) normalizes the source drives based on the fragment size and sums the number of adjusted blocks and inodes. This means you will see the combined space of all sources. Total, used, and free. The sources however are dedupped based on the drive so multiple sources on the same drive will not result in double counting its space. Filesystems mounted further down the tree of the branch will not be included when checking the mount's stats.
  310. The options `statfs` and `statfs_ignore` can be used to modify `statfs` behavior.
  311. # ERROR HANDLING
  312. POSIX filesystem functions offer a single return code meaning that there is some complication regarding the handling of multiple branches as mergerfs does. It tries to handle errors in a way that would generally return meaningful values for that particular function.
  313. ### chmod, chown, removexattr, setxattr, truncate, utimens
  314. 1) if no error: return 0 (success)
  315. 2) if no successes: return first error
  316. 3) if one of the files acted on was the same as the related search function: return its value
  317. 4) return 0 (success)
  318. While doing this increases the complexity and cost of error handling, particularly step 3, this provides probably the most reasonable return value.
  319. ### unlink, rmdir
  320. 1) if no errors: return 0 (success)
  321. 2) return first error
  322. Older version of mergerfs would return success if any success occurred but for unlink and rmdir there are downstream assumptions that, while not impossible to occur, can confuse some software.
  323. ### others
  324. For search functions there is always a single thing acted on and as such whatever return value that comes from the single function call is returned.
  325. For create functions `mkdir`, `mknod`, and `symlink` which don't return a file descriptor and therefore can have `all` or `epall` policies it will return success if any of the calls succeed and an error otherwise.
  326. # BUILD / UPDATE
  327. **NOTE:** Prebuilt packages can be found at and recommended for most users: https://github.com/trapexit/mergerfs/releases
  328. **NOTE:** Only tagged releases are supported. `master` and other branches should be considered works in progress.
  329. First get the code from [github](https://github.com/trapexit/mergerfs).
  330. ```
  331. $ git clone https://github.com/trapexit/mergerfs.git
  332. $ # or
  333. $ wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs-<ver>.tar.gz
  334. ```
  335. #### Debian / Ubuntu
  336. ```
  337. $ cd mergerfs
  338. $ sudo tools/install-build-pkgs
  339. $ make deb
  340. $ sudo dpkg -i ../mergerfs_<version>_<arch>.deb
  341. ```
  342. #### RHEL / CentOS /Fedora
  343. ```
  344. $ su -
  345. # cd mergerfs
  346. # tools/install-build-pkgs
  347. # make rpm
  348. # rpm -i rpmbuild/RPMS/<arch>/mergerfs-<version>.<arch>.rpm
  349. ```
  350. #### Generically
  351. Have git, g++, make, python installed.
  352. ```
  353. $ cd mergerfs
  354. $ make
  355. $ sudo make install
  356. ```
  357. #### Build options
  358. ```
  359. $ make help
  360. usage: make
  361. make USE_XATTR=0 - build program without xattrs functionality
  362. make STATIC=1 - build static binary
  363. make LTO=1 - build with link time optimization
  364. ```
  365. # UPGRADE
  366. mergerfs can be upgraded live by mounting on top of the previous instance. Simply install the new version of mergerfs and follow the instructions below.
  367. Add `nonempty` to your mergerfs option list and call mergerfs again or if using `/etc/fstab` call for it to mount again. Existing open files and such will continue to work fine though they won't see runtime changes since any such change would be the new mount. If you plan on changing settings with the new mount you should / could apply those before mounting the new version.
  368. ```
  369. $ sudo mount /mnt/mergerfs
  370. $ mount | grep mergerfs
  371. media on /mnt/mergerfs type fuse.mergerfs (rw,relatime,user_id=0,group_id=0,default_permissions,allow_other)
  372. media on /mnt/mergerfs type fuse.mergerfs (rw,relatime,user_id=0,group_id=0,default_permissions,allow_other)
  373. ```
  374. A problem with this approach is that the underlying instance will continue to run even if the software using it stop or are restarted. To work around this you can use a "lazy umount". Before mounting over top the mount point with the new instance of mergerfs issue: `umount -l <mergerfs_mountpoint>`.
  375. # RUNTIME CONFIG
  376. #### .mergerfs pseudo file ####
  377. ```
  378. <mountpoint>/.mergerfs
  379. ```
  380. There is a pseudo file available at the mount point which allows for the runtime modification of certain **mergerfs** options. The file will not show up in **readdir** but can be **stat**'ed and manipulated via [{list,get,set}xattrs](http://linux.die.net/man/2/listxattr) calls.
  381. Any changes made at runtime are **not** persisted. If you wish for values to persist they must be included as options wherever you configure the mounting of mergerfs (/etc/fstab).
  382. ##### Keys #####
  383. Use `getfattr -d /mountpoint/.mergerfs` or `xattr -l /mountpoint/.mergerfs` to see all supported keys. Some are informational and therefore read-only. `setxattr` will return EINVAL (invalid argument) on read-only keys.
  384. ##### Values #####
  385. Same as the command line.
  386. ###### user.mergerfs.branches ######
  387. Used to query or modify the list of branches. When modifying there are several shortcuts to easy manipulation of the list.
  388. | Value | Description |
  389. |--------------|-------------|
  390. | [list] | set |
  391. | +<[list] | prepend |
  392. | +>[list] | append |
  393. | -[list] | remove all values provided |
  394. | -< | remove first in list |
  395. | -> | remove last in list |
  396. `xattr -w user.mergerfs.branches +</mnt/drive3 /mnt/pool/.mergerfs`
  397. The `=NC`, `=RO`, `=RW` syntax works just as on the command line.
  398. ##### Example #####
  399. ```
  400. [trapexit:/mnt/mergerfs] $ getfattr -d .mergerfs
  401. user.mergerfs.branches="/mnt/a=RW:/mnt/b=RW"
  402. user.mergerfs.minfreespace="4294967295"
  403. user.mergerfs.moveonenospc="false"
  404. ...
  405. [trapexit:/mnt/mergerfs] $ getfattr -n user.mergerfs.category.search .mergerfs
  406. user.mergerfs.category.search="ff"
  407. [trapexit:/mnt/mergerfs] $ setfattr -n user.mergerfs.category.search -v newest .mergerfs
  408. [trapexit:/mnt/mergerfs] $ getfattr -n user.mergerfs.category.search .mergerfs
  409. user.mergerfs.category.search="newest"
  410. ```
  411. #### file / directory xattrs ####
  412. While they won't show up when using `getfattr` **mergerfs** offers a number of special xattrs to query information about the files served. To access the values you will need to issue a [getxattr](http://linux.die.net/man/2/getxattr) for one of the following:
  413. * **user.mergerfs.basepath**: the base mount point for the file given the current getattr policy
  414. * **user.mergerfs.relpath**: the relative path of the file from the perspective of the mount point
  415. * **user.mergerfs.fullpath**: the full path of the original file given the getattr policy
  416. * **user.mergerfs.allpaths**: a NUL ('\0') separated list of full paths to all files found
  417. # TOOLING
  418. * https://github.com/trapexit/mergerfs-tools
  419. * mergerfs.ctl: A tool to make it easier to query and configure mergerfs at runtime
  420. * mergerfs.fsck: Provides permissions and ownership auditing and the ability to fix them
  421. * mergerfs.dedup: Will help identify and optionally remove duplicate files
  422. * mergerfs.dup: Ensure there are at least N copies of a file across the pool
  423. * mergerfs.balance: Rebalance files across drives by moving them from the most filled to the least filled
  424. * mergerfs.consolidate: move files within a single mergerfs directory to the drive with most free space
  425. * https://github.com/trapexit/scorch
  426. * scorch: A tool to help discover silent corruption of files and keep track of files
  427. * https://github.com/trapexit/bbf
  428. * bbf (bad block finder): a tool to scan for and 'fix' hard drive bad blocks and find the files using those blocks
  429. # CACHING
  430. #### page caching
  431. https://en.wikipedia.org/wiki/Page_cache
  432. tl;dr:
  433. * cache.files=off: Disables page caching. Underlying files cached, mergerfs files are not.
  434. * cache.files=partial: Enables page caching. Underlying files cached, mergerfs files cached while open.
  435. * cache.files=full: Enables page caching. Underlying files cached, mergerfs files cached across opens.
  436. * cache.files=auto-full: Enables page caching. Underlying files cached, mergerfs files cached across opens if mtime and size are unchanged since previous open.
  437. * cache.files=libfuse: follow traditional libfuse `direct_io`, `kernel_cache`, and `auto_cache` arguments.
  438. FUSE, which mergerfs uses, offers a number of page caching modes. mergerfs tries to simplify their use via the `cache.files` option. It can and should replace usage of `direct_io`, `kernel_cache`, and `auto_cache`.
  439. Due to mergerfs using FUSE and therefore being a userland process proxying existing filesystems the kernel will double cache the content being read and written through mergerfs. Once from the underlying filesystem and once from mergerfs (it sees them as two separate entities). Using `cache.files=off` will keep the double caching from happening by disabling caching of mergerfs but this has the side effect that *all* read and write calls will be passed to mergerfs which may be slower than enabling caching, you lose shared `mmap` support which can affect apps such as rtorrent, and no read-ahead will take place. The kernel will still cache the underlying filesystem data but that only helps so much given mergerfs will still process all requests.
  440. If you do enable file page caching, `cache.files=partial|full|auto-full`, you should also enable `dropcacheonclose` which will cause mergerfs to instruct the kernel to flush the underlying file's page cache when the file is closed. This behavior is the same as the rsync fadvise / drop cache patch and Feh's nocache project.
  441. If most files are read once through and closed (like media) it is best to enable `dropcacheonclose` regardless of caching mode in order to minimize buffer bloat.
  442. It is difficult to balance memory usage, cache bloat & duplication, and performance. Ideally mergerfs would be able to disable caching for the files it reads/writes but allow page caching for itself. That would limit the FUSE overhead. However, there isn't a good way to achieve this. It would need to open all files with O_DIRECT which places limitations on the what underlying filesystems would be supported and complicates the code.
  443. kernel documentation: https://www.kernel.org/doc/Documentation/filesystems/fuse-io.txt
  444. #### entry & attribute caching
  445. Given the relatively high cost of FUSE due to the kernel <-> userspace round trips there are kernel side caches for file entries and attributes. The entry cache limits the `lookup` calls to mergerfs which ask if a file exists. The attribute cache limits the need to make `getattr` calls to mergerfs which provide file attributes (mode, size, type, etc.). As with the page cache these should not be used if the underlying filesystems are being manipulated at the same time as it could lead to odd behavior or data corruption. The options for setting these are `cache.entry` and `cache.negative_entry` for the entry cache and `cache.attr` for the attributes cache. `cache.negative_entry` refers to the timeout for negative responses to lookups (non-existent files).
  446. #### writeback caching
  447. When `cache.files` is enabled the default is for it to perform writethrough caching. This behavior won't help improve performance as each write still goes one for one through the filesystem. By enabling the FUSE writeback cache small writes may be aggregated by the kernel and then sent to mergerfs as one larger request. This can greatly improve the throughput for apps which write to files inefficiently. The amount the kernel can aggregate is limited by the size of a FUSE message. Read the `fuse_msg_size` section for more details.
  448. There is a small side effect as a result of enabling writeback caching. Underlying files won't ever be opened with O_APPEND or O_WRONLY. The former because the kernel then manages append mode and the latter because the kernel may request file data from mergerfs to populate the write cache. The O_APPEND change means that if a file is changed outside of mergerfs it could lead to corruption as the kernel won't know the end of the file has changed. That said any time you use caching you should keep from using the same file outside of mergerfs at the same time.
  449. Note that if an application is properly sizing writes then writeback caching will have little or no effect. It will only help with writes of sizes below the FUSE message size (128K on older kernels, 1M on newer).
  450. #### policy caching
  451. Policies are run every time a function (with a policy as mentioned above) is called. These policies can be expensive depending on mergerfs' setup and client usage patterns. Generally we wouldn't want to cache policy results because it may result in stale responses if the underlying drives are used directly.
  452. The `open` policy cache will cache the result of an `open` policy for a particular input for `cache.open` seconds or until the file is unlinked. Each file close (release) will randomly chose to clean up the cache of expired entries.
  453. This cache is really only useful in cases where you have a large number of branches and `open` is called on the same files repeatedly (like **Transmission** which opens and closes a file on every read/write presumably to keep file handle usage low).
  454. #### statfs caching
  455. Of the syscalls used by mergerfs in policies the `statfs` / `statvfs` call is perhaps the most expensive. It's used to find out the available space of a drive and whether it is mounted read-only. Depending on the setup and usage pattern these queries can be relatively costly. When `cache.statfs` is enabled all calls to `statfs` by a policy will be cached for the number of seconds its set to.
  456. Example: If the create policy is `mfs` and the timeout is 60 then for that 60 seconds the same drive will be returned as the target for creates because the available space won't be updated for that time.
  457. #### symlink caching
  458. As of version 4.20 Linux supports symlink caching. Significant performance increases can be had in workloads which use a lot of symlinks. Setting `cache.symlinks=true` will result in requesting symlink caching from the kernel only if supported. As a result its safe to enable it on systems prior to 4.20. That said it is disabled by default for now. You can see if caching is enabled by querying the xattr `user.mergerfs.cache.symlinks` but given it must be requested at startup you can not change it at runtime.
  459. #### readdir caching
  460. As of version 4.20 Linux supports readdir caching. This can have a significant impact on directory traversal. Especially when combined with entry (`cache.entry`) and attribute (`cache.attr`) caching. Setting `cache.readdir=true` will result in requesting readdir caching from the kernel on each `opendir`. If the kernel doesn't support readdir caching setting the option to `true` has no effect. This option is configurable at runtime via xattr `user.mergerfs.cache.readdir`.
  461. #### tiered caching
  462. Some storage technologies support what some call "tiered" caching. The placing of usually smaller, faster storage as a transparent cache to larger, slower storage. NVMe, SSD, Optane in front of traditional HDDs for instance.
  463. MergerFS does not natively support any sort of tiered caching. Most users have no use for such a feature and its inclusion would complicate the code. However, there are a few situations where a cache drive could help with a typical mergerfs setup.
  464. 1. Fast network, slow drives, many readers: You've a 10+Gbps network with many readers and your regular drives can't keep up.
  465. 2. Fast network, slow drives, small'ish bursty writes: You have a 10+Gbps network and wish to transfer amounts of data less than your cache drive but wish to do so quickly.
  466. With #1 its arguable if you should be using mergerfs at all. RAID would probably be the better solution. If you're going to use mergerfs there are other tactics that may help: spreading the data across drives (see the mergerfs.dup tool) and setting `func.open=rand`, using `symlinkify`, or using dm-cache or a similar technology to add tiered cache to the underlying device.
  467. With #2 one could use dm-cache as well but there is another solution which requires only mergerfs and a cronjob.
  468. 1. Create 2 mergerfs pools. One which includes just the slow drives and one which has both the fast drives (SSD,NVME,etc.) and slow drives.
  469. 2. The 'cache' pool should have the cache drives listed first.
  470. 3. The best `create` policies to use for the 'cache' pool would probably be `ff`, `epff`, `lfs`, or `eplfs`. The latter two under the assumption that the cache drive(s) are far smaller than the backing drives. If using path preserving policies remember that you'll need to manually create the core directories of those paths you wish to be cached. Be sure the permissions are in sync. Use `mergerfs.fsck` to check / correct them. You could also tag the slow drives as `=NC` though that'd mean if the cache drives fill you'd get "out of space" errors.
  471. 4. Enable `moveonenospc` and set `minfreespace` appropriately. To make sure there is enough room on the "slow" pool you might want to set `minfreespace` to at least as large as the size of the largest cache drive if not larger. This way in the worst case the whole of the cache drive(s) can be moved to the other drives.
  472. 5. Set your programs to use the cache pool.
  473. 6. Save one of the below scripts or create you're own.
  474. 7. Use `cron` (as root) to schedule the command at whatever frequency is appropriate for your workflow.
  475. ##### time based expiring
  476. Move files from cache to backing pool based only on the last time the file was accessed. Replace `-atime` with `-amin` if you want minutes rather than days. May want to use the `fadvise` / `--drop-cache` version of rsync or run rsync with the tool "nocache".
  477. *NOTE:* The arguments to these scripts include the cache **drive**. Not the pool with the cache drive. You could have data loss if the source is the cache pool.
  478. ```
  479. #!/bin/bash
  480. if [ $# != 3 ]; then
  481. echo "usage: $0 <cache-drive> <backing-pool> <days-old>"
  482. exit 1
  483. fi
  484. CACHE="${1}"
  485. BACKING="${2}"
  486. N=${3}
  487. find "${CACHE}" -type f -atime +${N} -printf '%P\n' | \
  488. rsync --files-from=- -axqHAXWES --preallocate --remove-source-files "${CACHE}/" "${BACKING}/"
  489. ```
  490. ##### percentage full expiring
  491. Move the oldest file from the cache to the backing pool. Continue till below percentage threshold.
  492. *NOTE:* The arguments to these scripts include the cache **drive**. Not the pool with the cache drive. You could have data loss if the source is the cache pool.
  493. ```
  494. #!/bin/bash
  495. if [ $# != 3 ]; then
  496. echo "usage: $0 <cache-drive> <backing-pool> <percentage>"
  497. exit 1
  498. fi
  499. CACHE="${1}"
  500. BACKING="${2}"
  501. PERCENTAGE=${3}
  502. set -o errexit
  503. while [ $(df --output=pcent "${CACHE}" | grep -v Use | cut -d'%' -f1) -gt ${PERCENTAGE} ]
  504. do
  505. FILE=$(find "${CACHE}" -type f -printf '%A@ %P\n' | \
  506. sort | \
  507. head -n 1 | \
  508. cut -d' ' -f2-)
  509. test -n "${FILE}"
  510. rsync -axqHAXWESR --preallocate --remove-source-files "${CACHE}/./${FILE}" "${BACKING}/"
  511. done
  512. ```
  513. # PERFORMANCE
  514. mergerfs is at its core just a proxy and therefore its theoretical max performance is that of the underlying devices. However, given it is a FUSE filesystem working from userspace there is an increase in overhead relative to kernel based solutions. That said the performance can match the theoretical max but it depends greatly on the system's configuration. Especially when adding network filesystems into the mix there are many variables which can impact performance. Drive speeds and latency, network speeds and latency, general concurrency, read/write sizes, etc. Unfortunately, given the number of variables it has been difficult to find a single set of settings which provide optimal performance. If you're having performance issues please look over the suggestions below (including the benchmarking section.)
  515. NOTE: be sure to read about these features before changing them to understand what behaviors it may impact
  516. * enable (or disable) `splice_move`, `splice_read`, and `splice_write`
  517. * disable `security_capability` and/or `xattr`
  518. * increase cache timeouts `cache.attr`, `cache.entry`, `cache.negative_entry`
  519. * enable (or disable) page caching (`cache.files`)
  520. * enable `cache.writeback`
  521. * enable `cache.open`
  522. * enable `cache.statfs`
  523. * enable `cache.symlinks`
  524. * enable `cache.readdir`
  525. * change the number of worker threads
  526. * disable `posix_acl`
  527. * disable `async_read`
  528. * test theoretical performance using `nullrw` or mounting a ram disk
  529. * use `symlinkify` if your data is largely static and read-only
  530. * use tiered cache drives
  531. * use LVM and LVM cache to place a SSD in front of your HDDs
  532. If you come across a setting that significantly impacts performance please contact trapexit so he may investigate further.
  533. # BENCHMARKING
  534. Filesystems are complicated. They do many things and many of those are interconnected. Additionally, the OS, drivers, hardware, etc. all can impact performance. Therefore, when benchmarking, it is **necessary** that the test focus as narrowly as possible.
  535. For most throughput is the key benchmark. To test throughput `dd` is useful but **must** be used with the correct settings in order to ensure the filesystem or device is actually being tested. The OS can and will cache data. Without forcing synchronous reads and writes and/or disabling caching the values returned will not be representative of the device's true performance.
  536. When benchmarking through mergerfs ensure you only use 1 branch to remove any possibility of the policies complicating the situation. Benchmark the underlying filesystem first and then mount mergerfs over it and test again. If you're experience speeds below your expectation you will need to narrow down precisely which component is leading to the slowdown. Preferably test the following in the order listed (but not combined).
  537. 1. Enable `nullrw` mode with `nullrw=true`. This will effectively make reads and writes no-ops. Removing the underlying device / filesystem from the equation. This will give us the top theoretical speeds.
  538. 2. Mount mergerfs over `tmpfs`. `tmpfs` is a RAM disk. Extremely high speed and very low latency. This is a more realistic best case scenario. Example: `mount -t tmpfs -o size=2G tmpfs /tmp/tmpfs`
  539. 3. Mount mergerfs over a local drive. NVMe, SSD, HDD, etc. If you have more than one I'd suggest testing each of them as drives and/or controllers (their drivers) could impact performance.
  540. 4. Finally, if you intend to use mergerfs with a network filesystem, either as the source of data or to combine with another through mergerfs, test each of those alone as above.
  541. Once you find the component which has the performance issue you can do further testing with different options to see if they impact performance. For reads and writes the most relevant would be: `cache.files`, `async_read`, `splice_move`, `splice_read`, `splice_write`. Less likely but relevant when using NFS or with certain filesystems would be `security_capability`, `xattr`, and `posix_acl`. If you find a specific system, drive, filesystem, controller, etc. that performs poorly contact trapexit so he may investigate further.
  542. Sometimes the problem is really the application accessing or writing data through mergerfs. Some software use small buffer sizes which can lead to more requests and therefore greater overhead. You can test this out yourself by replace `bs=1M` in the examples below with `ibs` or `obs` and using a size of `512` instead of `1M`. In one example test using `nullrw` the write speed dropped from 4.9GB/s to 69.7MB/s when moving from `1M` to `512`. Similar results were had when testing reads. Small writes overhead may be improved by leveraging a write cache but in casual tests little gain was found. More tests will need to be done before this feature would become available. If you have an app that appears slow with mergerfs it could be due to this. Contact trapexit so he may investigate further.
  543. ### write benchmark
  544. ```
  545. $ dd if=/dev/zero of=/mnt/mergerfs/1GB.file bs=1M count=1024 oflag=nocache conv=fdatasync status=progress
  546. ```
  547. ### read benchmark
  548. ```
  549. $ dd if=/mnt/mergerfs/1GB.file of=/dev/null bs=1M count=1024 iflag=nocache conv=fdatasync status=progress
  550. ```
  551. ### other benchmarks
  552. If you are attempting to benchmark other behaviors you must ensure you clear kernel caches before runs. In fact it would be a good deal to run before the read and write benchmarks as well just in case.
  553. ```
  554. sync
  555. echo 3 | sudo tee /proc/sys/vm/drop_caches
  556. ```
  557. # TIPS / NOTES
  558. * This document is very literal and thorough. Unless there is a bug things work as described. If a suspected feature isn't mentioned it doesn't exist. If certain libfuse arguments aren't listed they probably shouldn't be used.
  559. * Ensure you're using the latest version. Few distros have the latest version.
  560. * **use_ino** will only work when used with mergerfs 2.18.0 and above.
  561. * Run mergerfs as `root` (with **allow_other**) unless you're merging paths which are owned exclusively and fully by the same user otherwise strange permission issues may arise. mergerfs is designed and intended to be run as `root`.
  562. * If you don't see some directories and files you expect, policies seem to skip branches, you get strange permission errors, etc. be sure the underlying filesystems' permissions are all the same. Use `mergerfs.fsck` to audit the drive for out of sync permissions.
  563. * If you still have permission issues be sure you are using POSIX ACL compliant filesystems. mergerfs doesn't generally make exceptions for FAT, NTFS, or other non-POSIX filesystem.
  564. * Do **not** use `cache.files=off` if you expect applications (such as rtorrent) to use [mmap](http://linux.die.net/man/2/mmap) files. Shared mmap is not currently supported in FUSE w/ page caching disabled. Enabling `dropcacheonclose` is recommended when `cache.files=partial|full|auto-full`.
  565. * [Kodi](http://kodi.tv), [Plex](http://plex.tv), [Subsonic](http://subsonic.org), etc. can use directory [mtime](http://linux.die.net/man/2/stat) to more efficiently determine whether to scan for new content rather than simply performing a full scan. If using the default **getattr** policy of **ff** it's possible those programs will miss an update on account of it returning the first directory found's **stat** info and its a later directory on another mount which had the **mtime** recently updated. To fix this you will want to set **func.getattr=newest**. Remember though that this is just **stat**. If the file is later **open**'ed or **unlink**'ed and the policy is different for those then a completely different file or directory could be acted on.
  566. * Some policies mixed with some functions may result in strange behaviors. Not that some of these behaviors and race conditions couldn't happen outside **mergerfs** but that they are far more likely to occur on account of the attempt to merge together multiple sources of data which could be out of sync due to the different policies.
  567. * For consistency its generally best to set **category** wide policies rather than individual **func**'s. This will help limit the confusion of tools such as [rsync](http://linux.die.net/man/1/rsync). However, the flexibility is there if needed.
  568. # KNOWN ISSUES / BUGS
  569. #### kernel issues & bugs
  570. [https://github.com/trapexit/mergerfs/wiki/Kernel-Issues-&-Bugs](https://github.com/trapexit/mergerfs/wiki/Kernel-Issues-&-Bugs)
  571. #### directory mtime is not being updated
  572. Remember that the default policy for `getattr` is `ff`. The information for the first directory found will be returned. If it wasn't the directory which had been updated then it will appear outdated.
  573. The reason this is the default is because any other policy would be more expensive and for many applications it is unnecessary. To always return the directory with the most recent mtime or a faked value based on all found would require a scan of all drives.
  574. If you always want the directory information from the one with the most recent mtime then use the `newest` policy for `getattr`.
  575. #### 'mv /mnt/pool/foo /mnt/disk1/foo' removes 'foo'
  576. This is not a bug.
  577. Run in verbose mode to better understand what's happening:
  578. ```
  579. $ mv -v /mnt/pool/foo /mnt/disk1/foo
  580. copied '/mnt/pool/foo' -> '/mnt/disk1/foo'
  581. removed '/mnt/pool/foo'
  582. $ ls /mnt/pool/foo
  583. ls: cannot access '/mnt/pool/foo': No such file or directory
  584. ```
  585. `mv`, when working across devices, is copying the source to target and then removing the source. Since the source **is** the target in this case, depending on the unlink policy, it will remove the just copied file and other files across the branches.
  586. If you want to move files to one drive just copy them there and use mergerfs.dedup to clean up the old paths or manually remove them from the branches directly.
  587. #### cached memory appears greater than it should be
  588. Use `cache.files=off` and/or `dropcacheonclose=true`. See the section on page caching.
  589. #### NFS clients returning ESTALE / Stale file handle
  590. NFS does not like out of band changes. That is especially true of inode values.
  591. Be sure to use the following options:
  592. * noforget
  593. * use_ino
  594. * inodecalc=path-hash
  595. #### rtorrent fails with ENODEV (No such device)
  596. Be sure to set `cache.files=partial|full|auto-full` or turn off `direct_io`. rtorrent and some other applications use [mmap](http://linux.die.net/man/2/mmap) to read and write to files and offer no fallback to traditional methods. FUSE does not currently support mmap while using `direct_io`. There may be a performance penalty on writes with `direct_io` off as well as the problem of double caching but it's the only way to get such applications to work. If the performance loss is too high for other apps you can mount mergerfs twice. Once with `direct_io` enabled and one without it. Be sure to set `dropcacheonclose=true` if not using `direct_io`.
  597. #### Plex doesn't work with mergerfs
  598. It does. If you're trying to put Plex's config / metadata / database on mergerfs you can't set `cache.files=off` because Plex is using sqlite3 with mmap enabled. Shared mmap is not supported by Linux's FUSE implementation when page caching is disabled. To fix this place the data elsewhere (preferable) or enable `cache.files` (with `dropcacheonclose=true`). Sqlite3 does not need mmap but the developer needs to fall back to standard IO if mmap fails.
  599. If the issue is that scanning doesn't seem to pick up media then be sure to set `func.getattr=newest` though generally a full scan will pick up all media anyway.
  600. #### When a program tries to move or rename a file it fails
  601. Please read the section above regarding [rename & link](#rename--link).
  602. The problem is that many applications do not properly handle `EXDEV` errors which `rename` and `link` may return even though they are perfectly valid situations which do not indicate actual drive or OS errors. The error will only be returned by mergerfs if using a path preserving policy as described in the policy section above. If you do not care about path preservation simply change the mergerfs policy to the non-path preserving version. For example: `-o category.create=mfs`
  603. Ideally the offending software would be fixed and it is recommended that if you run into this problem you contact the software's author and request proper handling of `EXDEV` errors.
  604. #### my 32bit software has problems
  605. Some software have problems with 64bit inode values. The symptoms can include EOVERFLOW errors when trying to list files. You can address this by setting `inodecalc` to one of the 32bit based algos as described in the relevant section.
  606. #### Samba: Moving files / directories fails
  607. Workaround: Copy the file/directory and then remove the original rather than move.
  608. This isn't an issue with Samba but some SMB clients. GVFS-fuse v1.20.3 and prior (found in Ubuntu 14.04 among others) failed to handle certain error codes correctly. Particularly **STATUS_NOT_SAME_DEVICE** which comes from the **EXDEV** which is returned by **rename** when the call is crossing mount points. When a program gets an **EXDEV** it needs to explicitly take an alternate action to accomplish its goal. In the case of **mv** or similar it tries **rename** and on **EXDEV** falls back to a manual copying of data between the two locations and unlinking the source. In these older versions of GVFS-fuse if it received **EXDEV** it would translate that into **EIO**. This would cause **mv** or most any application attempting to move files around on that SMB share to fail with a IO error.
  609. [GVFS-fuse v1.22.0](https://bugzilla.gnome.org/show_bug.cgi?id=734568) and above fixed this issue but a large number of systems use the older release. On Ubuntu the version can be checked by issuing `apt-cache showpkg gvfs-fuse`. Most distros released in 2015 seem to have the updated release and will work fine but older systems may not. Upgrading gvfs-fuse or the distro in general will address the problem.
  610. In Apple's MacOSX 10.9 they replaced Samba (client and server) with their own product. It appears their new client does not handle **EXDEV** either and responds similar to older release of gvfs on Linux.
  611. #### Trashing files occasionally fails
  612. This is the same issue as with Samba. `rename` returns `EXDEV` (in our case that will really only happen with path preserving policies like `epmfs`) and the software doesn't handle the situation well. This is unfortunately a common failure of software which moves files around. The standard indicates that an implementation `MAY` choose to support non-user home directory trashing of files (which is a `MUST`). The implementation `MAY` also support "top directory trashes" which many probably do.
  613. To create a `$topdir/.Trash` directory as defined in the standard use the [mergerfs-tools](https://github.com/trapexit/mergerfs-tools) tool `mergerfs.mktrash`.
  614. #### tar: Directory renamed before its status could be extracted
  615. Make sure to use the `use_ino` option.
  616. #### Supplemental user groups
  617. Due to the overhead of [getgroups/setgroups](http://linux.die.net/man/2/setgroups) mergerfs utilizes a cache. This cache is opportunistic and per thread. Each thread will query the supplemental groups for a user when that particular thread needs to change credentials and will keep that data for the lifetime of the thread. This means that if a user is added to a group it may not be picked up without the restart of mergerfs. However, since the high level FUSE API's (at least the standard version) thread pool dynamically grows and shrinks it's possible that over time a thread will be killed and later a new thread with no cache will start and query the new data.
  618. The gid cache uses fixed storage to simplify the design and be compatible with older systems which may not have C++11 compilers. There is enough storage for 256 users' supplemental groups. Each user is allowed up to 32 supplemental groups. Linux >= 2.6.3 allows up to 65535 groups per user but most other *nixs allow far less. NFS allowing only 16. The system does handle overflow gracefully. If the user has more than 32 supplemental groups only the first 32 will be used. If more than 256 users are using the system when an uncached user is found it will evict an existing user's cache at random. So long as there aren't more than 256 active users this should be fine. If either value is too low for your needs you will have to modify `gidcache.hpp` to increase the values. Note that doing so will increase the memory needed by each thread.
  619. While not a bug some users have found when using containers that supplemental groups defined inside the container don't work properly with regard to permissions. This is expected as mergerfs lives outside the container and therefore is querying the host's group database. There might be a hack to work around this (make mergerfs read the /etc/group file in the container) but it is not yet implemented and would be limited to Linux and the /etc/group DB. Preferably users would mount in the host group file into the containers or use a standard shared user & groups technology like NIS or LDAP.
  620. #### mergerfs or libfuse crashing
  621. First... always upgrade to the latest version unless told otherwise.
  622. If using mergerfs below 2.22.0:
  623. If suddenly the mergerfs mount point disappears and `Transport endpoint is not connected` is returned when attempting to perform actions within the mount directory **and** the version of libfuse (use `mergerfs -v` to find the version) is older than `2.9.4` its likely due to a bug in libfuse. Affected versions of libfuse can be found in Debian Wheezy, Ubuntu Precise and others.
  624. In order to fix this please install newer versions of libfuse. If using a Debian based distro (Debian,Ubuntu,Mint) you can likely just install newer versions of [libfuse](https://packages.debian.org/unstable/libfuse2) and [fuse](https://packages.debian.org/unstable/fuse) from the repo of a newer release.
  625. If using mergerfs at or above 2.22.0:
  626. First upgrade if possible, check the known bugs section, and contact trapexit.
  627. #### mergerfs appears to be crashing or exiting
  628. There seems to be an issue with Linux version `4.9.0` and above in which an invalid message appears to be transmitted to libfuse (used by mergerfs) causing it to exit. No messages will be printed in any logs as it's not a proper crash. Debugging of the issue is still ongoing and can be followed via the [fuse-devel thread](https://sourceforge.net/p/fuse/mailman/message/35662577).
  629. #### rm: fts_read failed: No such file or directory
  630. Please update. This is only happened to mergerfs versions at or below v2.25.x and will not occur in more recent versions.
  631. # FAQ
  632. #### How well does mergerfs scale? Is it "production ready?"
  633. Users have reported running mergerfs on everything from a Raspberry Pi to dual socket Xeon systems with >20 cores. I'm aware of at least a few companies which use mergerfs in production. [Open Media Vault](https://www.openmediavault.org) includes mergerfs as its sole solution for pooling drives. The author of mergerfs had it running for over 300 days managing 16+ drives with reasonably heavy 24/7 read and write usage. Stopping only after the machine's power supply died.
  634. Most serious issues (crashes or data corruption) have been due to [kernel bugs](https://github.com/trapexit/mergerfs/wiki/Kernel-Issues-&-Bugs). All of which are fixed in stable releases.
  635. #### Can mergerfs be used with drives which already have data / are in use?
  636. Yes. MergerFS is a proxy and does **NOT** interfere with the normal form or function of the drives / mounts / paths it manages.
  637. MergerFS is **not** a traditional filesystem. MergerFS is **not** RAID. It does **not** manipulate the data that passes through it. It does **not** shard data across drives. It merely shards some **behavior** and aggregates others.
  638. #### Can mergerfs be removed without affecting the data?
  639. See the previous question's answer.
  640. #### What policies should I use?
  641. Unless you're doing something more niche the average user is probably best off using `mfs` for `category.create`. It will spread files out across your branches based on available space. Use `mspmfs` if you want to try to colocate the data a bit more. You may want to use `lus` if you prefer a slightly different distribution of data if you have a mix of smaller and larger drives. Generally though `mfs`, `lus`, or even `rand` are good for the general use case. If you are starting with an imbalanced pool you can use the tool **mergerfs.balance** to redistribute files across the pool.
  642. If you really wish to try to colocate files based on directory you can set `func.create` to `epmfs` or similar and `func.mkdir` to `rand` or `eprand` depending on if you just want to colocate generally or on specific branches. Either way the *need* to colocate is rare. For instance: if you wish to remove the drive regularly and want the data to predictably be on that drive or if you don't use backup at all and don't wish to replace that data piecemeal. In which case using path preservation can help but will require some manual attention. Colocating after the fact can be accomplished using the **mergerfs.consolidate** tool. If you don't need strict colocation which the `ep` policies provide then you can use the `msp` based policies which will walk back the path till finding a branch that works.
  643. Ultimately there is no correct answer. It is a preference or based on some particular need. mergerfs is very easy to test and experiment with. I suggest creating a test setup and experimenting to get a sense of what you want.
  644. The reason `mfs` is not the default `category.create` policy is historical. When/if a 3.X gets released it will be changed to minimize confusion people often have with path preserving policies.
  645. #### What settings should I use?
  646. Depends on what features you want. Generally speaking there are no "wrong" settings. All settings are performance or feature related. The best bet is to read over the available options and choose what fits your situation. If something isn't clear from the documentation please reach out and the documentation will be improved.
  647. That said, for the average person, the following should be fine:
  648. `-o use_ino,cache.files=off,dropcacheonclose=true,allow_other,category.create=mfs`
  649. #### Why are all my files ending up on 1 drive?!
  650. Did you start with empty drives? Did you explicitly configure a `category.create` policy? Are you using an `existing path` / `path preserving` policy?
  651. The default create policy is `epmfs`. That is a path preserving algorithm. With such a policy for `mkdir` and `create` with a set of empty drives it will select only 1 drive when the first directory is created. Anything, files or directories, created in that first directory will be placed on the same branch because it is preserving paths.
  652. This catches a lot of new users off guard but changing the default would break the setup for many existing users. If you do not care about path preservation and wish your files to be spread across all your drives change to `mfs` or similar policy as described above. If you do want path preservation you'll need to perform the manual act of creating paths on the drives you want the data to land on before transferring your data. Setting `func.mkdir=epall` can simplify managing path preservation for `create`. Or use `func.mkdir=rand` if you're interested in just grouping together directory content by drive.
  653. #### Do hardlinks work?
  654. Yes. You need to use `use_ino` to support proper reporting of inodes but they work regardless. See also the option `inodecalc`.
  655. What mergerfs does not do is fake hard links across branches. Read the section "rename & link" for how it works.
  656. Remember that hardlinks will NOT work across devices. That includes between the original filesystem and a mergerfs pool, between two separate pools of the same underlying filesystems, or bind mounts of paths within the mergerfs pool. The latter is common when using Docker or Podman. Multiple volumes (bind mounts) to the same underlying filesystem are considered different devices. There is no way to link between them. You should mount in the highest directory in the mergerfs pool that includes all the paths you need if you want links to work.
  657. #### Can I use mergerfs without SnapRAID? SnapRAID without mergerfs?
  658. Yes. They are completely unreleated pieces of software.
  659. #### Can mergerfs run via Docker, Podman, Kubernetes, etc.
  660. Yes. With Docker you'll need to include `--cap-add=SYS_ADMIN --device=/dev/fuse --security-opt=apparmor:unconfined` or similar with other container runtimes. You should also be running it as root or given sufficient caps to change user and group identity as well as have root like filesystem permissions.
  661. Keep in mind that you **MUST** consider identity when using containers. For example: supplemental groups will be picked up from the container unless you properly manage users and groups by sharing relevant /etc files or by using some other means to share identity across containers. Similarly if you use "rootless" containers and user namespaces to do uid/gid translations you **MUST** consider that while managing shared files.
  662. Also, as mentioned by [hotio](https://hotio.dev/containers/mergerfs), with Docker you should probably be mounting with `bind-propagation` set to `slave`.
  663. #### Does mergerfs support CoW / copy-on-write / writes to read-only filesystems?
  664. Not in the sense of a filesystem like BTRFS or ZFS nor in the overlayfs or aufs sense. It does offer a [cow-shell](http://manpages.ubuntu.com/manpages/bionic/man1/cow-shell.1.html) like hard link breaking (copy to temp file then rename over original) which can be useful when wanting to save space by hardlinking duplicate files but wish to treat each name as if it were a unique and separate file.
  665. If you want to write to a read-only filesystem you should look at overlayfs. You can always include the overlayfs mount into a mergerfs pool.
  666. #### Why can't I see my files / directories?
  667. It's almost always a permissions issue. Unlike mhddfs and unionfs-fuse, which runs as root and attempts to access content as such, mergerfs always changes its credentials to that of the caller. This means that if the user does not have access to a file or directory than neither will mergerfs. However, because mergerfs is creating a union of paths it may be able to read some files and directories on one drive but not another resulting in an incomplete set.
  668. Whenever you run into a split permission issue (seeing some but not all files) try using [mergerfs.fsck](https://github.com/trapexit/mergerfs-tools) tool to check for and fix the mismatch. If you aren't seeing anything at all be sure that the basic permissions are correct. The user and group values are correct and that directories have their executable bit set. A common mistake by users new to Linux is to `chmod -R 644` when they should have `chmod -R u=rwX,go=rX`.
  669. If using a network filesystem such as NFS, SMB, CIFS (Samba) be sure to pay close attention to anything regarding permissioning and users. Root squashing and user translation for instance has bitten a few mergerfs users. Some of these also affect the use of mergerfs from container platforms such as Docker.
  670. #### Is my OS's libfuse needed for mergerfs to work?
  671. No. Normally `mount.fuse` is needed to get mergerfs (or any FUSE filesystem to mount using the `mount` command but in vendoring the libfuse library the `mount.fuse` app has been renamed to `mount.mergerfs` meaning the filesystem type in `fstab` can simply be `mergerfs`. That said there should be no harm in having it installed and continuing to using `fuse.mergerfs` as the type in `/etc/fstab`.
  672. If `mergerfs` doesn't work as a type it could be due to how the `mount.mergerfs` tool was installed. Must be in `/sbin/` with proper permissions.
  673. #### Why was libfuse embedded into mergerfs?
  674. 1. A significant number of users use mergerfs on distros with old versions of libfuse which have serious bugs. Requiring updated versions of libfuse on those distros isn't practical (no package offered, user inexperience, etc.). The only practical way to provide a stable runtime on those systems was to "vendor" / embed the library into the project.
  675. 2. mergerfs was written to use the high level API. There are a number of limitations in the HLAPI that make certain features difficult or impossible to implement. While some of these features could be patched into newer versions of libfuse without breaking the public API some of them would require hacky code to provide backwards compatibility. While it may still be worth working with upstream to address these issues in future versions, since the library needs to be vendored for stability and compatibility reasons it is preferable / easier to modify the API. Longer term the plan is to rewrite mergerfs to use the low level API.
  676. #### Why did support for system libfuse get removed?
  677. See above first.
  678. If/when mergerfs is rewritten to use the low-level API then it'll be plausible to support system libfuse but till then it's simply too much work to manage the differences across the versions.
  679. #### Why use mergerfs over mhddfs?
  680. mhddfs is no longer maintained and has some known stability and security issues (see below). MergerFS provides a superset of mhddfs' features and should offer the same or maybe better performance.
  681. Below is an example of mhddfs and mergerfs setup to work similarly.
  682. `mhddfs -o mlimit=4G,allow_other /mnt/drive1,/mnt/drive2 /mnt/pool`
  683. `mergerfs -o minfreespace=4G,allow_other,category.create=ff /mnt/drive1:/mnt/drive2 /mnt/pool`
  684. #### Why use mergerfs over aufs?
  685. aufs is mostly abandoned and no longer available in many distros.
  686. While aufs can offer better peak performance mergerfs provides more configurability and is generally easier to use. mergerfs however does not offer the overlay / copy-on-write (CoW) features which aufs and overlayfs have.
  687. #### Why use mergerfs over unionfs?
  688. UnionFS is more like aufs than mergerfs in that it offers overlay / CoW features. If you're just looking to create a union of drives and want flexibility in file/directory placement then mergerfs offers that whereas unionfs is more for overlaying RW filesystems over RO ones.
  689. #### Why use mergerfs over overlayfs?
  690. Same reasons as with unionfs.
  691. #### Why use mergerfs over LVM/ZFS/BTRFS/RAID0 drive concatenation / striping?
  692. With simple JBOD / drive concatenation / stripping / RAID0 a single drive failure will result in full pool failure. mergerfs performs a similar function without the possibility of catastrophic failure and the difficulties in recovery. Drives may fail, however, all other data will continue to be accessible.
  693. When combined with something like [SnapRaid](http://www.snapraid.it) and/or an offsite backup solution you can have the flexibility of JBOD without the single point of failure.
  694. #### Why use mergerfs over ZFS?
  695. MergerFS is not intended to be a replacement for ZFS. MergerFS is intended to provide flexible pooling of arbitrary drives (local or remote), of arbitrary sizes, and arbitrary filesystems. For `write once, read many` usecases such as bulk media storage. Where data integrity and backup is managed in other ways. In that situation ZFS can introduce a number of costs and limitations as described [here](http://louwrentius.com/the-hidden-cost-of-using-zfs-for-your-home-nas.html), [here](https://markmcb.com/2020/01/07/five-years-of-btrfs/), and [here](https://utcc.utoronto.ca/~cks/space/blog/solaris/ZFSWhyNoRealReshaping).
  696. #### Why use mergerfs over UnRAID?
  697. UnRAID is a full OS and its storage layer, as I understand, is proprietary and closed source. Users who have experience with both have said they prefer the flexibility offered by mergerfs and for some the fact it is free and open source is important.
  698. There are a number of UnRAID users who use mergerfs as well though I'm not entirely familiar with the use case.
  699. #### What should mergerfs NOT be used for?
  700. * databases: Even if the database stored data in separate files (mergerfs wouldn't offer much otherwise) the higher latency of the indirection will kill performance. If it is a lightly used SQLITE database then it may be fine but you'll need to test.
  701. * VM images: For the same reasons as databases. VM images are accessed very aggressively and mergerfs will introduce too much latency (if it works at all).
  702. * As replacement for RAID: mergerfs is just for pooling branches. If you need that kind of device performance aggregation or high availability you should stick with RAID.
  703. #### Can drives be written to directly? Outside of mergerfs while pooled?
  704. Yes, however it's not recommended to use the same file from within the pool and from without at the same time (particularly writing). Especially if using caching of any kind (cache.files, cache.entry, cache.attr, cache.negative_entry, cache.symlinks, cache.readdir, etc.) as there could be a conflict between cached data and not.
  705. #### Why do I get an "out of space" / "no space left on device" / ENOSPC error even though there appears to be lots of space available?
  706. First make sure you've read the sections above about policies, path preservation, branch filtering, and the options **minfreespace**, **moveonenospc**, **statfs**, and **statfs_ignore**.
  707. mergerfs is simply presenting a union of the content within multiple branches. The reported free space is an aggregate of space available within the pool (behavior modified by **statfs** and **statfs_ignore**). It does not represent a contiguous space. In the same way that read-only filesystems, those with quotas, or reserved space report the full theoretical space available.
  708. Due to path preservation, branch tagging, read-only status, and **minfreespace** settings it is perfectly valid that `ENOSPC` / "out of space" / "no space left on device" be returned. It is doing what was asked of it: filtering possible branches due to those settings. Only one error can be returned and if one of the reasons for filtering a branch was **minfreespace** then it will be returned as such. **moveonenospc** is only relevant to writing a file which is too large for the drive its currently on.
  709. It is also possible that the filesystem selected has run out of inodes. Use `df -i` to list the total and available inodes per filesystem.
  710. If you don't care about path preservation then simply change the `create` policy to one which isn't. `mfs` is probably what most are looking for. The reason it's not default is because it was originally set to `epmfs` and changing it now would change people's setup. Such a setting change will likely occur in mergerfs 3.
  711. #### Why does the total available space in mergerfs not equal outside?
  712. Are you using ext2/3/4? With reserve for root? mergerfs uses available space for statfs calculations. If you've reserved space for root then it won't show up.
  713. You can remove the reserve by running: `tune2fs -m 0 <device>`
  714. #### Can mergerfs mounts be exported over NFS?
  715. Yes, however if you do anything which may changes files out of band (including for example using the `newest` policy) it will result in "stale file handle" errors unless properly setup.
  716. Be sure to use the following options:
  717. * noforget
  718. * use_ino
  719. * inodecalc=path-hash
  720. #### Can mergerfs mounts be exported over Samba / SMB?
  721. Yes. While some users have reported problems it appears to always be related to how Samba is setup in relation to permissions.
  722. #### Can mergerfs mounts be used over SSHFS?
  723. Yes.
  724. #### I notice massive slowdowns of writes when enabling cache.files.
  725. When file caching is enabled in any form (`cache.files!=off` or `direct_io=false`) it will issue `getxattr` requests for `security.capability` prior to *every single write*. This will usually result in a performance degradation, especially when using a network filesystem (such as NFS or CIFS/SMB/Samba.) Unfortunately at this moment the kernel is not caching the response.
  726. To work around this situation mergerfs offers a few solutions.
  727. 1. Set `security_capability=false`. It will short circuit any call and return `ENOATTR`. This still means though that mergerfs will receive the request before every write but at least it doesn't get passed through to the underlying filesystem.
  728. 2. Set `xattr=noattr`. Same as above but applies to *all* calls to getxattr. Not just `security.capability`. This will not be cached by the kernel either but mergerfs' runtime config system will still function.
  729. 3. Set `xattr=nosys`. Results in mergerfs returning `ENOSYS` which *will* be cached by the kernel. No future xattr calls will be forwarded to mergerfs. The downside is that also means the xattr based config and query functionality won't work either.
  730. 4. Disable file caching. If you aren't using applications which use `mmap` it's probably simpler to just disable it all together. The kernel won't send the requests when caching is disabled.
  731. #### What are these .fuse_hidden files?
  732. Please upgrade. mergerfs >= 2.26.0 will not have these temporary files. See the notes on `unlink`.
  733. #### It's mentioned that there are some security issues with mhddfs. What are they? How does mergerfs address them?
  734. [mhddfs](https://github.com/trapexit/mhddfs) manages running as **root** by calling [getuid()](https://github.com/trapexit/mhddfs/blob/cae96e6251dd91e2bdc24800b4a18a74044f6672/src/main.c#L319) and if it returns **0** then it will [chown](http://linux.die.net/man/1/chown) the file. Not only is that a race condition but it doesn't handle other situations. Rather than attempting to simulate POSIX ACL behavior the proper way to manage this is to use [seteuid](http://linux.die.net/man/2/seteuid) and [setegid](http://linux.die.net/man/2/setegid), in effect becoming the user making the original call, and perform the action as them. This is what mergerfs does and why mergerfs should always run as root.
  735. In Linux setreuid syscalls apply only to the thread. GLIBC hides this away by using realtime signals to inform all threads to change credentials. Taking after **Samba**, mergerfs uses **syscall(SYS_setreuid,...)** to set the callers credentials for that thread only. Jumping back to **root** as necessary should escalated privileges be needed (for instance: to clone paths between drives).
  736. For non-Linux systems mergerfs uses a read-write lock and changes credentials only when necessary. If multiple threads are to be user X then only the first one will need to change the processes credentials. So long as the other threads need to be user X they will take a readlock allowing multiple threads to share the credentials. Once a request comes in to run as user Y that thread will attempt a write lock and change to Y's credentials when it can. If the ability to give writers priority is supported then that flag will be used so threads trying to change credentials don't starve. This isn't the best solution but should work reasonably well assuming there are few users.
  737. # SUPPORT
  738. Filesystems are complex and difficult to debug. mergerfs, while being just a proxy of sorts, is also very difficult to debug given the large number of possible settings it can have itself and the massive number of environments it can run in. When reporting on a suspected issue **please, please** include as much of the below information as possible otherwise it will be difficult or impossible to diagnose. Also please make sure to read all of the above documentation as it includes nearly every known system or user issue previously encountered.
  739. **Please make sure you are using the [latest release](https://github.com/trapexit/mergerfs/releases) or have tried it in comparison. Old versions, which are often included in distros like Debian and Ubuntu, are not ever going to be updated and your bug may have been addressed already.**
  740. #### Information to include in bug reports
  741. * Version of mergerfs: `mergerfs -V`
  742. * mergerfs settings / arguments: from fstab, systemd unit, command line, etc.
  743. * Version of the OS: `uname -a`
  744. * List of branches, their filesystem types, sizes (before and after issue): `df -h`
  745. * **All** information about the relevant branches and paths: permissions, ownership, etc.
  746. * **All** information about the client app making the requests: version, uid/gid
  747. * Runtime environment: mostly are things running inside containers or not
  748. * A `strace` of the app having problems:
  749. * `strace -fvTtt -s 256 -o /tmp/app.strace.txt <cmd>`
  750. * A `strace` of mergerfs while the program is trying to do whatever it's failing to do:
  751. * `strace -fvTtt -s 256 -p <mergerfsPID> -o /tmp/mergerfs.strace.txt`
  752. * **Precise** directions on replicating the issue. Do not leave **anything** out.
  753. * Try to recreate the problem in the simplest way using standard programs: ln, mv, cp, ls, dd, etc.
  754. #### Contact / Issue submission
  755. * github.com: https://github.com/trapexit/mergerfs/issues
  756. * email: trapexit@spawn.link
  757. * discord: https://discord.gg/MpAr69V
  758. * twitter: https://twitter.com/_trapexit
  759. * reddit: https://www.reddit.com/user/trapexit
  760. #### Support development
  761. This software is free to use and released under a very liberal license (ISC). That said if you like this software and would like to support its development donations are welcome.
  762. Crypto is fine in whatever protocol you prefer. My preferences for fiat would be GitHub Sponsors or PayPal though feel free to use any platform listed below.
  763. * GitHub Sponsors: https://github.com/sponsors/trapexit
  764. * PayPal: https://paypal.me/trapexit
  765. * Patreon: https://www.patreon.com/trapexit
  766. * BuyMeACoffee: https://buymeacoff.ee/trapexit
  767. * Ko-Fi: https://ko-fi.com/trapexit
  768. * Open Collective: https://opencollective.com/trapexit
  769. * Bitcoin (BTC): bc1qu537hqlnmn2wawx9n7nws0dlkz55h0cd93ny28
  770. * Bitcoin Cash (BCH): bitcoincash:qqp0vh9v44us74gaggwjfv9y54zfjmmd7srlqxa3xt
  771. * Bitcoin SV (BSV): 1FkFuxRtt3f8LbkpeUKRZq7gKJFzGSGgZV
  772. * Bitcoin Gold (BTG): AaPuJgJeohPjkB3LxJM6NKGnaHoRJ8ieT3
  773. * Litecoin (LTC): MJQzsHBdNnkyGqCFdcAdHYKugicBmfAXfQ
  774. * Dogecoin (DOGE): DLJNLVe28vZ4SMQSxDJLBQBv57rGtUoWFh
  775. * Ethereum (ETH): 0xB8d6d55c0319aacC327860d13f891427caEede7a
  776. * Any ERC20 Token: 0xB8d6d55c0319aacC327860d13f891427caEede7a
  777. * Ethereum Classic (ETC): 0x2B6054428e69a1201B6555f7a2aEc0Fba01EAD9F
  778. * Harmony (ONE): one1hrtd2hqrrx4vcvncvrgnlzg5yl9wahn66lq6rw (0xB8d6d55c0319aacC327860d13f891427caEede7a)
  779. * Monero (XMR): 45BBZMrJwPSaFwSoqLVNEggWR2BJJsXxz7bNz8FXnnFo3GyhVJFSCrCFSS7zYwDa9r1TmFmGMxQ2HTntuc11yZ9q1LeCE8f
  780. * Dash (DASH): XvsFrohu8tbjA4E8p7xsc86E2ADxLHGXHL
  781. * Chia (XCH): xch18l7e2q34jtuyzkq0jg8vp7yrtnfwzly30w3yyhkk96um2ur4yqcq6p2een
  782. * LBRY Credits (LBC): bFusyoZPkSuzM2Pr8mcthgvkymaosJZt5r
  783. * Ripple (XRP): r9f6aoxaGD8aymxqH89Ke1PCUPkNiFdZZC
  784. * Tezos (XTZ): tz1ZxerkbbALsuU9XGV9K9fFpuLWnKAGfc1C
  785. * Zcash (ZEC): t1Zo1GGn2T3GrhKvgdtnTsTnWu6tCPaCaHG
  786. * DigiByte (DGB): Sb8r1qTrryY9Sp4YkTE1eeKEGVzgArnE5N
  787. * Namecoin (NMC): NDzb9FkoptGu5QbgetCkodJqo2zE1cTwyb
  788. * Vertcoin (VTC): 3PYdhokAGXJwWrwHRoTywxG4iUDk6EHjKe
  789. * Other crypto currencies: contact me for address
  790. # LINKS
  791. * https://spawn.link
  792. * https://github.com/trapexit/mergerfs
  793. * https://github.com/trapexit/mergerfs/wiki
  794. * https://github.com/trapexit/mergerfs-tools
  795. * https://github.com/trapexit/scorch
  796. * https://github.com/trapexit/bbf
  797. * https://github.com/trapexit/backup-and-recovery-howtos