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.

1002 lines
69 KiB

11 years ago
  1. % mergerfs(1) mergerfs user manual
  2. % Antonio SJ Musumeci <trapexit@spawn.link>
  3. % 2019-02-22
  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. * 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 read-only and read/write drives
  21. * Turn read-only files into symlinks to increase read performance
  22. # How it works
  23. 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.
  24. ```
  25. A + B = C
  26. /disk1 /disk2 /merged
  27. | | |
  28. +-- /dir1 +-- /dir1 +-- /dir1
  29. | | | | | |
  30. | +-- file1 | +-- file2 | +-- file1
  31. | | +-- file3 | +-- file2
  32. +-- /dir2 | | +-- file3
  33. | | +-- /dir3 |
  34. | +-- file4 | +-- /dir2
  35. | +-- file5 | |
  36. +-- file6 | +-- file4
  37. |
  38. +-- /dir3
  39. | |
  40. | +-- file5
  41. |
  42. +-- file6
  43. ```
  44. mergerfs does **not** support the copy-on-write (CoW) behavior 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 rw and ro drives.
  45. # OPTIONS
  46. ### mount options
  47. * **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.
  48. * **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 (enable **dropcacheonclose** to help with this problem). However, `mmap` does not work when `direct_io` is enabled.
  49. * **minfreespace=value**: the minimum space value used for creation policies. Understands 'K', 'M', and 'G' to represent kilobyte, megabyte, and gigabyte respectively. (default: 4G)
  50. * **moveonenospc=true|false**: 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 the 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)
  51. * **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.
  52. * **hard_remove**: force libfuse to immedately remove files when unlinked. This will keep the `.fuse_hidden` files from showing up but if software uses an opened but unlinked file in certain ways it could result in errors.
  53. * **dropcacheonclose=true|false**: 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)
  54. * **symlinkify=true|false**: when enabled (set to **true**) 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)
  55. * **symlinkify_timeout=value**: time to wait, in seconds, to activate the **symlinkify** behavior. (default: 3600)
  56. * **nullrw=true|false**: turns reads and writes into no-ops. The request will succeed but do nothing. Useful for benchmarking mergerfs. (default: false)
  57. * **ignorepponrename=true|false**: 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)
  58. * **security_capability=true|false**: If false return ENOATTR when xattr security.capability is queried. (default: true)
  59. * **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)
  60. * **link_cow=true|false**: 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)
  61. * **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)
  62. * **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)
  63. * **threads=num**: number of threads to use in multithreaded mode. When set to zero (the default) 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: number of cores) *NOTE2:* the option is unavailable when built with system libfuse.
  64. * **fsname=name**: 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.
  65. * **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**
  66. * **category.&lt;category&gt;=&lt;policy&gt;**: Sets policy of all FUSE functions in the provided category. Example: **category.create=mfs**
  67. * **cache.open=&lt;int&gt;**: 'open' policy cache timeout in seconds. (default: 0)
  68. * **cache.statfs=&lt;int&gt;**: 'statfs' cache timeout in seconds. (default: 0)
  69. * **cache.attr=&lt;int&gt;**: file attribute cache timeout in seconds. (default: 1)
  70. * **cache.entry=&lt;int&gt;**: file name lookup cache timeout in seconds. (default: 1)
  71. * **cache.negative_entry=&lt;int&gt;**: negative file name lookup cache timeout in seconds. (default: 0)
  72. **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.
  73. ### branches
  74. The 'branches' (formerly 'srcmounts') 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. 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.
  75. 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.**
  76. Each branch can have a suffix of `=RW` (read / write), `=RO` (read-only), or `=NC` (no create). These suffixes work with globs as well and will apply to each path found. `RW` is the default behavior and those paths will be eligible for all policy categories. `RO` will exclude those paths from `create` and `action` policies (just as a filesystem being mounted `ro` would). `NC` will exclude those paths from `create` policies (you can't create but you can change / delete).
  77. ```
  78. # mergerfs -o allow_other,use_ino /mnt/disk\*:/mnt/cdrom /media/drives
  79. ```
  80. The above line will use all mount points in /mnt prefixed with **disk** and the **cdrom**.
  81. To have the pool mounted at boot or otherwise accessable from related tools use **/etc/fstab**.
  82. ```
  83. # <file system> <mount point> <type> <options> <dump> <pass>
  84. /mnt/disk*:/mnt/cdrom /media/drives fuse.mergerfs allow_other,use_ino 0 0
  85. ```
  86. **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.
  87. **NOTE:** for mounting via **fstab** to work you must have **mount.fuse** installed. For Ubuntu/Debian it is included in the **fuse** package.
  88. ### symlinkify
  89. Due to the levels of indirection introduced by mergerfs and the underlying technology FUSE there can be varying levels of performance degredation. 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.
  90. **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.
  91. **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.
  92. ### nullrw
  93. Due to how FUSE works there is an overhead to all requests made to a FUSE filesystem. 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 boundries.
  94. 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.
  95. Example:
  96. ```
  97. $ dd if=/dev/zero of=/path/to/mergerfs/mount/benchmark ibs=1M obs=512 count=1024 conv=fdatasync
  98. 1024+0 records in
  99. 2097152+0 records out
  100. 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 15.4067 s, 69.7 MB/s
  101. $ dd if=/dev/zero of=/path/to/mergerfs/mount/benchmark ibs=1M obs=1M count=1024 conv=fdatasync
  102. 1024+0 records in
  103. 1024+0 records out
  104. 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 0.219585 s, 4.9 GB/s
  105. $ dd if=/path/to/mergerfs/mount/benchmark of=/dev/null bs=512 count=102400 conv=fdatasync
  106. 102400+0 records in
  107. 102400+0 records out
  108. 52428800 bytes (52 MB, 50 MiB) copied, 0.757991 s, 69.2 MB/s
  109. $ dd if=/path/to/mergerfs/mount/benchmark of=/dev/null bs=1M count=1024 conv=fdatasync
  110. 1024+0 records in
  111. 1024+0 records out
  112. 1073741824 bytes (1.1 GB, 1.0 GiB) copied, 0.18405 s, 5.8 GB/s
  113. ```
  114. It's important to test with different `obs` (output block size) values since the relative overhead is greater with smaller values. As you can see above the size of a read or write can massively impact theoretical performance. If an application performs much worse through mergerfs it could very well be that it doesn't optimally size its read and write requests. In such cases contact the mergerfs author so it can be investigated.
  115. ### xattr
  116. 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.
  117. `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.
  118. `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 will be more efficient than `noattr` but will cause mergerfs' runtime control via the hidden file to stop working.
  119. # FUNCTIONS / POLICIES / CATEGORIES
  120. The POSIX filesystem API is made up of a number of functions. **creat**, **stat**, **chown**, etc. 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 what file or directory is chosen when performing that behavior. 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.
  121. Some functions, listed in the category `N/A` below, can not be assigned the normal policies. All functions which work on file handles use the handle which was acquired by `open` or `create`. `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.
  122. 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 sub mounts 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.
  123. #### Function / Category classifications
  124. | Category | FUSE Functions |
  125. |----------|-------------------------------------------------------------------------------------|
  126. | action | chmod, chown, link, removexattr, rename, rmdir, setxattr, truncate, unlink, utimens |
  127. | create | create, mkdir, mknod, symlink |
  128. | search | access, getattr, getxattr, ioctl, listxattr, open, readlink |
  129. | N/A | fallocate, fgetattr, fsync, ftruncate, ioctl, read, readdir, release, statfs, write |
  130. In cases where something may be searched (to confirm a directory exists across all source mounts) **getattr** will be used.
  131. #### Path Preservation
  132. Policies, as described below, are of two basic types. `path preserving` and `non-path preserving`.
  133. All policies which start with `ep` (**epff**, **eplfs**, **eplus**, **epmfs**, **eprand**) are `path preserving`. `ep` stands for `existing path`.
  134. A path preserving policy will only consider drives where the relative path being accessed already exists.
  135. When using non-path preserving policies paths will be cloned to target drives as necessary.
  136. #### Filters
  137. 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 policy type defines the sorting but filtering is mostly uniform as described below.
  138. * No **search** policies filter.
  139. * All **action** policies will filter out branches which are mounted **read-only** or tagged as **RO (read-only)**.
  140. * All **create** policies will filter out branches which are mounted **read-only**, tagged **RO (read-only)** or **NC (no create)**, or has available space less than `minfreespace`.
  141. If all branches are filtered an error will be returned. Typically **EROFS** or **ENOSPC** depending on the reasons.
  142. #### Policy descriptions
  143. | Policy | Description |
  144. |------------------|------------------------------------------------------------|
  145. | all | Search category: same as **epall**. Action category: same as **epall**. Create category: for **mkdir**, **mknod**, and **symlink** it will apply to all branches. **create** works like **ff**. |
  146. | epall (existing path, all) | Search category: same as **epff** (but more expensive because it doesn't stop after finding a valid branch). Action category: apply to all found. Create category: 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). |
  147. | 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. |
  148. | eplfs (existing path, least free space) | Of all the branches on which the relative path exists choose the drive with the least free space. |
  149. | eplus (existing path, least used space) | Of all the branches on which the relative path exists choose the drive with the least used space. |
  150. | epmfs (existing path, most free space) | Of all the branches on which the relative path exists choose the drive with the most free space. |
  151. | eprand (existing path, random) | Calls **epall** and then randomizes. |
  152. | erofs | Exclusively return **-1** with **errno** set to **EROFS** (read-only filesystem). |
  153. | ff (first found) | Search category: same as **epff**. Action category: same as **epff**. Create category: Given the order of the drives, as defined at mount time or configured at runtime, act on the first one found. |
  154. | lfs (least free space) | Search category: same as **eplfs**. Action category: same as **eplfs**. Create category: Pick the drive with the least available free space. |
  155. | lus (least used space) | Search category: same as **eplus**. Action category: same as **eplus**. Create category: Pick the drive with the least used space. |
  156. | mfs (most free space) | Search category: same as **epmfs**. Action category: same as **epmfs**. Create category: Pick the drive with the most available free space. |
  157. | newest | Pick the file / directory with the largest mtime. |
  158. | rand (random) | Calls **all** and then randomizes. |
  159. #### Defaults ####
  160. | Category | Policy |
  161. |----------|--------|
  162. | action | epall |
  163. | create | epmfs |
  164. | search | ff |
  165. #### rename & link ####
  166. **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` be properly handled.
  167. `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). So if a `rename`'s source and target are on different drives within the pool it creates an issue.
  168. 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.
  169. 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.
  170. * If using a **create** policy which tries to preserve directory paths (epff,eplfs,eplus,epmfs)
  171. * Using the **rename** policy get the list of files to rename
  172. * For each file attempt rename:
  173. * If failure with ENOENT run **create** policy
  174. * If create policy returns the same drive as currently evaluating then clone the path
  175. * Re-attempt rename
  176. * If **any** of the renames succeed the higher level rename is considered a success
  177. * If **no** renames succeed the first error encountered will be returned
  178. * On success:
  179. * Remove the target from all drives with no source file
  180. * Remove the source from all drives which failed to rename
  181. * If using a **create** policy which does **not** try to preserve directory paths
  182. * Using the **rename** policy get the list of files to rename
  183. * Using the **getattr** policy get the target path
  184. * For each file attempt rename:
  185. * If the source drive != target drive:
  186. * Clone target path from target drive to source drive
  187. * Rename
  188. * If **any** of the renames succeed the higher level rename is considered a success
  189. * If **no** renames succeed the first error encountered will be returned
  190. * On success:
  191. * Remove the target from all drives with no source file
  192. * Remove the source from all drives which failed to rename
  193. The the removals are subject to normal entitlement checks.
  194. The above behavior will help minimize the likelihood of EXDEV being returned but it will still be possible.
  195. **link** uses the same strategy but without the removals.
  196. #### readdir ####
  197. [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**.
  198. #### statfs / statvfs ####
  199. [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. Filesystems mounted further down the tree of the branch will not be included when checking the mount's stats.
  200. The options `statfs` and `statfs_ignore` can be used to modify `statfs` behavior.
  201. # BUILDING
  202. **NOTE:** Prebuilt packages can be found at: https://github.com/trapexit/mergerfs/releases
  203. First get the code from [github](https://github.com/trapexit/mergerfs).
  204. ```
  205. $ git clone https://github.com/trapexit/mergerfs.git
  206. $ # or
  207. $ wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs-<ver>.tar.gz
  208. ```
  209. #### Debian / Ubuntu
  210. ```
  211. $ cd mergerfs
  212. $ sudo tools/install-build-pkgs
  213. $ make deb
  214. $ sudo dpkg -i ../mergerfs_version_arch.deb
  215. ```
  216. #### Fedora
  217. ```
  218. $ su -
  219. # cd mergerfs
  220. # tools/install-build-pkgs
  221. # make rpm
  222. # rpm -i rpmbuild/RPMS/<arch>/mergerfs-<verion>.<arch>.rpm
  223. ```
  224. #### Generically
  225. Have git, g++, make, python, automake, libtool installed.
  226. ```
  227. $ cd mergerfs
  228. $ make
  229. $ sudo make install
  230. ```
  231. #### Generically with system libfuse
  232. **NOTE:** Configurable threading and thus `-o threads=num` option will be unavailable when built with system libfuse.
  233. Have git, g++, make, python, pkg-config installed.
  234. Also, install libfuse >= 2.9.7 (but not libfuse-3.x) and matching libfuse-dev (or libfuse-devel).
  235. ```
  236. $ cd mergerfs
  237. $ make INTERNAL_FUSE=0
  238. $ sudo make INTERNAL_FUSE=0 install
  239. ```
  240. #### Other build options
  241. ```
  242. $ make STATIC=1 # builds a static binary
  243. $ make LTO=1 # perform link time optimization
  244. ```
  245. # RUNTIME CONFIG
  246. #### .mergerfs pseudo file ####
  247. ```
  248. <mountpoint>/.mergerfs
  249. ```
  250. 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.
  251. 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).
  252. ##### Keys #####
  253. Use `xattr -l /mountpoint/.mergerfs` to see all supported keys. Some are informational and therefore read-only.
  254. ###### user.mergerfs.branches ######
  255. **NOTE:** formerly `user.mergerfs.srcmounts` but said key is still supported.
  256. Used to query or modify the list of branches. When modifying there are several shortcuts to easy manipulation of the list.
  257. | Value | Description |
  258. |--------------|-------------|
  259. | [list] | set |
  260. | +<[list] | prepend |
  261. | +>[list] | append |
  262. | -[list] | remove all values provided |
  263. | -< | remove first in list |
  264. | -> | remove last in list |
  265. `xattr -w user.mergerfs.branches +</mnt/drive3 /mnt/pool/.mergerfs`
  266. The `=NC`, `=RO`, `=RW` syntax works just as on the command line.
  267. ###### minfreespace ######
  268. Input: interger with an optional multiplier suffix. **K**, **M**, or **G**.
  269. Output: value in bytes
  270. ###### moveonenospc ######
  271. Input: **true** and **false**
  272. Ouput: **true** or **false**
  273. ###### categories / funcs ######
  274. Input: short policy string as described elsewhere in this document
  275. Output: the policy string except for categories where its funcs have multiple types. In that case it will be a comma separated list
  276. ##### Example #####
  277. ```
  278. [trapexit:/mnt/mergerfs] $ xattr -l .mergerfs
  279. user.mergerfs.branches: /mnt/a:/mnt/b
  280. user.mergerfs.minfreespace: 4294967295
  281. user.mergerfs.moveonenospc: false
  282. ...
  283. [trapexit:/mnt/mergerfs] $ xattr -p user.mergerfs.category.search .mergerfs
  284. ff
  285. [trapexit:/mnt/mergerfs] $ xattr -w user.mergerfs.category.search newest .mergerfs
  286. [trapexit:/mnt/mergerfs] $ xattr -p user.mergerfs.category.search .mergerfs
  287. newest
  288. [trapexit:/mnt/mergerfs] $ xattr -w user.mergerfs.branches +/mnt/c .mergerfs
  289. [trapexit:/mnt/mergerfs] $ xattr -p user.mergerfs.branches .mergerfs
  290. /mnt/a:/mnt/b:/mnt/c
  291. [trapexit:/mnt/mergerfs] $ xattr -w user.mergerfs.branches =/mnt/c .mergerfs
  292. [trapexit:/mnt/mergerfs] $ xattr -p user.mergerfs.branches .mergerfs
  293. /mnt/c
  294. [trapexit:/mnt/mergerfs] $ xattr -w user.mergerfs.branches '+</mnt/a:/mnt/b' .mergerfs
  295. [trapexit:/mnt/mergerfs] $ xattr -p user.mergerfs.branches .mergerfs
  296. /mnt/a:/mnt/b:/mnt/c
  297. ```
  298. #### file / directory xattrs ####
  299. 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:
  300. * **user.mergerfs.basepath:** the base mount point for the file given the current getattr policy
  301. * **user.mergerfs.relpath:** the relative path of the file from the perspective of the mount point
  302. * **user.mergerfs.fullpath:** the full path of the original file given the getattr policy
  303. * **user.mergerfs.allpaths:** a NUL ('\0') separated list of full paths to all files found
  304. ```
  305. [trapexit:/mnt/mergerfs] $ ls
  306. A B C
  307. [trapexit:/mnt/mergerfs] $ xattr -p user.mergerfs.fullpath A
  308. /mnt/a/full/path/to/A
  309. [trapexit:/mnt/mergerfs] $ xattr -p user.mergerfs.basepath A
  310. /mnt/a
  311. [trapexit:/mnt/mergerfs] $ xattr -p user.mergerfs.relpath A
  312. /full/path/to/A
  313. [trapexit:/mnt/mergerfs] $ xattr -p user.mergerfs.allpaths A | tr '\0' '\n'
  314. /mnt/a/full/path/to/A
  315. /mnt/b/full/path/to/A
  316. ```
  317. # TOOLING
  318. * https://github.com/trapexit/mergerfs-tools
  319. * mergerfs.ctl: A tool to make it easier to query and configure mergerfs at runtime
  320. * mergerfs.fsck: Provides permissions and ownership auditing and the ability to fix them
  321. * mergerfs.dedup: Will help identify and optionally remove duplicate files
  322. * mergerfs.dup: Ensure there are at least N copies of a file across the pool
  323. * mergerfs.balance: Rebalance files across drives by moving them from the most filled to the least filled
  324. * mergerfs.mktrash: Creates FreeDesktop.org Trash specification compatible directories on a mergerfs mount
  325. * https://github.com/trapexit/scorch
  326. * scorch: A tool to help discover silent corruption of files and keep track of files
  327. * https://github.com/trapexit/bbf
  328. * bbf (bad block finder): a tool to scan for and 'fix' hard drive bad blocks and find the files using those blocks
  329. # CACHING
  330. #### page caching
  331. The kernel performs caching of data pages on all files not opened with `O_DIRECT`. Due to mergerfs using FUSE and therefore being a userland process the kernel can double cache the content being read through mergerfs. Once from the underlying filesystem and once for mergerfs. Using `direct_io` and/or `dropcacheonclose` help minimize the double caching. `direct_io` will instruct the kernel to bypass the page cache for files opened through mergerfs. `dropcacheonclose` will cause mergerfs to instruct the kernel to flush a file's page cache for which it had opened when closed. If most data is read once its probably best to enable both (read above for details and limitations).
  332. If a cache is desired for mergerfs do not enable `direct_io` and instead possibly use `auto_cache` or `kernel_cache`. By default FUSE will invalidate cached pages when a file is opened. By using `auto_cache` it will instead use `getattr` to check if a file has changed when the file is opened and if so will flush the cache. `ac_attr_timeout` is the timeout for keeping said cache. Alternatively `kernel_cache` will keep the cache across opens unless invalidated through other means. You should only uses these if you do not plan to write/modify the same files through mergerfs and the underlying filesystem at the same time. It could lead to corruption. Then again doing so without caching can also cause issues.
  333. It's a difficult balance between 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 good way to achieve this.
  334. #### entry & attribute caching
  335. 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-existant files).
  336. #### policy caching
  337. Policies are run every time a function is called. These policies can be expensive depending on the setup and 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.
  338. 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.
  339. This cache is useful in cases like that of **Transmission** which has a "open, read/write, close" pattern (which is much more costly due to the FUSE overhead than normal.)
  340. #### statfs caching
  341. 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.
  342. 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.
  343. #### writeback caching
  344. writeback caching is a technique for improving write speeds by batching writes at a faster device and then bulk writing to the slower device. With FUSE the kernel will wait for a number of writes to be made and then send it to the filesystem as one request. mergerfs currently uses a slightly modified and vendored libfuse 2.9.7 which does not support writeback caching. However, a prototype port to libfuse 3.x has been made and the writeback cache appears to work as expected (though performance improvements greatly depend on the way the client app writes data). Once the port is complete and thoroughly tested writeback caching will be available.
  345. #### tiered caching
  346. 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.
  347. 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.
  348. 1. Fast network, slow drives, many readers: You've a 10+Gbps network with many readers and your regular drives can't keep up.
  349. 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.
  350. 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.
  351. With #2 one could use dm-cache as well but there is another solution which requires only mergerfs and a cronjob.
  352. 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.
  353. 2. The 'cache' pool should have the cache drives listed first.
  354. 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.
  355. 4. Enable `moveonenospc` and set `minfreespace` appropriately. Perhaps setting `minfreespace` to the size of the largest cache drive.
  356. 5. Set your programs to use the cache pool.
  357. 6. Save one of the below scripts or create you're own.
  358. 7. Use `cron` (as root) to schedule the command at whatever frequency is appropriate for your workflow.
  359. ##### time based expiring
  360. 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".
  361. ```
  362. #!/bin/bash
  363. if [ $# != 3 ]; then
  364. echo "usage: $0 <cache-drive> <backing-pool> <days-old>"
  365. exit 1
  366. fi
  367. CACHE="${1}"
  368. BACKING="${2}"
  369. N=${3}
  370. find "${CACHE}" -type f -atime +${N} -printf '%P\n' | \
  371. rsync --files-from=- -axqHAXWES --preallocate --remove-source-files "${CACHE}/" "${BACKING}/"
  372. ```
  373. ##### percentage full expiring
  374. Move the oldest file from the cache to the backing pool. Continue till below percentage threshold.
  375. ```
  376. #!/bin/bash
  377. if [ $# != 3 ]; then
  378. echo "usage: $0 <cache-drive> <backing-pool> <percentage>"
  379. exit 1
  380. fi
  381. CACHE="${1}"
  382. BACKING="${2}"
  383. PERCENTAGE=${3}
  384. set -o errexit
  385. while [ $(df --output=pcent "${CACHE}" | grep -v Use | cut -d'%' -f1) -gt ${PERCENTAGE} ]
  386. do
  387. FILE=$(find "${CACHE}" -type f -printf '%A@ %P\n' | \
  388. sort | \
  389. head -n 1 | \
  390. cut -d' ' -f2-)
  391. test -n "${FILE}"
  392. rsync -axqHAXWES --preallocate --remove-source-files "${CACHE}/./${FILE}" "${BACKING}/"
  393. done
  394. ```
  395. # TIPS / NOTES
  396. * **use_ino** will only work when used with mergerfs 2.18.0 and above.
  397. * Run mergerfs as `root` (with **allow_other**) unless you're merging paths which are owned by the same user otherwise strange permission issues may arise.
  398. * 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.
  399. * 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.
  400. * 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. Enabling `dropcacheonclose` is recommended when `direct_io` is disabled.
  401. * 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.
  402. * [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 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.
  403. * 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.
  404. * 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.
  405. # KNOWN ISSUES / BUGS
  406. #### directory mtime is not being updated
  407. 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.
  408. 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.
  409. If you always want the directory information from the one with the most recent mtime then use the `newest` policy for `getattr`.
  410. #### `mv /mnt/pool/foo /mnt/disk1/foo` removes `foo`
  411. This is not a bug.
  412. Run in verbose mode to better undertand what's happening:
  413. ```
  414. $ mv -v /mnt/pool/foo /mnt/disk1/foo
  415. copied '/mnt/pool/foo' -> '/mnt/disk1/foo'
  416. removed '/mnt/pool/foo'
  417. $ ls /mnt/pool/foo
  418. ls: cannot access '/mnt/pool/foo': No such file or directory
  419. ```
  420. `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.
  421. 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.
  422. #### cached memory appears greater than it should be
  423. 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.
  424. Since enabling `direct_io` disables `mmap` this is not an ideal situation however write speeds should be increased.
  425. If `direct_io` is disabled it is probably a good idea to enable `dropcacheonclose` to minimize double caching.
  426. #### NFS clients returning ESTALE / Stale file handle
  427. Be sure to use `noforget` and `use_ino` arguments.
  428. #### NFS clients don't work
  429. Some NFS clients appear to fail when a mergerfs mount is exported. Kodi in particular seems to have issues.
  430. Try enabling the `use_ino` option. Some have reported that it fixes the issue.
  431. #### rtorrent fails with ENODEV (No such device)
  432. 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 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`.
  433. #### Plex doesn't work with mergerfs
  434. It does. If you're trying to put Plex's config / metadata on mergerfs you have to leave `direct_io` off because Plex is using sqlite which apparently needs mmap. mmap doesn't work with `direct_io`. To fix this place the data elsewhere or disable `direct_io` (with `dropcacheonclose=true`).
  435. If the issue is that scanning doesn't seem to pick up media then be sure to set `func.getattr=newest` as mentioned above.
  436. #### mmap performance is really bad
  437. 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).
  438. #### When a program tries to move or rename a file it fails
  439. Please read the section above regarding [rename & link](#rename--link).
  440. 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`
  441. 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.
  442. #### Samba: Moving files / directories fails
  443. Workaround: Copy the file/directory and then remove the original rather than move.
  444. 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.
  445. [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.
  446. 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.
  447. #### Trashing files occasionally fails
  448. 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.
  449. To create a `$topdir/.Trash` directory as defined in the standard use the [mergerfs-tools](https://github.com/trapexit/mergerfs-tools) tool `mergerfs.mktrash`.
  450. #### tar: Directory renamed before its status could be extracted
  451. Make sure to use the `use_ino` option.
  452. #### Supplemental user groups
  453. 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.
  454. 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.
  455. #### mergerfs or libfuse crashing
  456. **NOTE:** as of mergerfs 2.22.0 it includes the most recent version of libfuse (or requires libfuse-2.9.7) so any crash should be reported. For older releases continue reading...
  457. 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.
  458. 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.
  459. #### mergerfs appears to be crashing or exiting
  460. 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).
  461. #### mergerfs under heavy load and memory preasure leads to kernel panic
  462. https://lkml.org/lkml/2016/9/14/527
  463. ```
  464. [25192.515454] kernel BUG at /build/linux-a2WvEb/linux-4.4.0/mm/workingset.c:346!
  465. [25192.517521] invalid opcode: 0000 [#1] SMP
  466. [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]
  467. [25192.540910] CPU: 2 PID: 63 Comm: kswapd0 Not tainted 4.4.0-36-generic #55-Ubuntu
  468. [25192.543411] Hardware name: System manufacturer System Product Name/P8H67-M PRO, BIOS 3904 04/27/2013
  469. [25192.545840] task: ffff88040cae6040 ti: ffff880407488000 task.ti: ffff880407488000
  470. [25192.548277] RIP: 0010:[<ffffffff811ba501>] [<ffffffff811ba501>] shadow_lru_isolate+0x181/0x190
  471. [25192.550706] RSP: 0018:ffff88040748bbe0 EFLAGS: 00010002
  472. [25192.553127] RAX: 0000000000001c81 RBX: ffff8802f91ee928 RCX: ffff8802f91eeb38
  473. [25192.555544] RDX: ffff8802f91ee938 RSI: ffff8802f91ee928 RDI: ffff8804099ba2c0
  474. [25192.557914] RBP: ffff88040748bc08 R08: 000000000001a7b6 R09: 000000000000003f
  475. [25192.560237] R10: 000000000001a750 R11: 0000000000000000 R12: ffff8804099ba2c0
  476. [25192.562512] R13: ffff8803157e9680 R14: ffff8803157e9668 R15: ffff8804099ba2c8
  477. [25192.564724] FS: 0000000000000000(0000) GS:ffff88041f280000(0000) knlGS:0000000000000000
  478. [25192.566990] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
  479. [25192.569201] CR2: 00007ffabb690000 CR3: 0000000001e0a000 CR4: 00000000000406e0
  480. [25192.571419] Stack:
  481. [25192.573550] ffff8804099ba2c0 ffff88039e4f86f0 ffff8802f91ee928 ffff8804099ba2c8
  482. [25192.575695] ffff88040748bd08 ffff88040748bc58 ffffffff811b99bf 0000000000000052
  483. [25192.577814] 0000000000000000 ffffffff811ba380 000000000000008a 0000000000000080
  484. [25192.579947] Call Trace:
  485. [25192.582022] [<ffffffff811b99bf>] __list_lru_walk_one.isra.3+0x8f/0x130
  486. [25192.584137] [<ffffffff811ba380>] ? memcg_drain_all_list_lrus+0x190/0x190
  487. [25192.586165] [<ffffffff811b9a83>] list_lru_walk_one+0x23/0x30
  488. [25192.588145] [<ffffffff811ba544>] scan_shadow_nodes+0x34/0x50
  489. [25192.590074] [<ffffffff811a0e9d>] shrink_slab.part.40+0x1ed/0x3d0
  490. [25192.591985] [<ffffffff811a53da>] shrink_zone+0x2ca/0x2e0
  491. [25192.593863] [<ffffffff811a64ce>] kswapd+0x51e/0x990
  492. [25192.595737] [<ffffffff811a5fb0>] ? mem_cgroup_shrink_node_zone+0x1c0/0x1c0
  493. [25192.597613] [<ffffffff810a0808>] kthread+0xd8/0xf0
  494. [25192.599495] [<ffffffff810a0730>] ? kthread_create_on_node+0x1e0/0x1e0
  495. [25192.601335] [<ffffffff8182e34f>] ret_from_fork+0x3f/0x70
  496. [25192.603193] [<ffffffff810a0730>] ? kthread_create_on_node+0x1e0/0x1e0
  497. ```
  498. There is a bug in the kernel. A work around appears to be turning off `splice`. Don't add the `splice_*` arguments or add `no_splice_write,no_splice_move,no_splice_read`. This, however, is not guaranteed to work.
  499. #### rm: fts_read failed: No such file or directory
  500. Not *really* a bug. The FUSE library will move files when asked to delete them as a way to deal with certain edge cases and then later delete that file when its clear the file is no longer needed. This however can lead to two issues. One is that these hidden files are noticed by `rm -rf` or `find` when scanning directories and they may try to remove them and they might have disappeared already. There is nothing *wrong* about this happening but it can be annoying. The second issue is that a directory might not be able to removed on account of the hidden file being still there.
  501. Using the **hard_remove** option will make it so these temporary files are not used and files are deleted immedately. That has a side effect however. Files which are unlinked and then they are still used (in certain forms) will result in an error.
  502. A fix is in the works for this.
  503. # FAQ
  504. #### How well does mergerfs scale? Is it "production ready?"
  505. 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 is it's sole solution for pooling drives.
  506. #### Can mergerfs be used with drives which already have data / are in use?
  507. Yes. MergerFS is a proxy and does **NOT** interfere with the normal form or function of the drives / mounts / paths it manages.
  508. 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.
  509. #### Can mergerfs be removed without affecting the data?
  510. See the previous question's answer.
  511. #### Do hard links work?
  512. Yes. You need to use `use_ino` to support proper reporting of inodes.
  513. What mergerfs does not do is fake hard links across branches. Read the section "rename & link" for how it.
  514. #### Does mergerfs support CoW / copy-on-write?
  515. 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.
  516. #### Why can't I see my files / directories?
  517. It's almost always a permissions issue. Unlike mhddfs, which runs as root and attempts to access content as such, mergerfs always changes it's 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.
  518. 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`.
  519. 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.
  520. #### Why is only one drive being used?
  521. Are you using a path preserving policy? The default policy for file creation is `epmfs`. That means only the drives with the path preexisting will be considered when creating a file. If you don't care about where files and directories are created you likely shouldn't be using a path preserving policy and instead something like `mfs`.
  522. This can be especially apparent when filling an empty pool from an external source. 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 transfering your data. Setting `func.mkdir=epall` can simplify managing path perservation for `create`.
  523. #### Why was libfuse embedded into mergerfs?
  524. 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 pratical (no package offered, user inexperience, etc.). The only practical way to provide a stable runtime on those systems was to "vendor" the library into the project.
  525. #### Why use mergerfs over mhddfs?
  526. 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.
  527. Below is an example of mhddfs and mergerfs setup to work similarly.
  528. `mhddfs -o mlimit=4G,allow_other /mnt/drive1,/mnt/drive2 /mnt/pool`
  529. `mergerfs -o minfreespace=4G,allow_other,category.create=ff /mnt/drive1:/mnt/drive2 /mnt/pool`
  530. #### Why use mergerfs over aufs?
  531. aufs is mostly abandoned and no longer available in many distros.
  532. 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.
  533. #### Why use mergerfs over unionfs?
  534. UnionFS is more like aufs then 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.
  535. #### Why use mergerfs over LVM/ZFS/BTRFS/RAID0 drive concatenation / striping?
  536. 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 the difficulties in recovery. Drives may fail however all other data will continue to be accessable.
  537. 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.
  538. #### Why use mergerfs over ZFS?
  539. 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).
  540. #### Can drives be written to directly? Outside of mergerfs while pooled?
  541. Yes, however its not recommended to use the same file from within the pool and from without at the same time. Especially if using caching of any kind (cache.entry, cache.attr, ac_attr_timeout, cache.negative_entry, auto_cache, kernel_cache).
  542. #### 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?
  543. First make sure you've read the sections above about policies, path preservation, branch filtering, and the options **minfreespace**, **moveonenospc**, **statfs**, and **statfs_ignore**.
  544. 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.
  545. 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.
  546. 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.
  547. 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 its 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.
  548. #### Can mergerfs mounts be exported over NFS?
  549. Yes. Due to current usage of libfuse by mergerfs and how NFS interacts with it it is necessary to add `noforget` to mergerfs options to keep from getting "stale file handle" errors.
  550. 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.
  551. #### Can mergerfs mounts be exported over Samba / SMB?
  552. Yes. While some users have reported problems it appears to always be related to how Samba is setup in relation to permissions.
  553. #### How are inodes calculated?
  554. mergerfs-inode = (original-inode | (device-id << 32))
  555. 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.
  556. While atypical, yes, inodes can be reused and not refer to the same file. The internal id 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 (nodeid,generation). That tuple is not user facing. The inode is merely metadata passed through the kernel and found using the `stat` family of calls or `readdir`.
  557. From FUSE docs regarding `use_ino`:
  558. ```
  559. Honor the st_ino field in the functions getattr() and
  560. fill_dir(). This value is used to fill in the st_ino field
  561. in the stat(2), lstat(2), fstat(2) functions and the d_ino
  562. field in the readdir(2) function. The filesystem does not
  563. have to guarantee uniqueness, however some applications
  564. rely on this value being unique for the whole filesystem.
  565. Note that this does *not* affect the inode that libfuse
  566. and the kernel use internally (also called the "nodeid").
  567. ```
  568. #### I notice massive slowdowns of writes over NFS
  569. Due to how NFS works and interacts with FUSE when not using `direct_io` its possible that a getxattr for `security.capability` will be issued prior to any write. This will usually result in a massive slowdown for writes. Using `direct_io` will keep this from happening (and generally good to enable unless you need the features it disables) but the `security_capability` option can also help by short circuiting the call and returning `ENOATTR`.
  570. You could also set `xattr` to `noattr` or `nosys` to short circuit or stop all xattr requests.
  571. #### What are these .fuse_hidden files?
  572. When not using `hard_remove` libfuse will create .fuse_hiddenXXXXXXXX files when an opened file is unlinked. This is to simplify "use after unlink" usecases. There is a possibility these files end up being picked up by software scanning directories and not ignoring hidden files. This is rarely a problem but a solution is in the works.
  573. The files are cleaned up once the file is finally closed. Only if mergerfs crashes or is killed would they be left around. They are safe to remove as they are already unlinked files.
  574. #### It's mentioned that there are some security issues with mhddfs. What are they? How does mergerfs address them?
  575. [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.
  576. 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).
  577. 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.
  578. # PERFORMANCE TWEAKING
  579. * try adding (or removing) `direct_io`
  580. * try adding (or removing) `auto_cache`
  581. * try adding (or removing) `kernel_cache`
  582. * try adding (or removing) `splice_move`, `splice_read`, and `splice_write`
  583. * try increasing cache timeouts `cache.attr`, `cache.entry`, `cache.negative_entry`
  584. * try changing the number of worker threads
  585. * try disabling `security_capability` or `xattr`
  586. * test theoretical performance using `nullrw` or mounting a ram disk
  587. * use `symlinkify` if your data is largely static and you need native speed reads
  588. * use lvm and lvm cache to place a SSD in front of your HDDs (howto coming)
  589. # SUPPORT
  590. Filesystems are very 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.
  591. #### Information to include in bug reports
  592. * Version of mergerfs: `mergerfs -V`
  593. * mergerfs settings: from `/etc/fstab` or command line execution
  594. * Version of Linux: `uname -a`
  595. * Versions of any additional software being used
  596. * List of drives, their filesystems, and sizes (before and after issue): `df -h`
  597. * A `strace` of the app having problems:
  598. * `strace -f -o /tmp/app.strace.txt <cmd>`
  599. * A `strace` of mergerfs while the program is trying to do whatever it's failing to do:
  600. * `strace -f -p <mergerfsPID> -o /tmp/mergerfs.strace.txt`
  601. * **Precise** directions on replicating the issue. Do not leave **anything** out.
  602. * Try to recreate the problem in the simplist way using standard programs.
  603. #### Contact / Issue submission
  604. * github.com: https://github.com/trapexit/mergerfs/issues
  605. * email: trapexit@spawn.link
  606. * twitter: https://twitter.com/_trapexit
  607. * reddit: https://www.reddit.com/user/trapexit
  608. * discord: https://discord.gg/MpAr69V
  609. #### Support development
  610. This software is free to use and released under a very liberal license. That said if you like this software and would like to support its development donations are welcome.
  611. * PayPal: trapexit@spawn.link
  612. * Patreon: https://www.patreon.com/trapexit
  613. * SubscribeStar: https://www.subscribestar.com/trapexit
  614. * Bitcoin (BTC): 12CdMhEPQVmjz3SSynkAEuD5q9JmhTDCZA
  615. * Bitcoin Cash (BCH): 1AjPqZZhu7GVEs6JFPjHmtsvmDL4euzMzp
  616. * Ethereum (ETH): 0x09A166B11fCC127324C7fc5f1B572255b3046E94
  617. * Litecoin (LTC): LXAsq6yc6zYU3EbcqyWtHBrH1Ypx4GjUjm
  618. * Ripple (XRP): rNACR2hqGjpbHuCKwmJ4pDpd2zRfuRATcE
  619. # LINKS
  620. * https://spawn.link
  621. * https://github.com/trapexit/mergerfs
  622. * https://github.com/trapexit/mergerfs-tools
  623. * https://github.com/trapexit/scorch
  624. * https://github.com/trapexit/bbf
  625. * https://github.com/trapexit/backup-and-recovery-howtos
  626. * https://discord.gg/MpAr69V