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.

524 lines
39 KiB

11 years ago
  1. % mergerfs(1) mergerfs user manual
  2. % Antonio SJ Musumeci <trapexit@spawn.link>
  3. % 2017-02-18
  4. # NAME
  5. mergerfs - a featureful union filesystem
  6. # SYNOPSIS
  7. mergerfs -o&lt;options&gt; &lt;srcmounts&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. * Runs in userspace (FUSE)
  12. * Configurable behaviors
  13. * Support for extended attributes (xattrs)
  14. * Support for file attributes (chattr)
  15. * Runtime configurable (via xattrs)
  16. * Safe to run as root
  17. * Opportunistic credential caching
  18. * Works with heterogeneous filesystem types
  19. * Handling of writes to full drives (transparently move file to drive with capacity)
  20. * Handles pool of readonly and read/write drives
  21. # OPTIONS
  22. ### mount options
  23. * **defaults**: a shortcut for FUSE's **atomic_o_trunc**, **auto_cache**, **big_writes**, **default_permissions**, **splice_move**, **splice_read**, and **splice_write**. These options seem to provide the best performance.
  24. * **direct_io**: causes FUSE to bypass caching which can increase write speeds at the detriment of reads. Note that not enabling `direct_io` will cause double caching of files and therefore less memory for caching generally. However, `mmap` does not work when `direct_io` is enabled.
  25. * **minfreespace**: the minimum space value used for creation policies. Understands 'K', 'M', and 'G' to represent kilobyte, megabyte, and gigabyte respectively. (default: 4G)
  26. * **moveonenospc**: when enabled (set to **true**) if a **write** fails with **ENOSPC** or **EDQUOT** a scan of all drives will be done looking for the drive with most free space which is at least the size of the file plus the amount which failed to write. An attempt to move the file to that drive will occur (keeping all metadata possible) and if successful the original is unlinked and the write retried. (default: false)
  27. * **use_ino**: causes mergerfs to supply file/directory inodes rather than libfuse. While not a default it is generally recommended it be enabled so that hard linked files share the same inode value.
  28. * **dropcacheonclose**: 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 **direct_io** is not enabled to limit double caching. (default: false)
  29. * **fsname**: 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.
  30. * **func.&lt;func&gt;=&lt;policy&gt;**: sets the specific FUSE function's policy. See below for the list of value types. Example: **func.getattr=newest**
  31. * **category.&lt;category&gt;=&lt;policy&gt;**: Sets policy of all FUSE functions in the provided category. Example: **category.create=mfs**
  32. **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.
  33. ### srcmounts
  34. The srcmounts (source mounts) argument is a colon (':') delimited list of paths to be included in the pool. It does not matter if the paths are on the same or different drives nor does it matter the filesystem. 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.
  35. To make it easier to include multiple source mounts 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 expand it.**
  36. ```
  37. $ mergerfs -o defaults,allow_other,use_ino /mnt/disk\*:/mnt/cdrom /media/drives
  38. ```
  39. The above line will use all mount points in /mnt prefixed with **disk** and the **cdrom**.
  40. To have the pool mounted at boot or otherwise accessable from related tools use **/etc/fstab**.
  41. ```
  42. # <file system> <mount point> <type> <options> <dump> <pass>
  43. /mnt/disk*:/mnt/cdrom /media/drives fuse.mergerfs defaults,allow_other,use_ino 0 0
  44. ```
  45. **NOTE:** the globbing is done at mount or xattr update time (see below). If a new directory is added matching the glob after the fact it will not be automatically included.
  46. **NOTE:** for mounting via **fstab** to work you must have **mount.fuse** installed. For Ubuntu/Debian it is included in the **fuse** package.
  47. # FUNCTIONS / POLICIES / CATEGORIES
  48. The POSIX filesystem API has a number of functions. **creat**, **stat**, **chown**, etc. In mergerfs these functions are grouped into 3 categories: **action**, **create**, and **search**. Functions and categories can be assigned a policy which dictates how **mergerfs** behaves. 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` (though only if there were more than one copy of the file).
  49. Policies, when called to create, will ignore drives which are readonly. This allows for readonly and read/write drives to be mixed together. Note that the drive must be explicitly mounted with the **ro** mount option for this to work.
  50. #### Function / Category classifications
  51. | Category | FUSE Functions |
  52. |----------|----------------|
  53. | action | chmod, chown, link, removexattr, rename, rmdir, setxattr, truncate, unlink, utimens |
  54. | create | create, mkdir, mknod, symlink |
  55. | search | access, getattr, getxattr, ioctl, listxattr, open, readlink |
  56. | N/A | fallocate, fgetattr, fsync, ftruncate, ioctl, read, readdir, release, statfs, write |
  57. Due to FUSE limitations **ioctl** behaves differently if its acting on a directory. It'll use the **getattr** policy to find and open the directory before issuing the **ioctl**. In other cases where something may be searched (to confirm a directory exists across all source mounts) **getattr** will also be used.
  58. #### Path Preservation
  59. Policies, as described below, are of two core types. `path preserving` and `non-path preserving`.
  60. All policies which start with `ep` (**epff**, **eplfs**, **eplus**, **epmfs**, **eprand**) are `path preserving'. `ep` stands for 'existing path`.
  61. As the descriptions explain a path preserving policy will only consider drives where the relative path being accessed already exists.
  62. When using non-path preserving policies where something is created paths will be copied to target drives as necessary.
  63. #### Policy descriptions
  64. | Policy | Description |
  65. |--------------|-------------|
  66. | all | Search category: acts like **ff**. Action category: apply to all found. Create category: for **mkdir**, **mknod**, and **symlink** it will apply to all found. **create** works like **ff**. It will exclude readonly drives and those with free space less than **minfreespace**. |
  67. | epall (existing path, all) | Search category: acts like **epff**. Action category: apply to all found. Create category: for **mkdir**, **mknod**, and **symlink** it will apply to all existing paths found. **create** works like **epff**. Excludes readonly drives and those with free space less than **minfreespace**. |
  68. | epff (existing path, first found) | Given the order of the drives, as defined at mount time or configured at runtime, act on the first one found where the relative path already exists. For **create** category functions it will exclude readonly drives and those with free space less than **minfreespace** (unless there is no other option). Falls back to **ff**. |
  69. | eplfs (existing path, least free space) | Of all the drives on which the relative path exists choose the drive with the least free space. For **create** category functions it will exclude readonly drives and those with free space less than **minfreespace**. Falls back to **lfs**. |
  70. | eplus (existing path, least used space) | Of all the drives on which the relative path exists choose the drive with the least used space. For **create** category functions it will exclude readonly drives and those with free space less than **minfreespace**. Falls back to **lus**. |
  71. | epmfs (existing path, most free space) | Of all the drives on which the relative path exists choose the drive with the most free space. For **create** category functions it will exclude readonly drives and those with free space less than **minfreespace**. Falls back to **mfs**. |
  72. | eprand (existing path, random) | Calls **epall** and then randomizes. Otherwise behaves the same as **epall**. |
  73. | erofs | Exclusively return **-1** with **errno** set to **EROFS** (Read-only filesystem). By setting **create** functions to this you can in effect turn the filesystem mostly readonly. |
  74. | ff (first found) | Given the order of the drives, as defined at mount time or configured at runtime, act on the first one found. For **create** category functions it will exclude readonly drives and those with free space less than **minfreespace** (unless there is no other option). |
  75. | lfs (least free space) | Pick the drive with the least available free space. For **create** category functions it will exclude readonly drives and those with free space less than **minfreespace**. Falls back to **mfs**. |
  76. | lus (least used space) | Pick the drive with the least used space. For **create** category functions it will exclude readonly drives and those with free space less than **minfreespace**. Falls back to **mfs**. |
  77. | mfs (most free space) | Pick the drive with the most available free space. For **create** category functions it will exclude readonly drives. Falls back to **ff**. |
  78. | newest | Pick the file / directory with the largest mtime. For **create** category functions it will exclude readonly drives and those with free space less than **minfreespace** (unless there is no other option). |
  79. | rand (random) | Calls **all** and then randomizes. |
  80. #### Defaults ####
  81. | Category | Policy |
  82. |----------|--------|
  83. | action | all |
  84. | create | epmfs |
  85. | search | ff |
  86. #### rename & link ####
  87. **NOTE:** If you're receiving errors from software when files are moved / renamed then you should consider changing the create policy to one which is **not** path preserving or contacting the author of the offending software and requesting that `EXDEV` be properly handled.
  88. [rename](http://man7.org/linux/man-pages/man2/rename.2.html) is a tricky function in a merged system. Under normal situations 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).
  89. 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 complient 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.
  90. As a result a compromise was made in order to get most software to work while still obeying mergerfs' policies. Below is the rather complicated logic.
  91. * If using a **create** policy which tries to preserve directory paths (epff,eplfs,eplus,epmfs)
  92. * Using the **rename** policy get the list of files to rename
  93. * For each file attempt rename:
  94. * If failure with ENOENT run **create** policy
  95. * If create policy returns the same drive as currently evaluating then clone the path
  96. * Re-attempt rename
  97. * If **any** of the renames succeed the higher level rename is considered a success
  98. * If **no** renames succeed the first error encountered will be returned
  99. * On success:
  100. * Remove the target from all drives with no source file
  101. * Remove the source from all drives which failed to rename
  102. * If using a **create** policy which does **not** try to preserve directory paths
  103. * Using the **rename** policy get the list of files to rename
  104. * Using the **getattr** policy get the target path
  105. * For each file attempt rename:
  106. * If the source drive != target drive:
  107. * Clone target path from target drive to source drive
  108. * Rename
  109. * If **any** of the renames succeed the higher level rename is considered a success
  110. * If **no** renames succeed the first error encountered will be returned
  111. * On success:
  112. * Remove the target from all drives with no source file
  113. * Remove the source from all drives which failed to rename
  114. The the removals are subject to normal entitlement checks.
  115. The above behavior will help minimize the likelihood of EXDEV being returned but it will still be possible.
  116. **link** uses the same basic strategy.
  117. #### readdir ####
  118. [readdir](http://linux.die.net/man/3/readdir) is different from all other filesystem functions. While it could have it's 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**.
  119. #### statvfs ####
  120. [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 it's space.
  121. # BUILDING
  122. **NOTE:** Prebuilt packages can be found at: https://github.com/trapexit/mergerfs/releases
  123. First get the code from [github](http://github.com/trapexit/mergerfs).
  124. ```
  125. $ git clone https://github.com/trapexit/mergerfs.git
  126. $ # or
  127. $ wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs-<ver>.tar.gz
  128. ```
  129. #### Debian / Ubuntu
  130. ```
  131. $ sudo apt-get install g++ pkg-config git git-buildpackage pandoc debhelper libfuse-dev libattr1-dev python
  132. $ cd mergerfs
  133. $ make deb
  134. $ sudo dpkg -i ../mergerfs_version_arch.deb
  135. ```
  136. #### Fedora
  137. ```
  138. $ su -
  139. # dnf install rpm-build fuse-devel libattr-devel pandoc gcc-c++ git make which python
  140. # cd mergerfs
  141. # make rpm
  142. # rpm -i rpmbuild/RPMS/<arch>/mergerfs-<verion>.<arch>.rpm
  143. ```
  144. #### Generically
  145. Have git, python, pkg-config, pandoc, libfuse, libattr1 installed.
  146. ```
  147. $ cd mergerfs
  148. $ make
  149. $ make man
  150. $ sudo make install
  151. ```
  152. # RUNTIME
  153. #### .mergerfs pseudo file ####
  154. ```
  155. <mountpoint>/.mergerfs
  156. ```
  157. 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.
  158. Even if xattrs are disabled for mergerfs the [{list,get,set}xattrs](http://linux.die.net/man/2/listxattr) calls against this pseudo file will still work.
  159. 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 (fstab).
  160. ##### Keys #####
  161. Use `xattr -l /mount/point/.mergerfs` to see all supported keys. Some are informational and therefore readonly.
  162. ###### user.mergerfs.srcmounts ######
  163. Used to query or modify the list of source mounts. When modifying there are several shortcuts to easy manipulation of the list.
  164. | Value | Description |
  165. |--------------|-------------|
  166. | [list] | set |
  167. | +<[list] | prepend |
  168. | +>[list] | append |
  169. | -[list] | remove all values provided |
  170. | -< | remove first in list |
  171. | -> | remove last in list |
  172. ###### minfreespace ######
  173. Input: interger with an optional multiplier suffix. **K**, **M**, or **G**.
  174. Output: value in bytes
  175. ###### moveonenospc ######
  176. Input: **true** and **false**
  177. Ouput: **true** or **false**
  178. ###### categories / funcs ######
  179. Input: short policy string as described elsewhere in this document
  180. Output: the policy string except for categories where its funcs have multiple types. In that case it will be a comma separated list
  181. ##### Example #####
  182. ```
  183. [trapexit:/tmp/mount] $ xattr -l .mergerfs
  184. user.mergerfs.srcmounts: /tmp/a:/tmp/b
  185. user.mergerfs.minfreespace: 4294967295
  186. user.mergerfs.moveonenospc: false
  187. ...
  188. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.category.search .mergerfs
  189. ff
  190. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.category.search newest .mergerfs
  191. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.category.search .mergerfs
  192. newest
  193. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.srcmounts +/tmp/c .mergerfs
  194. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.srcmounts .mergerfs
  195. /tmp/a:/tmp/b:/tmp/c
  196. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.srcmounts =/tmp/c .mergerfs
  197. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.srcmounts .mergerfs
  198. /tmp/c
  199. [trapexit:/tmp/mount] $ xattr -w user.mergerfs.srcmounts '+</tmp/a:/tmp/b' .mergerfs
  200. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.srcmounts .mergerfs
  201. /tmp/a:/tmp/b:/tmp/c
  202. ```
  203. #### file / directory xattrs ####
  204. While they won't show up when using [listxattr](http://linux.die.net/man/2/listxattr) **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:
  205. * **user.mergerfs.basepath:** the base mount point for the file given the current getattr policy
  206. * **user.mergerfs.relpath:** the relative path of the file from the perspective of the mount point
  207. * **user.mergerfs.fullpath:** the full path of the original file given the getattr policy
  208. * **user.mergerfs.allpaths:** a NUL ('\0') separated list of full paths to all files found
  209. ```
  210. [trapexit:/tmp/mount] $ ls
  211. A B C
  212. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.fullpath A
  213. /mnt/a/full/path/to/A
  214. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.basepath A
  215. /mnt/a
  216. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.relpath A
  217. /full/path/to/A
  218. [trapexit:/tmp/mount] $ xattr -p user.mergerfs.allpaths A | tr '\0' '\n'
  219. /mnt/a/full/path/to/A
  220. /mnt/b/full/path/to/A
  221. ```
  222. # TOOLING
  223. * https://github.com/trapexit/mergerfs-tools
  224. * mergerfs.ctl: A tool to make it easier to query and configure mergerfs at runtime
  225. * mergerfs.fsck: Provides permissions and ownership auditing and the ability to fix them
  226. * mergerfs.dedup: Will help identify and optionally remove duplicate files
  227. * mergerfs.balance: Rebalance files across drives by moving them from the most filled to the least filled
  228. * mergerfs.mktrash: Creates FreeDesktop.org Trash specification compatible directories on a mergerfs mount
  229. * https://github.com/trapexit/scorch
  230. * scorch: A tool to help discover silent corruption of files
  231. * https://github.com/trapexit/bbf
  232. * bbf (bad block finder): a tool to scan for and 'fix' hard drive bad blocks and find the files using those blocks
  233. # TIPS / NOTES
  234. * The recommended options are **defaults,allow_other,direct_io,use_ino**.
  235. * Run mergerfs as `root` unless you're merging paths which are owned by the same user otherwise strange permission issues may arise.
  236. * https://github.com/trapexit/backup-and-recovery-howtos : A set of guides / howtos on creating a data storage system, backing it up, maintaining it, and recovering from failure.
  237. * If you don't see some directories and files you expect in a merged point or policies seem to skip drives be sure the user has permission to all the underlying directories. Use `mergerfs.fsck` to audit the drive for out of sync permissions.
  238. * Do *not* use `direct_io` if you expect applications (such as rtorrent) to [mmap](http://linux.die.net/man/2/mmap) files. It is not currently supported in FUSE w/ `direct_io` enabled.
  239. * Since POSIX gives you only error or success on calls its difficult to determine the proper behavior when applying the behavior to multiple targets. **mergerfs** will return an error only if all attempts of an action fail. Any success will lead to a success returned. This means however that some odd situations may arise.
  240. * [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** its possible **Kodi** 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.
  241. * 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 attempt to merge together multiple sources of data which could be out of sync due to the different policies.
  242. * 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.
  243. # KNOWN ISSUES / BUGS
  244. #### directory mtime is not being updated
  245. 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.
  246. The reason this is the default is because any other policy would be far 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. That alone is far more expensive than `ff` but would also possibly spin up sleeping drives.
  247. If you always want the directory information from the one with the most recent mtime then use the `newest` policy for `getattr`.
  248. #### cached memory appears greater than it should be
  249. Use the `direct_io` option as described above. Due to what mergerfs is doing there ends up being two caches of a file under normal usage. One from the underlying filesystem and one from mergerfs. Enabling `direct_io` removes the mergerfs cache. This saves on memory but means the kernel needs to communicate with mergerfs more often and can therefore result in slower speeds.
  250. Since enabling `direct_io` disables `mmap` this is not an ideal situation however write speeds should be increased.
  251. If `direct_io` is disabled it is probably a good idea to enable `dropcacheonclose` to minimize double caching.
  252. #### NFS clients don't work
  253. Some NFS clients appear to fail when a mergerfs mount is exported. Kodi in particular seems to have issues.
  254. Try enabling the `use_ino` option. Some have reported that it fixes the issue.
  255. #### rtorrent fails with ENODEV (No such device)
  256. Be sure to 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 failback to traditional methods. FUSE does not currently support mmap while using `direct_io`. There will 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.
  257. #### mmap performance is really bad
  258. There [is a bug](https://lkml.org/lkml/2016/3/16/260) in caching which affects overall performance of mmap through FUSE in Linux 4.x kernels. It is fixed in [4.4.10 and 4.5.4](https://lkml.org/lkml/2016/5/11/59).
  259. #### When a program tries to move or rename a file it fails
  260. Please read the section above regarding [rename & link](#rename--link).
  261. 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`
  262. 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.
  263. #### Samba: Moving files / directories fails
  264. Workaround: Copy the file/directory and then remove the original rather than move.
  265. 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 it's 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.
  266. [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.
  267. 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.
  268. #### Trashing files occasionally fails
  269. 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 situtation 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.
  270. To create a `$topdir/.Trash` directory as defined in the standard use the [mergerfs-tools](https://github.com/trapexit/mergerfs-tools) tool `mergerfs.mktrash`.
  271. #### Supplemental user groups
  272. 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.
  273. 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 upto 32 supplemental groups. Linux >= 2.6.3 allows upto 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.
  274. #### mergerfs or libfuse crashing
  275. 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.
  276. 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.
  277. #### mergerfs appears to be crashing or exiting
  278. 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 its 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).
  279. #### mergerfs under heavy load and memory preasure leads to kernel panic
  280. https://lkml.org/lkml/2016/9/14/527
  281. ```
  282. [25192.515454] kernel BUG at /build/linux-a2WvEb/linux-4.4.0/mm/workingset.c:346!
  283. [25192.517521] invalid opcode: 0000 [#1] SMP
  284. [25192.519602] Modules linked in: netconsole ip6t_REJECT nf_reject_ipv6 ipt_REJECT nf_reject_ipv4 configfs binfmt_misc veth bridge stp llc nf_conntrack_ipv6 nf_defrag_ipv6 xt_conntrack ip6table_filter ip6_tables xt_multiport iptable_filter ipt_MASQUERADE nf_nat_masquerade_ipv4 xt_comment xt_nat iptable_nat nf_conntrack_ipv4 nf_defrag_ipv4 nf_nat_ipv4 nf_nat nf_conntrack xt_CHECKSUM xt_tcpudp iptable_mangle ip_tables x_tables intel_rapl x86_pkg_temp_thermal intel_powerclamp eeepc_wmi asus_wmi coretemp sparse_keymap kvm_intel ppdev kvm irqbypass mei_me 8250_fintek input_leds serio_raw parport_pc tpm_infineon mei shpchp mac_hid parport lpc_ich autofs4 drbg ansi_cprng dm_crypt algif_skcipher af_alg btrfs raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid0 multipath linear raid10 raid1 i915 crct10dif_pclmul crc32_pclmul aesni_intel i2c_algo_bit aes_x86_64 drm_kms_helper lrw gf128mul glue_helper ablk_helper syscopyarea cryptd sysfillrect sysimgblt fb_sys_fops drm ahci r8169 libahci mii wmi fjes video [last unloaded: netconsole]
  285. [25192.540910] CPU: 2 PID: 63 Comm: kswapd0 Not tainted 4.4.0-36-generic #55-Ubuntu
  286. [25192.543411] Hardware name: System manufacturer System Product Name/P8H67-M PRO, BIOS 3904 04/27/2013
  287. [25192.545840] task: ffff88040cae6040 ti: ffff880407488000 task.ti: ffff880407488000
  288. [25192.548277] RIP: 0010:[<ffffffff811ba501>] [<ffffffff811ba501>] shadow_lru_isolate+0x181/0x190
  289. [25192.550706] RSP: 0018:ffff88040748bbe0 EFLAGS: 00010002
  290. [25192.553127] RAX: 0000000000001c81 RBX: ffff8802f91ee928 RCX: ffff8802f91eeb38
  291. [25192.555544] RDX: ffff8802f91ee938 RSI: ffff8802f91ee928 RDI: ffff8804099ba2c0
  292. [25192.557914] RBP: ffff88040748bc08 R08: 000000000001a7b6 R09: 000000000000003f
  293. [25192.560237] R10: 000000000001a750 R11: 0000000000000000 R12: ffff8804099ba2c0
  294. [25192.562512] R13: ffff8803157e9680 R14: ffff8803157e9668 R15: ffff8804099ba2c8
  295. [25192.564724] FS: 0000000000000000(0000) GS:ffff88041f280000(0000) knlGS:0000000000000000
  296. [25192.566990] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
  297. [25192.569201] CR2: 00007ffabb690000 CR3: 0000000001e0a000 CR4: 00000000000406e0
  298. [25192.571419] Stack:
  299. [25192.573550] ffff8804099ba2c0 ffff88039e4f86f0 ffff8802f91ee928 ffff8804099ba2c8
  300. [25192.575695] ffff88040748bd08 ffff88040748bc58 ffffffff811b99bf 0000000000000052
  301. [25192.577814] 0000000000000000 ffffffff811ba380 000000000000008a 0000000000000080
  302. [25192.579947] Call Trace:
  303. [25192.582022] [<ffffffff811b99bf>] __list_lru_walk_one.isra.3+0x8f/0x130
  304. [25192.584137] [<ffffffff811ba380>] ? memcg_drain_all_list_lrus+0x190/0x190
  305. [25192.586165] [<ffffffff811b9a83>] list_lru_walk_one+0x23/0x30
  306. [25192.588145] [<ffffffff811ba544>] scan_shadow_nodes+0x34/0x50
  307. [25192.590074] [<ffffffff811a0e9d>] shrink_slab.part.40+0x1ed/0x3d0
  308. [25192.591985] [<ffffffff811a53da>] shrink_zone+0x2ca/0x2e0
  309. [25192.593863] [<ffffffff811a64ce>] kswapd+0x51e/0x990
  310. [25192.595737] [<ffffffff811a5fb0>] ? mem_cgroup_shrink_node_zone+0x1c0/0x1c0
  311. [25192.597613] [<ffffffff810a0808>] kthread+0xd8/0xf0
  312. [25192.599495] [<ffffffff810a0730>] ? kthread_create_on_node+0x1e0/0x1e0
  313. [25192.601335] [<ffffffff8182e34f>] ret_from_fork+0x3f/0x70
  314. [25192.603193] [<ffffffff810a0730>] ? kthread_create_on_node+0x1e0/0x1e0
  315. ```
  316. There is a bug in the kernel. A work around appears to be turning off `splice`. Add `no_splice_write,no_splice_move,no_splice_read` to mergerfs' options. Should be placed after `defaults` if it is used since it will turn them on. This however is not guaranteed to work.
  317. # FAQ
  318. #### Why use mergerfs over mhddfs?
  319. 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.
  320. If you wish to get similar behavior to mhddfs from mergerfs then set `category.create=ff`.
  321. #### Why use mergerfs over aufs?
  322. 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.
  323. #### Why use mergerfs over LVM/ZFS/BTRFS/RAID0 drive concatenation / striping?
  324. With simple JBOD / drive concatenation / stripping / RAID0 a single drive failure will result in full pool failure. mergerfs performs a similar behavior without the possibility of catastrophic failure and difficulties in recovery. Drives may fail however all other data will continue to be accessable.
  325. When combined with something like [SnapRaid](http://www.snapraid.it) and/or an offsite backup solution you can have the flexibilty of JBOD without the single point of failure.
  326. #### Why use mergerfs over ZFS?
  327. 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 major maintance and cost burdens as described [here](http://louwrentius.com/the-hidden-cost-of-using-zfs-for-your-home-nas.html).
  328. #### Can drives be written to directly? Outside of mergerfs while pooled?
  329. Yes. It will be represented immediately in the pool as the policies perscribe.
  330. #### Why do I get an "out of space" error even though the system says there's lots of space left?
  331. First make sure you've read the sections above about policies, path preserving, and the **moveonenospc** option.
  332. Remember that mergerfs is simply presenting a logical merging of the contents of the pooled drives. The reported free space is the aggregate space available **not** the contiguous space available. MergerFS does not split files across drives. If the writing of a file fills a drive and **moveonenospc** is disabled it will return an ENOSPC error.
  333. If **moveonenospc** is enabled but there exists no drives with enough space for the file and the data to be written (or the drive happened to fill up as the file was being moved) it will error indicating there isn't enough space.
  334. 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. In the future it might be worth considering the number of inodes available when making placement decisions in order to minimize this situation.
  335. #### Can mergerfs mounts be exported over NFS?
  336. Yes. Some clients (Kodi) have issues in which the contents of the NFS mount will not be presented but users have found that enabling the `use_ino` option often fixes that problem.
  337. #### Can mergerfs mounts be exported over Samba / SMB?
  338. Yes.
  339. #### How are inodes calculated?
  340. mergerfs-inode = (original-inode | (device-id << 32))
  341. While `ino_t` is 64 bits only a few filesystems use more than 32. Similarly, while `dev_t` is also 64 bits it was traditionally 16 bits. Bitwise or'ing them together should work most of the time. While totally unique inodes are preferred the overhead which would be needed does not seem to outweighted by the benefits.
  342. #### It's mentioned that there are some security issues with mhddfs. What are they? How does mergerfs address them?
  343. [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 many 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.
  344. 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).
  345. 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.
  346. # SUPPORT
  347. #### Issues with the software
  348. * github.com: https://github.com/trapexit/mergerfs/issues
  349. * email: trapexit@spawn.link
  350. * twitter: https://twitter.com/_trapexit
  351. #### Support development
  352. * Gratipay: https://gratipay.com/~trapexit
  353. * BitCoin: 12CdMhEPQVmjz3SSynkAEuD5q9JmhTDCZA
  354. # LINKS
  355. * http://github.com/trapexit/mergerfs
  356. * http://github.com/trapexit/mergerfs-tools
  357. * http://github.com/trapexit/scorch
  358. * http://github.com/trapexit/backup-and-recovery-howtos