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.

3016 lines
110 KiB

7 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
2 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
9 years ago
6 years ago
9 years ago
9 years ago
9 years ago
9 years ago
5 years ago
5 years ago
5 years ago
2 years ago
5 years ago
2 years ago
5 years ago
5 years ago
9 years ago
4 years ago
7 years ago
7 years ago
9 years ago
9 years ago
9 years ago
  1. .\"t
  2. .\" Automatically generated by Pandoc 2.9.2.1
  3. .\"
  4. .TH "mergerfs" "1" "" "mergerfs user manual" ""
  5. .hy
  6. .SH NAME
  7. .PP
  8. mergerfs - a featureful union filesystem
  9. .SH SYNOPSIS
  10. .PP
  11. mergerfs -o<options> <branches> <mountpoint>
  12. .SH DESCRIPTION
  13. .PP
  14. \f[B]mergerfs\f[R] is a union filesystem geared towards simplifying
  15. storage and management of files across numerous commodity storage
  16. devices.
  17. It is similar to \f[B]mhddfs\f[R], \f[B]unionfs\f[R], and
  18. \f[B]aufs\f[R].
  19. .SH FEATURES
  20. .IP \[bu] 2
  21. Configurable behaviors / file placement
  22. .IP \[bu] 2
  23. Ability to add or remove filesystems at will
  24. .IP \[bu] 2
  25. Resistance to individual filesystem failure
  26. .IP \[bu] 2
  27. Support for extended attributes (xattrs)
  28. .IP \[bu] 2
  29. Support for file attributes (chattr)
  30. .IP \[bu] 2
  31. Runtime configurable (via xattrs)
  32. .IP \[bu] 2
  33. Works with heterogeneous filesystem types
  34. .IP \[bu] 2
  35. Moving of file when filesystem runs out of space while writing
  36. .IP \[bu] 2
  37. Ignore read-only filesystems when creating files
  38. .IP \[bu] 2
  39. Turn read-only files into symlinks to underlying file
  40. .IP \[bu] 2
  41. Hard link copy-on-write / CoW
  42. .IP \[bu] 2
  43. Support for POSIX ACLs
  44. .IP \[bu] 2
  45. Misc other things
  46. .SH HOW IT WORKS
  47. .PP
  48. mergerfs logically merges multiple paths together.
  49. Think a union of sets.
  50. The file/s or directory/s acted on or presented through mergerfs are
  51. based on the policy chosen for that particular action.
  52. Read more about policies below.
  53. .IP
  54. .nf
  55. \f[C]
  56. A + B = C
  57. /disk1 /disk2 /merged
  58. | | |
  59. +-- /dir1 +-- /dir1 +-- /dir1
  60. | | | | | |
  61. | +-- file1 | +-- file2 | +-- file1
  62. | | +-- file3 | +-- file2
  63. +-- /dir2 | | +-- file3
  64. | | +-- /dir3 |
  65. | +-- file4 | +-- /dir2
  66. | +-- file5 | |
  67. +-- file6 | +-- file4
  68. |
  69. +-- /dir3
  70. | |
  71. | +-- file5
  72. |
  73. +-- file6
  74. \f[R]
  75. .fi
  76. .PP
  77. mergerfs does \f[B]not\f[R] support the copy-on-write (CoW) or whiteout
  78. behaviors found in \f[B]aufs\f[R] and \f[B]overlayfs\f[R].
  79. You can \f[B]not\f[R] mount a read-only filesystem and write to it.
  80. However, mergerfs will ignore read-only filesystems when creating new
  81. files so you can mix read-write and read-only filesystems.
  82. It also does \f[B]not\f[R] split data across filesystems.
  83. It is not RAID0 / striping.
  84. It is simply a union of other filesystems.
  85. .SH TERMINOLOGY
  86. .IP \[bu] 2
  87. branch: A base path used in the pool.
  88. .IP \[bu] 2
  89. pool: The mergerfs mount.
  90. The union of the branches.
  91. .IP \[bu] 2
  92. relative path: The path in the pool relative to the branch and mount.
  93. .IP \[bu] 2
  94. function: A filesystem call (open, unlink, create, getattr, rmdir, etc.)
  95. .IP \[bu] 2
  96. category: A collection of functions based on basic behavior (action,
  97. create, search).
  98. .IP \[bu] 2
  99. policy: The algorithm used to select a file when performing a function.
  100. .IP \[bu] 2
  101. path preservation: Aspect of some policies which includes checking the
  102. path for which a file would be created.
  103. .SH BASIC SETUP
  104. .PP
  105. If you don\[cq]t already know that you have a special use case then just
  106. start with one of the following option sets.
  107. .SS You need \f[C]mmap\f[R] (used by rtorrent and many sqlite3 base software)
  108. .PP
  109. \f[C]cache.files=partial,dropcacheonclose=true,category.create=mfs\f[R]
  110. .SS You don\[cq]t need \f[C]mmap\f[R]
  111. .PP
  112. \f[C]cache.files=off,dropcacheonclose=true,category.create=mfs\f[R]
  113. .SS Command Line
  114. .PP
  115. \f[C]mergerfs -o cache.files=partial,dropcacheonclose=true,category.create=mfs /mnt/hdd0:/mnt/hdd1 /media\f[R]
  116. .SS /etc/fstab
  117. .PP
  118. \f[C]/mnt/hdd0:/mnt/hdd1 /media fuse.mergerfs cache.files=partial,dropcacheonclose=true,category.create=mfs 0 0\f[R]
  119. .SS systemd mount
  120. .PP
  121. https://github.com/trapexit/mergerfs/wiki/systemd
  122. .IP
  123. .nf
  124. \f[C]
  125. [Unit]
  126. Description=mergerfs service
  127. [Service]
  128. Type=simple
  129. KillMode=none
  130. ExecStart=/usr/bin/mergerfs \[rs]
  131. -f \[rs]
  132. -o cache.files=partial \[rs]
  133. -o dropcacheonclose=true \[rs]
  134. -o category.create=mfs \[rs]
  135. /mnt/hdd0:/mnt/hdd1 \[rs]
  136. /media
  137. ExecStop=/bin/fusermount -uz /media
  138. Restart=on-failure
  139. [Install]
  140. WantedBy=default.target
  141. \f[R]
  142. .fi
  143. .PP
  144. See the mergerfs wiki for real world
  145. deployments (https://github.com/trapexit/mergerfs/wiki/Real-World-Deployments)
  146. for comparisons / ideas.
  147. .SH OPTIONS
  148. .PP
  149. These options are the same regardless of whether you use them with the
  150. \f[C]mergerfs\f[R] commandline program, in fstab, or in a config file.
  151. .SS mount options
  152. .IP \[bu] 2
  153. \f[B]config\f[R]: Path to a config file.
  154. Same arguments as below in key=val / ini style format.
  155. .IP \[bu] 2
  156. \f[B]branches\f[R]: Colon delimited list of branches.
  157. .IP \[bu] 2
  158. \f[B]minfreespace=SIZE\f[R]: The minimum space value used for creation
  159. policies.
  160. Can be overridden by branch specific option.
  161. Understands `K', `M', and `G' to represent kilobyte, megabyte, and
  162. gigabyte respectively.
  163. (default: 4G)
  164. .IP \[bu] 2
  165. \f[B]moveonenospc=BOOL|POLICY\f[R]: When enabled if a \f[B]write\f[R]
  166. fails with \f[B]ENOSPC\f[R] (no space left on device) or
  167. \f[B]EDQUOT\f[R] (disk quota exceeded) the policy selected will run to
  168. find a new location for the file.
  169. An attempt to move the file to that branch will occur (keeping all
  170. metadata possible) and if successful the original is unlinked and the
  171. write retried.
  172. (default: false, true = mfs)
  173. .IP \[bu] 2
  174. \f[B]inodecalc=passthrough|path-hash|devino-hash|hybrid-hash\f[R]:
  175. Selects the inode calculation algorithm.
  176. (default: hybrid-hash)
  177. .IP \[bu] 2
  178. \f[B]dropcacheonclose=BOOL\f[R]: When a file is requested to be closed
  179. call \f[C]posix_fadvise\f[R] on it first to instruct the kernel that we
  180. no longer need the data and it can drop its cache.
  181. Recommended when
  182. \f[B]cache.files=partial|full|auto-full|per-process\f[R] to limit double
  183. caching.
  184. (default: false)
  185. .IP \[bu] 2
  186. \f[B]symlinkify=BOOL\f[R]: When enabled and a file is not writable and
  187. its mtime or ctime is older than \f[B]symlinkify_timeout\f[R] files will
  188. be reported as symlinks to the original files.
  189. Please read more below before using.
  190. (default: false)
  191. .IP \[bu] 2
  192. \f[B]symlinkify_timeout=UINT\f[R]: Time to wait, in seconds, to activate
  193. the \f[B]symlinkify\f[R] behavior.
  194. (default: 3600)
  195. .IP \[bu] 2
  196. \f[B]nullrw=BOOL\f[R]: Turns reads and writes into no-ops.
  197. The request will succeed but do nothing.
  198. Useful for benchmarking mergerfs.
  199. (default: false)
  200. .IP \[bu] 2
  201. \f[B]lazy-umount-mountpoint=BOOL\f[R]: mergerfs will attempt to
  202. \[lq]lazy umount\[rq] the mountpoint before mounting itself.
  203. Useful when performing live upgrades of mergerfs.
  204. (default: false)
  205. .IP \[bu] 2
  206. \f[B]ignorepponrename=BOOL\f[R]: Ignore path preserving on rename.
  207. Typically rename and link act differently depending on the policy of
  208. \f[C]create\f[R] (read below).
  209. Enabling this will cause rename and link to always use the non-path
  210. preserving behavior.
  211. This means files, when renamed or linked, will stay on the same
  212. filesystem.
  213. (default: false)
  214. .IP \[bu] 2
  215. \f[B]security_capability=BOOL\f[R]: If false return ENOATTR when xattr
  216. security.capability is queried.
  217. (default: true)
  218. .IP \[bu] 2
  219. \f[B]xattr=passthrough|noattr|nosys\f[R]: Runtime control of xattrs.
  220. Default is to passthrough xattr requests.
  221. `noattr' will short circuit as if nothing exists.
  222. `nosys' will respond with ENOSYS as if xattrs are not supported or
  223. disabled.
  224. (default: passthrough)
  225. .IP \[bu] 2
  226. \f[B]link_cow=BOOL\f[R]: When enabled if a regular file is opened which
  227. has a link count > 1 it will copy the file to a temporary file and
  228. rename over the original.
  229. Breaking the link and providing a basic copy-on-write function similar
  230. to cow-shell.
  231. (default: false)
  232. .IP \[bu] 2
  233. \f[B]statfs=base|full\f[R]: Controls how statfs works.
  234. `base' means it will always use all branches in statfs calculations.
  235. `full' is in effect path preserving and only includes branches where the
  236. path exists.
  237. (default: base)
  238. .IP \[bu] 2
  239. \f[B]statfs_ignore=none|ro|nc\f[R]: `ro' will cause statfs calculations
  240. to ignore available space for branches mounted or tagged as `read-only'
  241. or `no create'.
  242. `nc' will ignore available space for branches tagged as `no create'.
  243. (default: none)
  244. .IP \[bu] 2
  245. \f[B]nfsopenhack=off|git|all\f[R]: A workaround for exporting mergerfs
  246. over NFS where there are issues with creating files for write while
  247. setting the mode to read-only.
  248. (default: off)
  249. .IP \[bu] 2
  250. \f[B]branches-mount-timeout=UINT\f[R]: Number of seconds to wait at
  251. startup for branches to be a mount other than the mountpoint\[cq]s
  252. filesystem.
  253. (default: 0)
  254. .IP \[bu] 2
  255. \f[B]follow-symlinks=never|directory|regular|all\f[R]: Turns symlinks
  256. into what they point to.
  257. (default: never)
  258. .IP \[bu] 2
  259. \f[B]link-exdev=passthrough|rel-symlink|abs-base-symlink|abs-pool-symlink\f[R]:
  260. When a link fails with EXDEV optionally create a symlink to the file
  261. instead.
  262. .IP \[bu] 2
  263. \f[B]rename-exdev=passthrough|rel-symlink|abs-symlink\f[R]: When a
  264. rename fails with EXDEV optionally move the file to a special directory
  265. and symlink to it.
  266. .IP \[bu] 2
  267. \f[B]readahead=UINT\f[R]: Set readahead (in kilobytes) for mergerfs and
  268. branches if greater than 0.
  269. (default: 0)
  270. .IP \[bu] 2
  271. \f[B]posix_acl=BOOL\f[R]: Enable POSIX ACL support (if supported by
  272. kernel and underlying filesystem).
  273. (default: false)
  274. .IP \[bu] 2
  275. \f[B]async_read=BOOL\f[R]: Perform reads asynchronously.
  276. If disabled or unavailable the kernel will ensure there is at most one
  277. pending read request per file handle and will attempt to order requests
  278. by offset.
  279. (default: true)
  280. .IP \[bu] 2
  281. \f[B]fuse_msg_size=UINT\f[R]: Set the max number of pages per FUSE
  282. message.
  283. Only available on Linux >= 4.20 and ignored otherwise.
  284. (min: 1; max: 256; default: 256)
  285. .IP \[bu] 2
  286. \f[B]threads=INT\f[R]: Number of threads to use.
  287. When used alone (\f[C]process-thread-count=-1\f[R]) it sets the number
  288. of threads reading and processing FUSE messages.
  289. When used together it sets the number of threads reading from FUSE.
  290. When set to zero it will attempt to discover and use the number of
  291. logical cores.
  292. If the thread count is set negative it will look up the number of cores
  293. then divide by the absolute value.
  294. ie.
  295. threads=-2 on an 8 core machine will result in 8 / 2 = 4 threads.
  296. There will always be at least 1 thread.
  297. If set to -1 in combination with \f[C]process-thread-count\f[R] then it
  298. will try to pick reasonable values based on CPU thread count.
  299. NOTE: higher number of threads increases parallelism but usually
  300. decreases throughput.
  301. (default: 0)
  302. .IP \[bu] 2
  303. \f[B]read-thread-count=INT\f[R]: Alias for \f[C]threads\f[R].
  304. .IP \[bu] 2
  305. \f[B]process-thread-count=INT\f[R]: Enables separate thread pool to
  306. asynchronously process FUSE requests.
  307. In this mode \f[C]read-thread-count\f[R] refers to the number of threads
  308. reading FUSE messages which are dispatched to process threads.
  309. -1 means disabled otherwise acts like \f[C]read-thread-count\f[R].
  310. (default: -1)
  311. .IP \[bu] 2
  312. \f[B]process-thread-queue-depth=UINT\f[R]: Sets the number of requests
  313. any single process thread can have queued up at one time.
  314. Meaning the total memory usage of the queues is queue depth multiplied
  315. by the number of process threads plus read thread count.
  316. 0 sets the depth to the same as the process thread count.
  317. (default: 0)
  318. .IP \[bu] 2
  319. \f[B]pin-threads=STR\f[R]: Selects a strategy to pin threads to CPUs
  320. (default: unset)
  321. .IP \[bu] 2
  322. \f[B]scheduling-priority=INT\f[R]: Set mergerfs\[cq] scheduling
  323. priority.
  324. Valid values range from -20 to 19.
  325. See \f[C]setpriority\f[R] man page for more details.
  326. (default: -10)
  327. .IP \[bu] 2
  328. \f[B]fsname=STR\f[R]: Sets the name of the filesystem as seen in
  329. \f[B]mount\f[R], \f[B]df\f[R], etc.
  330. Defaults to a list of the source paths concatenated together with the
  331. longest common prefix removed.
  332. .IP \[bu] 2
  333. \f[B]func.FUNC=POLICY\f[R]: Sets the specific FUSE function\[cq]s
  334. policy.
  335. See below for the list of value types.
  336. Example: \f[B]func.getattr=newest\f[R]
  337. .IP \[bu] 2
  338. \f[B]func.readdir=seq|cosr|cor|cosr:INT|cor:INT\f[R]: Sets
  339. \f[C]readdir\f[R] policy.
  340. INT value sets the number of threads to use for concurrency.
  341. (default: seq)
  342. .IP \[bu] 2
  343. \f[B]category.action=POLICY\f[R]: Sets policy of all FUSE functions in
  344. the action category.
  345. (default: epall)
  346. .IP \[bu] 2
  347. \f[B]category.create=POLICY\f[R]: Sets policy of all FUSE functions in
  348. the create category.
  349. (default: epmfs)
  350. .IP \[bu] 2
  351. \f[B]category.search=POLICY\f[R]: Sets policy of all FUSE functions in
  352. the search category.
  353. (default: ff)
  354. .IP \[bu] 2
  355. \f[B]cache.open=UINT\f[R]: `open' policy cache timeout in seconds.
  356. (default: 0)
  357. .IP \[bu] 2
  358. \f[B]cache.statfs=UINT\f[R]: `statfs' cache timeout in seconds.
  359. (default:
  360. .RS 2
  361. .RE
  362. .IP \[bu] 2
  363. \f[B]cache.attr=UINT\f[R]: File attribute cache timeout in seconds.
  364. (default: 1)
  365. .IP \[bu] 2
  366. \f[B]cache.entry=UINT\f[R]: File name lookup cache timeout in seconds.
  367. (default: 1)
  368. .IP \[bu] 2
  369. \f[B]cache.negative_entry=UINT\f[R]: Negative file name lookup cache
  370. timeout in seconds.
  371. (default: 0)
  372. .IP \[bu] 2
  373. \f[B]cache.files=libfuse|off|partial|full|auto-full|per-process\f[R]:
  374. File page caching mode (default: libfuse)
  375. .IP \[bu] 2
  376. \f[B]cache.files.process-names=LIST\f[R]: A pipe | delimited list of
  377. process comm (https://man7.org/linux/man-pages/man5/proc.5.html) names
  378. to enable page caching for when \f[C]cache.files=per-process\f[R].
  379. (default: \[lq]rtorrent|qbittorrent-nox\[rq])
  380. .IP \[bu] 2
  381. \f[B]cache.writeback=BOOL\f[R]: Enable kernel writeback caching
  382. (default: false)
  383. .IP \[bu] 2
  384. \f[B]cache.symlinks=BOOL\f[R]: Cache symlinks (if supported by kernel)
  385. (default: false)
  386. .IP \[bu] 2
  387. \f[B]cache.readdir=BOOL\f[R]: Cache readdir (if supported by kernel)
  388. (default: false)
  389. .IP \[bu] 2
  390. \f[B]parallel-direct-writes=BOOL\f[R]: Allow the kernel to dispatch
  391. multiple, parallel (non-extending) write requests for files opened with
  392. \f[C]direct_io=true\f[R] (if supported by the kernel)
  393. .IP \[bu] 2
  394. \f[B]direct_io\f[R]: deprecated - Bypass page cache.
  395. Use \f[C]cache.files=off\f[R] instead.
  396. (default: false)
  397. .IP \[bu] 2
  398. \f[B]kernel_cache\f[R]: deprecated - Do not invalidate data cache on
  399. file open.
  400. Use \f[C]cache.files=full\f[R] instead.
  401. (default: false)
  402. .IP \[bu] 2
  403. \f[B]auto_cache\f[R]: deprecated - Invalidate data cache if file mtime
  404. or size change.
  405. Use \f[C]cache.files=auto-full\f[R] instead.
  406. (default: false)
  407. .IP \[bu] 2
  408. \f[B]async_read\f[R]: deprecated - Perform reads asynchronously.
  409. Use \f[C]async_read=true\f[R] instead.
  410. .IP \[bu] 2
  411. \f[B]sync_read\f[R]: deprecated - Perform reads synchronously.
  412. Use \f[C]async_read=false\f[R] instead.
  413. .IP \[bu] 2
  414. \f[B]splice_read\f[R]: deprecated - Does nothing.
  415. .IP \[bu] 2
  416. \f[B]splice_write\f[R]: deprecated - Does nothing.
  417. .IP \[bu] 2
  418. \f[B]splice_move\f[R]: deprecated - Does nothing.
  419. .IP \[bu] 2
  420. \f[B]allow_other\f[R]: deprecated - mergerfs always sets this FUSE
  421. option as normal permissions can be used to limit access.
  422. .IP \[bu] 2
  423. \f[B]use_ino\f[R]: deprecated - mergerfs should always control inode
  424. calculation so this is enabled all the time.
  425. .PP
  426. \f[B]NOTE:\f[R] Options are evaluated in the order listed so if the
  427. options are \f[B]func.rmdir=rand,category.action=ff\f[R] the
  428. \f[B]action\f[R] category setting will override the \f[B]rmdir\f[R]
  429. setting.
  430. .PP
  431. \f[B]NOTE:\f[R] Always look at the documentation for the version of
  432. mergerfs you\[cq]re using.
  433. Not all features are available in older releases.
  434. Use \f[C]man mergerfs\f[R] or find the docs as linked in the release.
  435. .SS Value Types
  436. .IP \[bu] 2
  437. BOOL = `true' | `false'
  438. .IP \[bu] 2
  439. INT = [MIN_INT,MAX_INT]
  440. .IP \[bu] 2
  441. UINT = [0,MAX_INT]
  442. .IP \[bu] 2
  443. SIZE = `NNM'; NN = INT, M = `K' | `M' | `G' | `T'
  444. .IP \[bu] 2
  445. STR = string (may refer to an enumerated value, see details of argument)
  446. .IP \[bu] 2
  447. FUNC = filesystem function
  448. .IP \[bu] 2
  449. CATEGORY = function category
  450. .IP \[bu] 2
  451. POLICY = mergerfs function policy
  452. .SS branches
  453. .PP
  454. The `branches' argument is a colon (`:') delimited list of paths to be
  455. pooled together.
  456. It does not matter if the paths are on the same or different filesystems
  457. nor does it matter the filesystem type (within reason).
  458. Used and available space will not be duplicated for paths on the same
  459. filesystem and any features which aren\[cq]t supported by the underlying
  460. filesystem (such as file attributes or extended attributes) will return
  461. the appropriate errors.
  462. .PP
  463. Branches currently have two options which can be set.
  464. A type which impacts whether or not the branch is included in a policy
  465. calculation and a individual minfreespace value.
  466. The values are set by prepending an \f[C]=\f[R] at the end of a branch
  467. designation and using commas as delimiters.
  468. Example: \f[C]/mnt/drive=RW,1234\f[R]
  469. .SS branch mode
  470. .IP \[bu] 2
  471. RW: (read/write) - Default behavior.
  472. Will be eligible in all policy categories.
  473. .IP \[bu] 2
  474. RO: (read-only) - Will be excluded from \f[C]create\f[R] and
  475. \f[C]action\f[R] policies.
  476. Same as a read-only mounted filesystem would be (though faster to
  477. process).
  478. .IP \[bu] 2
  479. NC: (no-create) - Will be excluded from \f[C]create\f[R] policies.
  480. You can\[cq]t create on that branch but you can change or delete.
  481. .SS minfreespace
  482. .PP
  483. Same purpose and syntax as the global option but specific to the branch.
  484. If not set the global value is used.
  485. .SS globbing
  486. .PP
  487. To make it easier to include multiple branches mergerfs supports
  488. globbing (http://linux.die.net/man/7/glob).
  489. \f[B]The globbing tokens MUST be escaped when using via the shell else
  490. the shell itself will apply the glob itself.\f[R]
  491. .IP
  492. .nf
  493. \f[C]
  494. # mergerfs /mnt/hdd\[rs]*:/mnt/ssd /media
  495. \f[R]
  496. .fi
  497. .PP
  498. The above line will use all mount points in /mnt prefixed with
  499. \f[B]hdd\f[R] and \f[B]ssd\f[R].
  500. .PP
  501. To have the pool mounted at boot or otherwise accessible from related
  502. tools use \f[B]/etc/fstab\f[R].
  503. .IP
  504. .nf
  505. \f[C]
  506. # <file system> <mount point> <type> <options> <dump> <pass>
  507. /mnt/hdd*:/mnt/ssd /media fuse.mergerfs minfreespace=16G 0 0
  508. \f[R]
  509. .fi
  510. .PP
  511. \f[B]NOTE:\f[R] the globbing is done at mount or when updated using the
  512. runtime API.
  513. If a new directory is added matching the glob after the fact it will not
  514. be automatically included.
  515. .PP
  516. \f[B]NOTE:\f[R] for mounting via \f[B]fstab\f[R] to work you must have
  517. \f[B]mount.fuse\f[R] installed.
  518. For Ubuntu/Debian it is included in the \f[B]fuse\f[R] package.
  519. .SS inodecalc
  520. .PP
  521. Inodes (st_ino) are unique identifiers within a filesystem.
  522. Each mounted filesystem has device ID (st_dev) as well and together they
  523. can uniquely identify a file on the whole of the system.
  524. Entries on the same device with the same inode are in fact references to
  525. the same underlying file.
  526. It is a many to one relationship between names and an inode.
  527. Directories, however, do not have multiple links on most systems due to
  528. the complexity they add.
  529. .PP
  530. FUSE allows the server (mergerfs) to set inode values but not device
  531. IDs.
  532. Creating an inode value is somewhat complex in mergerfs\[cq] case as
  533. files aren\[cq]t really in its control.
  534. If a policy changes what directory or file is to be selected or
  535. something changes out of band it becomes unclear what value should be
  536. used.
  537. Most software does not to care what the values are but those that do
  538. often break if a value changes unexpectedly.
  539. The tool \f[C]find\f[R] will abort a directory walk if it sees a
  540. directory inode change.
  541. NFS will return stale handle errors if the inode changes out of band.
  542. File dedup tools will usually leverage device ids and inodes as a
  543. shortcut in searching for duplicate files and would resort to full file
  544. comparisons should it find different inode values.
  545. .PP
  546. mergerfs offers multiple ways to calculate the inode in hopes of
  547. covering different usecases.
  548. .IP \[bu] 2
  549. passthrough: Passes through the underlying inode value.
  550. Mostly intended for testing as using this does not address any of the
  551. problems mentioned above and could confuse file deduplication software
  552. as inodes from different filesystems can be the same.
  553. .IP \[bu] 2
  554. path-hash: Hashes the relative path of the entry in question.
  555. The underlying file\[cq]s values are completely ignored.
  556. This means the inode value will always be the same for that file path.
  557. This is useful when using NFS and you make changes out of band such as
  558. copy data between branches.
  559. This also means that entries that do point to the same file will not be
  560. recognizable via inodes.
  561. That \f[B]does not\f[R] mean hard links don\[cq]t work.
  562. They will.
  563. .IP \[bu] 2
  564. path-hash32: 32bit version of path-hash.
  565. .IP \[bu] 2
  566. devino-hash: Hashes the device id and inode of the underlying entry.
  567. This won\[cq]t prevent issues with NFS should the policy pick a
  568. different file or files move out of band but will present the same inode
  569. for underlying files that do too.
  570. .IP \[bu] 2
  571. devino-hash32: 32bit version of devino-hash.
  572. .IP \[bu] 2
  573. hybrid-hash: Performs \f[C]path-hash\f[R] on directories and
  574. \f[C]devino-hash\f[R] on other file types.
  575. Since directories can\[cq]t have hard links the static value won\[cq]t
  576. make a difference and the files will get values useful for finding
  577. duplicates.
  578. Probably the best to use if not using NFS.
  579. As such it is the default.
  580. .IP \[bu] 2
  581. hybrid-hash32: 32bit version of hybrid-hash.
  582. .PP
  583. 32bit versions are provided as there is some software which does not
  584. handle 64bit inodes well.
  585. .PP
  586. While there is a risk of hash collision in tests of a couple million
  587. entries there were zero collisions.
  588. Unlike a typical filesystem FUSE filesystems can reuse inodes and not
  589. refer to the same entry.
  590. The internal identifier used to reference a file in FUSE is different
  591. from the inode value presented.
  592. The former is the \f[C]nodeid\f[R] and is actually a tuple of 2 64bit
  593. values: \f[C]nodeid\f[R] and \f[C]generation\f[R].
  594. This tuple is not client facing.
  595. The inode that is presented to the client is passed through the kernel
  596. uninterpreted.
  597. .PP
  598. From FUSE docs for \f[C]use_ino\f[R]:
  599. .IP
  600. .nf
  601. \f[C]
  602. Honor the st_ino field in the functions getattr() and
  603. fill_dir(). This value is used to fill in the st_ino field
  604. in the stat(2), lstat(2), fstat(2) functions and the d_ino
  605. field in the readdir(2) function. The filesystem does not
  606. have to guarantee uniqueness, however some applications
  607. rely on this value being unique for the whole filesystem.
  608. Note that this does *not* affect the inode that libfuse
  609. and the kernel use internally (also called the \[dq]nodeid\[dq]).
  610. \f[R]
  611. .fi
  612. .PP
  613. As of version 2.35.0 the \f[C]use_ino\f[R] option has been removed.
  614. mergerfs should always be managing inode values.
  615. .SS pin-threads
  616. .PP
  617. Simple strategies for pinning read and/or process threads.
  618. If process threads are not enabled than the strategy simply works on the
  619. read threads.
  620. Invalid values are ignored.
  621. .IP \[bu] 2
  622. R1L: All read threads pinned to a single logical CPU.
  623. .IP \[bu] 2
  624. R1P: All read threads pinned to a single physical CPU.
  625. .IP \[bu] 2
  626. RP1L: All read and process threads pinned to a single logical CPU.
  627. .IP \[bu] 2
  628. RP1P: All read and process threads pinned to a single physical CPU.
  629. .IP \[bu] 2
  630. R1LP1L: All read threads pinned to a single logical CPU, all process
  631. threads pinned to a (if possible) different logical CPU.
  632. .IP \[bu] 2
  633. R1PP1P: All read threads pinned to a single physical CPU, all process
  634. threads pinned to a (if possible) different logical CPU.
  635. .IP \[bu] 2
  636. RPSL: All read and process threads are spread across all logical CPUs.
  637. .IP \[bu] 2
  638. RPSP: All read and process threads are spread across all physical CPUs.
  639. .IP \[bu] 2
  640. R1PPSP: All read threads are pinned to a single physical CPU while
  641. process threads are spread across all other phsycial CPUs.
  642. .SS fuse_msg_size
  643. .PP
  644. FUSE applications communicate with the kernel over a special character
  645. device: \f[C]/dev/fuse\f[R].
  646. A large portion of the overhead associated with FUSE is the cost of
  647. going back and forth from user space and kernel space over that device.
  648. Generally speaking the fewer trips needed the better the performance
  649. will be.
  650. Reducing the number of trips can be done a number of ways.
  651. Kernel level caching and increasing message sizes being two significant
  652. ones.
  653. When it comes to reads and writes if the message size is doubled the
  654. number of trips are approximately halved.
  655. .PP
  656. In Linux 4.20 a new feature was added allowing the negotiation of the
  657. max message size.
  658. Since the size is in multiples of
  659. pages (https://en.wikipedia.org/wiki/Page_(computer_memory)) the feature
  660. is called \f[C]max_pages\f[R].
  661. There is a maximum \f[C]max_pages\f[R] value of 256 (1MiB) and minimum
  662. of 1 (4KiB).
  663. The default used by Linux >=4.20, and hardcoded value used before 4.20,
  664. is 32 (128KiB).
  665. In mergerfs its referred to as \f[C]fuse_msg_size\f[R] to make it clear
  666. what it impacts and provide some abstraction.
  667. .PP
  668. Since there should be no downsides to increasing \f[C]fuse_msg_size\f[R]
  669. / \f[C]max_pages\f[R], outside a minor bump in RAM usage due to larger
  670. message buffers, mergerfs defaults the value to 256.
  671. On kernels before 4.20 the value has no effect.
  672. The reason the value is configurable is to enable experimentation and
  673. benchmarking.
  674. See the BENCHMARKING section for examples.
  675. .SS follow-symlinks
  676. .PP
  677. This feature, when enabled, will cause symlinks to be interpreted by
  678. mergerfs as their target (depending on the mode).
  679. .PP
  680. When there is a getattr/stat request for a file mergerfs will check if
  681. the file is a symlink and depending on the \f[C]follow-symlinks\f[R]
  682. setting will replace the information about the symlink with that of that
  683. which it points to.
  684. .PP
  685. When unlink\[cq]ing or rmdir\[cq]ing the followed symlink it will remove
  686. the symlink itself and not that which it points to.
  687. .IP \[bu] 2
  688. never: Behave as normal.
  689. Symlinks are treated as such.
  690. .IP \[bu] 2
  691. directory: Resolve symlinks only which point to directories.
  692. .IP \[bu] 2
  693. regular: Resolve symlinks only which point to regular files.
  694. .IP \[bu] 2
  695. all: Resolve all symlinks to that which they point to.
  696. .PP
  697. Symlinks which do not point to anything are left as is.
  698. .PP
  699. WARNING: This feature works but there might be edge cases yet found.
  700. If you find any odd behaviors please file a ticket on
  701. github (https://github.com/trapexit/mergerfs/issues).
  702. .SS link-exdev
  703. .PP
  704. If using path preservation and a \f[C]link\f[R] fails with EXDEV make a
  705. call to \f[C]symlink\f[R] where the \f[C]target\f[R] is the
  706. \f[C]oldlink\f[R] and the \f[C]linkpath\f[R] is the \f[C]newpath\f[R].
  707. The \f[C]target\f[R] value is determined by the value of
  708. \f[C]link-exdev\f[R].
  709. .IP \[bu] 2
  710. passthrough: Return EXDEV as normal.
  711. .IP \[bu] 2
  712. rel-symlink: A relative path from the \f[C]newpath\f[R].
  713. .IP \[bu] 2
  714. abs-base-symlink: A absolute value using the underlying branch.
  715. .IP \[bu] 2
  716. abs-pool-symlink: A absolute value using the mergerfs mount point.
  717. .PP
  718. NOTE: It is possible that some applications check the file they link.
  719. In those cases it is possible it will error or complain.
  720. .SS rename-exdev
  721. .PP
  722. If using path preservation and a \f[C]rename\f[R] fails with EXDEV:
  723. .IP "1." 3
  724. Move file from \f[B]/branch/a/b/c\f[R] to
  725. \f[B]/branch/.mergerfs_rename_exdev/a/b/c\f[R].
  726. .IP "2." 3
  727. symlink the rename\[cq]s \f[C]newpath\f[R] to the moved file.
  728. .PP
  729. The \f[C]target\f[R] value is determined by the value of
  730. \f[C]rename-exdev\f[R].
  731. .IP \[bu] 2
  732. passthrough: Return EXDEV as normal.
  733. .IP \[bu] 2
  734. rel-symlink: A relative path from the \f[C]newpath\f[R].
  735. .IP \[bu] 2
  736. abs-symlink: A absolute value using the mergerfs mount point.
  737. .PP
  738. NOTE: It is possible that some applications check the file they rename.
  739. In those cases it is possible it will error or complain.
  740. .PP
  741. NOTE: The reason \f[C]abs-symlink\f[R] is not split into two like
  742. \f[C]link-exdev\f[R] is due to the complexities in managing absolute
  743. base symlinks when multiple \f[C]oldpaths\f[R] exist.
  744. .SS symlinkify
  745. .PP
  746. Due to the levels of indirection introduced by mergerfs and the
  747. underlying technology FUSE there can be varying levels of performance
  748. degradation.
  749. This feature will turn non-directories which are not writable into
  750. symlinks to the original file found by the \f[C]readlink\f[R] policy
  751. after the mtime and ctime are older than the timeout.
  752. .PP
  753. \f[B]WARNING:\f[R] The current implementation has a known issue in which
  754. if the file is open and being used when the file is converted to a
  755. symlink then the application which has that file open will receive an
  756. error when using it.
  757. This is unlikely to occur in practice but is something to keep in mind.
  758. .PP
  759. \f[B]WARNING:\f[R] Some backup solutions, such as CrashPlan, do not
  760. backup the target of a symlink.
  761. If using this feature it will be necessary to point any backup software
  762. to the original filesystems or configure the software to follow symlinks
  763. if such an option is available.
  764. Alternatively create two mounts.
  765. One for backup and one for general consumption.
  766. .SS nullrw
  767. .PP
  768. Due to how FUSE works there is an overhead to all requests made to a
  769. FUSE filesystem that wouldn\[cq]t exist for an in kernel one.
  770. Meaning that even a simple passthrough will have some slowdown.
  771. However, generally the overhead is minimal in comparison to the cost of
  772. the underlying I/O.
  773. By disabling the underlying I/O we can test the theoretical performance
  774. boundaries.
  775. .PP
  776. By enabling \f[C]nullrw\f[R] mergerfs will work as it always does
  777. \f[B]except\f[R] that all reads and writes will be no-ops.
  778. A write will succeed (the size of the write will be returned as if it
  779. were successful) but mergerfs does nothing with the data it was given.
  780. Similarly a read will return the size requested but won\[cq]t touch the
  781. buffer.
  782. .PP
  783. See the BENCHMARKING section for suggestions on how to test.
  784. .SS xattr
  785. .PP
  786. Runtime extended attribute support can be managed via the
  787. \f[C]xattr\f[R] option.
  788. By default it will passthrough any xattr calls.
  789. Given xattr support is rarely used and can have significant performance
  790. implications mergerfs allows it to be disabled at runtime.
  791. The performance problems mostly comes when file caching is enabled.
  792. The kernel will send a \f[C]getxattr\f[R] for
  793. \f[C]security.capability\f[R] \f[I]before every single write\f[R].
  794. It doesn\[cq]t cache the responses to any \f[C]getxattr\f[R].
  795. This might be addressed in the future but for now mergerfs can really
  796. only offer the following workarounds.
  797. .PP
  798. \f[C]noattr\f[R] will cause mergerfs to short circuit all xattr calls
  799. and return ENOATTR where appropriate.
  800. mergerfs still gets all the requests but they will not be forwarded on
  801. to the underlying filesystems.
  802. The runtime control will still function in this mode.
  803. .PP
  804. \f[C]nosys\f[R] will cause mergerfs to return ENOSYS for any xattr call.
  805. The difference with \f[C]noattr\f[R] is that the kernel will cache this
  806. fact and itself short circuit future calls.
  807. This is more efficient than \f[C]noattr\f[R] but will cause
  808. mergerfs\[cq] runtime control via the hidden file to stop working.
  809. .SS nfsopenhack
  810. .PP
  811. NFS is not fully POSIX compliant and historically certain behaviors,
  812. such as opening files with O_EXCL, are not or not well supported.
  813. When mergerfs (or any FUSE filesystem) is exported over NFS some of
  814. these issues come up due to how NFS and FUSE interact.
  815. .PP
  816. This hack addresses the issue where the creation of a file with a
  817. read-only mode but with a read/write or write only flag.
  818. Normally this is perfectly valid but NFS chops the one open call into
  819. multiple calls.
  820. Exactly how it is translated depends on the configuration and versions
  821. of the NFS server and clients but it results in a permission error
  822. because a normal user is not allowed to open a read-only file as
  823. writable.
  824. .PP
  825. Even though it\[cq]s a more niche situation this hack breaks normal
  826. security and behavior and as such is \f[C]off\f[R] by default.
  827. If set to \f[C]git\f[R] it will only perform the hack when the path in
  828. question includes \f[C]/.git/\f[R].
  829. \f[C]all\f[R] will result it applying anytime a readonly file which is
  830. empty is opened for writing.
  831. .SH FUNCTIONS, CATEGORIES and POLICIES
  832. .PP
  833. The POSIX filesystem API is made up of a number of functions.
  834. \f[B]creat\f[R], \f[B]stat\f[R], \f[B]chown\f[R], etc.
  835. For ease of configuration in mergerfs most of the core functions are
  836. grouped into 3 categories: \f[B]action\f[R], \f[B]create\f[R], and
  837. \f[B]search\f[R].
  838. These functions and categories can be assigned a policy which dictates
  839. which branch is chosen when performing that function.
  840. .PP
  841. Some functions, listed in the category \f[C]N/A\f[R] below, can not be
  842. assigned the normal policies.
  843. These functions work with file handles, rather than file paths, which
  844. were created by \f[C]open\f[R] or \f[C]create\f[R].
  845. That said many times the current FUSE kernel driver will not always
  846. provide the file handle when a client calls \f[C]fgetattr\f[R],
  847. \f[C]fchown\f[R], \f[C]fchmod\f[R], \f[C]futimens\f[R],
  848. \f[C]ftruncate\f[R], etc.
  849. This means it will call the regular, path based, versions.
  850. \f[C]statfs\f[R]\[cq]s behavior can be modified via other options.
  851. .PP
  852. When using policies which are based on a branch\[cq]s available space
  853. the base path provided is used.
  854. Not the full path to the file in question.
  855. Meaning that mounts in the branch won\[cq]t be considered in the space
  856. calculations.
  857. The reason is that it doesn\[cq]t really work for non-path preserving
  858. policies and can lead to non-obvious behaviors.
  859. .PP
  860. NOTE: While any policy can be assigned to a function or category though
  861. some may not be very useful in practice.
  862. For instance: \f[B]rand\f[R] (random) may be useful for file creation
  863. (create) but could lead to very odd behavior if used for \f[C]chmod\f[R]
  864. if there were more than one copy of the file.
  865. .SS Functions and their Category classifications
  866. .PP
  867. .TS
  868. tab(@);
  869. lw(7.4n) lw(62.6n).
  870. T{
  871. Category
  872. T}@T{
  873. FUSE Functions
  874. T}
  875. _
  876. T{
  877. action
  878. T}@T{
  879. chmod, chown, link, removexattr, rename, rmdir, setxattr, truncate,
  880. unlink, utimens
  881. T}
  882. T{
  883. create
  884. T}@T{
  885. create, mkdir, mknod, symlink
  886. T}
  887. T{
  888. search
  889. T}@T{
  890. access, getattr, getxattr, ioctl (directories), listxattr, open,
  891. readlink
  892. T}
  893. T{
  894. N/A
  895. T}@T{
  896. fchmod, fchown, futimens, ftruncate, fallocate, fgetattr, fsync, ioctl
  897. (files), read, readdir, release, statfs, write, copy_file_range
  898. T}
  899. .TE
  900. .PP
  901. In cases where something may be searched for (such as a path to clone)
  902. \f[B]getattr\f[R] will usually be used.
  903. .SS Policies
  904. .PP
  905. A policy is the algorithm used to choose a branch or branches for a
  906. function to work on or generally how the function behaves.
  907. .PP
  908. Any function in the \f[C]create\f[R] category will clone the relative
  909. path if needed.
  910. Some other functions (\f[C]rename\f[R],\f[C]link\f[R],\f[C]ioctl\f[R])
  911. have special requirements or behaviors which you can read more about
  912. below.
  913. .SS Filtering
  914. .PP
  915. Most policies basically search branches and create a list of files /
  916. paths for functions to work on.
  917. The policy is responsible for filtering and sorting the branches.
  918. Filters include \f[B]minfreespace\f[R], whether or not a branch is
  919. mounted read-only, and the branch tagging (RO,NC,RW).
  920. These filters are applied across most policies.
  921. .IP \[bu] 2
  922. No \f[B]search\f[R] function policies filter.
  923. .IP \[bu] 2
  924. All \f[B]action\f[R] function policies filter out branches which are
  925. mounted \f[B]read-only\f[R] or tagged as \f[B]RO (read-only)\f[R].
  926. .IP \[bu] 2
  927. All \f[B]create\f[R] function policies filter out branches which are
  928. mounted \f[B]read-only\f[R], tagged \f[B]RO (read-only)\f[R] or \f[B]NC
  929. (no create)\f[R], or has available space less than
  930. \f[C]minfreespace\f[R].
  931. .PP
  932. Policies may have their own additional filtering such as those that
  933. require existing paths to be present.
  934. .PP
  935. If all branches are filtered an error will be returned.
  936. Typically \f[B]EROFS\f[R] (read-only filesystem) or \f[B]ENOSPC\f[R] (no
  937. space left on device) depending on the most recent reason for filtering
  938. a branch.
  939. \f[B]ENOENT\f[R] will be returned if no eligible branch is found.
  940. .PP
  941. If \f[B]create\f[R], \f[B]mkdir\f[R], \f[B]mknod\f[R], or
  942. \f[B]symlink\f[R] fail with \f[C]EROFS\f[R] or other fundimental errors
  943. then mergerfs will mark any branch found to be read-only as such (IE
  944. will set the mode \f[C]RO\f[R]) and will rerun the policy and try again.
  945. This is mostly for \f[C]ext4\f[R] filesystems that can suddenly become
  946. read-only when it encounters an error.
  947. .SS Path Preservation
  948. .PP
  949. Policies, as described below, are of two basic classifications.
  950. \f[C]path preserving\f[R] and \f[C]non-path preserving\f[R].
  951. .PP
  952. All policies which start with \f[C]ep\f[R] (\f[B]epff\f[R],
  953. \f[B]eplfs\f[R], \f[B]eplus\f[R], \f[B]epmfs\f[R], \f[B]eprand\f[R]) are
  954. \f[C]path preserving\f[R].
  955. \f[C]ep\f[R] stands for \f[C]existing path\f[R].
  956. .PP
  957. A path preserving policy will only consider branches where the relative
  958. path being accessed already exists.
  959. .PP
  960. When using non-path preserving policies paths will be cloned to target
  961. branches as necessary.
  962. .PP
  963. With the \f[C]msp\f[R] or \f[C]most shared path\f[R] policies they are
  964. defined as \f[C]path preserving\f[R] for the purpose of controlling
  965. \f[C]link\f[R] and \f[C]rename\f[R]\[cq]s behaviors since
  966. \f[C]ignorepponrename\f[R] is available to disable that behavior.
  967. .SS Policy descriptions
  968. .PP
  969. A policy\[cq]s behavior differs, as mentioned above, based on the
  970. function it is used with.
  971. Sometimes it really might not make sense to even offer certain policies
  972. because they are literally the same as others but it makes things a bit
  973. more uniform.
  974. .PP
  975. .TS
  976. tab(@);
  977. lw(16.2n) lw(53.8n).
  978. T{
  979. Policy
  980. T}@T{
  981. Description
  982. T}
  983. _
  984. T{
  985. all
  986. T}@T{
  987. Search: For \f[B]mkdir\f[R], \f[B]mknod\f[R], and \f[B]symlink\f[R] it
  988. will apply to all branches.
  989. \f[B]create\f[R] works like \f[B]ff\f[R].
  990. T}
  991. T{
  992. epall (existing path, all)
  993. T}@T{
  994. For \f[B]mkdir\f[R], \f[B]mknod\f[R], and \f[B]symlink\f[R] it will
  995. apply to all found.
  996. \f[B]create\f[R] works like \f[B]epff\f[R] (but more expensive because
  997. it doesn\[cq]t stop after finding a valid branch).
  998. T}
  999. T{
  1000. epff (existing path, first found)
  1001. T}@T{
  1002. Given the order of the branches, as defined at mount time or configured
  1003. at runtime, act on the first one found where the relative path exists.
  1004. T}
  1005. T{
  1006. eplfs (existing path, least free space)
  1007. T}@T{
  1008. Of all the branches on which the relative path exists choose the branch
  1009. with the least free space.
  1010. T}
  1011. T{
  1012. eplus (existing path, least used space)
  1013. T}@T{
  1014. Of all the branches on which the relative path exists choose the branch
  1015. with the least used space.
  1016. T}
  1017. T{
  1018. epmfs (existing path, most free space)
  1019. T}@T{
  1020. Of all the branches on which the relative path exists choose the branch
  1021. with the most free space.
  1022. T}
  1023. T{
  1024. eppfrd (existing path, percentage free random distribution)
  1025. T}@T{
  1026. Like \f[B]pfrd\f[R] but limited to existing paths.
  1027. T}
  1028. T{
  1029. eprand (existing path, random)
  1030. T}@T{
  1031. Calls \f[B]epall\f[R] and then randomizes.
  1032. Returns 1.
  1033. T}
  1034. T{
  1035. ff (first found)
  1036. T}@T{
  1037. Given the order of the branches, as defined at mount time or configured
  1038. at runtime, act on the first one found.
  1039. T}
  1040. T{
  1041. lfs (least free space)
  1042. T}@T{
  1043. Pick the branch with the least available free space.
  1044. T}
  1045. T{
  1046. lus (least used space)
  1047. T}@T{
  1048. Pick the branch with the least used space.
  1049. T}
  1050. T{
  1051. mfs (most free space)
  1052. T}@T{
  1053. Pick the branch with the most available free space.
  1054. T}
  1055. T{
  1056. msplfs (most shared path, least free space)
  1057. T}@T{
  1058. Like \f[B]eplfs\f[R] but if it fails to find a branch it will try again
  1059. with the parent directory.
  1060. Continues this pattern till finding one.
  1061. T}
  1062. T{
  1063. msplus (most shared path, least used space)
  1064. T}@T{
  1065. Like \f[B]eplus\f[R] but if it fails to find a branch it will try again
  1066. with the parent directory.
  1067. Continues this pattern till finding one.
  1068. T}
  1069. T{
  1070. mspmfs (most shared path, most free space)
  1071. T}@T{
  1072. Like \f[B]epmfs\f[R] but if it fails to find a branch it will try again
  1073. with the parent directory.
  1074. Continues this pattern till finding one.
  1075. T}
  1076. T{
  1077. msppfrd (most shared path, percentage free random distribution)
  1078. T}@T{
  1079. Like \f[B]eppfrd\f[R] but if it fails to find a branch it will try again
  1080. with the parent directory.
  1081. Continues this pattern till finding one.
  1082. T}
  1083. T{
  1084. newest
  1085. T}@T{
  1086. Pick the file / directory with the largest mtime.
  1087. T}
  1088. T{
  1089. pfrd (percentage free random distribution)
  1090. T}@T{
  1091. Chooses a branch at random with the likelihood of selection based on a
  1092. branch\[cq]s available space relative to the total.
  1093. T}
  1094. T{
  1095. rand (random)
  1096. T}@T{
  1097. Calls \f[B]all\f[R] and then randomizes.
  1098. Returns 1 branch.
  1099. T}
  1100. .TE
  1101. .PP
  1102. \f[B]NOTE:\f[R] If you are using an underlying filesystem that reserves
  1103. blocks such as ext2, ext3, or ext4 be aware that mergerfs respects the
  1104. reservation by using \f[C]f_bavail\f[R] (number of free blocks for
  1105. unprivileged users) rather than \f[C]f_bfree\f[R] (number of free
  1106. blocks) in policy calculations.
  1107. \f[B]df\f[R] does NOT use \f[C]f_bavail\f[R], it uses \f[C]f_bfree\f[R],
  1108. so direct comparisons between \f[B]df\f[R] output and mergerfs\[cq]
  1109. policies is not appropriate.
  1110. .SS Defaults
  1111. .PP
  1112. .TS
  1113. tab(@);
  1114. l l.
  1115. T{
  1116. Category
  1117. T}@T{
  1118. Policy
  1119. T}
  1120. _
  1121. T{
  1122. action
  1123. T}@T{
  1124. epall
  1125. T}
  1126. T{
  1127. create
  1128. T}@T{
  1129. epmfs
  1130. T}
  1131. T{
  1132. search
  1133. T}@T{
  1134. ff
  1135. T}
  1136. .TE
  1137. .SS func.readdir
  1138. .PP
  1139. examples: \f[C]fuse.readdir=seq\f[R], \f[C]fuse.readdir=cor:4\f[R]
  1140. .PP
  1141. \f[C]readdir\f[R] has policies to control how it manages reading
  1142. directory content.
  1143. .PP
  1144. .TS
  1145. tab(@);
  1146. lw(26.7n) lw(43.3n).
  1147. T{
  1148. Policy
  1149. T}@T{
  1150. Description
  1151. T}
  1152. _
  1153. T{
  1154. seq
  1155. T}@T{
  1156. \[lq]sequential\[rq] : Iterate over branches in the order defined.
  1157. This is the default and traditional behavior found prior to the readdir
  1158. policy introduction.
  1159. T}
  1160. T{
  1161. cosr
  1162. T}@T{
  1163. \[lq]concurrent open, sequential read\[rq] : Concurrently open branch
  1164. directories using a thread pool and process them in order of definition.
  1165. This keeps memory and CPU usage low while also reducing the time spent
  1166. waiting on branches to respond.
  1167. Number of threads defaults to the number of logical cores.
  1168. Can be overwritten via the syntax \f[C]fuse.readdir=cosr:N\f[R] where
  1169. \f[C]N\f[R] is the number of threads.
  1170. T}
  1171. T{
  1172. cor
  1173. T}@T{
  1174. \[lq]concurrent open and read\[rq] : Concurrently open branch
  1175. directories and immediately start reading their contents using a thread
  1176. pool.
  1177. This will result in slightly higher memory and CPU usage but reduced
  1178. latency.
  1179. Particularly when using higher latency / slower speed network filesystem
  1180. branches.
  1181. Unlike \f[C]seq\f[R] and \f[C]cosr\f[R] the order of files could change
  1182. due the async nature of the thread pool.
  1183. Number of threads defaults to the number of logical cores.
  1184. Can be overwritten via the syntax \f[C]fuse.readdir=cor:N\f[R] where
  1185. \f[C]N\f[R] is the number of threads.
  1186. T}
  1187. .TE
  1188. .PP
  1189. Keep in mind that \f[C]readdir\f[R] mostly just provides a list of file
  1190. names in a directory and possibly some basic metadata about said files.
  1191. To know details about the files, as one would see from commands like
  1192. \f[C]find\f[R] or \f[C]ls\f[R], it is required to call \f[C]stat\f[R] on
  1193. the file which is controlled by \f[C]fuse.getattr\f[R].
  1194. .SS ioctl
  1195. .PP
  1196. When \f[C]ioctl\f[R] is used with an open file then it will use the file
  1197. handle which was created at the original \f[C]open\f[R] call.
  1198. However, when using \f[C]ioctl\f[R] with a directory mergerfs will use
  1199. the \f[C]open\f[R] policy to find the directory to act on.
  1200. .SS rename & link
  1201. .PP
  1202. \f[B]NOTE:\f[R] If you\[cq]re receiving errors from software when files
  1203. are moved / renamed / linked then you should consider changing the
  1204. create policy to one which is \f[B]not\f[R] path preserving, enabling
  1205. \f[C]ignorepponrename\f[R], or contacting the author of the offending
  1206. software and requesting that \f[C]EXDEV\f[R] (cross device / improper
  1207. link) be properly handled.
  1208. .PP
  1209. \f[C]rename\f[R] and \f[C]link\f[R] are tricky functions in a union
  1210. filesystem.
  1211. \f[C]rename\f[R] only works within a single filesystem or device.
  1212. If a rename can\[cq]t be done atomically due to the source and
  1213. destination paths existing on different mount points it will return
  1214. \f[B]-1\f[R] with \f[B]errno = EXDEV\f[R] (cross device / improper
  1215. link).
  1216. So if a \f[C]rename\f[R]\[cq]s source and target are on different
  1217. filesystems within the pool it creates an issue.
  1218. .PP
  1219. Originally mergerfs would return EXDEV whenever a rename was requested
  1220. which was cross directory in any way.
  1221. This made the code simple and was technically compliant with POSIX
  1222. requirements.
  1223. However, many applications fail to handle EXDEV at all and treat it as a
  1224. normal error or otherwise handle it poorly.
  1225. Such apps include: gvfsd-fuse v1.20.3 and prior, Finder / CIFS/SMB
  1226. client in Apple OSX 10.9+, NZBGet, Samba\[cq]s recycling bin feature.
  1227. .PP
  1228. As a result a compromise was made in order to get most software to work
  1229. while still obeying mergerfs\[cq] policies.
  1230. Below is the basic logic.
  1231. .IP \[bu] 2
  1232. If using a \f[B]create\f[R] policy which tries to preserve directory
  1233. paths (epff,eplfs,eplus,epmfs)
  1234. .RS 2
  1235. .IP \[bu] 2
  1236. Using the \f[B]rename\f[R] policy get the list of files to rename
  1237. .IP \[bu] 2
  1238. For each file attempt rename:
  1239. .RS 2
  1240. .IP \[bu] 2
  1241. If failure with ENOENT (no such file or directory) run \f[B]create\f[R]
  1242. policy
  1243. .IP \[bu] 2
  1244. If create policy returns the same branch as currently evaluating then
  1245. clone the path
  1246. .IP \[bu] 2
  1247. Re-attempt rename
  1248. .RE
  1249. .IP \[bu] 2
  1250. If \f[B]any\f[R] of the renames succeed the higher level rename is
  1251. considered a success
  1252. .IP \[bu] 2
  1253. If \f[B]no\f[R] renames succeed the first error encountered will be
  1254. returned
  1255. .IP \[bu] 2
  1256. On success:
  1257. .RS 2
  1258. .IP \[bu] 2
  1259. Remove the target from all branches with no source file
  1260. .IP \[bu] 2
  1261. Remove the source from all branches which failed to rename
  1262. .RE
  1263. .RE
  1264. .IP \[bu] 2
  1265. If using a \f[B]create\f[R] policy which does \f[B]not\f[R] try to
  1266. preserve directory paths
  1267. .RS 2
  1268. .IP \[bu] 2
  1269. Using the \f[B]rename\f[R] policy get the list of files to rename
  1270. .IP \[bu] 2
  1271. Using the \f[B]getattr\f[R] policy get the target path
  1272. .IP \[bu] 2
  1273. For each file attempt rename:
  1274. .RS 2
  1275. .IP \[bu] 2
  1276. If the source branch != target branch:
  1277. .RS 2
  1278. .IP \[bu] 2
  1279. Clone target path from target branch to source branch
  1280. .RE
  1281. .IP \[bu] 2
  1282. Rename
  1283. .RE
  1284. .IP \[bu] 2
  1285. If \f[B]any\f[R] of the renames succeed the higher level rename is
  1286. considered a success
  1287. .IP \[bu] 2
  1288. If \f[B]no\f[R] renames succeed the first error encountered will be
  1289. returned
  1290. .IP \[bu] 2
  1291. On success:
  1292. .RS 2
  1293. .IP \[bu] 2
  1294. Remove the target from all branches with no source file
  1295. .IP \[bu] 2
  1296. Remove the source from all branches which failed to rename
  1297. .RE
  1298. .RE
  1299. .PP
  1300. The the removals are subject to normal entitlement checks.
  1301. .PP
  1302. The above behavior will help minimize the likelihood of EXDEV being
  1303. returned but it will still be possible.
  1304. .PP
  1305. \f[B]link\f[R] uses the same strategy but without the removals.
  1306. .SS statfs / statvfs
  1307. .PP
  1308. statvfs (http://linux.die.net/man/2/statvfs) normalizes the source
  1309. filesystems based on the fragment size and sums the number of adjusted
  1310. blocks and inodes.
  1311. This means you will see the combined space of all sources.
  1312. Total, used, and free.
  1313. The sources however are dedupped based on the filesystem so multiple
  1314. sources on the same drive will not result in double counting its space.
  1315. Other filesystems mounted further down the tree of the branch will not
  1316. be included when checking the mount\[cq]s stats.
  1317. .PP
  1318. The options \f[C]statfs\f[R] and \f[C]statfs_ignore\f[R] can be used to
  1319. modify \f[C]statfs\f[R] behavior.
  1320. .SH ERROR HANDLING
  1321. .PP
  1322. POSIX filesystem functions offer a single return code meaning that there
  1323. is some complication regarding the handling of multiple branches as
  1324. mergerfs does.
  1325. It tries to handle errors in a way that would generally return
  1326. meaningful values for that particular function.
  1327. .SS chmod, chown, removexattr, setxattr, truncate, utimens
  1328. .IP "1)" 3
  1329. if no error: return 0 (success)
  1330. .IP "2)" 3
  1331. if no successes: return first error
  1332. .IP "3)" 3
  1333. if one of the files acted on was the same as the related search
  1334. function: return its value
  1335. .IP "4)" 3
  1336. return 0 (success)
  1337. .PP
  1338. While doing this increases the complexity and cost of error handling,
  1339. particularly step 3, this provides probably the most reasonable return
  1340. value.
  1341. .SS unlink, rmdir
  1342. .IP "1)" 3
  1343. if no errors: return 0 (success)
  1344. .IP "2)" 3
  1345. return first error
  1346. .PP
  1347. Older version of mergerfs would return success if any success occurred
  1348. but for unlink and rmdir there are downstream assumptions that, while
  1349. not impossible to occur, can confuse some software.
  1350. .SS others
  1351. .PP
  1352. For search functions there is always a single thing acted on and as such
  1353. whatever return value that comes from the single function call is
  1354. returned.
  1355. .PP
  1356. For create functions \f[C]mkdir\f[R], \f[C]mknod\f[R], and
  1357. \f[C]symlink\f[R] which don\[cq]t return a file descriptor and therefore
  1358. can have \f[C]all\f[R] or \f[C]epall\f[R] policies it will return
  1359. success if any of the calls succeed and an error otherwise.
  1360. .SH INSTALL
  1361. .PP
  1362. https://github.com/trapexit/mergerfs/releases
  1363. .PP
  1364. If your distribution\[cq]s package manager includes mergerfs check if
  1365. the version is up to date.
  1366. If out of date it is recommended to use the latest release found on the
  1367. release page.
  1368. Details for common distros are below.
  1369. .SS Debian
  1370. .PP
  1371. Most Debian installs are of a stable branch and therefore do not have
  1372. the most up to date software.
  1373. While mergerfs is available via \f[C]apt\f[R] it is suggested that uses
  1374. install the most recent version available from the releases
  1375. page (https://github.com/trapexit/mergerfs/releases).
  1376. .SS prebuilt deb
  1377. .IP
  1378. .nf
  1379. \f[C]
  1380. wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs_<ver>.debian-<rel>_<arch>.deb
  1381. dpkg -i mergerfs_<ver>.debian-<rel>_<arch>.deb
  1382. \f[R]
  1383. .fi
  1384. .SS apt
  1385. .IP
  1386. .nf
  1387. \f[C]
  1388. sudo apt install -y mergerfs
  1389. \f[R]
  1390. .fi
  1391. .SS Ubuntu
  1392. .PP
  1393. Most Ubuntu installs are of a stable branch and therefore do not have
  1394. the most up to date software.
  1395. While mergerfs is available via \f[C]apt\f[R] it is suggested that uses
  1396. install the most recent version available from the releases
  1397. page (https://github.com/trapexit/mergerfs/releases).
  1398. .SS prebuilt deb
  1399. .IP
  1400. .nf
  1401. \f[C]
  1402. wget https://github.com/trapexit/mergerfs/releases/download/<version>/mergerfs_<ver>.ubuntu-<rel>_<arch>.deb
  1403. dpkg -i mergerfs_<ver>.ubuntu-<rel>_<arch>.deb
  1404. \f[R]
  1405. .fi
  1406. .SS apt
  1407. .IP
  1408. .nf
  1409. \f[C]
  1410. sudo apt install -y mergerfs
  1411. \f[R]
  1412. .fi
  1413. .SS Raspberry Pi OS
  1414. .PP
  1415. Effectively the same as Debian or Ubuntu.
  1416. .SS Fedora
  1417. .IP
  1418. .nf
  1419. \f[C]
  1420. wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs-<ver>.fc<rel>.<arch>.rpm
  1421. sudo rpm -i mergerfs-<ver>.fc<rel>.<arch>.rpm
  1422. \f[R]
  1423. .fi
  1424. .SS CentOS / Rocky
  1425. .IP
  1426. .nf
  1427. \f[C]
  1428. wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs-<ver>.el<rel>.<arch>.rpm
  1429. sudo rpm -i mergerfs-<ver>.el<rel>.<arch>.rpm
  1430. \f[R]
  1431. .fi
  1432. .SS ArchLinux
  1433. .IP "1." 3
  1434. Setup AUR
  1435. .IP "2." 3
  1436. Install \f[C]mergerfs\f[R]
  1437. .SS Other
  1438. .PP
  1439. Static binaries are provided for situations where native packages are
  1440. unavailable.
  1441. .IP
  1442. .nf
  1443. \f[C]
  1444. wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs-static-linux_<arch>.tar.gz
  1445. sudo tar xvf mergerfs-static-linux_<arch>.tar.gz -C /
  1446. \f[R]
  1447. .fi
  1448. .SH BUILD
  1449. .PP
  1450. \f[B]NOTE:\f[R] Prebuilt packages can be found at and recommended for
  1451. most users: https://github.com/trapexit/mergerfs/releases
  1452. .PP
  1453. \f[B]NOTE:\f[R] Only tagged releases are supported.
  1454. \f[C]master\f[R] and other branches should be considered works in
  1455. progress.
  1456. .PP
  1457. First get the code from github (https://github.com/trapexit/mergerfs).
  1458. .IP
  1459. .nf
  1460. \f[C]
  1461. $ git clone https://github.com/trapexit/mergerfs.git
  1462. $ # or
  1463. $ wget https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs-<ver>.tar.gz
  1464. \f[R]
  1465. .fi
  1466. .SS Debian / Ubuntu
  1467. .IP
  1468. .nf
  1469. \f[C]
  1470. $ cd mergerfs
  1471. $ sudo tools/install-build-pkgs
  1472. $ make deb
  1473. $ sudo dpkg -i ../mergerfs_<version>_<arch>.deb
  1474. \f[R]
  1475. .fi
  1476. .SS RHEL / CentOS / Rocky / Fedora
  1477. .IP
  1478. .nf
  1479. \f[C]
  1480. $ su -
  1481. # cd mergerfs
  1482. # tools/install-build-pkgs
  1483. # make rpm
  1484. # rpm -i rpmbuild/RPMS/<arch>/mergerfs-<version>.<arch>.rpm
  1485. \f[R]
  1486. .fi
  1487. .SS Generic
  1488. .PP
  1489. Have git, g++, make, python installed.
  1490. .IP
  1491. .nf
  1492. \f[C]
  1493. $ cd mergerfs
  1494. $ make
  1495. $ sudo make install
  1496. \f[R]
  1497. .fi
  1498. .SS Build options
  1499. .IP
  1500. .nf
  1501. \f[C]
  1502. $ make help
  1503. usage: make
  1504. make USE_XATTR=0 - build program without xattrs functionality
  1505. make STATIC=1 - build static binary
  1506. make LTO=1 - build with link time optimization
  1507. \f[R]
  1508. .fi
  1509. .SH UPGRADE
  1510. .PP
  1511. mergerfs can be upgraded live by mounting on top of the previous
  1512. instance.
  1513. Simply install the new version of mergerfs and follow the instructions
  1514. below.
  1515. .PP
  1516. Run mergerfs again or if using \f[C]/etc/fstab\f[R] call for it to mount
  1517. again.
  1518. Existing open files and such will continue to work fine though they
  1519. won\[cq]t see runtime changes since any such change would be the new
  1520. mount.
  1521. If you plan on changing settings with the new mount you should / could
  1522. apply those before mounting the new version.
  1523. .IP
  1524. .nf
  1525. \f[C]
  1526. $ sudo mount /mnt/mergerfs
  1527. $ mount | grep mergerfs
  1528. media on /mnt/mergerfs type fuse.mergerfs (rw,relatime,user_id=0,group_id=0,default_permissions,allow_other)
  1529. media on /mnt/mergerfs type fuse.mergerfs (rw,relatime,user_id=0,group_id=0,default_permissions,allow_other)
  1530. \f[R]
  1531. .fi
  1532. .PP
  1533. A problem with this approach is that the underlying instance will
  1534. continue to run even if the software using it stop or are restarted.
  1535. To work around this you can use a \[lq]lazy umount\[rq].
  1536. Before mounting over top the mount point with the new instance of
  1537. mergerfs issue: \f[C]umount -l <mergerfs_mountpoint>\f[R].
  1538. Or you can let mergerfs do it by setting the option
  1539. \f[C]lazy-umount-mountpoint=true\f[R].
  1540. .SH RUNTIME INTERFACES
  1541. .SS RUNTIME CONFIG
  1542. .SS .mergerfs pseudo file
  1543. .IP
  1544. .nf
  1545. \f[C]
  1546. <mountpoint>/.mergerfs
  1547. \f[R]
  1548. .fi
  1549. .PP
  1550. There is a pseudo file available at the mount point which allows for the
  1551. runtime modification of certain \f[B]mergerfs\f[R] options.
  1552. The file will not show up in \f[B]readdir\f[R] but can be
  1553. \f[B]stat\f[R]\[cq]ed and manipulated via
  1554. {list,get,set}xattrs (http://linux.die.net/man/2/listxattr) calls.
  1555. .PP
  1556. Any changes made at runtime are \f[B]not\f[R] persisted.
  1557. If you wish for values to persist they must be included as options
  1558. wherever you configure the mounting of mergerfs (/etc/fstab).
  1559. .SS Keys
  1560. .PP
  1561. Use \f[C]getfattr -d /mountpoint/.mergerfs\f[R] or
  1562. \f[C]xattr -l /mountpoint/.mergerfs\f[R] to see all supported keys.
  1563. Some are informational and therefore read-only.
  1564. \f[C]setxattr\f[R] will return EINVAL (invalid argument) on read-only
  1565. keys.
  1566. .SS Values
  1567. .PP
  1568. Same as the command line.
  1569. .SS user.mergerfs.branches
  1570. .PP
  1571. Used to query or modify the list of branches.
  1572. When modifying there are several shortcuts to easy manipulation of the
  1573. list.
  1574. .PP
  1575. .TS
  1576. tab(@);
  1577. l l.
  1578. T{
  1579. Value
  1580. T}@T{
  1581. Description
  1582. T}
  1583. _
  1584. T{
  1585. [list]
  1586. T}@T{
  1587. set
  1588. T}
  1589. T{
  1590. +<[list]
  1591. T}@T{
  1592. prepend
  1593. T}
  1594. T{
  1595. +>[list]
  1596. T}@T{
  1597. append
  1598. T}
  1599. T{
  1600. -[list]
  1601. T}@T{
  1602. remove all values provided
  1603. T}
  1604. T{
  1605. -<
  1606. T}@T{
  1607. remove first in list
  1608. T}
  1609. T{
  1610. ->
  1611. T}@T{
  1612. remove last in list
  1613. T}
  1614. .TE
  1615. .PP
  1616. \f[C]xattr -w user.mergerfs.branches +</mnt/drive3 /mnt/pool/.mergerfs\f[R]
  1617. .PP
  1618. The \f[C]=NC\f[R], \f[C]=RO\f[R], \f[C]=RW\f[R] syntax works just as on
  1619. the command line.
  1620. .SS Example
  1621. .IP
  1622. .nf
  1623. \f[C]
  1624. [trapexit:/mnt/mergerfs] $ getfattr -d .mergerfs
  1625. user.mergerfs.branches=\[dq]/mnt/a=RW:/mnt/b=RW\[dq]
  1626. user.mergerfs.minfreespace=\[dq]4294967295\[dq]
  1627. user.mergerfs.moveonenospc=\[dq]false\[dq]
  1628. \&...
  1629. [trapexit:/mnt/mergerfs] $ getfattr -n user.mergerfs.category.search .mergerfs
  1630. user.mergerfs.category.search=\[dq]ff\[dq]
  1631. [trapexit:/mnt/mergerfs] $ setfattr -n user.mergerfs.category.search -v newest .mergerfs
  1632. [trapexit:/mnt/mergerfs] $ getfattr -n user.mergerfs.category.search .mergerfs
  1633. user.mergerfs.category.search=\[dq]newest\[dq]
  1634. \f[R]
  1635. .fi
  1636. .SS file / directory xattrs
  1637. .PP
  1638. While they won\[cq]t show up when using \f[C]getfattr\f[R]
  1639. \f[B]mergerfs\f[R] offers a number of special xattrs to query
  1640. information about the files served.
  1641. To access the values you will need to issue a
  1642. getxattr (http://linux.die.net/man/2/getxattr) for one of the following:
  1643. .IP \[bu] 2
  1644. \f[B]user.mergerfs.basepath\f[R]: the base mount point for the file
  1645. given the current getattr policy
  1646. .IP \[bu] 2
  1647. \f[B]user.mergerfs.relpath\f[R]: the relative path of the file from the
  1648. perspective of the mount point
  1649. .IP \[bu] 2
  1650. \f[B]user.mergerfs.fullpath\f[R]: the full path of the original file
  1651. given the getattr policy
  1652. .IP \[bu] 2
  1653. \f[B]user.mergerfs.allpaths\f[R]: a NUL (`\[rs]0') separated list of
  1654. full paths to all files found
  1655. .SS SIGNALS
  1656. .IP \[bu] 2
  1657. USR1: This will cause mergerfs to send invalidation notifications to the
  1658. kernel for all files.
  1659. This will cause all unused files to be released from memory.
  1660. .IP \[bu] 2
  1661. USR2: Trigger a general cleanup of currently unused memory.
  1662. A more thorough version of what happens every \[ti]15 minutes.
  1663. .SS IOCTLS
  1664. .PP
  1665. Found in \f[C]fuse_ioctl.cpp\f[R]:
  1666. .IP
  1667. .nf
  1668. \f[C]
  1669. typedef char IOCTL_BUF[4096];
  1670. #define IOCTL_APP_TYPE 0xDF
  1671. #define IOCTL_FILE_INFO _IOWR(IOCTL_APP_TYPE,0,IOCTL_BUF)
  1672. #define IOCTL_GC _IO(IOCTL_APP_TYPE,1)
  1673. #define IOCTL_GC1 _IO(IOCTL_APP_TYPE,2)
  1674. #define IOCTL_INVALIDATE_ALL_NODES _IO(IOCTL_APP_TYPE,3)
  1675. \f[R]
  1676. .fi
  1677. .IP \[bu] 2
  1678. IOCTL_FILE_INFO: Same as the \[lq]file / directory xattrs\[rq] mentioned
  1679. above.
  1680. Use a buffer size of 4096 bytes.
  1681. Pass in a string of \[lq]basepath\[rq], \[lq]relpath\[rq],
  1682. \[lq]fullpath\[rq], or \[lq]allpaths\[rq].
  1683. Receive details in same buffer.
  1684. .IP \[bu] 2
  1685. IOCTL_GC: Triggers a thorough garbage collection of excess memory.
  1686. Same as SIGUSR2.
  1687. .IP \[bu] 2
  1688. IOCTL_GC1: Triggers a simple garbage collection of excess memory.
  1689. Same as what happens every 15 minutes normally.
  1690. .IP \[bu] 2
  1691. IOCTL_INVALIDATE_ALL_NODES: Same as SIGUSR1.
  1692. Send invalidation notifications to the kernel for all files causing
  1693. unused files to be released from memory.
  1694. .SH TOOLING
  1695. .IP \[bu] 2
  1696. https://github.com/trapexit/mergerfs-tools
  1697. .RS 2
  1698. .IP \[bu] 2
  1699. mergerfs.ctl: A tool to make it easier to query and configure mergerfs
  1700. at runtime
  1701. .IP \[bu] 2
  1702. mergerfs.fsck: Provides permissions and ownership auditing and the
  1703. ability to fix them
  1704. .IP \[bu] 2
  1705. mergerfs.dedup: Will help identify and optionally remove duplicate files
  1706. .IP \[bu] 2
  1707. mergerfs.dup: Ensure there are at least N copies of a file across the
  1708. pool
  1709. .IP \[bu] 2
  1710. mergerfs.balance: Rebalance files across filesystems by moving them from
  1711. the most filled to the least filled
  1712. .IP \[bu] 2
  1713. mergerfs.consolidate: move files within a single mergerfs directory to
  1714. the filesystem with most free space
  1715. .RE
  1716. .IP \[bu] 2
  1717. https://github.com/trapexit/scorch
  1718. .RS 2
  1719. .IP \[bu] 2
  1720. scorch: A tool to help discover silent corruption of files and keep
  1721. track of files
  1722. .RE
  1723. .IP \[bu] 2
  1724. https://github.com/trapexit/bbf
  1725. .RS 2
  1726. .IP \[bu] 2
  1727. bbf (bad block finder): a tool to scan for and `fix' hard drive bad
  1728. blocks and find the files using those blocks
  1729. .RE
  1730. .SH CACHING
  1731. .SS page caching
  1732. .PP
  1733. https://en.wikipedia.org/wiki/Page_cache
  1734. .IP \[bu] 2
  1735. cache.files=off: Disables page caching.
  1736. Underlying files cached, mergerfs files are not.
  1737. .IP \[bu] 2
  1738. cache.files=partial: Enables page caching.
  1739. Underlying files cached, mergerfs files cached while open.
  1740. .IP \[bu] 2
  1741. cache.files=full: Enables page caching.
  1742. Underlying files cached, mergerfs files cached across opens.
  1743. .IP \[bu] 2
  1744. cache.files=auto-full: Enables page caching.
  1745. Underlying files cached, mergerfs files cached across opens if mtime and
  1746. size are unchanged since previous open.
  1747. .IP \[bu] 2
  1748. cache.files=libfuse: follow traditional libfuse \f[C]direct_io\f[R],
  1749. \f[C]kernel_cache\f[R], and \f[C]auto_cache\f[R] arguments.
  1750. .IP \[bu] 2
  1751. cache.files=per-process: Enable page caching only for processes which
  1752. `comm' name matches one of the values defined in
  1753. \f[C]cache.files.process-names\f[R].
  1754. .PP
  1755. FUSE, which mergerfs uses, offers a number of page caching modes.
  1756. mergerfs tries to simplify their use via the \f[C]cache.files\f[R]
  1757. option.
  1758. It can and should replace usage of \f[C]direct_io\f[R],
  1759. \f[C]kernel_cache\f[R], and \f[C]auto_cache\f[R].
  1760. .PP
  1761. Due to mergerfs using FUSE and therefore being a userland process
  1762. proxying existing filesystems the kernel will double cache the content
  1763. being read and written through mergerfs.
  1764. Once from the underlying filesystem and once from mergerfs (it sees them
  1765. as two separate entities).
  1766. Using \f[C]cache.files=off\f[R] will keep the double caching from
  1767. happening by disabling caching of mergerfs but this has the side effect
  1768. that \f[I]all\f[R] read and write calls will be passed to mergerfs which
  1769. may be slower than enabling caching, you lose shared \f[C]mmap\f[R]
  1770. support which can affect apps such as rtorrent, and no read-ahead will
  1771. take place.
  1772. The kernel will still cache the underlying filesystem data but that only
  1773. helps so much given mergerfs will still process all requests.
  1774. .PP
  1775. If you do enable file page caching,
  1776. \f[C]cache.files=partial|full|auto-full\f[R], you should also enable
  1777. \f[C]dropcacheonclose\f[R] which will cause mergerfs to instruct the
  1778. kernel to flush the underlying file\[cq]s page cache when the file is
  1779. closed.
  1780. This behavior is the same as the rsync fadvise / drop cache patch and
  1781. Feh\[cq]s nocache project.
  1782. .PP
  1783. If most files are read once through and closed (like media) it is best
  1784. to enable \f[C]dropcacheonclose\f[R] regardless of caching mode in order
  1785. to minimize buffer bloat.
  1786. .PP
  1787. It is difficult to balance memory usage, cache bloat & duplication, and
  1788. performance.
  1789. Ideally mergerfs would be able to disable caching for the files it
  1790. reads/writes but allow page caching for itself.
  1791. That would limit the FUSE overhead.
  1792. However, there isn\[cq]t a good way to achieve this.
  1793. It would need to open all files with O_DIRECT which places limitations
  1794. on the what underlying filesystems would be supported and complicates
  1795. the code.
  1796. .PP
  1797. kernel documentation:
  1798. https://www.kernel.org/doc/Documentation/filesystems/fuse-io.txt
  1799. .SS entry & attribute caching
  1800. .PP
  1801. Given the relatively high cost of FUSE due to the kernel <-> userspace
  1802. round trips there are kernel side caches for file entries and
  1803. attributes.
  1804. The entry cache limits the \f[C]lookup\f[R] calls to mergerfs which ask
  1805. if a file exists.
  1806. The attribute cache limits the need to make \f[C]getattr\f[R] calls to
  1807. mergerfs which provide file attributes (mode, size, type, etc.).
  1808. As with the page cache these should not be used if the underlying
  1809. filesystems are being manipulated at the same time as it could lead to
  1810. odd behavior or data corruption.
  1811. The options for setting these are \f[C]cache.entry\f[R] and
  1812. \f[C]cache.negative_entry\f[R] for the entry cache and
  1813. \f[C]cache.attr\f[R] for the attributes cache.
  1814. \f[C]cache.negative_entry\f[R] refers to the timeout for negative
  1815. responses to lookups (non-existent files).
  1816. .SS writeback caching
  1817. .PP
  1818. When \f[C]cache.files\f[R] is enabled the default is for it to perform
  1819. writethrough caching.
  1820. This behavior won\[cq]t help improve performance as each write still
  1821. goes one for one through the filesystem.
  1822. By enabling the FUSE writeback cache small writes may be aggregated by
  1823. the kernel and then sent to mergerfs as one larger request.
  1824. This can greatly improve the throughput for apps which write to files
  1825. inefficiently.
  1826. The amount the kernel can aggregate is limited by the size of a FUSE
  1827. message.
  1828. Read the \f[C]fuse_msg_size\f[R] section for more details.
  1829. .PP
  1830. There is a small side effect as a result of enabling writeback caching.
  1831. Underlying files won\[cq]t ever be opened with O_APPEND or O_WRONLY.
  1832. The former because the kernel then manages append mode and the latter
  1833. because the kernel may request file data from mergerfs to populate the
  1834. write cache.
  1835. The O_APPEND change means that if a file is changed outside of mergerfs
  1836. it could lead to corruption as the kernel won\[cq]t know the end of the
  1837. file has changed.
  1838. That said any time you use caching you should keep from using the same
  1839. file outside of mergerfs at the same time.
  1840. .PP
  1841. Note that if an application is properly sizing writes then writeback
  1842. caching will have little or no effect.
  1843. It will only help with writes of sizes below the FUSE message size (128K
  1844. on older kernels, 1M on newer).
  1845. .SS statfs caching
  1846. .PP
  1847. Of the syscalls used by mergerfs in policies the \f[C]statfs\f[R] /
  1848. \f[C]statvfs\f[R] call is perhaps the most expensive.
  1849. It\[cq]s used to find out the available space of a filesystem and
  1850. whether it is mounted read-only.
  1851. Depending on the setup and usage pattern these queries can be relatively
  1852. costly.
  1853. When \f[C]cache.statfs\f[R] is enabled all calls to \f[C]statfs\f[R] by
  1854. a policy will be cached for the number of seconds its set to.
  1855. .PP
  1856. Example: If the create policy is \f[C]mfs\f[R] and the timeout is 60
  1857. then for that 60 seconds the same filesystem will be returned as the
  1858. target for creates because the available space won\[cq]t be updated for
  1859. that time.
  1860. .SS symlink caching
  1861. .PP
  1862. As of version 4.20 Linux supports symlink caching.
  1863. Significant performance increases can be had in workloads which use a
  1864. lot of symlinks.
  1865. Setting \f[C]cache.symlinks=true\f[R] will result in requesting symlink
  1866. caching from the kernel only if supported.
  1867. As a result its safe to enable it on systems prior to 4.20.
  1868. That said it is disabled by default for now.
  1869. You can see if caching is enabled by querying the xattr
  1870. \f[C]user.mergerfs.cache.symlinks\f[R] but given it must be requested at
  1871. startup you can not change it at runtime.
  1872. .SS readdir caching
  1873. .PP
  1874. As of version 4.20 Linux supports readdir caching.
  1875. This can have a significant impact on directory traversal.
  1876. Especially when combined with entry (\f[C]cache.entry\f[R]) and
  1877. attribute (\f[C]cache.attr\f[R]) caching.
  1878. Setting \f[C]cache.readdir=true\f[R] will result in requesting readdir
  1879. caching from the kernel on each \f[C]opendir\f[R].
  1880. If the kernel doesn\[cq]t support readdir caching setting the option to
  1881. \f[C]true\f[R] has no effect.
  1882. This option is configurable at runtime via xattr
  1883. \f[C]user.mergerfs.cache.readdir\f[R].
  1884. .SS tiered caching
  1885. .PP
  1886. Some storage technologies support what some call \[lq]tiered\[rq]
  1887. caching.
  1888. The placing of usually smaller, faster storage as a transparent cache to
  1889. larger, slower storage.
  1890. NVMe, SSD, Optane in front of traditional HDDs for instance.
  1891. .PP
  1892. MergerFS does not natively support any sort of tiered caching.
  1893. Most users have no use for such a feature and its inclusion would
  1894. complicate the code.
  1895. However, there are a few situations where a cache filesystem could help
  1896. with a typical mergerfs setup.
  1897. .IP "1." 3
  1898. Fast network, slow filesystems, many readers: You\[cq]ve a 10+Gbps
  1899. network with many readers and your regular filesystems can\[cq]t keep
  1900. up.
  1901. .IP "2." 3
  1902. Fast network, slow filesystems, small\[cq]ish bursty writes: You have a
  1903. 10+Gbps network and wish to transfer amounts of data less than your
  1904. cache filesystem but wish to do so quickly.
  1905. .PP
  1906. With #1 it\[cq]s arguable if you should be using mergerfs at all.
  1907. RAID would probably be the better solution.
  1908. If you\[cq]re going to use mergerfs there are other tactics that may
  1909. help: spreading the data across filesystems (see the mergerfs.dup tool)
  1910. and setting \f[C]func.open=rand\f[R], using \f[C]symlinkify\f[R], or
  1911. using dm-cache or a similar technology to add tiered cache to the
  1912. underlying device.
  1913. .PP
  1914. With #2 one could use dm-cache as well but there is another solution
  1915. which requires only mergerfs and a cronjob.
  1916. .IP "1." 3
  1917. Create 2 mergerfs pools.
  1918. One which includes just the slow devices and one which has both the fast
  1919. devices (SSD,NVME,etc.) and slow devices.
  1920. .IP "2." 3
  1921. The `cache' pool should have the cache filesystems listed first.
  1922. .IP "3." 3
  1923. The best \f[C]create\f[R] policies to use for the `cache' pool would
  1924. probably be \f[C]ff\f[R], \f[C]epff\f[R], \f[C]lfs\f[R], or
  1925. \f[C]eplfs\f[R].
  1926. The latter two under the assumption that the cache filesystem(s) are far
  1927. smaller than the backing filesystems.
  1928. If using path preserving policies remember that you\[cq]ll need to
  1929. manually create the core directories of those paths you wish to be
  1930. cached.
  1931. Be sure the permissions are in sync.
  1932. Use \f[C]mergerfs.fsck\f[R] to check / correct them.
  1933. You could also set the slow filesystems mode to \f[C]NC\f[R] though
  1934. that\[cq]d mean if the cache filesystems fill you\[cq]d get \[lq]out of
  1935. space\[rq] errors.
  1936. .IP "4." 3
  1937. Enable \f[C]moveonenospc\f[R] and set \f[C]minfreespace\f[R]
  1938. appropriately.
  1939. To make sure there is enough room on the \[lq]slow\[rq] pool you might
  1940. want to set \f[C]minfreespace\f[R] to at least as large as the size of
  1941. the largest cache filesystem if not larger.
  1942. This way in the worst case the whole of the cache filesystem(s) can be
  1943. moved to the other drives.
  1944. .IP "5." 3
  1945. Set your programs to use the cache pool.
  1946. .IP "6." 3
  1947. Save one of the below scripts or create you\[cq]re own.
  1948. .IP "7." 3
  1949. Use \f[C]cron\f[R] (as root) to schedule the command at whatever
  1950. frequency is appropriate for your workflow.
  1951. .SS time based expiring
  1952. .PP
  1953. Move files from cache to backing pool based only on the last time the
  1954. file was accessed.
  1955. Replace \f[C]-atime\f[R] with \f[C]-amin\f[R] if you want minutes rather
  1956. than days.
  1957. May want to use the \f[C]fadvise\f[R] / \f[C]--drop-cache\f[R] version
  1958. of rsync or run rsync with the tool \[lq]nocache\[rq].
  1959. .PP
  1960. \f[I]NOTE:\f[R] The arguments to these scripts include the cache
  1961. \f[B]filesystem\f[R] itself.
  1962. Not the pool with the cache filesystem.
  1963. You could have data loss if the source is the cache pool.
  1964. .PP
  1965. mergerfs.time-based-mover
  1966. .SS percentage full expiring
  1967. .PP
  1968. Move the oldest file from the cache to the backing pool.
  1969. Continue till below percentage threshold.
  1970. .PP
  1971. \f[I]NOTE:\f[R] The arguments to these scripts include the cache
  1972. \f[B]filesystem\f[R] itself.
  1973. Not the pool with the cache filesystem.
  1974. You could have data loss if the source is the cache pool.
  1975. .PP
  1976. mergerfs.percent-full-mover
  1977. .SH PERFORMANCE
  1978. .PP
  1979. mergerfs is at its core just a proxy and therefore its theoretical max
  1980. performance is that of the underlying devices.
  1981. However, given it is a FUSE filesystem working from userspace there is
  1982. an increase in overhead relative to kernel based solutions.
  1983. That said the performance can match the theoretical max but it depends
  1984. greatly on the system\[cq]s configuration.
  1985. Especially when adding network filesystems into the mix there are many
  1986. variables which can impact performance.
  1987. Device speeds and latency, network speeds and latency, general
  1988. concurrency, read/write sizes, etc.
  1989. Unfortunately, given the number of variables it has been difficult to
  1990. find a single set of settings which provide optimal performance.
  1991. If you\[cq]re having performance issues please look over the suggestions
  1992. below (including the benchmarking section.)
  1993. .PP
  1994. NOTE: be sure to read about these features before changing them to
  1995. understand what behaviors it may impact
  1996. .IP \[bu] 2
  1997. disable \f[C]security_capability\f[R] and/or \f[C]xattr\f[R]
  1998. .IP \[bu] 2
  1999. increase cache timeouts \f[C]cache.attr\f[R], \f[C]cache.entry\f[R],
  2000. \f[C]cache.negative_entry\f[R]
  2001. .IP \[bu] 2
  2002. enable (or disable) page caching (\f[C]cache.files\f[R])
  2003. .IP \[bu] 2
  2004. enable \f[C]parallel-direct-writes\f[R]
  2005. .IP \[bu] 2
  2006. enable \f[C]cache.writeback\f[R]
  2007. .IP \[bu] 2
  2008. enable \f[C]cache.statfs\f[R]
  2009. .IP \[bu] 2
  2010. enable \f[C]cache.symlinks\f[R]
  2011. .IP \[bu] 2
  2012. enable \f[C]cache.readdir\f[R]
  2013. .IP \[bu] 2
  2014. change the number of worker threads
  2015. .IP \[bu] 2
  2016. disable \f[C]posix_acl\f[R]
  2017. .IP \[bu] 2
  2018. disable \f[C]async_read\f[R]
  2019. .IP \[bu] 2
  2020. test theoretical performance using \f[C]nullrw\f[R] or mounting a ram
  2021. disk
  2022. .IP \[bu] 2
  2023. use \f[C]symlinkify\f[R] if your data is largely static and read-only
  2024. .IP \[bu] 2
  2025. use tiered cache devices
  2026. .IP \[bu] 2
  2027. use LVM and LVM cache to place a SSD in front of your HDDs
  2028. .IP \[bu] 2
  2029. increase readahead: \f[C]readahead=1024\f[R]
  2030. .PP
  2031. If you come across a setting that significantly impacts performance
  2032. please contact trapexit so he may investigate further.
  2033. Please test both against your normal setup, a singular branch, and with
  2034. \f[C]nullrw=true\f[R]
  2035. .SH BENCHMARKING
  2036. .PP
  2037. Filesystems are complicated.
  2038. They do many things and many of those are interconnected.
  2039. Additionally, the OS, drivers, hardware, etc.
  2040. all can impact performance.
  2041. Therefore, when benchmarking, it is \f[B]necessary\f[R] that the test
  2042. focus as narrowly as possible.
  2043. .PP
  2044. For most throughput is the key benchmark.
  2045. To test throughput \f[C]dd\f[R] is useful but \f[B]must\f[R] be used
  2046. with the correct settings in order to ensure the filesystem or device is
  2047. actually being tested.
  2048. The OS can and will cache data.
  2049. Without forcing synchronous reads and writes and/or disabling caching
  2050. the values returned will not be representative of the device\[cq]s true
  2051. performance.
  2052. .PP
  2053. When benchmarking through mergerfs ensure you only use 1 branch to
  2054. remove any possibility of the policies complicating the situation.
  2055. Benchmark the underlying filesystem first and then mount mergerfs over
  2056. it and test again.
  2057. If you\[cq]re experience speeds below your expectation you will need to
  2058. narrow down precisely which component is leading to the slowdown.
  2059. Preferably test the following in the order listed (but not combined).
  2060. .IP "1." 3
  2061. Enable \f[C]nullrw\f[R] mode with \f[C]nullrw=true\f[R].
  2062. This will effectively make reads and writes no-ops.
  2063. Removing the underlying device / filesystem from the equation.
  2064. This will give us the top theoretical speeds.
  2065. .IP "2." 3
  2066. Mount mergerfs over \f[C]tmpfs\f[R].
  2067. \f[C]tmpfs\f[R] is a RAM disk.
  2068. Extremely high speed and very low latency.
  2069. This is a more realistic best case scenario.
  2070. Example: \f[C]mount -t tmpfs -o size=2G tmpfs /tmp/tmpfs\f[R]
  2071. .IP "3." 3
  2072. Mount mergerfs over a local device.
  2073. NVMe, SSD, HDD, etc.
  2074. If you have more than one I\[cq]d suggest testing each of them as drives
  2075. and/or controllers (their drivers) could impact performance.
  2076. .IP "4." 3
  2077. Finally, if you intend to use mergerfs with a network filesystem, either
  2078. as the source of data or to combine with another through mergerfs, test
  2079. each of those alone as above.
  2080. .PP
  2081. Once you find the component which has the performance issue you can do
  2082. further testing with different options to see if they impact
  2083. performance.
  2084. For reads and writes the most relevant would be: \f[C]cache.files\f[R],
  2085. \f[C]async_read\f[R].
  2086. Less likely but relevant when using NFS or with certain filesystems
  2087. would be \f[C]security_capability\f[R], \f[C]xattr\f[R], and
  2088. \f[C]posix_acl\f[R].
  2089. If you find a specific system, device, filesystem, controller, etc.
  2090. that performs poorly contact trapexit so he may investigate further.
  2091. .PP
  2092. Sometimes the problem is really the application accessing or writing
  2093. data through mergerfs.
  2094. Some software use small buffer sizes which can lead to more requests and
  2095. therefore greater overhead.
  2096. You can test this out yourself by replace \f[C]bs=1M\f[R] in the
  2097. examples below with \f[C]ibs\f[R] or \f[C]obs\f[R] and using a size of
  2098. \f[C]512\f[R] instead of \f[C]1M\f[R].
  2099. In one example test using \f[C]nullrw\f[R] the write speed dropped from
  2100. 4.9GB/s to 69.7MB/s when moving from \f[C]1M\f[R] to \f[C]512\f[R].
  2101. Similar results were had when testing reads.
  2102. Small writes overhead may be improved by leveraging a write cache but in
  2103. casual tests little gain was found.
  2104. More tests will need to be done before this feature would become
  2105. available.
  2106. If you have an app that appears slow with mergerfs it could be due to
  2107. this.
  2108. Contact trapexit so he may investigate further.
  2109. .SS write benchmark
  2110. .IP
  2111. .nf
  2112. \f[C]
  2113. $ dd if=/dev/zero of=/mnt/mergerfs/1GB.file bs=1M count=1024 oflag=nocache conv=fdatasync status=progress
  2114. \f[R]
  2115. .fi
  2116. .SS read benchmark
  2117. .IP
  2118. .nf
  2119. \f[C]
  2120. $ dd if=/mnt/mergerfs/1GB.file of=/dev/null bs=1M count=1024 iflag=nocache conv=fdatasync status=progress
  2121. \f[R]
  2122. .fi
  2123. .SS other benchmarks
  2124. .PP
  2125. If you are attempting to benchmark other behaviors you must ensure you
  2126. clear kernel caches before runs.
  2127. In fact it would be a good deal to run before the read and write
  2128. benchmarks as well just in case.
  2129. .IP
  2130. .nf
  2131. \f[C]
  2132. sync
  2133. echo 3 | sudo tee /proc/sys/vm/drop_caches
  2134. \f[R]
  2135. .fi
  2136. .SH TIPS / NOTES
  2137. .IP \[bu] 2
  2138. This document is literal and thorough.
  2139. If a suspected feature isn\[cq]t mentioned it doesn\[cq]t exist.
  2140. If certain libfuse arguments aren\[cq]t listed they probably
  2141. shouldn\[cq]t be used.
  2142. .IP \[bu] 2
  2143. Ensure you\[cq]re using the latest version.
  2144. .IP \[bu] 2
  2145. Run mergerfs as \f[C]root\f[R].
  2146. mergerfs is designed and intended to be run as \f[C]root\f[R] and may
  2147. exibit incorrect behavior if run otherwise..
  2148. .IP \[bu] 2
  2149. If you don\[cq]t see some directories and files you expect, policies
  2150. seem to skip branches, you get strange permission errors, etc.
  2151. be sure the underlying filesystems\[cq] permissions are all the same.
  2152. Use \f[C]mergerfs.fsck\f[R] to audit the filesystem for out of sync
  2153. permissions.
  2154. .IP \[bu] 2
  2155. If you still have permission issues be sure you are using POSIX ACL
  2156. compliant filesystems.
  2157. mergerfs doesn\[cq]t generally make exceptions for FAT, NTFS, or other
  2158. non-POSIX filesystem.
  2159. .IP \[bu] 2
  2160. Do \f[B]not\f[R] use \f[C]cache.files=off\f[R] if you expect
  2161. applications (such as rtorrent) to use
  2162. mmap (http://linux.die.net/man/2/mmap) files.
  2163. Shared mmap is not currently supported in FUSE w/ page caching disabled.
  2164. Enabling \f[C]dropcacheonclose\f[R] is recommended when
  2165. \f[C]cache.files=partial|full|auto-full\f[R].
  2166. .IP \[bu] 2
  2167. Kodi (http://kodi.tv), Plex (http://plex.tv),
  2168. Subsonic (http://subsonic.org), etc.
  2169. can use directory mtime (http://linux.die.net/man/2/stat) to more
  2170. efficiently determine whether to scan for new content rather than simply
  2171. performing a full scan.
  2172. If using the default \f[B]getattr\f[R] policy of \f[B]ff\f[R] it\[cq]s
  2173. possible those programs will miss an update on account of it returning
  2174. the first directory found\[cq]s \f[B]stat\f[R] info and it\[cq]s a later
  2175. directory on another mount which had the \f[B]mtime\f[R] recently
  2176. updated.
  2177. To fix this you will want to set \f[B]func.getattr=newest\f[R].
  2178. Remember though that this is just \f[B]stat\f[R].
  2179. If the file is later \f[B]open\f[R]\[cq]ed or \f[B]unlink\f[R]\[cq]ed
  2180. and the policy is different for those then a completely different file
  2181. or directory could be acted on.
  2182. .IP \[bu] 2
  2183. Some policies mixed with some functions may result in strange behaviors.
  2184. Not that some of these behaviors and race conditions couldn\[cq]t happen
  2185. outside \f[B]mergerfs\f[R] but that they are far more likely to occur on
  2186. account of the attempt to merge together multiple sources of data which
  2187. could be out of sync due to the different policies.
  2188. .IP \[bu] 2
  2189. For consistency its generally best to set \f[B]category\f[R] wide
  2190. policies rather than individual \f[B]func\f[R]\[cq]s.
  2191. This will help limit the confusion of tools such as
  2192. rsync (http://linux.die.net/man/1/rsync).
  2193. However, the flexibility is there if needed.
  2194. .SH KNOWN ISSUES / BUGS
  2195. .SS kernel issues & bugs
  2196. .PP
  2197. <https://github.com/trapexit/mergerfs/wiki/Kernel-Issues-&-Bugs>
  2198. .SS directory mtime is not being updated
  2199. .PP
  2200. Remember that the default policy for \f[C]getattr\f[R] is \f[C]ff\f[R].
  2201. The information for the first directory found will be returned.
  2202. If it wasn\[cq]t the directory which had been updated then it will
  2203. appear outdated.
  2204. .PP
  2205. The reason this is the default is because any other policy would be more
  2206. expensive and for many applications it is unnecessary.
  2207. To always return the directory with the most recent mtime or a faked
  2208. value based on all found would require a scan of all filesystems.
  2209. .PP
  2210. If you always want the directory information from the one with the most
  2211. recent mtime then use the \f[C]newest\f[R] policy for \f[C]getattr\f[R].
  2212. .SS `mv /mnt/pool/foo /mnt/disk1/foo' removes `foo'
  2213. .PP
  2214. This is not a bug.
  2215. .PP
  2216. Run in verbose mode to better understand what\[cq]s happening:
  2217. .IP
  2218. .nf
  2219. \f[C]
  2220. $ mv -v /mnt/pool/foo /mnt/disk1/foo
  2221. copied \[aq]/mnt/pool/foo\[aq] -> \[aq]/mnt/disk1/foo\[aq]
  2222. removed \[aq]/mnt/pool/foo\[aq]
  2223. $ ls /mnt/pool/foo
  2224. ls: cannot access \[aq]/mnt/pool/foo\[aq]: No such file or directory
  2225. \f[R]
  2226. .fi
  2227. .PP
  2228. \f[C]mv\f[R], when working across devices, is copying the source to
  2229. target and then removing the source.
  2230. Since the source \f[B]is\f[R] the target in this case, depending on the
  2231. unlink policy, it will remove the just copied file and other files
  2232. across the branches.
  2233. .PP
  2234. If you want to move files to one filesystem just copy them there and use
  2235. mergerfs.dedup to clean up the old paths or manually remove them from
  2236. the branches directly.
  2237. .SS cached memory appears greater than it should be
  2238. .PP
  2239. Use \f[C]cache.files=off\f[R] and/or \f[C]dropcacheonclose=true\f[R].
  2240. See the section on page caching.
  2241. .SS NFS clients returning ESTALE / Stale file handle
  2242. .PP
  2243. NFS does not like out of band changes.
  2244. That is especially true of inode values.
  2245. .PP
  2246. Be sure to use the following options:
  2247. .IP \[bu] 2
  2248. noforget
  2249. .IP \[bu] 2
  2250. inodecalc=path-hash
  2251. .SS rtorrent fails with ENODEV (No such device)
  2252. .PP
  2253. Be sure to set \f[C]cache.files=partial|full|auto-full|per-processe\f[R]
  2254. or turn off \f[C]direct_io\f[R].
  2255. rtorrent and some other applications use
  2256. mmap (http://linux.die.net/man/2/mmap) to read and write to files and
  2257. offer no fallback to traditional methods.
  2258. FUSE does not currently support mmap while using \f[C]direct_io\f[R].
  2259. There may be a performance penalty on writes with \f[C]direct_io\f[R]
  2260. off as well as the problem of double caching but it\[cq]s the only way
  2261. to get such applications to work.
  2262. If the performance loss is too high for other apps you can mount
  2263. mergerfs twice.
  2264. Once with \f[C]direct_io\f[R] enabled and one without it.
  2265. Be sure to set \f[C]dropcacheonclose=true\f[R] if not using
  2266. \f[C]direct_io\f[R].
  2267. .SS Plex doesn\[cq]t work with mergerfs
  2268. .PP
  2269. It does.
  2270. If you\[cq]re trying to put Plex\[cq]s config / metadata / database on
  2271. mergerfs you can\[cq]t set \f[C]cache.files=off\f[R] because Plex is
  2272. using sqlite3 with mmap enabled.
  2273. Shared mmap is not supported by Linux\[cq]s FUSE implementation when
  2274. page caching is disabled.
  2275. To fix this place the data elsewhere (preferable) or enable
  2276. \f[C]cache.files\f[R] (with \f[C]dropcacheonclose=true\f[R]).
  2277. Sqlite3 does not need mmap but the developer needs to fall back to
  2278. standard IO if mmap fails.
  2279. .PP
  2280. This applies to other software: Radarr, Sonarr, Lidarr, Jellyfin, etc.
  2281. .PP
  2282. I would recommend reaching out to the developers of the software
  2283. you\[cq]re having troubles with and asking them to add a fallback to
  2284. regular file IO when mmap is unavailable.
  2285. .PP
  2286. If the issue is that scanning doesn\[cq]t seem to pick up media then be
  2287. sure to set \f[C]func.getattr=newest\f[R] though generally a full scan
  2288. will pick up all media anyway.
  2289. .SS When a program tries to move or rename a file it fails
  2290. .PP
  2291. Please read the section above regarding rename & link.
  2292. .PP
  2293. The problem is that many applications do not properly handle
  2294. \f[C]EXDEV\f[R] errors which \f[C]rename\f[R] and \f[C]link\f[R] may
  2295. return even though they are perfectly valid situations which do not
  2296. indicate actual device, filesystem, or OS errors.
  2297. The error will only be returned by mergerfs if using a path preserving
  2298. policy as described in the policy section above.
  2299. If you do not care about path preservation simply change the mergerfs
  2300. policy to the non-path preserving version.
  2301. For example: \f[C]-o category.create=mfs\f[R] Ideally the offending
  2302. software would be fixed and it is recommended that if you run into this
  2303. problem you contact the software\[cq]s author and request proper
  2304. handling of \f[C]EXDEV\f[R] errors.
  2305. .SS my 32bit software has problems
  2306. .PP
  2307. Some software have problems with 64bit inode values.
  2308. The symptoms can include EOVERFLOW errors when trying to list files.
  2309. You can address this by setting \f[C]inodecalc\f[R] to one of the 32bit
  2310. based algos as described in the relevant section.
  2311. .SS Samba: Moving files / directories fails
  2312. .PP
  2313. Workaround: Copy the file/directory and then remove the original rather
  2314. than move.
  2315. .PP
  2316. This isn\[cq]t an issue with Samba but some SMB clients.
  2317. GVFS-fuse v1.20.3 and prior (found in Ubuntu 14.04 among others) failed
  2318. to handle certain error codes correctly.
  2319. Particularly \f[B]STATUS_NOT_SAME_DEVICE\f[R] which comes from the
  2320. \f[B]EXDEV\f[R] which is returned by \f[B]rename\f[R] when the call is
  2321. crossing mount points.
  2322. When a program gets an \f[B]EXDEV\f[R] it needs to explicitly take an
  2323. alternate action to accomplish its goal.
  2324. In the case of \f[B]mv\f[R] or similar it tries \f[B]rename\f[R] and on
  2325. \f[B]EXDEV\f[R] falls back to a manual copying of data between the two
  2326. locations and unlinking the source.
  2327. In these older versions of GVFS-fuse if it received \f[B]EXDEV\f[R] it
  2328. would translate that into \f[B]EIO\f[R].
  2329. This would cause \f[B]mv\f[R] or most any application attempting to move
  2330. files around on that SMB share to fail with a IO error.
  2331. .PP
  2332. GVFS-fuse v1.22.0 (https://bugzilla.gnome.org/show_bug.cgi?id=734568)
  2333. and above fixed this issue but a large number of systems use the older
  2334. release.
  2335. On Ubuntu the version can be checked by issuing
  2336. \f[C]apt-cache showpkg gvfs-fuse\f[R].
  2337. Most distros released in 2015 seem to have the updated release and will
  2338. work fine but older systems may not.
  2339. Upgrading gvfs-fuse or the distro in general will address the problem.
  2340. .PP
  2341. In Apple\[cq]s MacOSX 10.9 they replaced Samba (client and server) with
  2342. their own product.
  2343. It appears their new client does not handle \f[B]EXDEV\f[R] either and
  2344. responds similar to older release of gvfs on Linux.
  2345. .SS Trashing files occasionally fails
  2346. .PP
  2347. This is the same issue as with Samba.
  2348. \f[C]rename\f[R] returns \f[C]EXDEV\f[R] (in our case that will really
  2349. only happen with path preserving policies like \f[C]epmfs\f[R]) and the
  2350. software doesn\[cq]t handle the situation well.
  2351. This is unfortunately a common failure of software which moves files
  2352. around.
  2353. The standard indicates that an implementation \f[C]MAY\f[R] choose to
  2354. support non-user home directory trashing of files (which is a
  2355. \f[C]MUST\f[R]).
  2356. The implementation \f[C]MAY\f[R] also support \[lq]top directory
  2357. trashes\[rq] which many probably do.
  2358. .PP
  2359. To create a \f[C]$topdir/.Trash\f[R] directory as defined in the
  2360. standard use the
  2361. mergerfs-tools (https://github.com/trapexit/mergerfs-tools) tool
  2362. \f[C]mergerfs.mktrash\f[R].
  2363. .SS Supplemental user groups
  2364. .PP
  2365. Due to the overhead of
  2366. getgroups/setgroups (http://linux.die.net/man/2/setgroups) mergerfs
  2367. utilizes a cache.
  2368. This cache is opportunistic and per thread.
  2369. Each thread will query the supplemental groups for a user when that
  2370. particular thread needs to change credentials and will keep that data
  2371. for the lifetime of the thread.
  2372. This means that if a user is added to a group it may not be picked up
  2373. without the restart of mergerfs.
  2374. However, since the high level FUSE API\[cq]s (at least the standard
  2375. version) thread pool dynamically grows and shrinks it\[cq]s possible
  2376. that over time a thread will be killed and later a new thread with no
  2377. cache will start and query the new data.
  2378. .PP
  2379. The gid cache uses fixed storage to simplify the design and be
  2380. compatible with older systems which may not have C++11 compilers.
  2381. There is enough storage for 256 users\[cq] supplemental groups.
  2382. Each user is allowed up to 32 supplemental groups.
  2383. Linux >= 2.6.3 allows up to 65535 groups per user but most other *nixs
  2384. allow far less.
  2385. NFS allowing only 16.
  2386. The system does handle overflow gracefully.
  2387. If the user has more than 32 supplemental groups only the first 32 will
  2388. be used.
  2389. If more than 256 users are using the system when an uncached user is
  2390. found it will evict an existing user\[cq]s cache at random.
  2391. So long as there aren\[cq]t more than 256 active users this should be
  2392. fine.
  2393. If either value is too low for your needs you will have to modify
  2394. \f[C]gidcache.hpp\f[R] to increase the values.
  2395. Note that doing so will increase the memory needed by each thread.
  2396. .PP
  2397. While not a bug some users have found when using containers that
  2398. supplemental groups defined inside the container don\[cq]t work properly
  2399. with regard to permissions.
  2400. This is expected as mergerfs lives outside the container and therefore
  2401. is querying the host\[cq]s group database.
  2402. There might be a hack to work around this (make mergerfs read the
  2403. /etc/group file in the container) but it is not yet implemented and
  2404. would be limited to Linux and the /etc/group DB.
  2405. Preferably users would mount in the host group file into the containers
  2406. or use a standard shared user & groups technology like NIS or LDAP.
  2407. .SH FAQ
  2408. .SS How well does mergerfs scale? Is it \[lq]production ready?\[rq]
  2409. .PP
  2410. Users have reported running mergerfs on everything from a Raspberry Pi
  2411. to dual socket Xeon systems with >20 cores.
  2412. I\[cq]m aware of at least a few companies which use mergerfs in
  2413. production.
  2414. Open Media Vault (https://www.openmediavault.org) includes mergerfs as
  2415. its sole solution for pooling filesystems.
  2416. The author of mergerfs had it running for over 300 days managing 16+
  2417. devices with reasonably heavy 24/7 read and write usage.
  2418. Stopping only after the machine\[cq]s power supply died.
  2419. .PP
  2420. Most serious issues (crashes or data corruption) have been due to kernel
  2421. bugs (https://github.com/trapexit/mergerfs/wiki/Kernel-Issues-&-Bugs).
  2422. All of which are fixed in stable releases.
  2423. .SS Can mergerfs be used with filesystems which already have data / are in use?
  2424. .PP
  2425. Yes.
  2426. MergerFS is a proxy and does \f[B]NOT\f[R] interfere with the normal
  2427. form or function of the filesystems / mounts / paths it manages.
  2428. .PP
  2429. MergerFS is \f[B]not\f[R] a traditional filesystem.
  2430. MergerFS is \f[B]not\f[R] RAID.
  2431. It does \f[B]not\f[R] manipulate the data that passes through it.
  2432. It does \f[B]not\f[R] shard data across filesystems.
  2433. It merely shards some \f[B]behavior\f[R] and aggregates others.
  2434. .SS Can mergerfs be removed without affecting the data?
  2435. .PP
  2436. See the previous question\[cq]s answer.
  2437. .SS What policies should I use?
  2438. .PP
  2439. Unless you\[cq]re doing something more niche the average user is
  2440. probably best off using \f[C]mfs\f[R] for \f[C]category.create\f[R].
  2441. It will spread files out across your branches based on available space.
  2442. Use \f[C]mspmfs\f[R] if you want to try to colocate the data a bit more.
  2443. You may want to use \f[C]lus\f[R] if you prefer a slightly different
  2444. distribution of data if you have a mix of smaller and larger
  2445. filesystems.
  2446. Generally though \f[C]mfs\f[R], \f[C]lus\f[R], or even \f[C]rand\f[R]
  2447. are good for the general use case.
  2448. If you are starting with an imbalanced pool you can use the tool
  2449. \f[B]mergerfs.balance\f[R] to redistribute files across the pool.
  2450. .PP
  2451. If you really wish to try to colocate files based on directory you can
  2452. set \f[C]func.create\f[R] to \f[C]epmfs\f[R] or similar and
  2453. \f[C]func.mkdir\f[R] to \f[C]rand\f[R] or \f[C]eprand\f[R] depending on
  2454. if you just want to colocate generally or on specific branches.
  2455. Either way the \f[I]need\f[R] to colocate is rare.
  2456. For instance: if you wish to remove the device regularly and want the
  2457. data to predictably be on that device or if you don\[cq]t use backup at
  2458. all and don\[cq]t wish to replace that data piecemeal.
  2459. In which case using path preservation can help but will require some
  2460. manual attention.
  2461. Colocating after the fact can be accomplished using the
  2462. \f[B]mergerfs.consolidate\f[R] tool.
  2463. If you don\[cq]t need strict colocation which the \f[C]ep\f[R] policies
  2464. provide then you can use the \f[C]msp\f[R] based policies which will
  2465. walk back the path till finding a branch that works.
  2466. .PP
  2467. Ultimately there is no correct answer.
  2468. It is a preference or based on some particular need.
  2469. mergerfs is very easy to test and experiment with.
  2470. I suggest creating a test setup and experimenting to get a sense of what
  2471. you want.
  2472. .PP
  2473. \f[C]epmfs\f[R] is the default \f[C]category.create\f[R] policy because
  2474. \f[C]ep\f[R] policies are not going to change the general layout of the
  2475. branches.
  2476. It won\[cq]t place files/dirs on branches that don\[cq]t already have
  2477. the relative branch.
  2478. So it keeps the system in a known state.
  2479. It\[cq]s much easier to stop using \f[C]epmfs\f[R] or redistribute files
  2480. around the filesystem than it is to consolidate them back.
  2481. .SS What settings should I use?
  2482. .PP
  2483. Depends on what features you want.
  2484. Generally speaking there are no \[lq]wrong\[rq] settings.
  2485. All settings are performance or feature related.
  2486. The best bet is to read over the available options and choose what fits
  2487. your situation.
  2488. If something isn\[cq]t clear from the documentation please reach out and
  2489. the documentation will be improved.
  2490. .PP
  2491. That said, for the average person, the following should be fine:
  2492. .PP
  2493. \f[C]cache.files=off,dropcacheonclose=true,category.create=mfs\f[R]
  2494. .SS Why are all my files ending up on 1 filesystem?!
  2495. .PP
  2496. Did you start with empty filesystems?
  2497. Did you explicitly configure a \f[C]category.create\f[R] policy?
  2498. Are you using an \f[C]existing path\f[R] / \f[C]path preserving\f[R]
  2499. policy?
  2500. .PP
  2501. The default create policy is \f[C]epmfs\f[R].
  2502. That is a path preserving algorithm.
  2503. With such a policy for \f[C]mkdir\f[R] and \f[C]create\f[R] with a set
  2504. of empty filesystems it will select only 1 filesystem when the first
  2505. directory is created.
  2506. Anything, files or directories, created in that first directory will be
  2507. placed on the same branch because it is preserving paths.
  2508. .PP
  2509. This catches a lot of new users off guard but changing the default would
  2510. break the setup for many existing users.
  2511. If you do not care about path preservation and wish your files to be
  2512. spread across all your filesystems change to \f[C]mfs\f[R] or similar
  2513. policy as described above.
  2514. If you do want path preservation you\[cq]ll need to perform the manual
  2515. act of creating paths on the filesystems you want the data to land on
  2516. before transferring your data.
  2517. Setting \f[C]func.mkdir=epall\f[R] can simplify managing path
  2518. preservation for \f[C]create\f[R].
  2519. Or use \f[C]func.mkdir=rand\f[R] if you\[cq]re interested in just
  2520. grouping together directory content by filesystem.
  2521. .SS Do hardlinks work?
  2522. .PP
  2523. Yes.
  2524. See also the option \f[C]inodecalc\f[R] for how inode values are
  2525. calculated.
  2526. .PP
  2527. What mergerfs does not do is fake hard links across branches.
  2528. Read the section \[lq]rename & link\[rq] for how it works.
  2529. .PP
  2530. Remember that hardlinks will NOT work across devices.
  2531. That includes between the original filesystem and a mergerfs pool,
  2532. between two separate pools of the same underlying filesystems, or bind
  2533. mounts of paths within the mergerfs pool.
  2534. The latter is common when using Docker or Podman.
  2535. Multiple volumes (bind mounts) to the same underlying filesystem are
  2536. considered different devices.
  2537. There is no way to link between them.
  2538. You should mount in the highest directory in the mergerfs pool that
  2539. includes all the paths you need if you want links to work.
  2540. .SS Can I use mergerfs without SnapRAID? SnapRAID without mergerfs?
  2541. .PP
  2542. Yes.
  2543. They are completely unrelated pieces of software.
  2544. .SS Can mergerfs run via Docker, Podman, Kubernetes, etc.
  2545. .PP
  2546. Yes.
  2547. With Docker you\[cq]ll need to include
  2548. \f[C]--cap-add=SYS_ADMIN --device=/dev/fuse --security-opt=apparmor:unconfined\f[R]
  2549. or similar with other container runtimes.
  2550. You should also be running it as root or given sufficient caps to change
  2551. user and group identity as well as have root like filesystem
  2552. permissions.
  2553. .PP
  2554. Keep in mind that you \f[B]MUST\f[R] consider identity when using
  2555. containers.
  2556. For example: supplemental groups will be picked up from the container
  2557. unless you properly manage users and groups by sharing relevant /etc
  2558. files or by using some other means to share identity across containers.
  2559. Similarly if you use \[lq]rootless\[rq] containers and user namespaces
  2560. to do uid/gid translations you \f[B]MUST\f[R] consider that while
  2561. managing shared files.
  2562. .PP
  2563. Also, as mentioned by hotio (https://hotio.dev/containers/mergerfs),
  2564. with Docker you should probably be mounting with
  2565. \f[C]bind-propagation\f[R] set to \f[C]slave\f[R].
  2566. .SS Does mergerfs support CoW / copy-on-write / writes to read-only filesystems?
  2567. .PP
  2568. Not in the sense of a filesystem like BTRFS or ZFS nor in the overlayfs
  2569. or aufs sense.
  2570. It does offer a
  2571. cow-shell (http://manpages.ubuntu.com/manpages/bionic/man1/cow-shell.1.html)
  2572. like hard link breaking (copy to temp file then rename over original)
  2573. which can be useful when wanting to save space by hardlinking duplicate
  2574. files but wish to treat each name as if it were a unique and separate
  2575. file.
  2576. .PP
  2577. If you want to write to a read-only filesystem you should look at
  2578. overlayfs.
  2579. You can always include the overlayfs mount into a mergerfs pool.
  2580. .SS Why can\[cq]t I see my files / directories?
  2581. .PP
  2582. It\[cq]s almost always a permissions issue.
  2583. Unlike mhddfs and unionfs-fuse, which runs as root and attempts to
  2584. access content as such, mergerfs always changes its credentials to that
  2585. of the caller.
  2586. This means that if the user does not have access to a file or directory
  2587. than neither will mergerfs.
  2588. However, because mergerfs is creating a union of paths it may be able to
  2589. read some files and directories on one filesystem but not another
  2590. resulting in an incomplete set.
  2591. .PP
  2592. Whenever you run into a split permission issue (seeing some but not all
  2593. files) try using
  2594. mergerfs.fsck (https://github.com/trapexit/mergerfs-tools) tool to check
  2595. for and fix the mismatch.
  2596. If you aren\[cq]t seeing anything at all be sure that the basic
  2597. permissions are correct.
  2598. The user and group values are correct and that directories have their
  2599. executable bit set.
  2600. A common mistake by users new to Linux is to \f[C]chmod -R 644\f[R] when
  2601. they should have \f[C]chmod -R u=rwX,go=rX\f[R].
  2602. .PP
  2603. If using a network filesystem such as NFS, SMB, CIFS (Samba) be sure to
  2604. pay close attention to anything regarding permissioning and users.
  2605. Root squashing and user translation for instance has bitten a few
  2606. mergerfs users.
  2607. Some of these also affect the use of mergerfs from container platforms
  2608. such as Docker.
  2609. .SS Why use FUSE? Why not a kernel based solution?
  2610. .PP
  2611. As with any solutions to a problem there are advantages and
  2612. disadvantages to each one.
  2613. .PP
  2614. A FUSE based solution has all the downsides of FUSE:
  2615. .IP \[bu] 2
  2616. Higher IO latency due to the trips in and out of kernel space
  2617. .IP \[bu] 2
  2618. Higher general overhead due to trips in and out of kernel space
  2619. .IP \[bu] 2
  2620. Double caching when using page caching
  2621. .IP \[bu] 2
  2622. Misc limitations due to FUSE\[cq]s design
  2623. .PP
  2624. But FUSE also has a lot of upsides:
  2625. .IP \[bu] 2
  2626. Easier to offer a cross platform solution
  2627. .IP \[bu] 2
  2628. Easier forward and backward compatibility
  2629. .IP \[bu] 2
  2630. Easier updates for users
  2631. .IP \[bu] 2
  2632. Easier and faster release cadence
  2633. .IP \[bu] 2
  2634. Allows more flexibility in design and features
  2635. .IP \[bu] 2
  2636. Overall easier to write, secure, and maintain
  2637. .IP \[bu] 2
  2638. Much lower barrier to entry (getting code into the kernel takes a lot of
  2639. time and effort initially)
  2640. .PP
  2641. FUSE was chosen because of all the advantages listed above.
  2642. The negatives of FUSE do not outweigh the positives.
  2643. .SS Is my OS\[cq]s libfuse needed for mergerfs to work?
  2644. .PP
  2645. No.\ Normally \f[C]mount.fuse\f[R] is needed to get mergerfs (or any
  2646. FUSE filesystem to mount using the \f[C]mount\f[R] command but in
  2647. vendoring the libfuse library the \f[C]mount.fuse\f[R] app has been
  2648. renamed to \f[C]mount.mergerfs\f[R] meaning the filesystem type in
  2649. \f[C]fstab\f[R] can simply be \f[C]mergerfs\f[R].
  2650. That said there should be no harm in having it installed and continuing
  2651. to using \f[C]fuse.mergerfs\f[R] as the type in \f[C]/etc/fstab\f[R].
  2652. .PP
  2653. If \f[C]mergerfs\f[R] doesn\[cq]t work as a type it could be due to how
  2654. the \f[C]mount.mergerfs\f[R] tool was installed.
  2655. Must be in \f[C]/sbin/\f[R] with proper permissions.
  2656. .SS Why was splice support removed?
  2657. .PP
  2658. After a lot of testing over the years splicing always appeared to be at
  2659. best provide equivalent performance and in cases worse performance.
  2660. Splice is not supported on other platforms forcing a traditional
  2661. read/write fallback to be provided.
  2662. The splice code was removed to simplify the codebase.
  2663. .SS Why use mergerfs over mhddfs?
  2664. .PP
  2665. mhddfs is no longer maintained and has some known stability and security
  2666. issues (see below).
  2667. MergerFS provides a superset of mhddfs\[cq] features and should offer
  2668. the same or maybe better performance.
  2669. .PP
  2670. Below is an example of mhddfs and mergerfs setup to work similarly.
  2671. .PP
  2672. \f[C]mhddfs -o mlimit=4G,allow_other /mnt/drive1,/mnt/drive2 /mnt/pool\f[R]
  2673. .PP
  2674. \f[C]mergerfs -o minfreespace=4G,category.create=ff /mnt/drive1:/mnt/drive2 /mnt/pool\f[R]
  2675. .SS Why use mergerfs over aufs?
  2676. .PP
  2677. aufs is mostly abandoned and no longer available in many distros.
  2678. .PP
  2679. While aufs can offer better peak performance mergerfs provides more
  2680. configurability and is generally easier to use.
  2681. mergerfs however does not offer the overlay / copy-on-write (CoW)
  2682. features which aufs and overlayfs have.
  2683. .SS Why use mergerfs over unionfs?
  2684. .PP
  2685. UnionFS is more like aufs than mergerfs in that it offers overlay / CoW
  2686. features.
  2687. If you\[cq]re just looking to create a union of filesystems and want
  2688. flexibility in file/directory placement then mergerfs offers that
  2689. whereas unionfs is more for overlaying RW filesystems over RO ones.
  2690. .SS Why use mergerfs over overlayfs?
  2691. .PP
  2692. Same reasons as with unionfs.
  2693. .SS Why use mergerfs over LVM/ZFS/BTRFS/RAID0 drive concatenation / striping?
  2694. .PP
  2695. With simple JBOD / drive concatenation / stripping / RAID0 a single
  2696. drive failure will result in full pool failure.
  2697. mergerfs performs a similar function without the possibility of
  2698. catastrophic failure and the difficulties in recovery.
  2699. Drives may fail, however, all other data will continue to be accessible.
  2700. .PP
  2701. When combined with something like SnapRaid (http://www.snapraid.it)
  2702. and/or an offsite backup solution you can have the flexibility of JBOD
  2703. without the single point of failure.
  2704. .SS Why use mergerfs over ZFS?
  2705. .PP
  2706. MergerFS is not intended to be a replacement for ZFS.
  2707. MergerFS is intended to provide flexible pooling of arbitrary
  2708. filesystems (local or remote), of arbitrary sizes, and arbitrary
  2709. filesystems.
  2710. For \f[C]write once, read many\f[R] usecases such as bulk media storage.
  2711. Where data integrity and backup is managed in other ways.
  2712. In that situation ZFS can introduce a number of costs and limitations as
  2713. described
  2714. here (http://louwrentius.com/the-hidden-cost-of-using-zfs-for-your-home-nas.html),
  2715. here (https://markmcb.com/2020/01/07/five-years-of-btrfs/), and
  2716. here (https://utcc.utoronto.ca/~cks/space/blog/solaris/ZFSWhyNoRealReshaping).
  2717. .SS Why use mergerfs over UnRAID?
  2718. .PP
  2719. UnRAID is a full OS and its storage layer, as I understand, is
  2720. proprietary and closed source.
  2721. Users who have experience with both have said they prefer the
  2722. flexibility offered by mergerfs and for some the fact it is free and
  2723. open source is important.
  2724. .PP
  2725. There are a number of UnRAID users who use mergerfs as well though
  2726. I\[cq]m not entirely familiar with the use case.
  2727. .SS Why use mergerfs over StableBit\[cq]s DrivePool?
  2728. .PP
  2729. DrivePool works only on Windows so not as common an alternative as other
  2730. Linux solutions.
  2731. If you want to use Windows then DrivePool is a good option.
  2732. Functionally the two projects work a bit differently.
  2733. DrivePool always writes to the filesystem with the most free space and
  2734. later rebalances.
  2735. mergerfs does not offer rebalance but chooses a branch at file/directory
  2736. create time.
  2737. DrivePool\[cq]s rebalancing can be done differently in any directory and
  2738. has file pattern matching to further customize the behavior.
  2739. mergerfs, not having rebalancing does not have these features, but
  2740. similar features are planned for mergerfs v3.
  2741. DrivePool has builtin file duplication which mergerfs does not natively
  2742. support (but can be done via an external script.)
  2743. .PP
  2744. There are a lot of misc differences between the two projects but most
  2745. features in DrivePool can be replicated with external tools in
  2746. combination with mergerfs.
  2747. .PP
  2748. Additionally DrivePool is a closed source commercial product vs mergerfs
  2749. a ISC licensed OSS project.
  2750. .SS What should mergerfs NOT be used for?
  2751. .IP \[bu] 2
  2752. databases: Even if the database stored data in separate files (mergerfs
  2753. wouldn\[cq]t offer much otherwise) the higher latency of the indirection
  2754. will kill performance.
  2755. If it is a lightly used SQLITE database then it may be fine but
  2756. you\[cq]ll need to test.
  2757. .IP \[bu] 2
  2758. VM images: For the same reasons as databases.
  2759. VM images are accessed very aggressively and mergerfs will introduce too
  2760. much latency (if it works at all).
  2761. .IP \[bu] 2
  2762. As replacement for RAID: mergerfs is just for pooling branches.
  2763. If you need that kind of device performance aggregation or high
  2764. availability you should stick with RAID.
  2765. .SS Can filesystems be written to directly? Outside of mergerfs while pooled?
  2766. .PP
  2767. Yes, however it\[cq]s not recommended to use the same file from within
  2768. the pool and from without at the same time (particularly writing).
  2769. Especially if using caching of any kind (cache.files, cache.entry,
  2770. cache.attr, cache.negative_entry, cache.symlinks, cache.readdir, etc.)
  2771. as there could be a conflict between cached data and not.
  2772. .SS Why do I get an \[lq]out of space\[rq] / \[lq]no space left on device\[rq] / ENOSPC error even though there appears to be lots of space available?
  2773. .PP
  2774. First make sure you\[cq]ve read the sections above about policies, path
  2775. preservation, branch filtering, and the options \f[B]minfreespace\f[R],
  2776. \f[B]moveonenospc\f[R], \f[B]statfs\f[R], and \f[B]statfs_ignore\f[R].
  2777. .PP
  2778. mergerfs is simply presenting a union of the content within multiple
  2779. branches.
  2780. The reported free space is an aggregate of space available within the
  2781. pool (behavior modified by \f[B]statfs\f[R] and
  2782. \f[B]statfs_ignore\f[R]).
  2783. It does not represent a contiguous space.
  2784. In the same way that read-only filesystems, those with quotas, or
  2785. reserved space report the full theoretical space available.
  2786. .PP
  2787. Due to path preservation, branch tagging, read-only status, and
  2788. \f[B]minfreespace\f[R] settings it is perfectly valid that
  2789. \f[C]ENOSPC\f[R] / \[lq]out of space\[rq] / \[lq]no space left on
  2790. device\[rq] be returned.
  2791. It is doing what was asked of it: filtering possible branches due to
  2792. those settings.
  2793. Only one error can be returned and if one of the reasons for filtering a
  2794. branch was \f[B]minfreespace\f[R] then it will be returned as such.
  2795. \f[B]moveonenospc\f[R] is only relevant to writing a file which is too
  2796. large for the filesystem it\[cq]s currently on.
  2797. .PP
  2798. It is also possible that the filesystem selected has run out of inodes.
  2799. Use \f[C]df -i\f[R] to list the total and available inodes per
  2800. filesystem.
  2801. .PP
  2802. If you don\[cq]t care about path preservation then simply change the
  2803. \f[C]create\f[R] policy to one which isn\[cq]t.
  2804. \f[C]mfs\f[R] is probably what most are looking for.
  2805. The reason it\[cq]s not default is because it was originally set to
  2806. \f[C]epmfs\f[R] and changing it now would change people\[cq]s setup.
  2807. Such a setting change will likely occur in mergerfs 3.
  2808. .SS Why does the total available space in mergerfs not equal outside?
  2809. .PP
  2810. Are you using ext2/3/4?
  2811. With reserve for root?
  2812. mergerfs uses available space for statfs calculations.
  2813. If you\[cq]ve reserved space for root then it won\[cq]t show up.
  2814. .PP
  2815. You can remove the reserve by running: \f[C]tune2fs -m 0 <device>\f[R]
  2816. .SS Can mergerfs mounts be exported over NFS?
  2817. .PP
  2818. Yes, however if you do anything which may changes files out of band
  2819. (including for example using the \f[C]newest\f[R] policy) it will result
  2820. in \[lq]stale file handle\[rq] errors unless properly setup.
  2821. .PP
  2822. Be sure to use the following options:
  2823. .IP \[bu] 2
  2824. noforget
  2825. .IP \[bu] 2
  2826. inodecalc=path-hash
  2827. .SS Can mergerfs mounts be exported over Samba / SMB?
  2828. .PP
  2829. Yes.
  2830. While some users have reported problems it appears to always be related
  2831. to how Samba is setup in relation to permissions.
  2832. .SS Can mergerfs mounts be used over SSHFS?
  2833. .PP
  2834. Yes.
  2835. .SS I notice massive slowdowns of writes when enabling cache.files.
  2836. .PP
  2837. When file caching is enabled in any form (\f[C]cache.files!=off\f[R] or
  2838. \f[C]direct_io=false\f[R]) it will issue \f[C]getxattr\f[R] requests for
  2839. \f[C]security.capability\f[R] prior to \f[I]every single write\f[R].
  2840. This will usually result in a performance degradation, especially when
  2841. using a network filesystem (such as NFS or CIFS/SMB/Samba.)
  2842. Unfortunately at this moment the kernel is not caching the response.
  2843. .PP
  2844. To work around this situation mergerfs offers a few solutions.
  2845. .IP "1." 3
  2846. Set \f[C]security_capability=false\f[R].
  2847. It will short circuit any call and return \f[C]ENOATTR\f[R].
  2848. This still means though that mergerfs will receive the request before
  2849. every write but at least it doesn\[cq]t get passed through to the
  2850. underlying filesystem.
  2851. .IP "2." 3
  2852. Set \f[C]xattr=noattr\f[R].
  2853. Same as above but applies to \f[I]all\f[R] calls to getxattr.
  2854. Not just \f[C]security.capability\f[R].
  2855. This will not be cached by the kernel either but mergerfs\[cq] runtime
  2856. config system will still function.
  2857. .IP "3." 3
  2858. Set \f[C]xattr=nosys\f[R].
  2859. Results in mergerfs returning \f[C]ENOSYS\f[R] which \f[I]will\f[R] be
  2860. cached by the kernel.
  2861. No future xattr calls will be forwarded to mergerfs.
  2862. The downside is that also means the xattr based config and query
  2863. functionality won\[cq]t work either.
  2864. .IP "4." 3
  2865. Disable file caching.
  2866. If you aren\[cq]t using applications which use \f[C]mmap\f[R] it\[cq]s
  2867. probably simpler to just disable it all together.
  2868. The kernel won\[cq]t send the requests when caching is disabled.
  2869. .SS It\[cq]s mentioned that there are some security issues with mhddfs. What are they? How does mergerfs address them?
  2870. .PP
  2871. mhddfs (https://github.com/trapexit/mhddfs) manages running as
  2872. \f[B]root\f[R] by calling
  2873. getuid() (https://github.com/trapexit/mhddfs/blob/cae96e6251dd91e2bdc24800b4a18a74044f6672/src/main.c#L319)
  2874. and if it returns \f[B]0\f[R] then it will
  2875. chown (http://linux.die.net/man/1/chown) the file.
  2876. Not only is that a race condition but it doesn\[cq]t handle other
  2877. situations.
  2878. Rather than attempting to simulate POSIX ACL behavior the proper way to
  2879. manage this is to use seteuid (http://linux.die.net/man/2/seteuid) and
  2880. setegid (http://linux.die.net/man/2/setegid), in effect becoming the
  2881. user making the original call, and perform the action as them.
  2882. This is what mergerfs does and why mergerfs should always run as root.
  2883. .PP
  2884. In Linux setreuid syscalls apply only to the thread.
  2885. GLIBC hides this away by using realtime signals to inform all threads to
  2886. change credentials.
  2887. Taking after \f[B]Samba\f[R], mergerfs uses
  2888. \f[B]syscall(SYS_setreuid,\&...)\f[R] to set the callers credentials for
  2889. that thread only.
  2890. Jumping back to \f[B]root\f[R] as necessary should escalated privileges
  2891. be needed (for instance: to clone paths between filesystems).
  2892. .PP
  2893. For non-Linux systems mergerfs uses a read-write lock and changes
  2894. credentials only when necessary.
  2895. If multiple threads are to be user X then only the first one will need
  2896. to change the processes credentials.
  2897. So long as the other threads need to be user X they will take a readlock
  2898. allowing multiple threads to share the credentials.
  2899. Once a request comes in to run as user Y that thread will attempt a
  2900. write lock and change to Y\[cq]s credentials when it can.
  2901. If the ability to give writers priority is supported then that flag will
  2902. be used so threads trying to change credentials don\[cq]t starve.
  2903. This isn\[cq]t the best solution but should work reasonably well
  2904. assuming there are few users.
  2905. .SH SUPPORT
  2906. .PP
  2907. Filesystems are complex and difficult to debug.
  2908. mergerfs, while being just a proxy of sorts, can be difficult to debug
  2909. given the large number of possible settings it can have itself and the
  2910. number of environments it can run in.
  2911. When reporting on a suspected issue \f[B]please\f[R] include as much of
  2912. the below information as possible otherwise it will be difficult or
  2913. impossible to diagnose.
  2914. Also please read the above documentation as it provides details on many
  2915. previously encountered questions/issues.
  2916. .PP
  2917. \f[B]Please make sure you are using the latest
  2918. release (https://github.com/trapexit/mergerfs/releases) or have tried it
  2919. in comparison. Old versions, which are often included in distros like
  2920. Debian and Ubuntu, are not ever going to be updated and the issue you
  2921. are encountering may have been addressed already.\f[R]
  2922. .PP
  2923. \f[B]For commercial support or feature requests please contact me
  2924. directly. (mailto:support@spawn.link)\f[R]
  2925. .SS Information to include in bug reports
  2926. .IP \[bu] 2
  2927. Information about the broader problem along with any attempted
  2928. solutions. (https://xyproblem.info)
  2929. .IP \[bu] 2
  2930. Solution already ruled out and why.
  2931. .IP \[bu] 2
  2932. Version of mergerfs: \f[C]mergerfs --version\f[R]
  2933. .IP \[bu] 2
  2934. mergerfs settings / arguments: from fstab, systemd unit, command line,
  2935. OMV plugin, etc.
  2936. .IP \[bu] 2
  2937. Version of the OS: \f[C]uname -a\f[R] and \f[C]lsb_release -a\f[R]
  2938. .IP \[bu] 2
  2939. List of branches, their filesystem types, sizes (before and after
  2940. issue): \f[C]df -h\f[R]
  2941. .IP \[bu] 2
  2942. \f[B]All\f[R] information about the relevant paths and files:
  2943. permissions, ownership, etc.
  2944. .IP \[bu] 2
  2945. \f[B]All\f[R] information about the client app making the requests:
  2946. version, uid/gid
  2947. .IP \[bu] 2
  2948. Runtime environment:
  2949. .RS 2
  2950. .IP \[bu] 2
  2951. Is mergerfs running within a container?
  2952. .IP \[bu] 2
  2953. Are the client apps using mergerfs running in a container?
  2954. .RE
  2955. .IP \[bu] 2
  2956. A \f[C]strace\f[R] of the app having problems:
  2957. .RS 2
  2958. .IP \[bu] 2
  2959. \f[C]strace -fvTtt -s 256 -o /tmp/app.strace.txt <cmd>\f[R]
  2960. .RE
  2961. .IP \[bu] 2
  2962. A \f[C]strace\f[R] of mergerfs while the program is trying to do
  2963. whatever it is failing to do:
  2964. .RS 2
  2965. .IP \[bu] 2
  2966. \f[C]strace -fvTtt -s 256 -p <mergerfsPID> -o /tmp/mergerfs.strace.txt\f[R]
  2967. .RE
  2968. .IP \[bu] 2
  2969. \f[B]Precise\f[R] directions on replicating the issue.
  2970. Do not leave \f[B]anything\f[R] out.
  2971. .IP \[bu] 2
  2972. Try to recreate the problem in the simplest way using standard programs:
  2973. \f[C]ln\f[R], \f[C]mv\f[R], \f[C]cp\f[R], \f[C]ls\f[R], \f[C]dd\f[R],
  2974. etc.
  2975. .SS Contact / Issue submission
  2976. .IP \[bu] 2
  2977. github.com: https://github.com/trapexit/mergerfs/issues
  2978. .IP \[bu] 2
  2979. discord: https://discord.gg/MpAr69V
  2980. .IP \[bu] 2
  2981. reddit: https://www.reddit.com/r/mergerfs
  2982. .SS Donations
  2983. .PP
  2984. https://github.com/trapexit/support
  2985. .PP
  2986. Development and support of a project like mergerfs requires a
  2987. significant amount of time and effort.
  2988. The software is released under the very liberal ISC license and is
  2989. therefore free to use for personal or commercial uses.
  2990. .PP
  2991. If you are a personal user and find mergerfs and its support valuable
  2992. and would like to support the project financially it would be very much
  2993. appreciated.
  2994. .PP
  2995. If you are using mergerfs commercially please consider sponsoring the
  2996. project to ensure it continues to be maintained and receive updates.
  2997. If custom features are needed feel free to contact me
  2998. directly (mailto:support@spawn.link).
  2999. .SH LINKS
  3000. .IP \[bu] 2
  3001. https://spawn.link
  3002. .IP \[bu] 2
  3003. https://github.com/trapexit/mergerfs
  3004. .IP \[bu] 2
  3005. https://github.com/trapexit/mergerfs/wiki
  3006. .IP \[bu] 2
  3007. https://github.com/trapexit/mergerfs-tools
  3008. .IP \[bu] 2
  3009. https://github.com/trapexit/scorch
  3010. .IP \[bu] 2
  3011. https://github.com/trapexit/bbf