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.

2430 lines
100 KiB

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