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.

2519 lines
105 KiB

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