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.

2410 lines
100 KiB

11 years ago
2 years ago
4 years ago
2 years ago
5 years ago
5 years ago
5 years ago
3 years ago
5 years ago
  1. % mergerfs(1) mergerfs user manual
  2. # NAME
  3. mergerfs - a featureful union filesystem
  4. # SYNOPSIS
  5. mergerfs -o<options> <branches> <mountpoint>
  6. # DESCRIPTION
  7. **mergerfs** is a union filesystem geared towards simplifying storage
  8. and management of files across numerous commodity storage devices. It
  9. is similar to **mhddfs**, **unionfs**, and **aufs**.
  10. # FEATURES
  11. * Configurable behaviors / file placement
  12. * Ability to add or remove filesystems at will
  13. * Resistance to individual filesystem failure
  14. * Support for extended attributes (xattrs)
  15. * Support for file attributes (chattr)
  16. * Runtime configurable (via xattrs)
  17. * Works with heterogeneous filesystem types
  18. * Moving of file when filesystem runs out of space while writing
  19. * Ignore read-only filesystems when creating files
  20. * Turn read-only files into symlinks to underlying file
  21. * Hard link copy-on-write / CoW
  22. * Support for POSIX ACLs
  23. * Misc other things
  24. # TRAPS
  25. * `mv` deletes your files. Just copy!
  26. * Some applications need special settings. (NFS, torrents)
  27. # HOW IT WORKS
  28. mergerfs logically merges multiple paths together. Think a union of
  29. sets. The file/s or directory/s acted on or presented through mergerfs
  30. are based on the policy chosen for that particular action. Read more
  31. about policies below.
  32. ```
  33. A + B = C
  34. /disk1 /disk2 /merged
  35. | | |
  36. +-- /dir1 +-- /dir1 +-- /dir1
  37. | | | | | |
  38. | +-- file1 | +-- file2 | +-- file1
  39. | | +-- file3 | +-- file2
  40. +-- /dir2 | | +-- file3
  41. | | +-- /dir3 |
  42. | +-- file4 | +-- /dir2
  43. | +-- file5 | |
  44. +-- file6 | +-- file4
  45. |
  46. +-- /dir3
  47. | |
  48. | +-- file5
  49. |
  50. +-- file6
  51. ```
  52. mergerfs does **not** support the copy-on-write (CoW) or whiteout
  53. behaviors found in **aufs** and **overlayfs**. You can **not** mount a
  54. read-only filesystem and write to it. However, mergerfs will ignore
  55. read-only filesystems when creating new files so you can mix
  56. read-write and read-only filesystems. It also does **not** split data
  57. across filesystems. It is not RAID0 / striping. It is simply a union of
  58. other filesystems.
  59. # TERMINOLOGY
  60. * branch: A base path used in the pool.
  61. * pool: The mergerfs mount. The union of the branches.
  62. * relative path: The path in the pool relative to the branch and mount.
  63. * function: A filesystem call (open, unlink, create, getattr, rmdir, etc.)
  64. * category: A collection of functions based on basic behavior (action, create, search).
  65. * policy: The algorithm used to select a file when performing a function.
  66. * path preservation: Aspect of some policies which includes checking the path for which a file would be created.
  67. # BASIC SETUP
  68. If you don't already know that you have a special use case then just
  69. start with one of the following option sets.
  70. #### You need `mmap` (used by rtorrent and many sqlite3 base software)
  71. `cache.files=partial,dropcacheonclose=true,category.create=mfs`
  72. #### You don't need `mmap`
  73. `cache.files=off,dropcacheonclose=true,category.create=mfs`
  74. ### Command Line
  75. `mergerfs -o cache.files=partial,dropcacheonclose=true,category.create=mfs /mnt/hdd\*:/mnt/otherhdd:/mnt/rohdd=RO /media`
  76. ### /etc/fstab
  77. `/mnt/hdd*:/mnt/otherhdd:/mnt/rohdd=RO /media fuse.mergerfs cache.files=partial,dropcacheonclose=true,category.create=mfs 0 0`
  78. ### systemd mount
  79. https://github.com/trapexit/mergerfs/wiki/systemd
  80. ```
  81. [Unit]
  82. Description=mergerfs service
  83. [Service]
  84. Type=simple
  85. KillMode=none
  86. ExecStart=/usr/bin/mergerfs \
  87. -f \
  88. -o cache.files=partial \
  89. -o dropcacheonclose=true \
  90. -o category.create=mfs \
  91. /mnt/hdd0:/mnt/hdd1 \
  92. /media
  93. ExecStop=/bin/fusermount -uz /media
  94. Restart=on-failure
  95. [Install]
  96. WantedBy=default.target
  97. ```
  98. See the mergerfs [wiki for real world
  99. deployments](https://github.com/trapexit/mergerfs/wiki/Real-World-Deployments)
  100. for comparisons / ideas.
  101. # OPTIONS
  102. These options are the same regardless of whether you use them with the
  103. `mergerfs` commandline program, in fstab, or in a config file.
  104. ### mount options
  105. * **config**: Path to a config file. Same arguments as below in
  106. key=val / ini style format.
  107. * **branches**: Colon delimited list of branches.
  108. * **minfreespace=SIZE**: The minimum space value used for creation
  109. policies. Can be overridden by branch specific option. Understands
  110. 'K', 'M', and 'G' to represent kilobyte, megabyte, and gigabyte
  111. respectively. (default: 4G)
  112. * **moveonenospc=BOOL|POLICY**: When enabled if a **write** fails with
  113. **ENOSPC** (no space left on device) or **EDQUOT** (disk quota
  114. exceeded) the policy selected will run to find a new location for
  115. the file. An attempt to move the file to that branch will occur
  116. (keeping all metadata possible) and if successful the original is
  117. unlinked and the write retried. (default: false, true = mfs)
  118. * **inodecalc=passthrough|path-hash|devino-hash|hybrid-hash**: Selects
  119. the inode calculation algorithm. (default: hybrid-hash)
  120. * **dropcacheonclose=BOOL**: When a file is requested to be closed
  121. call `posix_fadvise` on it first to instruct the kernel that we no
  122. longer need the data and it can drop its cache. Recommended when
  123. **cache.files=partial|full|auto-full|per-process** to limit double
  124. caching. (default: false)
  125. * **symlinkify=BOOL**: When enabled and a file is not writable and its
  126. mtime or ctime is older than **symlinkify_timeout** files will be
  127. reported as symlinks to the original files. Please read more below
  128. before using. (default: false)
  129. * **symlinkify_timeout=UINT**: Time to wait, in seconds, to activate
  130. the **symlinkify** behavior. (default: 3600)
  131. * **nullrw=BOOL**: Turns reads and writes into no-ops. The request
  132. will succeed but do nothing. Useful for benchmarking
  133. mergerfs. (default: false)
  134. * **lazy-umount-mountpoint=BOOL**: mergerfs will attempt to "lazy
  135. umount" the mountpoint before mounting itself. Useful when
  136. performing live upgrades of mergerfs. (default: false)
  137. * **ignorepponrename=BOOL**: Ignore path preserving on
  138. rename. Typically rename and link act differently depending on the
  139. policy of `create` (read below). Enabling this will cause rename and
  140. link to always use the non-path preserving behavior. This means
  141. files, when renamed or linked, will stay on the same
  142. filesystem. (default: false)
  143. * **security_capability=BOOL**: If false return ENOATTR when xattr
  144. security.capability is queried. (default: true)
  145. * **xattr=passthrough|noattr|nosys**: Runtime control of
  146. xattrs. Default is to passthrough xattr requests. 'noattr' will
  147. short circuit as if nothing exists. 'nosys' will respond with ENOSYS
  148. as if xattrs are not supported or disabled. (default: passthrough)
  149. * **link_cow=BOOL**: When enabled if a regular file is opened which
  150. has a link count > 1 it will copy the file to a temporary file and
  151. rename over the original. Breaking the link and providing a basic
  152. copy-on-write function similar to cow-shell. (default: false)
  153. * **statfs=base|full**: Controls how statfs works. 'base' means it
  154. will always use all branches in statfs calculations. 'full' is in
  155. effect path preserving and only includes branches where the path
  156. exists. (default: base)
  157. * **statfs_ignore=none|ro|nc**: 'ro' will cause statfs calculations to
  158. ignore available space for branches mounted or tagged as 'read-only'
  159. or 'no create'. 'nc' will ignore available space for branches tagged
  160. as 'no create'. (default: none)
  161. * **nfsopenhack=off|git|all**: A workaround for exporting mergerfs
  162. over NFS where there are issues with creating files for write while
  163. setting the mode to read-only. (default: off)
  164. * **branches-mount-timeout=UINT**: Number of seconds to wait at
  165. startup for branches to be a mount other than the mountpoint's
  166. filesystem. (default: 0)
  167. * **follow-symlinks=never|directory|regular|all**: Turns symlinks into
  168. what they point to. (default: never)
  169. * **link-exdev=passthrough|rel-symlink|abs-base-symlink|abs-pool-symlink**:
  170. When a link fails with EXDEV optionally create a symlink to the file
  171. instead.
  172. * **rename-exdev=passthrough|rel-symlink|abs-symlink**: When a rename
  173. fails with EXDEV optionally move the file to a special directory and
  174. symlink to it.
  175. * **readahead=UINT**: Set readahead (in kilobytes) for mergerfs and
  176. branches if greater than 0. (default: 0)
  177. * **posix_acl=BOOL**: Enable POSIX ACL support (if supported by kernel
  178. and underlying filesystem). (default: false)
  179. * **async_read=BOOL**: Perform reads asynchronously. If disabled or
  180. unavailable the kernel will ensure there is at most one pending read
  181. request per file handle and will attempt to order requests by
  182. offset. (default: true)
  183. * **fuse_msg_size=UINT**: Set the max number of pages per FUSE
  184. message. Only available on Linux >= 4.20 and ignored
  185. otherwise. (min: 1; max: 256; default: 256)
  186. * **threads=INT**: Number of threads to use. When used alone
  187. (`process-thread-count=-1`) it sets the number of threads reading
  188. and processing FUSE messages. When used together it sets the number
  189. of threads reading from FUSE. When set to zero it will attempt to
  190. discover and use the number of logical cores. If the thread count is
  191. set negative it will look up the number of cores then divide by the
  192. absolute value. ie. threads=-2 on an 8 core machine will result in 8
  193. / 2 = 4 threads. There will always be at least 1 thread. If set to
  194. -1 in combination with `process-thread-count` then it will try to
  195. pick reasonable values based on CPU thread count. NOTE: higher
  196. number of threads increases parallelism but usually decreases
  197. throughput. (default: 0)
  198. * **read-thread-count=INT**: Alias for `threads`.
  199. * **process-thread-count=INT**: Enables separate thread pool to
  200. asynchronously process FUSE requests. In this mode
  201. `read-thread-count` refers to the number of threads reading FUSE
  202. messages which are dispatched to process threads. -1 means disabled
  203. otherwise acts like `read-thread-count`. (default: -1)
  204. * **pin-threads=STR**: Selects a strategy to pin threads to CPUs
  205. (default: unset)
  206. * **scheduling-priority=INT**: Set mergerfs' scheduling
  207. priority. Valid values range from -20 to 19. See `setpriority` man
  208. page for more details. (default: -10)
  209. * **fsname=STR**: Sets the name of the filesystem as seen in
  210. **mount**, **df**, etc. Defaults to a list of the source paths
  211. concatenated together with the longest common prefix removed.
  212. * **func.FUNC=POLICY**: Sets the specific FUSE function's policy. See
  213. below for the list of value types. Example: **func.getattr=newest**
  214. * **category.action=POLICY**: Sets policy of all FUSE functions in the
  215. action category. (default: epall)
  216. * **category.create=POLICY**: Sets policy of all FUSE functions in the
  217. create category. (default: epmfs)
  218. * **category.search=POLICY**: Sets policy of all FUSE functions in the
  219. search category. (default: ff)
  220. * **cache.open=UINT**: 'open' policy cache timeout in
  221. seconds. (default: 0)
  222. * **cache.statfs=UINT**: 'statfs' cache timeout in seconds. (default:
  223. 0)
  224. * **cache.attr=UINT**: File attribute cache timeout in
  225. seconds. (default: 1)
  226. * **cache.entry=UINT**: File name lookup cache timeout in
  227. seconds. (default: 1)
  228. * **cache.negative_entry=UINT**: Negative file name lookup cache
  229. timeout in seconds. (default: 0)
  230. * **cache.files=libfuse|off|partial|full|auto-full|per-process**: File
  231. page caching mode (default: libfuse)
  232. * **cache.files.process-names=LIST**: A pipe | delimited list of
  233. process [comm](https://man7.org/linux/man-pages/man5/proc.5.html)
  234. names to enable page caching for when
  235. `cache.files=per-process`. (default: "rtorrent|qbittorrent-nox")
  236. * **cache.writeback=BOOL**: Enable kernel writeback caching (default:
  237. false)
  238. * **cache.symlinks=BOOL**: Cache symlinks (if supported by kernel)
  239. (default: false)
  240. * **cache.readdir=BOOL**: Cache readdir (if supported by kernel)
  241. (default: false)
  242. * **direct_io**: deprecated - Bypass page cache. Use `cache.files=off`
  243. instead. (default: false)
  244. * **kernel_cache**: deprecated - Do not invalidate data cache on file
  245. open. Use `cache.files=full` instead. (default: false)
  246. * **auto_cache**: deprecated - Invalidate data cache if file mtime or
  247. size change. Use `cache.files=auto-full` instead. (default: false)
  248. * **async_read**: deprecated - Perform reads asynchronously. Use
  249. `async_read=true` instead.
  250. * **sync_read**: deprecated - Perform reads synchronously. Use
  251. `async_read=false` instead.
  252. * **use_ino**: deprecated - Always enabled.
  253. * **allow_other**: deprecated - Always enabled.
  254. * **splice_read**: deprecated - Does nothing.
  255. * **splice_write**: deprecated - Does nothing.
  256. * **splice_move**: deprecated - Does nothing.
  257. * **allow_other**: deprecated - mergerfs always sets this FUSE option
  258. as normal permissions can be used to limit access.
  259. * **use_ino**: deprecated - mergerfs should always control inode
  260. calculation so this is enabled all the time.
  261. **NOTE:** Options are evaluated in the order listed so if the options
  262. are **func.rmdir=rand,category.action=ff** the **action** category
  263. setting will override the **rmdir** setting.
  264. **NOTE:** Always look at the documentation for the version of mergerfs
  265. you're using. Not all features are available in older releases. Use
  266. `man mergerfs` or find the docs as linked in the release.
  267. #### Value Types
  268. * BOOL = 'true' | 'false'
  269. * INT = [MIN_INT,MAX_INT]
  270. * UINT = [0,MAX_INT]
  271. * SIZE = 'NNM'; NN = INT, M = 'K' | 'M' | 'G' | 'T'
  272. * STR = string (may refer to an enumerated value, see details of
  273. argument)
  274. * FUNC = filesystem function
  275. * CATEGORY = function category
  276. * POLICY = mergerfs function policy
  277. ### branches
  278. The 'branches' argument is a colon (':') delimited list of paths to be
  279. pooled together. It does not matter if the paths are on the same or
  280. different filesystems nor does it matter the filesystem type (within
  281. reason). Used and available space will not be duplicated for paths on
  282. the same filesystem and any features which aren't supported by the
  283. underlying filesystem (such as file attributes or extended attributes)
  284. will return the appropriate errors.
  285. Branches currently have two options which can be set. A type which
  286. impacts whether or not the branch is included in a policy calculation
  287. and a individual minfreespace value. The values are set by prepending
  288. an `=` at the end of a branch designation and using commas as
  289. delimiters. Example: `/mnt/drive=RW,1234`
  290. #### branch mode
  291. * RW: (read/write) - Default behavior. Will be eligible in all policy
  292. categories.
  293. * RO: (read-only) - Will be excluded from `create` and `action`
  294. policies. Same as a read-only mounted filesystem would be (though
  295. faster to process).
  296. * NC: (no-create) - Will be excluded from `create` policies. You can't
  297. create on that branch but you can change or delete.
  298. #### minfreespace
  299. Same purpose and syntax as the global option but specific to the
  300. branch. If not set the global value is used.
  301. #### globbing
  302. To make it easier to include multiple branches mergerfs supports
  303. [globbing](http://linux.die.net/man/7/glob). **The globbing tokens
  304. MUST be escaped when using via the shell else the shell itself will
  305. apply the glob itself. Do not escape the glob in `fstab`.**
  306. ```
  307. # mergerfs /mnt/hdd\*:/mnt/ssd /media
  308. ```
  309. The above line will use all mount points in /mnt prefixed with **hdd** and **ssd**.
  310. To have the pool mounted at boot or otherwise accessible from related tools use **/etc/fstab**.
  311. ```
  312. # <file system> <mount point> <type> <options> <dump> <pass>
  313. /mnt/hdd*:/mnt/ssd /media fuse.mergerfs minfreespace=16G 0 0
  314. ```
  315. **NOTE:** the globbing is done at mount or when updated using the
  316. runtime API. If a new directory is added matching the glob after the
  317. fact it will not be automatically included.
  318. **NOTE:** for mounting via **fstab** to work you must have
  319. **mount.fuse** installed. For Ubuntu/Debian it is included in the
  320. **fuse** package.
  321. ### inodecalc
  322. Inodes (st_ino) are unique identifiers within a filesystem. Each
  323. mounted filesystem has device ID (st_dev) as well and together they
  324. can uniquely identify a file on the whole of the system. Entries on
  325. the same device with the same inode are in fact references to the same
  326. underlying file. It is a many to one relationship between names and an
  327. inode. Directories, however, do not have multiple links on most
  328. systems due to the complexity they add.
  329. FUSE allows the server (mergerfs) to set inode values but not device
  330. IDs. Creating an inode value is somewhat complex in mergerfs' case as
  331. files aren't really in its control. If a policy changes what directory
  332. or file is to be selected or something changes out of band it becomes
  333. unclear what value should be used. Most software does not to care what
  334. the values are but those that do often break if a value changes
  335. unexpectedly. The tool `find` will abort a directory walk if it sees a
  336. directory inode change. NFS will return stale handle errors if the
  337. inode changes out of band. File dedup tools will usually leverage
  338. device ids and inodes as a shortcut in searching for duplicate files
  339. and would resort to full file comparisons should it find different
  340. inode values.
  341. mergerfs offers multiple ways to calculate the inode in hopes of
  342. covering different usecases.
  343. * passthrough: Passes through the underlying inode value. Mostly
  344. intended for testing as using this does not address any of the
  345. problems mentioned above and could confuse file deduplication
  346. software as inodes from different filesystems can be the same.
  347. * path-hash: Hashes the relative path of the entry in question. The
  348. underlying file's values are completely ignored. This means the
  349. inode value will always be the same for that file path. This is
  350. useful when using NFS and you make changes out of band such as copy
  351. data between branches. This also means that entries that do point to
  352. the same file will not be recognizable via inodes. That **does not**
  353. mean hard links don't work. They will.
  354. * path-hash32: 32bit version of path-hash.
  355. * devino-hash: Hashes the device id and inode of the underlying
  356. entry. This won't prevent issues with NFS should the policy pick a
  357. different file or files move out of band but will present the same
  358. inode for underlying files that do too.
  359. * devino-hash32: 32bit version of devino-hash.
  360. * hybrid-hash: Performs `path-hash` on directories and `devino-hash`
  361. on other file types. Since directories can't have hard links the
  362. static value won't make a difference and the files will get values
  363. useful for finding duplicates. Probably the best to use if not using
  364. NFS. As such it is the default.
  365. * hybrid-hash32: 32bit version of hybrid-hash.
  366. 32bit versions are provided as there is some software which does not
  367. handle 64bit inodes well.
  368. While there is a risk of hash collision in tests of a couple million
  369. entries there were zero collisions. Unlike a typical filesystem FUSE
  370. filesystems can reuse inodes and not refer to the same entry. The
  371. internal identifier used to reference a file in FUSE is different from
  372. the inode value presented. The former is the `nodeid` and is actually
  373. a tuple of 2 64bit values: `nodeid` and `generation`. This tuple is
  374. not client facing. The inode that is presented to the client is passed
  375. through the kernel uninterpreted.
  376. From FUSE docs for `use_ino`:
  377. ```
  378. Honor the st_ino field in the functions getattr() and
  379. fill_dir(). This value is used to fill in the st_ino field
  380. in the stat(2), lstat(2), fstat(2) functions and the d_ino
  381. field in the readdir(2) function. The filesystem does not
  382. have to guarantee uniqueness, however some applications
  383. rely on this value being unique for the whole filesystem.
  384. Note that this does *not* affect the inode that libfuse
  385. and the kernel use internally (also called the "nodeid").
  386. ```
  387. As of version 2.35.0 the `use_ino` option has been removed. mergerfs
  388. should always be managing inode values.
  389. ### pin-threads
  390. Simple strategies for pinning read and/or process threads. If process
  391. threads are not enabled than the strategy simply works on the read
  392. threads. Invalid values are ignored.
  393. * R1L: All read threads pinned to a single logical CPU.
  394. * R1P: All read threads pinned to a single physical CPU.
  395. * RP1L: All read and process threads pinned to a single logical CPU.
  396. * RP1P: All read and process threads pinned to a single physical CPU.
  397. * R1LP1L: All read threads pinned to a single logical CPU, all process
  398. threads pinned to a (if possible) different logical CPU.
  399. * R1PP1P: All read threads pinned to a single physical CPU, all
  400. process threads pinned to a (if possible) different logical CPU.
  401. * RPSL: All read and process threads are spread across all logical CPUs.
  402. * RPSP: All read and process threads are spread across all physical CPUs.
  403. * R1PPSP: All read threads are pinned to a single physical CPU while
  404. process threads are spread across all other phsycial CPUs.
  405. ### fuse_msg_size
  406. FUSE applications communicate with the kernel over a special character
  407. device: `/dev/fuse`. A large portion of the overhead associated with
  408. FUSE is the cost of going back and forth from user space and kernel
  409. space over that device. Generally speaking the fewer trips needed the
  410. better the performance will be. Reducing the number of trips can be
  411. done a number of ways. Kernel level caching and increasing message
  412. sizes being two significant ones. When it comes to reads and writes if
  413. the message size is doubled the number of trips are approximately
  414. halved.
  415. In Linux 4.20 a new feature was added allowing the negotiation of the
  416. max message size. Since the size is in multiples of
  417. [pages](https://en.wikipedia.org/wiki/Page_(computer_memory)) the
  418. feature is called `max_pages`. There is a maximum `max_pages` value of
  419. 256 (1MiB) and minimum of 1 (4KiB). The default used by Linux >=4.20,
  420. and hardcoded value used before 4.20, is 32 (128KiB). In mergerfs its
  421. referred to as `fuse_msg_size` to make it clear what it impacts and
  422. provide some abstraction.
  423. Since there should be no downsides to increasing `fuse_msg_size` /
  424. `max_pages`, outside a minor bump in RAM usage due to larger message
  425. buffers, mergerfs defaults the value to 256. On kernels before 4.20
  426. the value has no effect. The reason the value is configurable is to
  427. enable experimentation and benchmarking. See the BENCHMARKING section
  428. for examples.
  429. ### follow-symlinks
  430. This feature, when enabled, will cause symlinks to be interpreted by
  431. mergerfs as their target (depending on the mode).
  432. When there is a getattr/stat request for a file mergerfs will check if
  433. the file is a symlink and depending on the `follow-symlinks` setting
  434. will replace the information about the symlink with that of that which
  435. it points to.
  436. When unlink'ing or rmdir'ing the followed symlink it will remove the
  437. symlink itself and not that which it points to.
  438. * never: Behave as normal. Symlinks are treated as such.
  439. * directory: Resolve symlinks only which point to directories.
  440. * regular: Resolve symlinks only which point to regular files.
  441. * all: Resolve all symlinks to that which they point to.
  442. Symlinks which do not point to anything are left as is.
  443. WARNING: This feature works but there might be edge cases yet
  444. found. If you find any odd behaviors please file a ticket on
  445. [github](https://github.com/trapexit/mergerfs/issues).
  446. ### link-exdev
  447. If using path preservation and a `link` fails with EXDEV make a call
  448. to `symlink` where the `target` is the `oldlink` and the `linkpath` is
  449. the `newpath`. The `target` value is determined by the value of
  450. `link-exdev`.
  451. * passthrough: Return EXDEV as normal.
  452. * rel-symlink: A relative path from the `newpath`.
  453. * abs-base-symlink: A absolute value using the underlying branch.
  454. * abs-pool-symlink: A absolute value using the mergerfs mount point.
  455. NOTE: It is possible that some applications check the file they
  456. link. In those cases it is possible it will error or complain.
  457. ### rename-exdev
  458. If using path preservation and a `rename` fails with EXDEV:
  459. 1. Move file from **/branch/a/b/c** to **/branch/.mergerfs_rename_exdev/a/b/c**.
  460. 2. symlink the rename's `newpath` to the moved file.
  461. The `target` value is determined by the value of `rename-exdev`.
  462. * passthrough: Return EXDEV as normal.
  463. * rel-symlink: A relative path from the `newpath`.
  464. * abs-symlink: A absolute value using the mergerfs mount point.
  465. NOTE: It is possible that some applications check the file they
  466. rename. In those cases it is possible it will error or complain.
  467. NOTE: The reason `abs-symlink` is not split into two like `link-exdev`
  468. is due to the complexities in managing absolute base symlinks when
  469. multiple `oldpaths` exist.
  470. ### symlinkify
  471. Due to the levels of indirection introduced by mergerfs and the
  472. underlying technology FUSE there can be varying levels of performance
  473. degradation. This feature will turn non-directories which are not
  474. writable into symlinks to the original file found by the `readlink`
  475. policy after the mtime and ctime are older than the timeout.
  476. **WARNING:** The current implementation has a known issue in which if
  477. the file is open and being used when the file is converted to a
  478. symlink then the application which has that file open will receive an
  479. error when using it. This is unlikely to occur in practice but is
  480. something to keep in mind.
  481. **WARNING:** Some backup solutions, such as CrashPlan, do not backup
  482. the target of a symlink. If using this feature it will be necessary to
  483. point any backup software to the original filesystems or configure the
  484. software to follow symlinks if such an option is available.
  485. Alternatively create two mounts. One for backup and one for general
  486. consumption.
  487. ### nullrw
  488. Due to how FUSE works there is an overhead to all requests made to a
  489. FUSE filesystem that wouldn't exist for an in kernel one. Meaning that
  490. even a simple passthrough will have some slowdown. However, generally
  491. the overhead is minimal in comparison to the cost of the underlying
  492. I/O. By disabling the underlying I/O we can test the theoretical
  493. performance boundaries.
  494. By enabling `nullrw` mergerfs will work as it always does **except**
  495. that all reads and writes will be no-ops. A write will succeed (the
  496. size of the write will be returned as if it were successful) but
  497. mergerfs does nothing with the data it was given. Similarly a read
  498. will return the size requested but won't touch the buffer.
  499. See the BENCHMARKING section for suggestions on how to test.
  500. ### xattr
  501. Runtime extended attribute support can be managed via the `xattr`
  502. option. By default it will passthrough any xattr calls. Given xattr
  503. support is rarely used and can have significant performance
  504. implications mergerfs allows it to be disabled at runtime. The
  505. performance problems mostly comes when file caching is enabled. The
  506. kernel will send a `getxattr` for `security.capability` *before every
  507. single write*. It doesn't cache the responses to any `getxattr`. This
  508. might be addressed in the future but for now mergerfs can really only
  509. offer the following workarounds.
  510. `noattr` will cause mergerfs to short circuit all xattr calls and
  511. return ENOATTR where appropriate. mergerfs still gets all the requests
  512. but they will not be forwarded on to the underlying filesystems. The
  513. runtime control will still function in this mode.
  514. `nosys` will cause mergerfs to return ENOSYS for any xattr call. The
  515. difference with `noattr` is that the kernel will cache this fact and
  516. itself short circuit future calls. This is more efficient than
  517. `noattr` but will cause mergerfs' runtime control via the hidden file
  518. to stop working.
  519. ### nfsopenhack
  520. NFS is not fully POSIX compliant and historically certain behaviors,
  521. such as opening files with O_EXCL, are not or not well supported. When
  522. mergerfs (or any FUSE filesystem) is exported over NFS some of these
  523. issues come up due to how NFS and FUSE interact.
  524. This hack addresses the issue where the creation of a file with a
  525. read-only mode but with a read/write or write only flag. Normally this
  526. is perfectly valid but NFS chops the one open call into multiple
  527. calls. Exactly how it is translated depends on the configuration and
  528. versions of the NFS server and clients but it results in a permission
  529. error because a normal user is not allowed to open a read-only file as
  530. writable.
  531. Even though it's a more niche situation this hack breaks normal
  532. security and behavior and as such is `off` by default. If set to `git`
  533. it will only perform the hack when the path in question includes
  534. `/.git/`. `all` will result it applying anytime a readonly file which
  535. is empty is opened for writing.
  536. # FUNCTIONS, CATEGORIES and POLICIES
  537. The POSIX filesystem API is made up of a number of
  538. functions. **creat**, **stat**, **chown**, etc. For ease of
  539. configuration in mergerfs most of the core functions are grouped into
  540. 3 categories: **action**, **create**, and **search**. These functions
  541. and categories can be assigned a policy which dictates which branch is
  542. chosen when performing that function.
  543. Some functions, listed in the category `N/A` below, can not be
  544. assigned the normal policies. These functions work with file handles,
  545. rather than file paths, which were created by `open` or `create`. That
  546. said many times the current FUSE kernel driver will not always provide
  547. the file handle when a client calls `fgetattr`, `fchown`, `fchmod`,
  548. `futimens`, `ftruncate`, etc. This means it will call the regular,
  549. path based, versions. `readdir` has no real need for a policy given
  550. the purpose is merely to return a list of entries in a
  551. directory. `statfs`'s behavior can be modified via other options.
  552. When using policies which are based on a branch's available space the
  553. base path provided is used. Not the full path to the file in
  554. question. Meaning that mounts in the branch won't be considered in the
  555. space calculations. The reason is that it doesn't really work for
  556. non-path preserving policies and can lead to non-obvious behaviors.
  557. NOTE: While any policy can be assigned to a function or category
  558. though some may not be very useful in practice. For instance: **rand**
  559. (random) may be useful for file creation (create) but could lead to
  560. very odd behavior if used for `chmod` if there were more than one copy
  561. of the file.
  562. ### Functions and their Category classifications
  563. | Category | FUSE Functions |
  564. |----------|-------------------------------------------------------------------------------------|
  565. | action | chmod, chown, link, removexattr, rename, rmdir, setxattr, truncate, unlink, utimens |
  566. | create | create, mkdir, mknod, symlink |
  567. | search | access, getattr, getxattr, ioctl (directories), listxattr, open, readlink |
  568. | N/A | fchmod, fchown, futimens, ftruncate, fallocate, fgetattr, fsync, ioctl (files), read, readdir, release, statfs, write, copy_file_range |
  569. In cases where something may be searched for (such as a path to clone)
  570. **getattr** will usually be used.
  571. ### Policies
  572. A policy is the algorithm used to choose a branch or branches for a
  573. function to work on. Think of them as ways to filter and sort
  574. branches.
  575. Any function in the `create` category will clone the relative path if
  576. needed. Some other functions (`rename`,`link`,`ioctl`) have special
  577. requirements or behaviors which you can read more about below.
  578. #### Filtering
  579. Policies basically search branches and create a list of files / paths
  580. for functions to work on. The policy is responsible for filtering and
  581. sorting the branches. Filters include **minfreespace**, whether or not
  582. a branch is mounted read-only, and the branch tagging
  583. (RO,NC,RW). These filters are applied across all policies unless
  584. otherwise noted.
  585. * No **search** function policies filter.
  586. * All **action** function policies filter out branches which are
  587. mounted **read-only** or tagged as **RO (read-only)**.
  588. * All **create** function policies filter out branches which are
  589. mounted **read-only**, tagged **RO (read-only)** or **NC (no
  590. create)**, or has available space less than `minfreespace`.
  591. Policies may have their own additional filtering such as those that
  592. require existing paths to be present.
  593. If all branches are filtered an error will be returned. Typically
  594. **EROFS** (read-only filesystem) or **ENOSPC** (no space left on
  595. device) depending on the most recent reason for filtering a
  596. branch. **ENOENT** will be returned if no eligible branch is found.
  597. #### Path Preservation
  598. Policies, as described below, are of two basic classifications. `path
  599. preserving` and `non-path preserving`.
  600. All policies which start with `ep` (**epff**, **eplfs**, **eplus**,
  601. **epmfs**, **eprand**) are `path preserving`. `ep` stands for
  602. `existing path`.
  603. A path preserving policy will only consider branches where the relative
  604. path being accessed already exists.
  605. When using non-path preserving policies paths will be cloned to target
  606. branches as necessary.
  607. With the `msp` or `most shared path` policies they are defined as
  608. `path preserving` for the purpose of controlling `link` and `rename`'s
  609. behaviors since `ignorepponrename` is available to disable that
  610. behavior.
  611. #### Policy descriptions
  612. A policy's behavior differs, as mentioned above, based on the function
  613. it is used with. Sometimes it really might not make sense to even
  614. offer certain policies because they are literally the same as others
  615. but it makes things a bit more uniform.
  616. | Policy | Description |
  617. |------------------|------------------------------------------------------------|
  618. | all | Search: For **mkdir**, **mknod**, and **symlink** it will apply to all branches. **create** works like **ff**. |
  619. | epall (existing path, all) | 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). |
  620. | 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. |
  621. | eplfs (existing path, least free space) | Of all the branches on which the relative path exists choose the branch with the least free space. |
  622. | eplus (existing path, least used space) | Of all the branches on which the relative path exists choose the branch with the least used space. |
  623. | epmfs (existing path, most free space) | Of all the branches on which the relative path exists choose the branch with the most free space. |
  624. | eppfrd (existing path, percentage free random distribution) | Like **pfrd** but limited to existing paths. |
  625. | eprand (existing path, random) | Calls **epall** and then randomizes. Returns 1. |
  626. | ff (first found) | Given the order of the branches, as defined at mount time or configured at runtime, act on the first one found. |
  627. | lfs (least free space) | Pick the branch with the least available free space. |
  628. | lus (least used space) | Pick the branch with the least used space. |
  629. | mfs (most free space) | Pick the branch with the most available free space. |
  630. | msplfs (most shared path, least free space) | Like **eplfs** but if it fails to find a branch it will try again with the parent directory. Continues this pattern till finding one. |
  631. | msplus (most shared path, least used space) | Like **eplus** but if it fails to find a branch it will try again with the parent directory. Continues this pattern till finding one. |
  632. | mspmfs (most shared path, most free space) | Like **epmfs** but if it fails to find a branch it will try again with the parent directory. Continues this pattern till finding one. |
  633. | msppfrd (most shared path, percentage free random distribution) | Like **eppfrd** but if it fails to find a branch it will try again with the parent directory. Continues this pattern till finding one. |
  634. | newest | Pick the file / directory with the largest mtime. |
  635. | pfrd (percentage free random distribution) | Chooses a branch at random with the likelihood of selection based on a branch's available space relative to the total. |
  636. | rand (random) | Calls **all** and then randomizes. Returns 1 branch. |
  637. **NOTE:** If you are using an underlying filesystem that reserves
  638. blocks such as ext2, ext3, or ext4 be aware that mergerfs respects the
  639. reservation by using `f_bavail` (number of free blocks for
  640. unprivileged users) rather than `f_bfree` (number of free blocks) in
  641. policy calculations. **df** does NOT use `f_bavail`, it uses
  642. `f_bfree`, so direct comparisons between **df** output and mergerfs'
  643. policies is not appropriate.
  644. #### Defaults
  645. | Category | Policy |
  646. |----------|--------|
  647. | action | epall |
  648. | create | epmfs |
  649. | search | ff |
  650. #### ioctl
  651. When `ioctl` is used with an open file then it will use the file
  652. handle which was created at the original `open` call. However, when
  653. using `ioctl` with a directory mergerfs will use the `open` policy to
  654. find the directory to act on.
  655. #### rename & link ####
  656. **NOTE:** If you're receiving errors from software when files are
  657. moved / renamed / linked then you should consider changing the create
  658. policy to one which is **not** path preserving, enabling
  659. `ignorepponrename`, or contacting the author of the offending software
  660. and requesting that `EXDEV` (cross device / improper link) be properly
  661. handled.
  662. `rename` and `link` are tricky functions in a union
  663. filesystem. `rename` only works within a single filesystem or
  664. device. If a rename can't be done atomically due to the source and
  665. destination paths existing on different mount points it will return
  666. **-1** with **errno = EXDEV** (cross device / improper link). So if a
  667. `rename`'s source and target are on different filesystems within the pool
  668. it creates an issue.
  669. Originally mergerfs would return EXDEV whenever a rename was requested
  670. which was cross directory in any way. This made the code simple and
  671. was technically compliant with POSIX requirements. However, many
  672. applications fail to handle EXDEV at all and treat it as a normal
  673. error or otherwise handle it poorly. Such apps include: gvfsd-fuse
  674. v1.20.3 and prior, Finder / CIFS/SMB client in Apple OSX 10.9+,
  675. NZBGet, Samba's recycling bin feature.
  676. As a result a compromise was made in order to get most software to
  677. work while still obeying mergerfs' policies. Below is the basic logic.
  678. * If using a **create** policy which tries to preserve directory paths (epff,eplfs,eplus,epmfs)
  679. * Using the **rename** policy get the list of files to rename
  680. * For each file attempt rename:
  681. * If failure with ENOENT (no such file or directory) run **create** policy
  682. * If create policy returns the same branch as currently evaluating then clone the path
  683. * Re-attempt rename
  684. * If **any** of the renames succeed the higher level rename is considered a success
  685. * If **no** renames succeed the first error encountered will be returned
  686. * On success:
  687. * Remove the target from all branches with no source file
  688. * Remove the source from all branches which failed to rename
  689. * If using a **create** policy which does **not** try to preserve directory paths
  690. * Using the **rename** policy get the list of files to rename
  691. * Using the **getattr** policy get the target path
  692. * For each file attempt rename:
  693. * If the source branch != target branch:
  694. * Clone target path from target branch to source branch
  695. * Rename
  696. * If **any** of the renames succeed the higher level rename is considered a success
  697. * If **no** renames succeed the first error encountered will be returned
  698. * On success:
  699. * Remove the target from all branches with no source file
  700. * Remove the source from all branches which failed to rename
  701. The the removals are subject to normal entitlement checks.
  702. The above behavior will help minimize the likelihood of EXDEV being
  703. returned but it will still be possible.
  704. **link** uses the same strategy but without the removals.
  705. #### readdir ####
  706. [readdir](http://linux.die.net/man/3/readdir) is different from all
  707. other filesystem functions. While it could have its own set of
  708. policies to tweak its behavior at this time it provides a simple union
  709. of files and directories found. Remember that any action or
  710. information queried about these files and directories come from the
  711. respective function. For instance: an **ls** is a **readdir** and for
  712. each file/directory returned **getattr** is called. Meaning the policy
  713. of **getattr** is responsible for choosing the file/directory which is
  714. the source of the metadata you see in an **ls**.
  715. #### statfs / statvfs ####
  716. [statvfs](http://linux.die.net/man/2/statvfs) normalizes the source
  717. filesystems based on the fragment size and sums the number of adjusted
  718. blocks and inodes. This means you will see the combined space of all
  719. sources. Total, used, and free. The sources however are dedupped based
  720. on the filesystem so multiple sources on the same drive will not result in
  721. double counting its space. Other filesystems mounted further down the tree
  722. of the branch will not be included when checking the mount's stats.
  723. The options `statfs` and `statfs_ignore` can be used to modify
  724. `statfs` behavior.
  725. # ERROR HANDLING
  726. POSIX filesystem functions offer a single return code meaning that
  727. there is some complication regarding the handling of multiple branches
  728. as mergerfs does. It tries to handle errors in a way that would
  729. generally return meaningful values for that particular function.
  730. ### chmod, chown, removexattr, setxattr, truncate, utimens
  731. 1) if no error: return 0 (success)
  732. 2) if no successes: return first error
  733. 3) if one of the files acted on was the same as the related search function: return its value
  734. 4) return 0 (success)
  735. While doing this increases the complexity and cost of error handling,
  736. particularly step 3, this provides probably the most reasonable return
  737. value.
  738. ### unlink, rmdir
  739. 1) if no errors: return 0 (success)
  740. 2) return first error
  741. Older version of mergerfs would return success if any success occurred
  742. but for unlink and rmdir there are downstream assumptions that, while
  743. not impossible to occur, can confuse some software.
  744. ### others
  745. For search functions there is always a single thing acted on and as
  746. such whatever return value that comes from the single function call is
  747. returned.
  748. For create functions `mkdir`, `mknod`, and `symlink` which don't
  749. return a file descriptor and therefore can have `all` or `epall`
  750. policies it will return success if any of the calls succeed and an
  751. error otherwise.
  752. # INSTALL
  753. https://github.com/trapexit/mergerfs/releases
  754. If your distribution's package manager includes mergerfs check if the
  755. version is up to date. If out of date it is recommended to use
  756. the latest release found on the release page. Details for common
  757. distros are below.
  758. #### Debian
  759. Most Debian installs are of a stable branch and therefore do not have
  760. the most up to date software. While mergerfs is available via `apt` it
  761. is suggested that uses install the most recent version available from
  762. the [releases page](https://github.com/trapexit/mergerfs/releases).
  763. #### prebuilt deb
  764. ```
  765. wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs_<ver>.debian-<rel>_<arch>.deb
  766. dpkg -i mergerfs_<ver>.debian-<rel>_<arch>.deb
  767. ```
  768. #### apt
  769. ```
  770. sudo apt install -y mergerfs
  771. ```
  772. #### Ubuntu
  773. Most Ubuntu installs are of a stable branch and therefore do not have
  774. the most up to date software. While mergerfs is available via `apt` it
  775. is suggested that uses install the most recent version available from
  776. the [releases page](https://github.com/trapexit/mergerfs/releases).
  777. #### prebuilt deb
  778. ```
  779. wget https://github.com/trapexit/mergerfs/releases/download/<version>/mergerfs_<ver>.ubuntu-<rel>_<arch>.deb
  780. dpkg -i mergerfs_<ver>.ubuntu-<rel>_<arch>.deb
  781. ```
  782. #### apt
  783. ```
  784. sudo apt install -y mergerfs
  785. ```
  786. #### Raspberry Pi OS
  787. Effectively the same as Debian or Ubuntu.
  788. #### Fedora
  789. ```
  790. wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs-<ver>.fc<rel>.<arch>.rpm
  791. sudo rpm -i mergerfs-<ver>.fc<rel>.<arch>.rpm
  792. ```
  793. #### CentOS / Rocky
  794. ```
  795. wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs-<ver>.el<rel>.<arch>.rpm
  796. sudo rpm -i mergerfs-<ver>.el<rel>.<arch>.rpm
  797. ```
  798. #### ArchLinux
  799. 1. Setup AUR
  800. 2. Install `mergerfs`
  801. #### Other
  802. Static binaries are provided for situations where native packages are
  803. unavailable.
  804. ```
  805. wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs-static-linux_<arch>.tar.gz
  806. sudo tar xvf mergerfs-static-linux_<arch>.tar.gz -C /
  807. ```
  808. # BUILD
  809. **NOTE:** Prebuilt packages can be found at and recommended for most
  810. users: https://github.com/trapexit/mergerfs/releases
  811. **NOTE:** Only tagged releases are supported. `master` and other
  812. branches should be considered works in progress.
  813. First get the code from [github](https://github.com/trapexit/mergerfs).
  814. ```
  815. $ git clone https://github.com/trapexit/mergerfs.git
  816. $ # or
  817. $ wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs-<ver>.tar.gz
  818. ```
  819. #### Debian / Ubuntu
  820. ```
  821. $ cd mergerfs
  822. $ sudo tools/install-build-pkgs
  823. $ make deb
  824. $ sudo dpkg -i ../mergerfs_<version>_<arch>.deb
  825. ```
  826. #### RHEL / CentOS / Rocky / Fedora
  827. ```
  828. $ su -
  829. # cd mergerfs
  830. # tools/install-build-pkgs
  831. # make rpm
  832. # rpm -i rpmbuild/RPMS/<arch>/mergerfs-<version>.<arch>.rpm
  833. ```
  834. #### Generic
  835. Have git, g++, make, python installed.
  836. ```
  837. $ cd mergerfs
  838. $ make
  839. $ sudo make install
  840. ```
  841. #### Build options
  842. ```
  843. $ make help
  844. usage: make
  845. make USE_XATTR=0 - build program without xattrs functionality
  846. make STATIC=1 - build static binary
  847. make LTO=1 - build with link time optimization
  848. ```
  849. # UPGRADE
  850. mergerfs can be upgraded live by mounting on top of the previous
  851. instance. Simply install the new version of mergerfs and follow the
  852. instructions below.
  853. Run mergerfs again or if using `/etc/fstab` call for it to mount
  854. again. Existing open files and such will continue to work fine though
  855. they won't see runtime changes since any such change would be the new
  856. mount. If you plan on changing settings with the new mount you should
  857. / could apply those before mounting the new version.
  858. ```
  859. $ sudo mount /mnt/mergerfs
  860. $ mount | grep mergerfs
  861. media on /mnt/mergerfs type fuse.mergerfs (rw,relatime,user_id=0,group_id=0,default_permissions,allow_other)
  862. media on /mnt/mergerfs type fuse.mergerfs (rw,relatime,user_id=0,group_id=0,default_permissions,allow_other)
  863. ```
  864. A problem with this approach is that the underlying instance will
  865. continue to run even if the software using it stop or are
  866. restarted. To work around this you can use a "lazy umount". Before
  867. mounting over top the mount point with the new instance of mergerfs
  868. issue: `umount -l <mergerfs_mountpoint>`. Or you can let mergerfs do
  869. it by setting the option `lazy-umount-mountpoint=true`.
  870. # RUNTIME CONFIG
  871. #### .mergerfs pseudo file ####
  872. ```
  873. <mountpoint>/.mergerfs
  874. ```
  875. There is a pseudo file available at the mount point which allows for
  876. the runtime modification of certain **mergerfs** options. The file
  877. will not show up in **readdir** but can be **stat**'ed and manipulated
  878. via [{list,get,set}xattrs](http://linux.die.net/man/2/listxattr)
  879. calls.
  880. Any changes made at runtime are **not** persisted. If you wish for
  881. values to persist they must be included as options wherever you
  882. configure the mounting of mergerfs (/etc/fstab).
  883. ##### Keys #####
  884. Use `getfattr -d /mountpoint/.mergerfs` or `xattr -l
  885. /mountpoint/.mergerfs` to see all supported keys. Some are
  886. informational and therefore read-only. `setxattr` will return EINVAL
  887. (invalid argument) on read-only keys.
  888. ##### Values #####
  889. Same as the command line.
  890. ###### user.mergerfs.branches ######
  891. Used to query or modify the list of branches. When modifying there are
  892. several shortcuts to easy manipulation of the list.
  893. | Value | Description |
  894. |--------------|-------------|
  895. | [list] | set |
  896. | +<[list] | prepend |
  897. | +>[list] | append |
  898. | -[list] | remove all values provided |
  899. | -< | remove first in list |
  900. | -> | remove last in list |
  901. `xattr -w user.mergerfs.branches +</mnt/drive3 /mnt/pool/.mergerfs`
  902. The `=NC`, `=RO`, `=RW` syntax works just as on the command line.
  903. ##### Example #####
  904. ```
  905. [trapexit:/mnt/mergerfs] $ getfattr -d .mergerfs
  906. user.mergerfs.branches="/mnt/a=RW:/mnt/b=RW"
  907. user.mergerfs.minfreespace="4294967295"
  908. user.mergerfs.moveonenospc="false"
  909. ...
  910. [trapexit:/mnt/mergerfs] $ getfattr -n user.mergerfs.category.search .mergerfs
  911. user.mergerfs.category.search="ff"
  912. [trapexit:/mnt/mergerfs] $ setfattr -n user.mergerfs.category.search -v newest .mergerfs
  913. [trapexit:/mnt/mergerfs] $ getfattr -n user.mergerfs.category.search .mergerfs
  914. user.mergerfs.category.search="newest"
  915. ```
  916. #### file / directory xattrs ####
  917. While they won't show up when using `getfattr` **mergerfs** offers a
  918. number of special xattrs to query information about the files
  919. served. To access the values you will need to issue a
  920. [getxattr](http://linux.die.net/man/2/getxattr) for one of the
  921. following:
  922. * **user.mergerfs.basepath**: the base mount point for the file given the current getattr policy
  923. * **user.mergerfs.relpath**: the relative path of the file from the perspective of the mount point
  924. * **user.mergerfs.fullpath**: the full path of the original file given the getattr policy
  925. * **user.mergerfs.allpaths**: a NUL ('\0') separated list of full paths to all files found
  926. # TOOLING
  927. * https://github.com/trapexit/mergerfs-tools
  928. * mergerfs.ctl: A tool to make it easier to query and configure mergerfs at runtime
  929. * mergerfs.fsck: Provides permissions and ownership auditing and the ability to fix them
  930. * mergerfs.dedup: Will help identify and optionally remove duplicate files
  931. * mergerfs.dup: Ensure there are at least N copies of a file across the pool
  932. * mergerfs.balance: Rebalance files across filesystems by moving them from the most filled to the least filled
  933. * mergerfs.consolidate: move files within a single mergerfs directory to the filesystem with most free space
  934. * https://github.com/trapexit/scorch
  935. * scorch: A tool to help discover silent corruption of files and keep track of files
  936. * https://github.com/trapexit/bbf
  937. * bbf (bad block finder): a tool to scan for and 'fix' hard drive bad blocks and find the files using those blocks
  938. # CACHING
  939. #### page caching
  940. https://en.wikipedia.org/wiki/Page_cache
  941. * cache.files=off: Disables page caching. Underlying files cached,
  942. mergerfs files are not.
  943. * cache.files=partial: Enables page caching. Underlying files cached,
  944. mergerfs files cached while open.
  945. * cache.files=full: Enables page caching. Underlying files cached,
  946. mergerfs files cached across opens.
  947. * cache.files=auto-full: Enables page caching. Underlying files
  948. cached, mergerfs files cached across opens if mtime and size are
  949. unchanged since previous open.
  950. * cache.files=libfuse: follow traditional libfuse `direct_io`,
  951. `kernel_cache`, and `auto_cache` arguments.
  952. * cache.files=per-process: Enable page caching only for processes
  953. which 'comm' name matches one of the values defined in
  954. `cache.files.process-names`.
  955. FUSE, which mergerfs uses, offers a number of page caching
  956. modes. mergerfs tries to simplify their use via the `cache.files`
  957. option. It can and should replace usage of `direct_io`,
  958. `kernel_cache`, and `auto_cache`.
  959. Due to mergerfs using FUSE and therefore being a userland process
  960. proxying existing filesystems the kernel will double cache the content
  961. being read and written through mergerfs. Once from the underlying
  962. filesystem and once from mergerfs (it sees them as two separate
  963. entities). Using `cache.files=off` will keep the double caching from
  964. happening by disabling caching of mergerfs but this has the side
  965. effect that *all* read and write calls will be passed to mergerfs
  966. which may be slower than enabling caching, you lose shared `mmap`
  967. support which can affect apps such as rtorrent, and no read-ahead will
  968. take place. The kernel will still cache the underlying filesystem data
  969. but that only helps so much given mergerfs will still process all
  970. requests.
  971. If you do enable file page caching,
  972. `cache.files=partial|full|auto-full`, you should also enable
  973. `dropcacheonclose` which will cause mergerfs to instruct the kernel to
  974. flush the underlying file's page cache when the file is closed. This
  975. behavior is the same as the rsync fadvise / drop cache patch and Feh's
  976. nocache project.
  977. If most files are read once through and closed (like media) it is best
  978. to enable `dropcacheonclose` regardless of caching mode in order to
  979. minimize buffer bloat.
  980. It is difficult to balance memory usage, cache bloat & duplication,
  981. and performance. Ideally mergerfs would be able to disable caching for
  982. the files it reads/writes but allow page caching for itself. That
  983. would limit the FUSE overhead. However, there isn't a good way to
  984. achieve this. It would need to open all files with O_DIRECT which
  985. places limitations on the what underlying filesystems would be
  986. supported and complicates the code.
  987. kernel documentation: https://www.kernel.org/doc/Documentation/filesystems/fuse-io.txt
  988. #### entry & attribute caching
  989. Given the relatively high cost of FUSE due to the kernel <-> userspace
  990. round trips there are kernel side caches for file entries and
  991. attributes. The entry cache limits the `lookup` calls to mergerfs
  992. which ask if a file exists. The attribute cache limits the need to
  993. make `getattr` calls to mergerfs which provide file attributes (mode,
  994. size, type, etc.). As with the page cache these should not be used if
  995. the underlying filesystems are being manipulated at the same time as
  996. it could lead to odd behavior or data corruption. The options for
  997. setting these are `cache.entry` and `cache.negative_entry` for the
  998. entry cache and `cache.attr` for the attributes
  999. cache. `cache.negative_entry` refers to the timeout for negative
  1000. responses to lookups (non-existent files).
  1001. #### writeback caching
  1002. When `cache.files` is enabled the default is for it to perform
  1003. writethrough caching. This behavior won't help improve performance as
  1004. each write still goes one for one through the filesystem. By enabling
  1005. the FUSE writeback cache small writes may be aggregated by the kernel
  1006. and then sent to mergerfs as one larger request. This can greatly
  1007. improve the throughput for apps which write to files
  1008. inefficiently. The amount the kernel can aggregate is limited by the
  1009. size of a FUSE message. Read the `fuse_msg_size` section for more
  1010. details.
  1011. There is a small side effect as a result of enabling writeback
  1012. caching. Underlying files won't ever be opened with O_APPEND or
  1013. O_WRONLY. The former because the kernel then manages append mode and
  1014. the latter because the kernel may request file data from mergerfs to
  1015. populate the write cache. The O_APPEND change means that if a file is
  1016. changed outside of mergerfs it could lead to corruption as the kernel
  1017. won't know the end of the file has changed. That said any time you use
  1018. caching you should keep from using the same file outside of mergerfs
  1019. at the same time.
  1020. Note that if an application is properly sizing writes then writeback
  1021. caching will have little or no effect. It will only help with writes
  1022. of sizes below the FUSE message size (128K on older kernels, 1M on
  1023. newer).
  1024. #### statfs caching
  1025. Of the syscalls used by mergerfs in policies the `statfs` / `statvfs`
  1026. call is perhaps the most expensive. It's used to find out the
  1027. available space of a filesystem and whether it is mounted
  1028. read-only. Depending on the setup and usage pattern these queries can
  1029. be relatively costly. When `cache.statfs` is enabled all calls to
  1030. `statfs` by a policy will be cached for the number of seconds its set
  1031. to.
  1032. Example: If the create policy is `mfs` and the timeout is 60 then for
  1033. that 60 seconds the same filesystem will be returned as the target for
  1034. creates because the available space won't be updated for that time.
  1035. #### symlink caching
  1036. As of version 4.20 Linux supports symlink caching. Significant
  1037. performance increases can be had in workloads which use a lot of
  1038. symlinks. Setting `cache.symlinks=true` will result in requesting
  1039. symlink caching from the kernel only if supported. As a result its
  1040. safe to enable it on systems prior to 4.20. That said it is disabled
  1041. by default for now. You can see if caching is enabled by querying the
  1042. xattr `user.mergerfs.cache.symlinks` but given it must be requested at
  1043. startup you can not change it at runtime.
  1044. #### readdir caching
  1045. As of version 4.20 Linux supports readdir caching. This can have a
  1046. significant impact on directory traversal. Especially when combined
  1047. with entry (`cache.entry`) and attribute (`cache.attr`)
  1048. caching. Setting `cache.readdir=true` will result in requesting
  1049. readdir caching from the kernel on each `opendir`. If the kernel
  1050. doesn't support readdir caching setting the option to `true` has no
  1051. effect. This option is configurable at runtime via xattr
  1052. `user.mergerfs.cache.readdir`.
  1053. #### tiered caching
  1054. Some storage technologies support what some call "tiered" caching. The
  1055. placing of usually smaller, faster storage as a transparent cache to
  1056. larger, slower storage. NVMe, SSD, Optane in front of traditional HDDs
  1057. for instance.
  1058. MergerFS does not natively support any sort of tiered caching. Most
  1059. users have no use for such a feature and its inclusion would
  1060. complicate the code. However, there are a few situations where a cache
  1061. filesystem could help with a typical mergerfs setup.
  1062. 1. Fast network, slow filesystems, many readers: You've a 10+Gbps network
  1063. with many readers and your regular filesystems can't keep up.
  1064. 2. Fast network, slow filesystems, small'ish bursty writes: You have a
  1065. 10+Gbps network and wish to transfer amounts of data less than your
  1066. cache filesystem but wish to do so quickly.
  1067. With #1 it's arguable if you should be using mergerfs at all. RAID
  1068. would probably be the better solution. If you're going to use mergerfs
  1069. there are other tactics that may help: spreading the data across
  1070. filesystems (see the mergerfs.dup tool) and setting `func.open=rand`,
  1071. using `symlinkify`, or using dm-cache or a similar technology to add
  1072. tiered cache to the underlying device.
  1073. With #2 one could use dm-cache as well but there is another solution
  1074. which requires only mergerfs and a cronjob.
  1075. 1. Create 2 mergerfs pools. One which includes just the slow devices
  1076. and one which has both the fast devices (SSD,NVME,etc.) and slow
  1077. devices.
  1078. 2. The 'cache' pool should have the cache filesystems listed first.
  1079. 3. The best `create` policies to use for the 'cache' pool would
  1080. probably be `ff`, `epff`, `lfs`, or `eplfs`. The latter two under
  1081. the assumption that the cache filesystem(s) are far smaller than the
  1082. backing filesystems. If using path preserving policies remember that
  1083. you'll need to manually create the core directories of those paths
  1084. you wish to be cached. Be sure the permissions are in sync. Use
  1085. `mergerfs.fsck` to check / correct them. You could also set the
  1086. slow filesystems mode to `NC` though that'd mean if the cache
  1087. filesystems fill you'd get "out of space" errors.
  1088. 4. Enable `moveonenospc` and set `minfreespace` appropriately. To make
  1089. sure there is enough room on the "slow" pool you might want to set
  1090. `minfreespace` to at least as large as the size of the largest
  1091. cache filesystem if not larger. This way in the worst case the
  1092. whole of the cache filesystem(s) can be moved to the other drives.
  1093. 5. Set your programs to use the cache pool.
  1094. 6. Save one of the below scripts or create you're own.
  1095. 7. Use `cron` (as root) to schedule the command at whatever frequency
  1096. is appropriate for your workflow.
  1097. ##### time based expiring
  1098. Move files from cache to backing pool based only on the last time the
  1099. file was accessed. Replace `-atime` with `-amin` if you want minutes
  1100. rather than days. May want to use the `fadvise` / `--drop-cache`
  1101. version of rsync or run rsync with the tool "nocache".
  1102. *NOTE:* The arguments to these scripts include the cache
  1103. **filesystem** itself. Not the pool with the cache filesystem. You
  1104. could have data loss if the source is the cache pool.
  1105. [mergerfs.time-based-mover](tools/mergerfs.time-based-mover?raw=1)
  1106. ##### percentage full expiring
  1107. Move the oldest file from the cache to the backing pool. Continue till
  1108. below percentage threshold.
  1109. *NOTE:* The arguments to these scripts include the cache
  1110. **filesystem** itself. Not the pool with the cache filesystem. You
  1111. could have data loss if the source is the cache pool.
  1112. [mergerfs.percent-full-mover](tools/mergerfs.percent-full-mover?raw=1)
  1113. # PERFORMANCE
  1114. mergerfs is at its core just a proxy and therefore its theoretical max
  1115. performance is that of the underlying devices. However, given it is a
  1116. FUSE filesystem working from userspace there is an increase in
  1117. overhead relative to kernel based solutions. That said the performance
  1118. can match the theoretical max but it depends greatly on the system's
  1119. configuration. Especially when adding network filesystems into the mix
  1120. there are many variables which can impact performance. Device speeds
  1121. and latency, network speeds and latency, general concurrency,
  1122. read/write sizes, etc. Unfortunately, given the number of variables it
  1123. has been difficult to find a single set of settings which provide
  1124. optimal performance. If you're having performance issues please look
  1125. over the suggestions below (including the benchmarking section.)
  1126. NOTE: be sure to read about these features before changing them to
  1127. understand what behaviors it may impact
  1128. * disable `security_capability` and/or `xattr`
  1129. * increase cache timeouts `cache.attr`, `cache.entry`, `cache.negative_entry`
  1130. * enable (or disable) page caching (`cache.files`)
  1131. * enable `cache.writeback`
  1132. * enable `cache.statfs`
  1133. * enable `cache.symlinks`
  1134. * enable `cache.readdir`
  1135. * change the number of worker threads
  1136. * disable `posix_acl`
  1137. * disable `async_read`
  1138. * test theoretical performance using `nullrw` or mounting a ram disk
  1139. * use `symlinkify` if your data is largely static and read-only
  1140. * use tiered cache devices
  1141. * use LVM and LVM cache to place a SSD in front of your HDDs
  1142. * increase readahead: `readahead=1024`
  1143. If you come across a setting that significantly impacts performance
  1144. please contact trapexit so he may investigate further. Please test
  1145. both against your normal setup, a singular branch, and with
  1146. `nullrw=true`
  1147. # BENCHMARKING
  1148. Filesystems are complicated. They do many things and many of those are
  1149. interconnected. Additionally, the OS, drivers, hardware, etc. all can
  1150. impact performance. Therefore, when benchmarking, it is **necessary**
  1151. that the test focus as narrowly as possible.
  1152. For most throughput is the key benchmark. To test throughput `dd` is
  1153. useful but **must** be used with the correct settings in order to
  1154. ensure the filesystem or device is actually being tested. The OS can
  1155. and will cache data. Without forcing synchronous reads and writes
  1156. and/or disabling caching the values returned will not be
  1157. representative of the device's true performance.
  1158. When benchmarking through mergerfs ensure you only use 1 branch to
  1159. remove any possibility of the policies complicating the
  1160. situation. Benchmark the underlying filesystem first and then mount
  1161. mergerfs over it and test again. If you're experience speeds below
  1162. your expectation you will need to narrow down precisely which
  1163. component is leading to the slowdown. Preferably test the following in
  1164. the order listed (but not combined).
  1165. 1. Enable `nullrw` mode with `nullrw=true`. This will effectively make
  1166. reads and writes no-ops. Removing the underlying device /
  1167. filesystem from the equation. This will give us the top theoretical
  1168. speeds.
  1169. 2. Mount mergerfs over `tmpfs`. `tmpfs` is a RAM disk. Extremely high
  1170. speed and very low latency. This is a more realistic best case
  1171. scenario. Example: `mount -t tmpfs -o size=2G tmpfs /tmp/tmpfs`
  1172. 3. Mount mergerfs over a local device. NVMe, SSD, HDD, etc. If you
  1173. have more than one I'd suggest testing each of them as drives
  1174. and/or controllers (their drivers) could impact performance.
  1175. 4. Finally, if you intend to use mergerfs with a network filesystem,
  1176. either as the source of data or to combine with another through
  1177. mergerfs, test each of those alone as above.
  1178. Once you find the component which has the performance issue you can do
  1179. further testing with different options to see if they impact
  1180. performance. For reads and writes the most relevant would be:
  1181. `cache.files`, `async_read`. Less likely but relevant when using NFS
  1182. or with certain filesystems would be `security_capability`, `xattr`,
  1183. and `posix_acl`. If you find a specific system, device, filesystem,
  1184. controller, etc. that performs poorly contact trapexit so he may
  1185. investigate further.
  1186. Sometimes the problem is really the application accessing or writing
  1187. data through mergerfs. Some software use small buffer sizes which can
  1188. lead to more requests and therefore greater overhead. You can test
  1189. this out yourself by replace `bs=1M` in the examples below with `ibs`
  1190. or `obs` and using a size of `512` instead of `1M`. In one example
  1191. test using `nullrw` the write speed dropped from 4.9GB/s to 69.7MB/s
  1192. when moving from `1M` to `512`. Similar results were had when testing
  1193. reads. Small writes overhead may be improved by leveraging a write
  1194. cache but in casual tests little gain was found. More tests will need
  1195. to be done before this feature would become available. If you have an
  1196. app that appears slow with mergerfs it could be due to this. Contact
  1197. trapexit so he may investigate further.
  1198. ### write benchmark
  1199. ```
  1200. $ dd if=/dev/zero of=/mnt/mergerfs/1GB.file bs=1M count=1024 oflag=nocache conv=fdatasync status=progress
  1201. ```
  1202. ### read benchmark
  1203. ```
  1204. $ dd if=/mnt/mergerfs/1GB.file of=/dev/null bs=1M count=1024 iflag=nocache conv=fdatasync status=progress
  1205. ```
  1206. ### other benchmarks
  1207. If you are attempting to benchmark other behaviors you must ensure you
  1208. clear kernel caches before runs. In fact it would be a good deal to
  1209. run before the read and write benchmarks as well just in case.
  1210. ```
  1211. sync
  1212. echo 3 | sudo tee /proc/sys/vm/drop_caches
  1213. ```
  1214. # TIPS / NOTES
  1215. * This document is literal and thorough. If a suspected feature isn't
  1216. mentioned it doesn't exist. If certain libfuse arguments aren't
  1217. listed they probably shouldn't be used.
  1218. * Ensure you're using the latest version.
  1219. * Run mergerfs as `root`. mergerfs is designed and intended to be run
  1220. as `root` and may exibit incorrect behavior if run otherwise..
  1221. * If you don't see some directories and files you expect, policies
  1222. seem to skip branches, you get strange permission errors, etc. be
  1223. sure the underlying filesystems' permissions are all the same. Use
  1224. `mergerfs.fsck` to audit the filesystem for out of sync permissions.
  1225. * If you still have permission issues be sure you are using POSIX ACL
  1226. compliant filesystems. mergerfs doesn't generally make exceptions
  1227. for FAT, NTFS, or other non-POSIX filesystem.
  1228. * Do **not** use `cache.files=off` if you expect applications (such as
  1229. rtorrent) to use [mmap](http://linux.die.net/man/2/mmap)
  1230. files. Shared mmap is not currently supported in FUSE w/ page
  1231. caching disabled. Enabling `dropcacheonclose` is recommended when
  1232. `cache.files=partial|full|auto-full`.
  1233. * [Kodi](http://kodi.tv), [Plex](http://plex.tv),
  1234. [Subsonic](http://subsonic.org), etc. can use directory
  1235. [mtime](http://linux.die.net/man/2/stat) to more efficiently
  1236. determine whether to scan for new content rather than simply
  1237. performing a full scan. If using the default **getattr** policy of
  1238. **ff** it's possible those programs will miss an update on account
  1239. of it returning the first directory found's **stat** info and it's a
  1240. later directory on another mount which had the **mtime** recently
  1241. updated. To fix this you will want to set
  1242. **func.getattr=newest**. Remember though that this is just
  1243. **stat**. If the file is later **open**'ed or **unlink**'ed and the
  1244. policy is different for those then a completely different file or
  1245. directory could be acted on.
  1246. * Some policies mixed with some functions may result in strange
  1247. behaviors. Not that some of these behaviors and race conditions
  1248. couldn't happen outside **mergerfs** but that they are far more
  1249. likely to occur on account of the attempt to merge together multiple
  1250. sources of data which could be out of sync due to the different
  1251. policies.
  1252. * For consistency its generally best to set **category** wide policies
  1253. rather than individual **func**'s. This will help limit the
  1254. confusion of tools such as
  1255. [rsync](http://linux.die.net/man/1/rsync). However, the flexibility
  1256. is there if needed.
  1257. # KNOWN ISSUES / BUGS
  1258. #### kernel issues & bugs
  1259. [https://github.com/trapexit/mergerfs/wiki/Kernel-Issues-&-Bugs](https://github.com/trapexit/mergerfs/wiki/Kernel-Issues-&-Bugs)
  1260. #### directory mtime is not being updated
  1261. Remember that the default policy for `getattr` is `ff`. The
  1262. information for the first directory found will be returned. If it
  1263. wasn't the directory which had been updated then it will appear
  1264. outdated.
  1265. The reason this is the default is because any other policy would be
  1266. more expensive and for many applications it is unnecessary. To always
  1267. return the directory with the most recent mtime or a faked value based
  1268. on all found would require a scan of all filesystems.
  1269. If you always want the directory information from the one with the
  1270. most recent mtime then use the `newest` policy for `getattr`.
  1271. #### 'mv /mnt/pool/foo /mnt/disk1/foo' removes 'foo'
  1272. **You read that correctly: moving a file deletes it!**
  1273. This is not a bug.
  1274. Run in verbose mode to better understand what's happening:
  1275. ```
  1276. $ mv -v /mnt/pool/foo /mnt/disk1/foo
  1277. copied '/mnt/pool/foo' -> '/mnt/disk1/foo'
  1278. removed '/mnt/pool/foo'
  1279. $ ls /mnt/pool/foo
  1280. ls: cannot access '/mnt/pool/foo': No such file or directory
  1281. ```
  1282. `mv`, when working across devices, is copying the source to target and
  1283. then removing the source. Since the source **is** the target in this
  1284. case, depending on the unlink policy, it will remove the just copied
  1285. file and other files across the branches.
  1286. If you want to move files to one filesystem just **copy** them there and
  1287. use `mergerfs.dedup` to clean up the old paths or manually remove them
  1288. from the underlying paths / branches directly. (Or just move them using
  1289. the underlying paths.)
  1290. #### cached memory appears greater than it should be
  1291. Use `cache.files=off` and/or `dropcacheonclose=true`. See the section
  1292. on page caching.
  1293. #### NFS clients returning ESTALE / Stale file handle
  1294. NFS does not like out of band changes. That is especially true of
  1295. inode values.
  1296. Be sure to use the following options:
  1297. * noforget
  1298. * inodecalc=path-hash
  1299. #### rtorrent fails with ENODEV (No such device)
  1300. Be sure to set `cache.files=partial|full|auto-full|per-processe` or
  1301. turn off `direct_io`. rtorrent and some other applications use
  1302. [mmap](http://linux.die.net/man/2/mmap) to read and write to files and
  1303. offer no fallback to traditional methods. FUSE does not currently
  1304. support mmap while using `direct_io`. There may be a performance
  1305. penalty on writes with `direct_io` off as well as the problem of
  1306. double caching but it's the only way to get such applications to
  1307. work. If the performance loss is too high for other apps you can mount
  1308. mergerfs twice. Once with `direct_io` enabled and one without it. Be
  1309. sure to set `dropcacheonclose=true` if not using `direct_io`.
  1310. #### Plex doesn't work with mergerfs
  1311. It does. If you're trying to put Plex's config / metadata / database
  1312. on mergerfs you can't set `cache.files=off` because Plex is using
  1313. sqlite3 with mmap enabled. Shared mmap is not supported by Linux's
  1314. FUSE implementation when page caching is disabled. To fix this place
  1315. the data elsewhere (preferable) or enable `cache.files` (with
  1316. `dropcacheonclose=true`). Sqlite3 does not need mmap but the developer
  1317. needs to fall back to standard IO if mmap fails.
  1318. This applies to other software: Radarr, Sonarr, Lidarr, Jellyfin, etc.
  1319. I would recommend reaching out to the developers of the software
  1320. you're having troubles with and asking them to add a fallback to
  1321. regular file IO when mmap is unavailable.
  1322. If the issue is that scanning doesn't seem to pick up media then be
  1323. sure to set `func.getattr=newest` though generally a full scan will
  1324. pick up all media anyway.
  1325. #### When a program tries to move or rename a file it fails
  1326. Please read the section above regarding [rename & link](#rename--link).
  1327. The problem is that many applications do not properly handle `EXDEV`
  1328. errors which `rename` and `link` may return even though they are
  1329. perfectly valid situations which do not indicate actual device,
  1330. filesystem, or OS errors. The error will only be returned by mergerfs
  1331. if using a path preserving policy as described in the policy section
  1332. above. If you do not care about path preservation simply change the
  1333. mergerfs policy to the non-path preserving version. For example: `-o
  1334. category.create=mfs` Ideally the offending software would be fixed and
  1335. it is recommended that if you run into this problem you contact the
  1336. software's author and request proper handling of `EXDEV` errors.
  1337. #### my 32bit software has problems
  1338. Some software have problems with 64bit inode values. The symptoms can
  1339. include EOVERFLOW errors when trying to list files. You can address
  1340. this by setting `inodecalc` to one of the 32bit based algos as
  1341. described in the relevant section.
  1342. #### Samba: Moving files / directories fails
  1343. Workaround: Copy the file/directory and then remove the original
  1344. rather than move.
  1345. This isn't an issue with Samba but some SMB clients. GVFS-fuse v1.20.3
  1346. and prior (found in Ubuntu 14.04 among others) failed to handle
  1347. certain error codes correctly. Particularly **STATUS_NOT_SAME_DEVICE**
  1348. which comes from the **EXDEV** which is returned by **rename** when
  1349. the call is crossing mount points. When a program gets an **EXDEV** it
  1350. needs to explicitly take an alternate action to accomplish its
  1351. goal. In the case of **mv** or similar it tries **rename** and on
  1352. **EXDEV** falls back to a manual copying of data between the two
  1353. locations and unlinking the source. In these older versions of
  1354. GVFS-fuse if it received **EXDEV** it would translate that into
  1355. **EIO**. This would cause **mv** or most any application attempting to
  1356. move files around on that SMB share to fail with a IO error.
  1357. [GVFS-fuse v1.22.0](https://bugzilla.gnome.org/show_bug.cgi?id=734568)
  1358. and above fixed this issue but a large number of systems use the older
  1359. release. On Ubuntu the version can be checked by issuing `apt-cache
  1360. showpkg gvfs-fuse`. Most distros released in 2015 seem to have the
  1361. updated release and will work fine but older systems may
  1362. not. Upgrading gvfs-fuse or the distro in general will address the
  1363. problem.
  1364. In Apple's MacOSX 10.9 they replaced Samba (client and server) with
  1365. their own product. It appears their new client does not handle
  1366. **EXDEV** either and responds similar to older release of gvfs on
  1367. Linux.
  1368. #### Trashing files occasionally fails
  1369. This is the same issue as with Samba. `rename` returns `EXDEV` (in our
  1370. case that will really only happen with path preserving policies like
  1371. `epmfs`) and the software doesn't handle the situation well. This is
  1372. unfortunately a common failure of software which moves files
  1373. around. The standard indicates that an implementation `MAY` choose to
  1374. support non-user home directory trashing of files (which is a
  1375. `MUST`). The implementation `MAY` also support "top directory trashes"
  1376. which many probably do.
  1377. To create a `$topdir/.Trash` directory as defined in the standard use
  1378. the [mergerfs-tools](https://github.com/trapexit/mergerfs-tools) tool
  1379. `mergerfs.mktrash`.
  1380. #### Supplemental user groups
  1381. Due to the overhead of
  1382. [getgroups/setgroups](http://linux.die.net/man/2/setgroups) mergerfs
  1383. utilizes a cache. This cache is opportunistic and per thread. Each
  1384. thread will query the supplemental groups for a user when that
  1385. particular thread needs to change credentials and will keep that data
  1386. for the lifetime of the thread. This means that if a user is added to
  1387. a group it may not be picked up without the restart of
  1388. mergerfs. However, since the high level FUSE API's (at least the
  1389. standard version) thread pool dynamically grows and shrinks it's
  1390. possible that over time a thread will be killed and later a new thread
  1391. with no cache will start and query the new data.
  1392. The gid cache uses fixed storage to simplify the design and be
  1393. compatible with older systems which may not have C++11
  1394. compilers. There is enough storage for 256 users' supplemental
  1395. groups. Each user is allowed up to 32 supplemental groups. Linux >=
  1396. 2.6.3 allows up to 65535 groups per user but most other *nixs allow
  1397. far less. NFS allowing only 16. The system does handle overflow
  1398. gracefully. If the user has more than 32 supplemental groups only the
  1399. first 32 will be used. If more than 256 users are using the system
  1400. when an uncached user is found it will evict an existing user's cache
  1401. at random. So long as there aren't more than 256 active users this
  1402. should be fine. If either value is too low for your needs you will
  1403. have to modify `gidcache.hpp` to increase the values. Note that doing
  1404. so will increase the memory needed by each thread.
  1405. While not a bug some users have found when using containers that
  1406. supplemental groups defined inside the container don't work properly
  1407. with regard to permissions. This is expected as mergerfs lives outside
  1408. the container and therefore is querying the host's group
  1409. database. There might be a hack to work around this (make mergerfs
  1410. read the /etc/group file in the container) but it is not yet
  1411. implemented and would be limited to Linux and the /etc/group
  1412. DB. Preferably users would mount in the host group file into the
  1413. containers or use a standard shared user & groups technology like NIS
  1414. or LDAP.
  1415. # FAQ
  1416. #### How well does mergerfs scale? Is it "production ready?"
  1417. Users have reported running mergerfs on everything from a Raspberry Pi
  1418. to dual socket Xeon systems with >20 cores. I'm aware of at least a
  1419. few companies which use mergerfs in production. [Open Media
  1420. Vault](https://www.openmediavault.org) includes mergerfs as its sole
  1421. solution for pooling filesystems. The author of mergerfs had it
  1422. running for over 300 days managing 16+ devices with reasonably heavy
  1423. 24/7 read and write usage. Stopping only after the machine's power
  1424. supply died.
  1425. Most serious issues (crashes or data corruption) have been due to
  1426. [kernel
  1427. bugs](https://github.com/trapexit/mergerfs/wiki/Kernel-Issues-&-Bugs). All
  1428. of which are fixed in stable releases.
  1429. #### Can mergerfs be used with filesystems which already have data / are in use?
  1430. Yes. MergerFS is a proxy and does **NOT** interfere with the normal
  1431. form or function of the filesystems / mounts / paths it manages.
  1432. MergerFS is **not** a traditional filesystem. MergerFS is **not**
  1433. RAID. It does **not** manipulate the data that passes through it. It
  1434. does **not** shard data across filesystems. It merely shards some
  1435. **behavior** and aggregates others.
  1436. #### Can mergerfs be removed without affecting the data?
  1437. See the previous question's answer.
  1438. #### What policies should I use?
  1439. Unless you're doing something more niche the average user is probably
  1440. best off using `mfs` for `category.create`. It will spread files out
  1441. across your branches based on available space. Use `mspmfs` if you
  1442. want to try to colocate the data a bit more. You may want to use `lus`
  1443. if you prefer a slightly different distribution of data if you have a
  1444. mix of smaller and larger filesystems. Generally though `mfs`, `lus`,
  1445. or even `rand` are good for the general use case. If you are starting
  1446. with an imbalanced pool you can use the tool **mergerfs.balance** to
  1447. redistribute files across the pool.
  1448. If you really wish to try to colocate files based on directory you can
  1449. set `func.create` to `epmfs` or similar and `func.mkdir` to `rand` or
  1450. `eprand` depending on if you just want to colocate generally or on
  1451. specific branches. Either way the *need* to colocate is rare. For
  1452. instance: if you wish to remove the device regularly and want the data
  1453. to predictably be on that device or if you don't use backup at all and
  1454. don't wish to replace that data piecemeal. In which case using path
  1455. preservation can help but will require some manual
  1456. attention. Colocating after the fact can be accomplished using the
  1457. **mergerfs.consolidate** tool. If you don't need strict colocation
  1458. which the `ep` policies provide then you can use the `msp` based
  1459. policies which will walk back the path till finding a branch that
  1460. works.
  1461. Ultimately there is no correct answer. It is a preference or based on
  1462. some particular need. mergerfs is very easy to test and experiment
  1463. with. I suggest creating a test setup and experimenting to get a sense
  1464. of what you want.
  1465. `epmfs` is the default `category.create` policy because `ep` policies
  1466. are not going to change the general layout of the branches. It won't
  1467. place files/dirs on branches that don't already have the relative
  1468. branch. So it keeps the system in a known state. It's much easier to
  1469. stop using `epmfs` or redistribute files around the filesystem than it
  1470. is to consolidate them back.
  1471. #### What settings should I use?
  1472. Depends on what features you want. Generally speaking there are no
  1473. "wrong" settings. All settings are performance or feature related. The
  1474. best bet is to read over the available options and choose what fits
  1475. your situation. If something isn't clear from the documentation please
  1476. reach out and the documentation will be improved.
  1477. That said, for the average person, the following should be fine:
  1478. `cache.files=off,dropcacheonclose=true,category.create=mfs`
  1479. #### Why are all my files ending up on 1 filesystem?!
  1480. Did you start with empty filesystems? Did you explicitly configure a
  1481. `category.create` policy? Are you using an `existing path` / `path
  1482. preserving` policy?
  1483. The default create policy is `epmfs`. That is a path preserving
  1484. algorithm. With such a policy for `mkdir` and `create` with a set of
  1485. empty filesystems it will select only 1 filesystem when the first
  1486. directory is created. Anything, files or directories, created in that
  1487. first directory will be placed on the same branch because it is
  1488. preserving paths.
  1489. This catches a lot of new users off guard but changing the default
  1490. would break the setup for many existing users. If you do not care
  1491. about path preservation and wish your files to be spread across all
  1492. your filesystems change to `mfs` or similar policy as described
  1493. above. If you do want path preservation you'll need to perform the
  1494. manual act of creating paths on the filesystems you want the data to
  1495. land on before transferring your data. Setting `func.mkdir=epall` can
  1496. simplify managing path preservation for `create`. Or use
  1497. `func.mkdir=rand` if you're interested in just grouping together
  1498. directory content by filesystem.
  1499. #### Do hardlinks work?
  1500. Yes. See also the option `inodecalc` for how inode values are
  1501. calculated.
  1502. What mergerfs does not do is fake hard links across branches. Read
  1503. the section "rename & link" for how it works.
  1504. Remember that hardlinks will NOT work across devices. That includes
  1505. between the original filesystem and a mergerfs pool, between two
  1506. separate pools of the same underlying filesystems, or bind mounts of
  1507. paths within the mergerfs pool. The latter is common when using Docker
  1508. or Podman. Multiple volumes (bind mounts) to the same underlying
  1509. filesystem are considered different devices. There is no way to link
  1510. between them. You should mount in the highest directory in the
  1511. mergerfs pool that includes all the paths you need if you want links
  1512. to work.
  1513. #### Can I use mergerfs without SnapRAID? SnapRAID without mergerfs?
  1514. Yes. They are completely unrelated pieces of software.
  1515. #### Can mergerfs run via Docker, Podman, Kubernetes, etc.
  1516. Yes. With Docker you'll need to include `--cap-add=SYS_ADMIN
  1517. --device=/dev/fuse --security-opt=apparmor:unconfined` or similar with
  1518. other container runtimes. You should also be running it as root or
  1519. given sufficient caps to change user and group identity as well as
  1520. have root like filesystem permissions.
  1521. Keep in mind that you **MUST** consider identity when using
  1522. containers. For example: supplemental groups will be picked up from
  1523. the container unless you properly manage users and groups by sharing
  1524. relevant /etc files or by using some other means to share identity
  1525. across containers. Similarly if you use "rootless" containers and user
  1526. namespaces to do uid/gid translations you **MUST** consider that while
  1527. managing shared files.
  1528. Also, as mentioned by [hotio](https://hotio.dev/containers/mergerfs),
  1529. with Docker you should probably be mounting with `bind-propagation`
  1530. set to `slave`.
  1531. #### Does mergerfs support CoW / copy-on-write / writes to read-only filesystems?
  1532. Not in the sense of a filesystem like BTRFS or ZFS nor in the
  1533. overlayfs or aufs sense. It does offer a
  1534. [cow-shell](http://manpages.ubuntu.com/manpages/bionic/man1/cow-shell.1.html)
  1535. like hard link breaking (copy to temp file then rename over original)
  1536. which can be useful when wanting to save space by hardlinking
  1537. duplicate files but wish to treat each name as if it were a unique and
  1538. separate file.
  1539. If you want to write to a read-only filesystem you should look at
  1540. overlayfs. You can always include the overlayfs mount into a mergerfs
  1541. pool.
  1542. #### Why can't I see my files / directories?
  1543. It's almost always a permissions issue. Unlike mhddfs and
  1544. unionfs-fuse, which runs as root and attempts to access content as
  1545. such, mergerfs always changes its credentials to that of the
  1546. caller. This means that if the user does not have access to a file or
  1547. directory than neither will mergerfs. However, because mergerfs is
  1548. creating a union of paths it may be able to read some files and
  1549. directories on one filesystem but not another resulting in an
  1550. incomplete set.
  1551. Whenever you run into a split permission issue (seeing some but not
  1552. all files) try using
  1553. [mergerfs.fsck](https://github.com/trapexit/mergerfs-tools) tool to
  1554. check for and fix the mismatch. If you aren't seeing anything at all
  1555. be sure that the basic permissions are correct. The user and group
  1556. values are correct and that directories have their executable bit
  1557. set. A common mistake by users new to Linux is to `chmod -R 644` when
  1558. they should have `chmod -R u=rwX,go=rX`.
  1559. If using a network filesystem such as NFS, SMB, CIFS (Samba) be sure
  1560. to pay close attention to anything regarding permissioning and
  1561. users. Root squashing and user translation for instance has bitten a
  1562. few mergerfs users. Some of these also affect the use of mergerfs from
  1563. container platforms such as Docker.
  1564. #### Why use FUSE? Why not a kernel based solution?
  1565. As with any solutions to a problem there are advantages and
  1566. disadvantages to each one.
  1567. A FUSE based solution has all the downsides of FUSE:
  1568. * Higher IO latency due to the trips in and out of kernel space
  1569. * Higher general overhead due to trips in and out of kernel space
  1570. * Double caching when using page caching
  1571. * Misc limitations due to FUSE's design
  1572. But FUSE also has a lot of upsides:
  1573. * Easier to offer a cross platform solution
  1574. * Easier forward and backward compatibility
  1575. * Easier updates for users
  1576. * Easier and faster release cadence
  1577. * Allows more flexibility in design and features
  1578. * Overall easier to write, secure, and maintain
  1579. * Much lower barrier to entry (getting code into the kernel takes a
  1580. lot of time and effort initially)
  1581. FUSE was chosen because of all the advantages listed above. The
  1582. negatives of FUSE do not outweigh the positives.
  1583. #### Is my OS's libfuse needed for mergerfs to work?
  1584. No. Normally `mount.fuse` is needed to get mergerfs (or any FUSE
  1585. filesystem to mount using the `mount` command but in vendoring the
  1586. libfuse library the `mount.fuse` app has been renamed to
  1587. `mount.mergerfs` meaning the filesystem type in `fstab` can simply be
  1588. `mergerfs`. That said there should be no harm in having it installed
  1589. and continuing to using `fuse.mergerfs` as the type in `/etc/fstab`.
  1590. If `mergerfs` doesn't work as a type it could be due to how the
  1591. `mount.mergerfs` tool was installed. Must be in `/sbin/` with proper
  1592. permissions.
  1593. #### Why was splice support removed?
  1594. After a lot of testing over the years splicing always appeared to be
  1595. at best provide equivalent performance and in cases worse
  1596. performance. Splice is not supported on other platforms forcing a
  1597. traditional read/write fallback to be provided. The splice code was
  1598. removed to simplify the codebase.
  1599. #### Why use mergerfs over mhddfs?
  1600. mhddfs is no longer maintained and has some known stability and
  1601. security issues (see below). MergerFS provides a superset of mhddfs'
  1602. features and should offer the same or maybe better performance.
  1603. Below is an example of mhddfs and mergerfs setup to work similarly.
  1604. `mhddfs -o mlimit=4G,allow_other /mnt/drive1,/mnt/drive2 /mnt/pool`
  1605. `mergerfs -o minfreespace=4G,category.create=ff /mnt/drive1:/mnt/drive2 /mnt/pool`
  1606. #### Why use mergerfs over aufs?
  1607. aufs is mostly abandoned and no longer available in many distros.
  1608. While aufs can offer better peak performance mergerfs provides more
  1609. configurability and is generally easier to use. mergerfs however does
  1610. not offer the overlay / copy-on-write (CoW) features which aufs and
  1611. overlayfs have.
  1612. #### Why use mergerfs over unionfs?
  1613. UnionFS is more like aufs than mergerfs in that it offers overlay /
  1614. CoW features. If you're just looking to create a union of filesystems
  1615. and want flexibility in file/directory placement then mergerfs offers
  1616. that whereas unionfs is more for overlaying RW filesystems over RO
  1617. ones.
  1618. #### Why use mergerfs over overlayfs?
  1619. Same reasons as with unionfs.
  1620. #### Why use mergerfs over LVM/ZFS/BTRFS/RAID0 drive concatenation / striping?
  1621. With simple JBOD / drive concatenation / stripping / RAID0 a single
  1622. drive failure will result in full pool failure. mergerfs performs a
  1623. similar function without the possibility of catastrophic failure and
  1624. the difficulties in recovery. Drives may fail, however, all other data
  1625. will continue to be accessible.
  1626. When combined with something like [SnapRaid](http://www.snapraid.it)
  1627. and/or an offsite backup solution you can have the flexibility of JBOD
  1628. without the single point of failure.
  1629. #### Why use mergerfs over ZFS?
  1630. MergerFS is not intended to be a replacement for ZFS. MergerFS is
  1631. intended to provide flexible pooling of arbitrary filesystems (local
  1632. or remote), of arbitrary sizes, and arbitrary filesystems. For `write
  1633. once, read many` usecases such as bulk media storage. Where data
  1634. integrity and backup is managed in other ways. In that situation ZFS
  1635. can introduce a number of costs and limitations as described
  1636. [here](http://louwrentius.com/the-hidden-cost-of-using-zfs-for-your-home-nas.html),
  1637. [here](https://markmcb.com/2020/01/07/five-years-of-btrfs/), and
  1638. [here](https://utcc.utoronto.ca/~cks/space/blog/solaris/ZFSWhyNoRealReshaping).
  1639. #### Why use mergerfs over UnRAID?
  1640. UnRAID is a full OS and its storage layer, as I understand, is
  1641. proprietary and closed source. Users who have experience with both
  1642. have said they prefer the flexibility offered by mergerfs and for some
  1643. the fact it is free and open source is important.
  1644. There are a number of UnRAID users who use mergerfs as well though I'm
  1645. not entirely familiar with the use case.
  1646. #### Why use mergerfs over StableBit's DrivePool?
  1647. DrivePool works only on Windows so not as common an alternative as
  1648. other Linux solutions. If you want to use Windows then DrivePool is a
  1649. good option. Functionally the two projects work a bit
  1650. differently. DrivePool always writes to the filesystem with the most
  1651. free space and later rebalances. mergerfs does not offer rebalance but
  1652. chooses a branch at file/directory create time. DrivePool's
  1653. rebalancing can be done differently in any directory and has file
  1654. pattern matching to further customize the behavior. mergerfs, not
  1655. having rebalancing does not have these features, but similar features
  1656. are planned for mergerfs v3. DrivePool has builtin file duplication
  1657. which mergerfs does not natively support (but can be done via an
  1658. external script.)
  1659. There are a lot of misc differences between the two projects but most
  1660. features in DrivePool can be replicated with external tools in
  1661. combination with mergerfs.
  1662. Additionally DrivePool is a closed source commercial product vs
  1663. mergerfs a ISC licensed OSS project.
  1664. #### What should mergerfs NOT be used for?
  1665. * databases: Even if the database stored data in separate files
  1666. (mergerfs wouldn't offer much otherwise) the higher latency of the
  1667. indirection will kill performance. If it is a lightly used SQLITE
  1668. database then it may be fine but you'll need to test.
  1669. * VM images: For the same reasons as databases. VM images are accessed
  1670. very aggressively and mergerfs will introduce too much latency (if
  1671. it works at all).
  1672. * As replacement for RAID: mergerfs is just for pooling branches. If
  1673. you need that kind of device performance aggregation or high
  1674. availability you should stick with RAID.
  1675. #### Can filesystems be written to directly? Outside of mergerfs while pooled?
  1676. Yes, however it's not recommended to use the same file from within the
  1677. pool and from without at the same time (particularly
  1678. writing). Especially if using caching of any kind (cache.files,
  1679. cache.entry, cache.attr, cache.negative_entry, cache.symlinks,
  1680. cache.readdir, etc.) as there could be a conflict between cached data
  1681. and not.
  1682. #### 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?
  1683. First make sure you've read the sections above about policies, path
  1684. preservation, branch filtering, and the options **minfreespace**,
  1685. **moveonenospc**, **statfs**, and **statfs_ignore**.
  1686. mergerfs is simply presenting a union of the content within multiple
  1687. branches. The reported free space is an aggregate of space available
  1688. within the pool (behavior modified by **statfs** and
  1689. **statfs_ignore**). It does not represent a contiguous space. In the
  1690. same way that read-only filesystems, those with quotas, or reserved
  1691. space report the full theoretical space available.
  1692. Due to path preservation, branch tagging, read-only status, and
  1693. **minfreespace** settings it is perfectly valid that `ENOSPC` / "out
  1694. of space" / "no space left on device" be returned. It is doing what
  1695. was asked of it: filtering possible branches due to those
  1696. settings. Only one error can be returned and if one of the reasons for
  1697. filtering a branch was **minfreespace** then it will be returned as
  1698. such. **moveonenospc** is only relevant to writing a file which is too
  1699. large for the filesystem it's currently on.
  1700. It is also possible that the filesystem selected has run out of
  1701. inodes. Use `df -i` to list the total and available inodes per
  1702. filesystem.
  1703. If you don't care about path preservation then simply change the
  1704. `create` policy to one which isn't. `mfs` is probably what most are
  1705. looking for. The reason it's not default is because it was originally
  1706. set to `epmfs` and changing it now would change people's setup. Such a
  1707. setting change will likely occur in mergerfs 3.
  1708. #### Why does the total available space in mergerfs not equal outside?
  1709. Are you using ext2/3/4? With reserve for root? mergerfs uses available
  1710. space for statfs calculations. If you've reserved space for root then
  1711. it won't show up.
  1712. You can remove the reserve by running: `tune2fs -m 0 <device>`
  1713. #### Can mergerfs mounts be exported over NFS?
  1714. Yes, however if you do anything which may changes files out of band
  1715. (including for example using the `newest` policy) it will result in
  1716. "stale file handle" errors unless properly setup.
  1717. Be sure to use the following options:
  1718. * noforget
  1719. * inodecalc=path-hash
  1720. #### Can mergerfs mounts be exported over Samba / SMB?
  1721. Yes. While some users have reported problems it appears to always be
  1722. related to how Samba is setup in relation to permissions.
  1723. #### Can mergerfs mounts be used over SSHFS?
  1724. Yes.
  1725. #### I notice massive slowdowns of writes when enabling cache.files.
  1726. When file caching is enabled in any form (`cache.files!=off` or
  1727. `direct_io=false`) it will issue `getxattr` requests for
  1728. `security.capability` prior to *every single write*. This will usually
  1729. result in a performance degradation, especially when using a network
  1730. filesystem (such as NFS or CIFS/SMB/Samba.) Unfortunately at this
  1731. moment the kernel is not caching the response.
  1732. To work around this situation mergerfs offers a few solutions.
  1733. 1. Set `security_capability=false`. It will short circuit any call and
  1734. return `ENOATTR`. This still means though that mergerfs will
  1735. receive the request before every write but at least it doesn't get
  1736. passed through to the underlying filesystem.
  1737. 2. Set `xattr=noattr`. Same as above but applies to *all* calls to
  1738. getxattr. Not just `security.capability`. This will not be cached
  1739. by the kernel either but mergerfs' runtime config system will still
  1740. function.
  1741. 3. Set `xattr=nosys`. Results in mergerfs returning `ENOSYS` which
  1742. *will* be cached by the kernel. No future xattr calls will be
  1743. forwarded to mergerfs. The downside is that also means the xattr
  1744. based config and query functionality won't work either.
  1745. 4. Disable file caching. If you aren't using applications which use
  1746. `mmap` it's probably simpler to just disable it all together. The
  1747. kernel won't send the requests when caching is disabled.
  1748. #### It's mentioned that there are some security issues with mhddfs. What are they? How does mergerfs address them?
  1749. [mhddfs](https://github.com/trapexit/mhddfs) manages running as
  1750. **root** by calling
  1751. [getuid()](https://github.com/trapexit/mhddfs/blob/cae96e6251dd91e2bdc24800b4a18a74044f6672/src/main.c#L319)
  1752. and if it returns **0** then it will
  1753. [chown](http://linux.die.net/man/1/chown) the file. Not only is that a
  1754. race condition but it doesn't handle other situations. Rather than
  1755. attempting to simulate POSIX ACL behavior the proper way to manage
  1756. this is to use [seteuid](http://linux.die.net/man/2/seteuid) and
  1757. [setegid](http://linux.die.net/man/2/setegid), in effect becoming the
  1758. user making the original call, and perform the action as them. This is
  1759. what mergerfs does and why mergerfs should always run as root.
  1760. In Linux setreuid syscalls apply only to the thread. GLIBC hides this
  1761. away by using realtime signals to inform all threads to change
  1762. credentials. Taking after **Samba**, mergerfs uses
  1763. **syscall(SYS_setreuid,...)** to set the callers credentials for that
  1764. thread only. Jumping back to **root** as necessary should escalated
  1765. privileges be needed (for instance: to clone paths between
  1766. filesystems).
  1767. For non-Linux systems mergerfs uses a read-write lock and changes
  1768. credentials only when necessary. If multiple threads are to be user X
  1769. then only the first one will need to change the processes
  1770. credentials. So long as the other threads need to be user X they will
  1771. take a readlock allowing multiple threads to share the
  1772. credentials. Once a request comes in to run as user Y that thread will
  1773. attempt a write lock and change to Y's credentials when it can. If the
  1774. ability to give writers priority is supported then that flag will be
  1775. used so threads trying to change credentials don't starve. This isn't
  1776. the best solution but should work reasonably well assuming there are
  1777. few users.
  1778. # SUPPORT
  1779. Filesystems are complex and difficult to debug. mergerfs, while being
  1780. just a proxy of sorts, can be difficult to debug given the large
  1781. number of possible settings it can have itself and the number of
  1782. environments it can run in. When reporting on a suspected issue
  1783. **please** include as much of the below information as possible
  1784. otherwise it will be difficult or impossible to diagnose. Also please
  1785. read the above documentation as it provides details on many previously
  1786. encountered questions/issues.
  1787. **Please make sure you are using the [latest
  1788. release](https://github.com/trapexit/mergerfs/releases) or have tried
  1789. it in comparison. Old versions, which are often included in distros
  1790. like Debian and Ubuntu, are not ever going to be updated and the issue
  1791. you are encountering may have been addressed already.**
  1792. **For commercial support or feature requests please [contact me
  1793. directly.](mailto:support@spawn.link)**
  1794. #### Information to include in bug reports
  1795. * [Information about the broader problem along with any attempted
  1796. solutions.](https://xyproblem.info)
  1797. * Solution already ruled out and why.
  1798. * Version of mergerfs: `mergerfs --version`
  1799. * mergerfs settings / arguments: from fstab, systemd unit, command
  1800. line, OMV plugin, etc.
  1801. * Version of the OS: `uname -a` and `lsb_release -a`
  1802. * List of branches, their filesystem types, sizes (before and after issue): `df -h`
  1803. * **All** information about the relevant paths and files: permissions, ownership, etc.
  1804. * **All** information about the client app making the requests: version, uid/gid
  1805. * Runtime environment:
  1806. * Is mergerfs running within a container?
  1807. * Are the client apps using mergerfs running in a container?
  1808. * A `strace` of the app having problems:
  1809. * `strace -fvTtt -s 256 -o /tmp/app.strace.txt <cmd>`
  1810. * A `strace` of mergerfs while the program is trying to do whatever it is failing to do:
  1811. * `strace -fvTtt -s 256 -p <mergerfsPID> -o /tmp/mergerfs.strace.txt`
  1812. * **Precise** directions on replicating the issue. Do not leave **anything** out.
  1813. * Try to recreate the problem in the simplest way using standard programs: `ln`, `mv`, `cp`, `ls`, `dd`, etc.
  1814. #### Contact / Issue submission
  1815. * github.com: https://github.com/trapexit/mergerfs/issues
  1816. * discord: https://discord.gg/MpAr69V
  1817. * reddit: https://www.reddit.com/r/mergerfs
  1818. #### Donations
  1819. https://github.com/trapexit/support
  1820. Development and support of a project like mergerfs requires a
  1821. significant amount of time and effort. The software is released under
  1822. the very liberal ISC license and is therefore free to use for personal
  1823. or commercial uses.
  1824. If you are a personal user and find mergerfs and its support valuable
  1825. and would like to support the project financially it would be very
  1826. much appreciated.
  1827. If you are using mergerfs commercially please consider sponsoring the
  1828. project to ensure it continues to be maintained and receive
  1829. updates. If custom features are needed feel free to [contact me
  1830. directly](mailto:support@spawn.link).
  1831. # LINKS
  1832. * https://spawn.link
  1833. * https://github.com/trapexit/mergerfs
  1834. * https://github.com/trapexit/mergerfs/wiki
  1835. * https://github.com/trapexit/mergerfs-tools
  1836. * https://github.com/trapexit/scorch
  1837. * https://github.com/trapexit/bbf