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.

2701 lines
103 KiB

7 years ago
7 years ago
8 years ago
9 years ago
8 years ago
8 years ago
8 years ago
8 years ago
5 years ago
8 years ago
8 years ago
8 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
8 years ago
9 years ago
8 years ago
9 years ago
9 years ago
8 years ago
9 years ago
8 years ago
9 years ago
8 years ago
9 years ago
9 years ago
8 years ago
8 years ago
5 years ago
4 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
7 years ago
5 years ago
5 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
8 years ago
8 years ago
5 years ago
5 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
9 years ago
8 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
8 years ago
4 years ago
4 years ago
7 years ago
7 years ago
8 years ago
8 years ago
8 years ago
  1. .\"t
  2. .\" Automatically generated by Pandoc 1.19.2.4
  3. .\"
  4. .TH "mergerfs" "1" "2020\-08\-02" "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[] 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[], \f[B]unionfs\f[], and \f[B]aufs\f[].
  18. .SH FEATURES
  19. .IP \[bu] 2
  20. Runs in userspace (FUSE)
  21. .IP \[bu] 2
  22. Configurable behaviors / file placement
  23. .IP \[bu] 2
  24. Support for extended attributes (xattrs)
  25. .IP \[bu] 2
  26. Support for file attributes (chattr)
  27. .IP \[bu] 2
  28. Runtime configurable (via xattrs)
  29. .IP \[bu] 2
  30. Safe to run as root
  31. .IP \[bu] 2
  32. Opportunistic credential caching
  33. .IP \[bu] 2
  34. Works with heterogeneous filesystem types
  35. .IP \[bu] 2
  36. Handling of writes to full drives (transparently move file to drive with
  37. capacity)
  38. .IP \[bu] 2
  39. Handles pool of read\-only and read/write drives
  40. .IP \[bu] 2
  41. Can turn read\-only files into symlinks to underlying file
  42. .IP \[bu] 2
  43. Hard link copy\-on\-write / CoW
  44. .IP \[bu] 2
  45. supports POSIX ACLs
  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[]
  75. .fi
  76. .PP
  77. mergerfs does \f[B]not\f[] support the copy\-on\-write (CoW) behavior
  78. found in \f[B]aufs\f[] and \f[B]overlayfs\f[].
  79. You can \f[B]not\f[] mount a read\-only filesystem and write to it.
  80. However, mergerfs will ignore read\-only drives when creating new files
  81. so you can mix read\-write and read\-only drives.
  82. It also does \f[B]not\f[] split data across drives.
  83. It is not RAID0 / striping.
  84. It is simply a union.
  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. policy: The algorithm used to select a file when performing a function.
  95. .IP \[bu] 2
  96. function: A filesystem call (open, unlink, create, getattr, etc.)
  97. .IP \[bu] 2
  98. category: A collection of functions (action, create, search).
  99. .IP \[bu] 2
  100. path preservation: Aspect of some policies which includes checking the
  101. path for which a file would be created.
  102. .SH BASIC SETUP
  103. .PP
  104. If you don\[aq]t already know that you have a special use case then just
  105. start with one of the following option sets.
  106. .SS You don\[aq]t need \f[C]mmap\f[]
  107. .PP
  108. \f[C]use_ino,cache.files=off,dropcacheonclose=true,allow_other,category.create=mfs\f[]
  109. .SS You do need \f[C]mmap\f[] (used by rtorrent and some other programs)
  110. .PP
  111. \f[C]use_ino,cache.files=partial,dropcacheonclose=true,allow_other,category.create=mfs\f[]
  112. .PP
  113. See the mergerfs wiki for real world
  114. deployments (https://github.com/trapexit/mergerfs/wiki/Real-World-Deployments)
  115. for comparisons / ideas.
  116. .SH OPTIONS
  117. .SS mount options
  118. .IP \[bu] 2
  119. \f[B]config\f[]: Path to a config file.
  120. Same arguments as below in key=val format.
  121. .IP \[bu] 2
  122. \f[B]branches\f[]: Colon delimited list of branches.
  123. .IP \[bu] 2
  124. \f[B]allow_other\f[]: A libfuse option which allows users besides the
  125. one which ran mergerfs to see the filesystem.
  126. This is required for most use\-cases.
  127. .IP \[bu] 2
  128. \f[B]minfreespace=SIZE\f[]: The minimum space value used for creation
  129. policies.
  130. Understands \[aq]K\[aq], \[aq]M\[aq], and \[aq]G\[aq] to represent
  131. kilobyte, megabyte, and gigabyte respectively.
  132. (default: 4G)
  133. .IP \[bu] 2
  134. \f[B]moveonenospc=BOOL|POLICY\f[]: When enabled if a \f[B]write\f[]
  135. fails with \f[B]ENOSPC\f[] (no space left on device) or \f[B]EDQUOT\f[]
  136. (disk quota exceeded) the policy selected will run to find a new
  137. location for the file.
  138. An attempt to move the file to that branch will occur (keeping all
  139. metadata possible) and if successful the original is unlinked and the
  140. write retried.
  141. (default: false, true = mfs)
  142. .IP \[bu] 2
  143. \f[B]use_ino\f[]: Causes mergerfs to supply file/directory inodes rather
  144. than libfuse.
  145. While not a default it is recommended it be enabled so that linked files
  146. share the same inode value.
  147. .IP \[bu] 2
  148. \f[B]inodecalc=passthrough|path\-hash|devino\-hash|hybrid\-hash\f[]:
  149. Selects the inode calculation algorithm.
  150. (default: hybrid\-hash)
  151. .IP \[bu] 2
  152. \f[B]dropcacheonclose=BOOL\f[]: When a file is requested to be closed
  153. call \f[C]posix_fadvise\f[] on it first to instruct the kernel that we
  154. no longer need the data and it can drop its cache.
  155. Recommended when \f[B]cache.files=partial|full|auto\-full\f[] to limit
  156. double caching.
  157. (default: false)
  158. .IP \[bu] 2
  159. \f[B]symlinkify=BOOL\f[]: When enabled and a file is not writable and
  160. its mtime or ctime is older than \f[B]symlinkify_timeout\f[] files will
  161. be reported as symlinks to the original files.
  162. Please read more below before using.
  163. (default: false)
  164. .IP \[bu] 2
  165. \f[B]symlinkify_timeout=INT\f[]: Time to wait, in seconds, to activate
  166. the \f[B]symlinkify\f[] behavior.
  167. (default: 3600)
  168. .IP \[bu] 2
  169. \f[B]nullrw=BOOL\f[]: Turns reads and writes into no\-ops.
  170. The request will succeed but do nothing.
  171. Useful for benchmarking mergerfs.
  172. (default: false)
  173. .IP \[bu] 2
  174. \f[B]ignorepponrename=BOOL\f[]: Ignore path preserving on rename.
  175. Typically rename and link act differently depending on the policy of
  176. \f[C]create\f[] (read below).
  177. Enabling this will cause rename and link to always use the non\-path
  178. preserving behavior.
  179. This means files, when renamed or linked, will stay on the same drive.
  180. (default: false)
  181. .IP \[bu] 2
  182. \f[B]security_capability=BOOL\f[]: If false return ENOATTR when xattr
  183. security.capability is queried.
  184. (default: true)
  185. .IP \[bu] 2
  186. \f[B]xattr=passthrough|noattr|nosys\f[]: Runtime control of xattrs.
  187. Default is to passthrough xattr requests.
  188. \[aq]noattr\[aq] will short circuit as if nothing exists.
  189. \[aq]nosys\[aq] will respond with ENOSYS as if xattrs are not supported
  190. or disabled.
  191. (default: passthrough)
  192. .IP \[bu] 2
  193. \f[B]link_cow=BOOL\f[]: When enabled if a regular file is opened which
  194. has a link count > 1 it will copy the file to a temporary file and
  195. rename over the original.
  196. Breaking the link and providing a basic copy\-on\-write function similar
  197. to cow\-shell.
  198. (default: false)
  199. .IP \[bu] 2
  200. \f[B]statfs=base|full\f[]: Controls how statfs works.
  201. \[aq]base\[aq] means it will always use all branches in statfs
  202. calculations.
  203. \[aq]full\[aq] is in effect path preserving and only includes drives
  204. where the path exists.
  205. (default: base)
  206. .IP \[bu] 2
  207. \f[B]statfs_ignore=none|ro|nc\f[]: \[aq]ro\[aq] will cause statfs
  208. calculations to ignore available space for branches mounted or tagged as
  209. \[aq]read\-only\[aq] or \[aq]no create\[aq].
  210. \[aq]nc\[aq] will ignore available space for branches tagged as \[aq]no
  211. create\[aq].
  212. (default: none)
  213. .IP \[bu] 2
  214. \f[B]nfsopenhack=off|git|all\f[]: A workaround for exporting mergerfs
  215. over NFS where there are issues with creating files for write while
  216. setting the mode to read\-only.
  217. (default: off)
  218. .IP \[bu] 2
  219. \f[B]posix_acl=BOOL\f[]: Enable POSIX ACL support (if supported by
  220. kernel and underlying filesystem).
  221. (default: false)
  222. .IP \[bu] 2
  223. \f[B]async_read=BOOL\f[]: Perform reads asynchronously.
  224. If disabled or unavailable the kernel will ensure there is at most one
  225. pending read request per file handle and will attempt to order requests
  226. by offset.
  227. (default: true)
  228. .IP \[bu] 2
  229. \f[B]fuse_msg_size=INT\f[]: Set the max number of pages per FUSE
  230. message.
  231. Only available on Linux >= 4.20 and ignored otherwise.
  232. (min: 1; max: 256; default: 256)
  233. .IP \[bu] 2
  234. \f[B]threads=INT\f[]: Number of threads to use in multithreaded mode.
  235. When set to zero it will attempt to discover and use the number of
  236. logical cores.
  237. If the lookup fails it will fall back to using 4.
  238. If the thread count is set negative it will look up the number of cores
  239. then divide by the absolute value.
  240. ie.
  241. threads=\-2 on an 8 core machine will result in 8 / 2 = 4 threads.
  242. There will always be at least 1 thread.
  243. NOTE: higher number of threads increases parallelism but usually
  244. decreases throughput.
  245. (default: 0)
  246. .IP \[bu] 2
  247. \f[B]fsname=STR\f[]: Sets the name of the filesystem as seen in
  248. \f[B]mount\f[], \f[B]df\f[], etc.
  249. Defaults to a list of the source paths concatenated together with the
  250. longest common prefix removed.
  251. .IP \[bu] 2
  252. \f[B]func.FUNC=POLICY\f[]: Sets the specific FUSE function\[aq]s policy.
  253. See below for the list of value types.
  254. Example: \f[B]func.getattr=newest\f[]
  255. .IP \[bu] 2
  256. \f[B]category.CATEGORY=POLICY\f[]: Sets policy of all FUSE functions in
  257. the provided category.
  258. See POLICIES section for defaults.
  259. Example: \f[B]category.create=mfs\f[]
  260. .IP \[bu] 2
  261. \f[B]cache.open=INT\f[]: \[aq]open\[aq] policy cache timeout in seconds.
  262. (default: 0)
  263. .IP \[bu] 2
  264. \f[B]cache.statfs=INT\f[]: \[aq]statfs\[aq] cache timeout in seconds.
  265. (default: 0)
  266. .IP \[bu] 2
  267. \f[B]cache.attr=INT\f[]: File attribute cache timeout in seconds.
  268. (default: 1)
  269. .IP \[bu] 2
  270. \f[B]cache.entry=INT\f[]: File name lookup cache timeout in seconds.
  271. (default: 1)
  272. .IP \[bu] 2
  273. \f[B]cache.negative_entry=INT\f[]: Negative file name lookup cache
  274. timeout in seconds.
  275. (default: 0)
  276. .IP \[bu] 2
  277. \f[B]cache.files=libfuse|off|partial|full|auto\-full\f[]: File page
  278. caching mode (default: libfuse)
  279. .IP \[bu] 2
  280. \f[B]cache.writeback=BOOL\f[]: Enable kernel writeback caching (default:
  281. false)
  282. .IP \[bu] 2
  283. \f[B]cache.symlinks=BOOL\f[]: Cache symlinks (if supported by kernel)
  284. (default: false)
  285. .IP \[bu] 2
  286. \f[B]cache.readdir=BOOL\f[]: Cache readdir (if supported by kernel)
  287. (default: false)
  288. .IP \[bu] 2
  289. \f[B]direct_io\f[]: deprecated \- Bypass page cache.
  290. Use \f[C]cache.files=off\f[] instead.
  291. (default: false)
  292. .IP \[bu] 2
  293. \f[B]kernel_cache\f[]: deprecated \- Do not invalidate data cache on
  294. file open.
  295. Use \f[C]cache.files=full\f[] instead.
  296. (default: false)
  297. .IP \[bu] 2
  298. \f[B]auto_cache\f[]: deprecated \- Invalidate data cache if file mtime
  299. or size change.
  300. Use \f[C]cache.files=auto\-full\f[] instead.
  301. (default: false)
  302. .IP \[bu] 2
  303. \f[B]async_read\f[]: deprecated \- Perform reads asynchronously.
  304. Use \f[C]async_read=true\f[] instead.
  305. .IP \[bu] 2
  306. \f[B]sync_read\f[]: deprecated \- Perform reads synchronously.
  307. Use \f[C]async_read=false\f[] instead.
  308. .PP
  309. \f[B]NOTE:\f[] Options are evaluated in the order listed so if the
  310. options are \f[B]func.rmdir=rand,category.action=ff\f[] the
  311. \f[B]action\f[] category setting will override the \f[B]rmdir\f[]
  312. setting.
  313. .SS Value Types
  314. .IP \[bu] 2
  315. BOOL = \[aq]true\[aq] | \[aq]false\[aq]
  316. .IP \[bu] 2
  317. INT = [0,MAX_INT]
  318. .IP \[bu] 2
  319. SIZE = \[aq]NNM\[aq]; NN = INT, M = \[aq]K\[aq] | \[aq]M\[aq] |
  320. \[aq]G\[aq] | \[aq]T\[aq]
  321. .IP \[bu] 2
  322. STR = string
  323. .IP \[bu] 2
  324. FUNC = FUSE function
  325. .IP \[bu] 2
  326. CATEGORY = FUSE function category
  327. .IP \[bu] 2
  328. POLICY = mergerfs function policy
  329. .SS branches
  330. .PP
  331. The \[aq]branches\[aq] (formerly \[aq]srcmounts\[aq]) argument is a
  332. colon (\[aq]:\[aq]) delimited list of paths to be pooled together.
  333. It does not matter if the paths are on the same or different drives nor
  334. does it matter the filesystem.
  335. Used and available space will not be duplicated for paths on the same
  336. device and any features which aren\[aq]t supported by the underlying
  337. filesystem (such as file attributes or extended attributes) will return
  338. the appropriate errors.
  339. .PP
  340. To make it easier to include multiple branches mergerfs supports
  341. globbing (http://linux.die.net/man/7/glob).
  342. \f[B]The globbing tokens MUST be escaped when using via the shell else
  343. the shell itself will apply the glob itself.\f[]
  344. .PP
  345. Each branch can have a suffix of \f[C]=RW\f[] (read / write),
  346. \f[C]=RO\f[] (read\-only), or \f[C]=NC\f[] (no create).
  347. These suffixes work with globs as well and will apply to each path
  348. found.
  349. \f[C]RW\f[] is the default behavior and those paths will be eligible for
  350. all policy categories.
  351. \f[C]RO\f[] will exclude those paths from \f[C]create\f[] and
  352. \f[C]action\f[] policies (just as a filesystem being mounted \f[C]ro\f[]
  353. would).
  354. \f[C]NC\f[] will exclude those paths from \f[C]create\f[] policies (you
  355. can\[aq]t create but you can change / delete).
  356. .IP
  357. .nf
  358. \f[C]
  359. #\ mergerfs\ \-o\ allow_other,use_ino\ /mnt/disk\\*:/mnt/cdrom\ /media/drives
  360. \f[]
  361. .fi
  362. .PP
  363. The above line will use all mount points in /mnt prefixed with
  364. \f[B]disk\f[] and the \f[B]cdrom\f[].
  365. .PP
  366. To have the pool mounted at boot or otherwise accessible from related
  367. tools use \f[B]/etc/fstab\f[].
  368. .IP
  369. .nf
  370. \f[C]
  371. #\ <file\ system>\ \ \ \ \ \ \ \ <mount\ point>\ \ <type>\ \ \ \ \ \ \ \ \ <options>\ \ \ \ \ \ \ \ \ \ \ \ \ <dump>\ \ <pass>
  372. /mnt/disk*:/mnt/cdrom\ \ /mnt/pool\ \ \ \ \ \ fuse.mergerfs\ \ allow_other,use_ino\ \ \ 0\ \ \ \ \ \ \ 0
  373. \f[]
  374. .fi
  375. .PP
  376. \f[B]NOTE:\f[] the globbing is done at mount or xattr update time (see
  377. below).
  378. If a new directory is added matching the glob after the fact it will not
  379. be automatically included.
  380. .PP
  381. \f[B]NOTE:\f[] for mounting via \f[B]fstab\f[] to work you must have
  382. \f[B]mount.fuse\f[] installed.
  383. For Ubuntu/Debian it is included in the \f[B]fuse\f[] package.
  384. .SS inodecalc
  385. .PP
  386. Inodes (st_ino) are unique identifiers within a filesystem.
  387. Each mounted filesystem has device ID (st_dev) as well and together they
  388. can uniquely identify a file on the whole of the system.
  389. Entries on the same device with the same inode are in fact references to
  390. the same underlying file.
  391. It is a many to one relationship between names and an inode.
  392. Directories, however, do not have multiple links on most systems due to
  393. the complexity they add.
  394. .PP
  395. FUSE allows the server (mergerfs) to set inode values but not device
  396. IDs.
  397. Creating an inode value is somewhat complex in mergerfs\[aq] case as
  398. files aren\[aq]t really in its control.
  399. If a policy changes what directory or file is to be selected or
  400. something changes out of band it becomes unclear what value should be
  401. used.
  402. Most software does not to care what the values are but those that do
  403. often break if a value changes unexpectedly.
  404. The tool \f[C]find\f[] will abort a directory walk if it sees a
  405. directory inode change.
  406. NFS will return stale handle errors if the inode changes out of band.
  407. File dedup tools will usually leverage device ids and inodes as a
  408. shortcut in searching for duplicate files and would resort to full file
  409. comparisons should it find different inode values.
  410. .PP
  411. mergerfs offers multiple ways to calculate the inode in hopes of
  412. covering different usecases.
  413. .IP \[bu] 2
  414. passthrough: Passes through the underlying inode value.
  415. Mostly intended for testing as using this does not address any of the
  416. problems mentioned above and could confuse file deduplication software
  417. as inodes from different filesystems can be the same.
  418. .IP \[bu] 2
  419. path\-hash: Hashes the relative path of the entry in question.
  420. The underlying file\[aq]s values are completely ignored.
  421. This means the inode value will always be the same for that file path.
  422. This is useful when using NFS and you make changes out of band such as
  423. copy data between branches.
  424. This also means that entries that do point to the same file will not be
  425. recognizable via inodes.
  426. That \f[B]does not\f[] mean hard links don\[aq]t work.
  427. They will.
  428. .IP \[bu] 2
  429. devino\-hash: Hashes the device id and inode of the underlying entry.
  430. This won\[aq]t prevent issues with NFS should the policy pick a
  431. different file or files move out of band but will present the same inode
  432. for underlying files that do too.
  433. .IP \[bu] 2
  434. hybrid\-hash: Performs \f[C]path\-hash\f[] on directories and
  435. \f[C]devino\-hash\f[] on other file types.
  436. Since directories can\[aq]t have hard links the static value won\[aq]t
  437. make a difference and the files will get values useful for finding
  438. duplicates.
  439. Probably the best to use if not using NFS.
  440. As such it is the default.
  441. .PP
  442. While there is a risk of hash collision in tests of a couple million
  443. entries there were zero collisions.
  444. Unlike a typical filesystem FUSE filesystems can reuse inodes and not
  445. refer to the same entry.
  446. The internal identifier used to reference a file in FUSE is different
  447. from the inode value presented.
  448. The former is the \f[C]nodeid\f[] and is actually a tuple of 2 64bit
  449. values: \f[C]nodeid\f[] and \f[C]generation\f[].
  450. This tuple is not client facing.
  451. The inode that is presented to the client is passed through the kernel
  452. uninterpreted.
  453. .PP
  454. From FUSE docs regarding \f[C]use_ino\f[]:
  455. .IP
  456. .nf
  457. \f[C]
  458. Honor\ the\ st_ino\ field\ in\ the\ functions\ getattr()\ and
  459. fill_dir().\ This\ value\ is\ used\ to\ fill\ in\ the\ st_ino\ field
  460. in\ the\ stat(2),\ lstat(2),\ fstat(2)\ functions\ and\ the\ d_ino
  461. field\ in\ the\ readdir(2)\ function.\ The\ filesystem\ does\ not
  462. have\ to\ guarantee\ uniqueness,\ however\ some\ applications
  463. rely\ on\ this\ value\ being\ unique\ for\ the\ whole\ filesystem.
  464. Note\ that\ this\ does\ *not*\ affect\ the\ inode\ that\ libfuse
  465. and\ the\ kernel\ use\ internally\ (also\ called\ the\ "nodeid").
  466. \f[]
  467. .fi
  468. .PP
  469. In the future the \f[C]use_ino\f[] option will probably be removed as
  470. this feature should replace the original libfuse inode calculation
  471. strategy.
  472. Currently you still need to use \f[C]use_ino\f[] in order to enable
  473. \f[C]inodecalc\f[].
  474. .SS fuse_msg_size
  475. .PP
  476. FUSE applications communicate with the kernel over a special character
  477. device: \f[C]/dev/fuse\f[].
  478. A large portion of the overhead associated with FUSE is the cost of
  479. going back and forth from user space and kernel space over that device.
  480. Generally speaking the fewer trips needed the better the performance
  481. will be.
  482. Reducing the number of trips can be done a number of ways.
  483. Kernel level caching and increasing message sizes being two significant
  484. ones.
  485. When it comes to reads and writes if the message size is doubled the
  486. number of trips are approximately halved.
  487. .PP
  488. In Linux 4.20 a new feature was added allowing the negotiation of the
  489. max message size.
  490. Since the size is in multiples of
  491. pages (https://en.wikipedia.org/wiki/Page_(computer_memory)) the feature
  492. is called \f[C]max_pages\f[].
  493. There is a maximum \f[C]max_pages\f[] value of 256 (1MiB) and minimum of
  494. 1 (4KiB).
  495. The default used by Linux >=4.20, and hardcoded value used before 4.20,
  496. is 32 (128KiB).
  497. In mergerfs its referred to as \f[C]fuse_msg_size\f[] to make it clear
  498. what it impacts and provide some abstraction.
  499. .PP
  500. Since there should be no downsides to increasing \f[C]fuse_msg_size\f[]
  501. / \f[C]max_pages\f[], outside a minor bump in RAM usage due to larger
  502. message buffers, mergerfs defaults the value to 256.
  503. On kernels before 4.20 the value has no effect.
  504. The reason the value is configurable is to enable experimentation and
  505. benchmarking.
  506. See the BENCHMARKING section for examples.
  507. .SS symlinkify
  508. .PP
  509. Due to the levels of indirection introduced by mergerfs and the
  510. underlying technology FUSE there can be varying levels of performance
  511. degradation.
  512. This feature will turn non\-directories which are not writable into
  513. symlinks to the original file found by the \f[C]readlink\f[] policy
  514. after the mtime and ctime are older than the timeout.
  515. .PP
  516. \f[B]WARNING:\f[] The current implementation has a known issue in which
  517. if the file is open and being used when the file is converted to a
  518. symlink then the application which has that file open will receive an
  519. error when using it.
  520. This is unlikely to occur in practice but is something to keep in mind.
  521. .PP
  522. \f[B]WARNING:\f[] Some backup solutions, such as CrashPlan, do not
  523. backup the target of a symlink.
  524. If using this feature it will be necessary to point any backup software
  525. to the original drives or configure the software to follow symlinks if
  526. such an option is available.
  527. Alternatively create two mounts.
  528. One for backup and one for general consumption.
  529. .SS nullrw
  530. .PP
  531. Due to how FUSE works there is an overhead to all requests made to a
  532. FUSE filesystem that wouldn\[aq]t exist for an in kernel one.
  533. Meaning that even a simple passthrough will have some slowdown.
  534. However, generally the overhead is minimal in comparison to the cost of
  535. the underlying I/O.
  536. By disabling the underlying I/O we can test the theoretical performance
  537. boundaries.
  538. .PP
  539. By enabling \f[C]nullrw\f[] mergerfs will work as it always does
  540. \f[B]except\f[] that all reads and writes will be no\-ops.
  541. A write will succeed (the size of the write will be returned as if it
  542. were successful) but mergerfs does nothing with the data it was given.
  543. Similarly a read will return the size requested but won\[aq]t touch the
  544. buffer.
  545. .PP
  546. See the BENCHMARKING section for suggestions on how to test.
  547. .SS xattr
  548. .PP
  549. Runtime extended attribute support can be managed via the \f[C]xattr\f[]
  550. option.
  551. By default it will passthrough any xattr calls.
  552. Given xattr support is rarely used and can have significant performance
  553. implications mergerfs allows it to be disabled at runtime.
  554. The performance problems mostly comes when file caching is enabled.
  555. The kernel will send a \f[C]getxattr\f[] for
  556. \f[C]security.capability\f[] \f[I]before every single write\f[].
  557. It doesn\[aq]t cache the responses to any \f[C]getxattr\f[].
  558. This might be addressed in the future but for now mergerfs can really
  559. only offer the following workarounds.
  560. .PP
  561. \f[C]noattr\f[] will cause mergerfs to short circuit all xattr calls and
  562. return ENOATTR where appropriate.
  563. mergerfs still gets all the requests but they will not be forwarded on
  564. to the underlying filesystems.
  565. The runtime control will still function in this mode.
  566. .PP
  567. \f[C]nosys\f[] will cause mergerfs to return ENOSYS for any xattr call.
  568. The difference with \f[C]noattr\f[] is that the kernel will cache this
  569. fact and itself short circuit future calls.
  570. This is more efficient than \f[C]noattr\f[] but will cause mergerfs\[aq]
  571. runtime control via the hidden file to stop working.
  572. .SS nfsopenhack
  573. .PP
  574. NFS is not fully POSIX compliant and historically certain behaviors,
  575. such as opening files with O_EXCL, are not or not well supported.
  576. When mergerfs (or any FUSE filesystem) is exported over NFS some of
  577. these issues come up due to how NFS and FUSE interact.
  578. .PP
  579. This hack addresses the issue where the creation of a file with a
  580. read\-only mode but with a read/write or write only flag.
  581. Normally this is perfectly valid but NFS chops the one open call into
  582. multiple calls.
  583. Exactly how it is translated depends on the configuration and versions
  584. of the NFS server and clients but it results in a permission error
  585. because a normal user is not allowed to open a read\-only file as
  586. writable.
  587. .PP
  588. Even though it\[aq]s a more niche stituation this hack breaks normal
  589. security and behavior and as such is \f[C]off\f[] by default.
  590. If set to \f[C]git\f[] it will only perform the hack when the path in
  591. question includes \f[C]/.git/\f[].
  592. \f[C]all\f[] will result it it applying anytime a readonly file which is
  593. empty is opened for writing.
  594. .SH FUNCTIONS / POLICIES / CATEGORIES
  595. .PP
  596. The POSIX filesystem API is made up of a number of functions.
  597. \f[B]creat\f[], \f[B]stat\f[], \f[B]chown\f[], etc.
  598. For ease of configuration in mergerfs most of the core functions are
  599. grouped into 3 categories: \f[B]action\f[], \f[B]create\f[], and
  600. \f[B]search\f[].
  601. These functions and categories can be assigned a policy which dictates
  602. which underlying branch/file/directory is chosen when performing that
  603. behavior.
  604. Any policy can be assigned to a function or category though some may not
  605. be very useful in practice.
  606. For instance: \f[B]rand\f[] (random) may be useful for file creation
  607. (create) but could lead to very odd behavior if used for \f[C]chmod\f[]
  608. if there were more than one copy of the file.
  609. .PP
  610. Some functions, listed in the category \f[C]N/A\f[] below, can not be
  611. assigned the normal policies.
  612. All functions which work on file handles use the handle which was
  613. acquired by \f[C]open\f[] or \f[C]create\f[].
  614. \f[C]readdir\f[] has no real need for a policy given the purpose is
  615. merely to return a list of entries in a directory.
  616. \f[C]statfs\f[]\[aq]s behavior can be modified via other options.
  617. That said many times the current FUSE kernel driver will not always
  618. provide the file handle when a client calls \f[C]fgetattr\f[],
  619. \f[C]fchown\f[], \f[C]fchmod\f[], \f[C]futimens\f[], \f[C]ftruncate\f[],
  620. etc.
  621. This means it will call the regular, path based, versions.
  622. .PP
  623. When using policies which are based on a branch\[aq]s available space
  624. the base path provided is used.
  625. Not the full path to the file in question.
  626. Meaning that sub mounts won\[aq]t be considered in the space
  627. calculations.
  628. The reason is that it doesn\[aq]t really work for non\-path preserving
  629. policies and can lead to non\-obvious behaviors.
  630. .SS Functions and their Category classifications
  631. .PP
  632. .TS
  633. tab(@);
  634. lw(7.9n) lw(62.1n).
  635. T{
  636. Category
  637. T}@T{
  638. FUSE Functions
  639. T}
  640. _
  641. T{
  642. action
  643. T}@T{
  644. chmod, chown, link, removexattr, rename, rmdir, setxattr, truncate,
  645. unlink, utimens
  646. T}
  647. T{
  648. create
  649. T}@T{
  650. create, mkdir, mknod, symlink
  651. T}
  652. T{
  653. search
  654. T}@T{
  655. access, getattr, getxattr, ioctl (directories), listxattr, open,
  656. readlink
  657. T}
  658. T{
  659. N/A
  660. T}@T{
  661. fchmod, fchown, futimens, ftruncate, fallocate, fgetattr, fsync, ioctl
  662. (files), read, readdir, release, statfs, write, copy_file_range
  663. T}
  664. .TE
  665. .PP
  666. In cases where something may be searched (to confirm a directory exists
  667. across all source mounts) \f[B]getattr\f[] will be used.
  668. .SS Path Preservation
  669. .PP
  670. Policies, as described below, are of two basic types.
  671. \f[C]path\ preserving\f[] and \f[C]non\-path\ preserving\f[].
  672. .PP
  673. All policies which start with \f[C]ep\f[] (\f[B]epff\f[],
  674. \f[B]eplfs\f[], \f[B]eplus\f[], \f[B]epmfs\f[], \f[B]eprand\f[]) are
  675. \f[C]path\ preserving\f[].
  676. \f[C]ep\f[] stands for \f[C]existing\ path\f[].
  677. .PP
  678. A path preserving policy will only consider drives where the relative
  679. path being accessed already exists.
  680. .PP
  681. When using non\-path preserving policies paths will be cloned to target
  682. drives as necessary.
  683. .PP
  684. With the \f[C]msp\f[] or \f[C]most\ shared\ path\f[] policies they are
  685. defined as \f[C]path\ preserving\f[] for the purpose of controlling
  686. \f[C]link\f[] and \f[C]rename\f[]\[aq]s behaviors since
  687. \f[C]ignorepponrename\f[] is available to disable that behavior.
  688. In mergerfs v3.0 the path preserving behavior of rename and link will
  689. likely be separated from the policy all together.
  690. .SS Filters
  691. .PP
  692. Policies basically search branches and create a list of files / paths
  693. for functions to work on.
  694. The policy is responsible for filtering and sorting.
  695. Filters include \f[B]minfreespace\f[], whether or not a branch is
  696. mounted read\-only, and the branch tagging (RO,NC,RW).
  697. The policy defines the sorting but filtering is mostly uniform as
  698. described below.
  699. .IP \[bu] 2
  700. No \f[B]search\f[] policies filter.
  701. .IP \[bu] 2
  702. All \f[B]action\f[] policies will filter out branches which are mounted
  703. \f[B]read\-only\f[] or tagged as \f[B]RO (read\-only)\f[].
  704. .IP \[bu] 2
  705. All \f[B]create\f[] policies will filter out branches which are mounted
  706. \f[B]read\-only\f[], tagged \f[B]RO (read\-only)\f[] or \f[B]NC (no
  707. create)\f[], or has available space less than \f[C]minfreespace\f[].
  708. .PP
  709. If all branches are filtered an error will be returned.
  710. Typically \f[B]EROFS\f[] (read\-only filesystem) or \f[B]ENOSPC\f[] (no
  711. space left on device) depending on the most recent reason for filtering
  712. a branch.
  713. .SS Policy descriptions
  714. .PP
  715. Because of the nature of the behavior the policies act diffierently
  716. depending on the function it is used with (based on the category).
  717. .PP
  718. .TS
  719. tab(@);
  720. lw(16.6n) lw(53.4n).
  721. T{
  722. Policy
  723. T}@T{
  724. Description
  725. T}
  726. _
  727. T{
  728. all
  729. T}@T{
  730. Search: same as \f[B]epall\f[].
  731. Action: same as \f[B]epall\f[].
  732. Create: for \f[B]mkdir\f[], \f[B]mknod\f[], and \f[B]symlink\f[] it will
  733. apply to all branches.
  734. \f[B]create\f[] works like \f[B]ff\f[].
  735. T}
  736. T{
  737. epall (existing path, all)
  738. T}@T{
  739. Search: same as \f[B]epff\f[] (but more expensive because it doesn\[aq]t
  740. stop after finding a valid branch).
  741. Action: apply to all found.
  742. Create: for \f[B]mkdir\f[], \f[B]mknod\f[], and \f[B]symlink\f[] it will
  743. apply to all found.
  744. \f[B]create\f[] works like \f[B]epff\f[] (but more expensive because it
  745. doesn\[aq]t stop after finding a valid branch).
  746. T}
  747. T{
  748. epff (existing path, first found)
  749. T}@T{
  750. Given the order of the branches, as defined at mount time or configured
  751. at runtime, act on the first one found where the relative path exists.
  752. T}
  753. T{
  754. eplfs (existing path, least free space)
  755. T}@T{
  756. Of all the branches on which the relative path exists choose the drive
  757. with the least free space.
  758. T}
  759. T{
  760. eplus (existing path, least used space)
  761. T}@T{
  762. Of all the branches on which the relative path exists choose the drive
  763. with the least used space.
  764. T}
  765. T{
  766. epmfs (existing path, most free space)
  767. T}@T{
  768. Of all the branches on which the relative path exists choose the drive
  769. with the most free space.
  770. T}
  771. T{
  772. eprand (existing path, random)
  773. T}@T{
  774. Calls \f[B]epall\f[] and then randomizes.
  775. Returns 1.
  776. T}
  777. T{
  778. erofs
  779. T}@T{
  780. Exclusively return \f[B]\-1\f[] with \f[B]errno\f[] set to
  781. \f[B]EROFS\f[] (read\-only filesystem).
  782. T}
  783. T{
  784. ff (first found)
  785. T}@T{
  786. Search: same as \f[B]epff\f[].
  787. Action: same as \f[B]epff\f[].
  788. Create: Given the order of the drives, as defined at mount time or
  789. configured at runtime, act on the first one found.
  790. T}
  791. T{
  792. lfs (least free space)
  793. T}@T{
  794. Search: same as \f[B]eplfs\f[].
  795. Action: same as \f[B]eplfs\f[].
  796. Create: Pick the drive with the least available free space.
  797. T}
  798. T{
  799. lus (least used space)
  800. T}@T{
  801. Search: same as \f[B]eplus\f[].
  802. Action: same as \f[B]eplus\f[].
  803. Create: Pick the drive with the least used space.
  804. T}
  805. T{
  806. mfs (most free space)
  807. T}@T{
  808. Search: same as \f[B]epmfs\f[].
  809. Action: same as \f[B]epmfs\f[].
  810. Create: Pick the drive with the most available free space.
  811. T}
  812. T{
  813. msplfs (most shared path, least free space)
  814. T}@T{
  815. Search: same as \f[B]eplfs\f[].
  816. Action: same as \f[B]eplfs\f[].
  817. Create: like \f[B]eplfs\f[] but walk back the path if it fails to find a
  818. branch at that level.
  819. T}
  820. T{
  821. msplus (most shared path, least used space)
  822. T}@T{
  823. Search: same as \f[B]eplus\f[].
  824. Action: same as \f[B]eplus\f[].
  825. Create: like \f[B]eplus\f[] but walk back the path if it fails to find a
  826. branch at that level.
  827. T}
  828. T{
  829. mspmfs (most shared path, most free space)
  830. T}@T{
  831. Search: same as \f[B]epmfss\f[].
  832. Action: same as \f[B]epmfs\f[].
  833. Create: like \f[B]eplmfs\f[] but walk back the path if it fails to find
  834. a branch at that level.
  835. T}
  836. T{
  837. newest
  838. T}@T{
  839. Pick the file / directory with the largest mtime.
  840. T}
  841. T{
  842. rand (random)
  843. T}@T{
  844. Calls \f[B]all\f[] and then randomizes.
  845. Returns 1.
  846. T}
  847. .TE
  848. .PP
  849. \f[B]NOTE:\f[] If you are using an underlying filesystem that reserves
  850. blocks such as ext2, ext3, or ext4 be aware that mergerfs respects the
  851. reservation by using \f[C]f_bavail\f[] (number of free blocks for
  852. unprivileged users) rather than \f[C]f_bfree\f[] (number of free blocks)
  853. in policy calculations.
  854. \f[B]df\f[] does NOT use \f[C]f_bavail\f[], it uses \f[C]f_bfree\f[], so
  855. direct comparisons between \f[B]df\f[] output and mergerfs\[aq] policies
  856. is not appropriate.
  857. .SS Defaults
  858. .PP
  859. .TS
  860. tab(@);
  861. l l.
  862. T{
  863. Category
  864. T}@T{
  865. Policy
  866. T}
  867. _
  868. T{
  869. action
  870. T}@T{
  871. epall
  872. T}
  873. T{
  874. create
  875. T}@T{
  876. epmfs
  877. T}
  878. T{
  879. search
  880. T}@T{
  881. ff
  882. T}
  883. .TE
  884. .SS ioctl
  885. .PP
  886. When \f[C]ioctl\f[] is used with an open file then it will use the file
  887. handle which was created at the original \f[C]open\f[] call.
  888. However, when using \f[C]ioctl\f[] with a directory mergerfs will use
  889. the \f[C]open\f[] policy to find the directory to act on.
  890. .SS unlink
  891. .PP
  892. In FUSE there is an opaque "file handle" which is created by
  893. \f[C]open\f[], \f[C]create\f[], or \f[C]opendir\f[], passed to the
  894. kernel, and then is passed back to the FUSE userland application by the
  895. kernel.
  896. Unfortunately, the FUSE kernel driver does not always send the file
  897. handle when it theoretically could/should.
  898. This complicates certain behaviors / workflows particularly in the high
  899. level API.
  900. As a result mergerfs is currently doing a few hacky things.
  901. .PP
  902. libfuse2 and libfuse3, when using the high level API, will rename names
  903. to \f[C]\&.fuse_hiddenXXXXXX\f[] if the file is open when unlinked or
  904. renamed over.
  905. It does this so the file is still available when a request referencing
  906. the now missing file is made.
  907. This file however keeps a \f[C]rmdir\f[] from succeeding and can be
  908. picked up by software reading directories.
  909. .PP
  910. The change mergerfs has done is that if a file is open when an unlink or
  911. rename happens it will open the file and keep it open till closed by all
  912. those who opened it prior.
  913. When a request comes in referencing that file and it doesn\[aq]t include
  914. a file handle it will instead use the file handle created at
  915. unlink/rename time.
  916. .PP
  917. This won\[aq]t result in technically proper behavior but close enough
  918. for many usecases.
  919. .PP
  920. The plan is to rewrite mergerfs to use the low level API so these
  921. invasive libfuse changes are no longer necessary.
  922. .SS rename & link
  923. .PP
  924. \f[B]NOTE:\f[] If you\[aq]re receiving errors from software when files
  925. are moved / renamed / linked then you should consider changing the
  926. create policy to one which is \f[B]not\f[] path preserving, enabling
  927. \f[C]ignorepponrename\f[], or contacting the author of the offending
  928. software and requesting that \f[C]EXDEV\f[] (cross device / improper
  929. link) be properly handled.
  930. .PP
  931. \f[C]rename\f[] and \f[C]link\f[] are tricky functions in a union
  932. filesystem.
  933. \f[C]rename\f[] only works within a single filesystem or device.
  934. If a rename can\[aq]t be done atomically due to the source and
  935. destination paths existing on different mount points it will return
  936. \f[B]\-1\f[] with \f[B]errno = EXDEV\f[] (cross device / improper link).
  937. So if a \f[C]rename\f[]\[aq]s source and target are on different drives
  938. within the pool it creates an issue.
  939. .PP
  940. Originally mergerfs would return EXDEV whenever a rename was requested
  941. which was cross directory in any way.
  942. This made the code simple and was technically compliant with POSIX
  943. requirements.
  944. However, many applications fail to handle EXDEV at all and treat it as a
  945. normal error or otherwise handle it poorly.
  946. Such apps include: gvfsd\-fuse v1.20.3 and prior, Finder / CIFS/SMB
  947. client in Apple OSX 10.9+, NZBGet, Samba\[aq]s recycling bin feature.
  948. .PP
  949. As a result a compromise was made in order to get most software to work
  950. while still obeying mergerfs\[aq] policies.
  951. Below is the basic logic.
  952. .IP \[bu] 2
  953. If using a \f[B]create\f[] policy which tries to preserve directory
  954. paths (epff,eplfs,eplus,epmfs)
  955. .IP \[bu] 2
  956. Using the \f[B]rename\f[] policy get the list of files to rename
  957. .IP \[bu] 2
  958. For each file attempt rename:
  959. .RS 2
  960. .IP \[bu] 2
  961. If failure with ENOENT (no such file or directory) run \f[B]create\f[]
  962. policy
  963. .IP \[bu] 2
  964. If create policy returns the same drive as currently evaluating then
  965. clone the path
  966. .IP \[bu] 2
  967. Re\-attempt rename
  968. .RE
  969. .IP \[bu] 2
  970. If \f[B]any\f[] of the renames succeed the higher level rename is
  971. considered a success
  972. .IP \[bu] 2
  973. If \f[B]no\f[] renames succeed the first error encountered will be
  974. returned
  975. .IP \[bu] 2
  976. On success:
  977. .RS 2
  978. .IP \[bu] 2
  979. Remove the target from all drives with no source file
  980. .IP \[bu] 2
  981. Remove the source from all drives which failed to rename
  982. .RE
  983. .IP \[bu] 2
  984. If using a \f[B]create\f[] policy which does \f[B]not\f[] try to
  985. preserve directory paths
  986. .IP \[bu] 2
  987. Using the \f[B]rename\f[] policy get the list of files to rename
  988. .IP \[bu] 2
  989. Using the \f[B]getattr\f[] policy get the target path
  990. .IP \[bu] 2
  991. For each file attempt rename:
  992. .RS 2
  993. .IP \[bu] 2
  994. If the source drive != target drive:
  995. .IP \[bu] 2
  996. Clone target path from target drive to source drive
  997. .IP \[bu] 2
  998. Rename
  999. .RE
  1000. .IP \[bu] 2
  1001. If \f[B]any\f[] of the renames succeed the higher level rename is
  1002. considered a success
  1003. .IP \[bu] 2
  1004. If \f[B]no\f[] renames succeed the first error encountered will be
  1005. returned
  1006. .IP \[bu] 2
  1007. On success:
  1008. .RS 2
  1009. .IP \[bu] 2
  1010. Remove the target from all drives with no source file
  1011. .IP \[bu] 2
  1012. Remove the source from all drives which failed to rename
  1013. .RE
  1014. .PP
  1015. The the removals are subject to normal entitlement checks.
  1016. .PP
  1017. The above behavior will help minimize the likelihood of EXDEV being
  1018. returned but it will still be possible.
  1019. .PP
  1020. \f[B]link\f[] uses the same strategy but without the removals.
  1021. .SS readdir
  1022. .PP
  1023. readdir (http://linux.die.net/man/3/readdir) is different from all other
  1024. filesystem functions.
  1025. While it could have its own set of policies to tweak its behavior at
  1026. this time it provides a simple union of files and directories found.
  1027. Remember that any action or information queried about these files and
  1028. directories come from the respective function.
  1029. For instance: an \f[B]ls\f[] is a \f[B]readdir\f[] and for each
  1030. file/directory returned \f[B]getattr\f[] is called.
  1031. Meaning the policy of \f[B]getattr\f[] is responsible for choosing the
  1032. file/directory which is the source of the metadata you see in an
  1033. \f[B]ls\f[].
  1034. .SS statfs / statvfs
  1035. .PP
  1036. statvfs (http://linux.die.net/man/2/statvfs) normalizes the source
  1037. drives based on the fragment size and sums the number of adjusted blocks
  1038. and inodes.
  1039. This means you will see the combined space of all sources.
  1040. Total, used, and free.
  1041. The sources however are dedupped based on the drive so multiple sources
  1042. on the same drive will not result in double counting its space.
  1043. Filesystems mounted further down the tree of the branch will not be
  1044. included when checking the mount\[aq]s stats.
  1045. .PP
  1046. The options \f[C]statfs\f[] and \f[C]statfs_ignore\f[] can be used to
  1047. modify \f[C]statfs\f[] behavior.
  1048. .SH BUILD / UPDATE
  1049. .PP
  1050. \f[B]NOTE:\f[] Prebuilt packages can be found at:
  1051. https://github.com/trapexit/mergerfs/releases
  1052. .PP
  1053. First get the code from github (https://github.com/trapexit/mergerfs).
  1054. .IP
  1055. .nf
  1056. \f[C]
  1057. $\ git\ clone\ https://github.com/trapexit/mergerfs.git
  1058. $\ #\ or
  1059. $\ wget\ https://github.com/trapexit/mergerfs/releases/download/<ver>/mergerfs\-<ver>.tar.gz
  1060. \f[]
  1061. .fi
  1062. .SS Debian / Ubuntu
  1063. .IP
  1064. .nf
  1065. \f[C]
  1066. $\ cd\ mergerfs
  1067. $\ sudo\ tools/install\-build\-pkgs
  1068. $\ make\ deb
  1069. $\ sudo\ dpkg\ \-i\ ../mergerfs_version_arch.deb
  1070. \f[]
  1071. .fi
  1072. .SS RHEL / CentOS /Fedora
  1073. .IP
  1074. .nf
  1075. \f[C]
  1076. $\ su\ \-
  1077. #\ cd\ mergerfs
  1078. #\ tools/install\-build\-pkgs
  1079. #\ make\ rpm
  1080. #\ rpm\ \-i\ rpmbuild/RPMS/<arch>/mergerfs\-<version>.<arch>.rpm
  1081. \f[]
  1082. .fi
  1083. .SS Generically
  1084. .PP
  1085. Have git, g++, make, python installed.
  1086. .IP
  1087. .nf
  1088. \f[C]
  1089. $\ cd\ mergerfs
  1090. $\ make
  1091. $\ sudo\ make\ install
  1092. \f[]
  1093. .fi
  1094. .SS Build options
  1095. .IP
  1096. .nf
  1097. \f[C]
  1098. $\ make\ help
  1099. usage:\ make
  1100. make\ USE_XATTR=0\ \ \ \ \ \ \-\ build\ program\ without\ xattrs\ functionality
  1101. make\ STATIC=1\ \ \ \ \ \ \ \ \ \-\ build\ static\ binary
  1102. make\ LTO=1\ \ \ \ \ \ \ \ \ \ \ \ \-\ build\ with\ link\ time\ optimization
  1103. \f[]
  1104. .fi
  1105. .SH RUNTIME CONFIG
  1106. .SS ioctl
  1107. .PP
  1108. The original runtime config API was via xattr calls.
  1109. This however became an issue when needing to disable xattr.
  1110. While slightly less convenient ioctl does not have the same problems and
  1111. will be the main API going forward.
  1112. .PP
  1113. The keys are the same as the command line option arguments as well as
  1114. the config file.
  1115. .SS requests / commands
  1116. .PP
  1117. All commands take a 4096 byte char buffer.
  1118. .IP \[bu] 2
  1119. read keys: get a nul \[aq]\[aq] delimited list of option keys
  1120. .IP \[bu] 2
  1121. _IOWR(0xDF,0,char[4096]) = 0xD000DF00
  1122. .IP \[bu] 2
  1123. on success ioctl return value is the total length
  1124. .IP \[bu] 2
  1125. read value: get an option value
  1126. .IP \[bu] 2
  1127. _IOWR(0xDF,1,char[4096]) = 0xD000DF01
  1128. .IP \[bu] 2
  1129. the key is passed in via the char buffer as a nul \[aq]\[aq] terminated
  1130. string
  1131. .IP \[bu] 2
  1132. on success ioctl return value is the total length
  1133. .IP \[bu] 2
  1134. write value: set an option value
  1135. .IP \[bu] 2
  1136. _IOW(0xDF,2,char[4096]) = 0x5000DF02
  1137. .IP \[bu] 2
  1138. the key and value is passed in via the char buffer as a nul \[aq]\[aq]
  1139. terminated string in the format of \f[C]key=value\f[]
  1140. .IP \[bu] 2
  1141. on success ioctl return value is 0
  1142. .IP \[bu] 2
  1143. file info: get mergerfs metadata info for a file
  1144. .IP \[bu] 2
  1145. _IOWR(0xDF,3,char[4096]) = 0xD000DF03
  1146. .IP \[bu] 2
  1147. the key is passed in via the char buffer as a nul \[aq]\[aq] terminated
  1148. string
  1149. .IP \[bu] 2
  1150. on success the ioctl return value is the total length
  1151. .IP \[bu] 2
  1152. keys:
  1153. .RS 2
  1154. .IP \[bu] 2
  1155. basepath: the base mount point for the file according to the getattr
  1156. policy
  1157. .IP \[bu] 2
  1158. relpath: the relative path of the file from the mount point
  1159. .IP \[bu] 2
  1160. fullpath: the full path of the underlying file according to the getattr
  1161. policy
  1162. .IP \[bu] 2
  1163. allpaths: a NUL \[aq]\[aq] delimited list of full paths to all files
  1164. found
  1165. .RE
  1166. .SS .mergerfs pseudo file (deprecated)
  1167. .PP
  1168. NOTE: this interface will be removed in mergerfs 3.0
  1169. .IP
  1170. .nf
  1171. \f[C]
  1172. <mountpoint>/.mergerfs
  1173. \f[]
  1174. .fi
  1175. .PP
  1176. There is a pseudo file available at the mount point which allows for the
  1177. runtime modification of certain \f[B]mergerfs\f[] options.
  1178. The file will not show up in \f[B]readdir\f[] but can be
  1179. \f[B]stat\f[]\[aq]ed and manipulated via
  1180. {list,get,set}xattrs (http://linux.die.net/man/2/listxattr) calls.
  1181. .PP
  1182. Any changes made at runtime are \f[B]not\f[] persisted.
  1183. If you wish for values to persist they must be included as options
  1184. wherever you configure the mounting of mergerfs (/etc/fstab).
  1185. .SS Keys
  1186. .PP
  1187. Use \f[C]xattr\ \-l\ /mountpoint/.mergerfs\f[] to see all supported
  1188. keys.
  1189. Some are informational and therefore read\-only.
  1190. \f[C]setxattr\f[] will return EINVAL (invalid argument) on read\-only
  1191. keys.
  1192. .SS Values
  1193. .PP
  1194. Same as the command line.
  1195. .SS user.mergerfs.branches
  1196. .PP
  1197. \f[B]NOTE:\f[] formerly \f[C]user.mergerfs.srcmounts\f[] but said key is
  1198. still supported.
  1199. .PP
  1200. Used to query or modify the list of branches.
  1201. When modifying there are several shortcuts to easy manipulation of the
  1202. list.
  1203. .PP
  1204. .TS
  1205. tab(@);
  1206. l l.
  1207. T{
  1208. Value
  1209. T}@T{
  1210. Description
  1211. T}
  1212. _
  1213. T{
  1214. [list]
  1215. T}@T{
  1216. set
  1217. T}
  1218. T{
  1219. +<[list]
  1220. T}@T{
  1221. prepend
  1222. T}
  1223. T{
  1224. +>[list]
  1225. T}@T{
  1226. append
  1227. T}
  1228. T{
  1229. \-[list]
  1230. T}@T{
  1231. remove all values provided
  1232. T}
  1233. T{
  1234. \-<
  1235. T}@T{
  1236. remove first in list
  1237. T}
  1238. T{
  1239. \->
  1240. T}@T{
  1241. remove last in list
  1242. T}
  1243. .TE
  1244. .PP
  1245. \f[C]xattr\ \-w\ user.mergerfs.branches\ +</mnt/drive3\ /mnt/pool/.mergerfs\f[]
  1246. .PP
  1247. The \f[C]=NC\f[], \f[C]=RO\f[], \f[C]=RW\f[] syntax works just as on the
  1248. command line.
  1249. .SS Example
  1250. .IP
  1251. .nf
  1252. \f[C]
  1253. [trapexit:/mnt/mergerfs]\ $\ xattr\ \-l\ .mergerfs
  1254. user.mergerfs.branches:\ /mnt/a=RW:/mnt/b=RW
  1255. user.mergerfs.minfreespace:\ 4294967295
  1256. user.mergerfs.moveonenospc:\ false
  1257. \&...
  1258. [trapexit:/mnt/mergerfs]\ $\ xattr\ \-p\ user.mergerfs.category.search\ .mergerfs
  1259. ff
  1260. [trapexit:/mnt/mergerfs]\ $\ xattr\ \-w\ user.mergerfs.category.search\ newest\ .mergerfs
  1261. [trapexit:/mnt/mergerfs]\ $\ xattr\ \-p\ user.mergerfs.category.search\ .mergerfs
  1262. newest
  1263. [trapexit:/mnt/mergerfs]\ $\ xattr\ \-w\ user.mergerfs.branches\ +/mnt/c\ .mergerfs
  1264. [trapexit:/mnt/mergerfs]\ $\ xattr\ \-p\ user.mergerfs.branches\ .mergerfs
  1265. /mnt/a:/mnt/b:/mnt/c
  1266. [trapexit:/mnt/mergerfs]\ $\ xattr\ \-w\ user.mergerfs.branches\ =/mnt/c\ .mergerfs
  1267. [trapexit:/mnt/mergerfs]\ $\ xattr\ \-p\ user.mergerfs.branches\ .mergerfs
  1268. /mnt/c
  1269. [trapexit:/mnt/mergerfs]\ $\ xattr\ \-w\ user.mergerfs.branches\ \[aq]+</mnt/a:/mnt/b\[aq]\ .mergerfs
  1270. [trapexit:/mnt/mergerfs]\ $\ xattr\ \-p\ user.mergerfs.branches\ .mergerfs
  1271. /mnt/a:/mnt/b:/mnt/c
  1272. \f[]
  1273. .fi
  1274. .SS file / directory xattrs
  1275. .PP
  1276. While they won\[aq]t show up when using
  1277. listxattr (http://linux.die.net/man/2/listxattr) \f[B]mergerfs\f[]
  1278. offers a number of special xattrs to query information about the files
  1279. served.
  1280. To access the values you will need to issue a
  1281. getxattr (http://linux.die.net/man/2/getxattr) for one of the following:
  1282. .IP \[bu] 2
  1283. \f[B]user.mergerfs.basepath\f[]: the base mount point for the file given
  1284. the current getattr policy
  1285. .IP \[bu] 2
  1286. \f[B]user.mergerfs.relpath\f[]: the relative path of the file from the
  1287. perspective of the mount point
  1288. .IP \[bu] 2
  1289. \f[B]user.mergerfs.fullpath\f[]: the full path of the original file
  1290. given the getattr policy
  1291. .IP \[bu] 2
  1292. \f[B]user.mergerfs.allpaths\f[]: a NUL (\[aq]\[aq]) separated list of
  1293. full paths to all files found
  1294. .IP
  1295. .nf
  1296. \f[C]
  1297. [trapexit:/mnt/mergerfs]\ $\ ls
  1298. A\ B\ C
  1299. [trapexit:/mnt/mergerfs]\ $\ xattr\ \-p\ user.mergerfs.fullpath\ A
  1300. /mnt/a/full/path/to/A
  1301. [trapexit:/mnt/mergerfs]\ $\ xattr\ \-p\ user.mergerfs.basepath\ A
  1302. /mnt/a
  1303. [trapexit:/mnt/mergerfs]\ $\ xattr\ \-p\ user.mergerfs.relpath\ A
  1304. /full/path/to/A
  1305. [trapexit:/mnt/mergerfs]\ $\ xattr\ \-p\ user.mergerfs.allpaths\ A\ |\ tr\ \[aq]\\0\[aq]\ \[aq]\\n\[aq]
  1306. /mnt/a/full/path/to/A
  1307. /mnt/b/full/path/to/A
  1308. \f[]
  1309. .fi
  1310. .SH UPGRADE
  1311. .PP
  1312. mergerfs can be upgraded live by mounting on top of the previous
  1313. version.
  1314. Simply install the new version of mergerfs and follow the instructions
  1315. below.
  1316. .PP
  1317. Add \f[C]nonempty\f[] to your mergerfs option list and call mergerfs
  1318. again or if using \f[C]/etc/fstab\f[] call for it to mount again.
  1319. Existing open files and such will continue to work fine though they
  1320. won\[aq]t see runtime changes since any such change would be the new
  1321. mount.
  1322. If you plan on changing settings with the new mount you should / could
  1323. apply those before mounting the new version.
  1324. .IP
  1325. .nf
  1326. \f[C]
  1327. $\ sudo\ mount\ /mnt/mergerfs
  1328. $\ mount\ |\ grep\ mergerfs
  1329. media\ on\ /mnt/mergerfs\ type\ fuse.mergerfs\ (rw,relatime,user_id=0,group_id=0,default_permissions,allow_other)
  1330. media\ on\ /mnt/mergerfs\ type\ fuse.mergerfs\ (rw,relatime,user_id=0,group_id=0,default_permissions,allow_other)
  1331. \f[]
  1332. .fi
  1333. .SH TOOLING
  1334. .IP \[bu] 2
  1335. https://github.com/trapexit/mergerfs\-tools
  1336. .IP \[bu] 2
  1337. mergerfs.ctl: A tool to make it easier to query and configure mergerfs
  1338. at runtime
  1339. .IP \[bu] 2
  1340. mergerfs.fsck: Provides permissions and ownership auditing and the
  1341. ability to fix them
  1342. .IP \[bu] 2
  1343. mergerfs.dedup: Will help identify and optionally remove duplicate files
  1344. .IP \[bu] 2
  1345. mergerfs.dup: Ensure there are at least N copies of a file across the
  1346. pool
  1347. .IP \[bu] 2
  1348. mergerfs.balance: Rebalance files across drives by moving them from the
  1349. most filled to the least filled
  1350. .IP \[bu] 2
  1351. mergerfs.consolidate: move files within a single mergerfs directory to
  1352. the drive with most free space
  1353. .IP \[bu] 2
  1354. mergerfs.mktrash: Creates FreeDesktop.org Trash specification compatible
  1355. directories on a mergerfs mount
  1356. .IP \[bu] 2
  1357. https://github.com/trapexit/scorch
  1358. .IP \[bu] 2
  1359. scorch: A tool to help discover silent corruption of files and keep
  1360. track of files
  1361. .IP \[bu] 2
  1362. https://github.com/trapexit/bbf
  1363. .IP \[bu] 2
  1364. bbf (bad block finder): a tool to scan for and \[aq]fix\[aq] hard drive
  1365. bad blocks and find the files using those blocks
  1366. .SH CACHING
  1367. .SS page caching
  1368. .PP
  1369. https://en.wikipedia.org/wiki/Page_cache
  1370. .PP
  1371. tl;dr: * cache.files=off: Disables page caching.
  1372. Underlying files cached, mergerfs files are not.
  1373. * cache.files=partial: Enables page caching.
  1374. Underlying files cached, mergerfs files cached while open.
  1375. * cache.files=full: Enables page caching.
  1376. Underlying files cached, mergerfs files cached across opens.
  1377. * cache.files=auto\-full: Enables page caching.
  1378. Underlying files cached, mergerfs files cached across opens if mtime and
  1379. size are unchanged since previous open.
  1380. * cache.files=libfuse: follow traditional libfuse \f[C]direct_io\f[],
  1381. \f[C]kernel_cache\f[], and \f[C]auto_cache\f[] arguments.
  1382. .PP
  1383. FUSE, which mergerfs uses, offers a number of page caching modes.
  1384. mergerfs tries to simplify their use via the \f[C]cache.files\f[]
  1385. option.
  1386. It can and should replace usage of \f[C]direct_io\f[],
  1387. \f[C]kernel_cache\f[], and \f[C]auto_cache\f[].
  1388. .PP
  1389. Due to mergerfs using FUSE and therefore being a userland process
  1390. proxying existing filesystems the kernel will double cache the content
  1391. being read and written through mergerfs.
  1392. Once from the underlying filesystem and once from mergerfs (it sees them
  1393. as two separate entities).
  1394. Using \f[C]cache.files=off\f[] will keep the double caching from
  1395. happening by disabling caching of mergerfs but this has the side effect
  1396. that \f[I]all\f[] read and write calls will be passed to mergerfs which
  1397. may be slower than enabling caching, you lose shared \f[C]mmap\f[]
  1398. support which can affect apps such as rtorrent, and no read\-ahead will
  1399. take place.
  1400. The kernel will still cache the underlying filesystem data but that only
  1401. helps so much given mergerfs will still process all requests.
  1402. .PP
  1403. If you do enable file page caching,
  1404. \f[C]cache.files=partial|full|auto\-full\f[], you should also enable
  1405. \f[C]dropcacheonclose\f[] which will cause mergerfs to instruct the
  1406. kernel to flush the underlying file\[aq]s page cache when the file is
  1407. closed.
  1408. This behavior is the same as the rsync fadvise / drop cache patch and
  1409. Feh\[aq]s nocache project.
  1410. .PP
  1411. If most files are read once through and closed (like media) it is best
  1412. to enable \f[C]dropcacheonclose\f[] regardless of caching mode in order
  1413. to minimize buffer bloat.
  1414. .PP
  1415. It is difficult to balance memory usage, cache bloat & duplication, and
  1416. performance.
  1417. Ideally mergerfs would be able to disable caching for the files it
  1418. reads/writes but allow page caching for itself.
  1419. That would limit the FUSE overhead.
  1420. However, there isn\[aq]t a good way to achieve this.
  1421. It would need to open all files with O_DIRECT which places limitations
  1422. on the what underlying filesystems would be supported and complicates
  1423. the code.
  1424. .PP
  1425. kernel documentation:
  1426. https://www.kernel.org/doc/Documentation/filesystems/fuse\-io.txt
  1427. .SS entry & attribute caching
  1428. .PP
  1429. Given the relatively high cost of FUSE due to the kernel <\-> userspace
  1430. round trips there are kernel side caches for file entries and
  1431. attributes.
  1432. The entry cache limits the \f[C]lookup\f[] calls to mergerfs which ask
  1433. if a file exists.
  1434. The attribute cache limits the need to make \f[C]getattr\f[] calls to
  1435. mergerfs which provide file attributes (mode, size, type, etc.).
  1436. As with the page cache these should not be used if the underlying
  1437. filesystems are being manipulated at the same time as it could lead to
  1438. odd behavior or data corruption.
  1439. The options for setting these are \f[C]cache.entry\f[] and
  1440. \f[C]cache.negative_entry\f[] for the entry cache and
  1441. \f[C]cache.attr\f[] for the attributes cache.
  1442. \f[C]cache.negative_entry\f[] refers to the timeout for negative
  1443. responses to lookups (non\-existent files).
  1444. .SS writeback caching
  1445. .PP
  1446. When \f[C]cache.files\f[] is enabled the default is for it to perform
  1447. writethrough caching.
  1448. This behavior won\[aq]t help improve performance as each write still
  1449. goes one for one through the filesystem.
  1450. By enabling the FUSE writeback cache small writes may be aggregated by
  1451. the kernel and then sent to mergerfs as one larger request.
  1452. This can greatly improve the throughput for apps which write to files
  1453. inefficiently.
  1454. The amount the kernel can aggregate is limited by the size of a FUSE
  1455. message.
  1456. Read the \f[C]fuse_msg_size\f[] section for more details.
  1457. .PP
  1458. There is a small side effect as a result of enabling wrtieback caching.
  1459. Underlying files won\[aq]t ever be opened with O_APPEND or O_WRONLY.
  1460. The former because the kernel then manages append mode and the latter
  1461. because the kernel may request file data from mergerfs to populate the
  1462. write cache.
  1463. The O_APPEND change means that if a file is changed outside of mergerfs
  1464. it could lead to corruption as the kernel won\[aq]t know the end of the
  1465. file has changed.
  1466. That said any time you use caching you should keep from using the same
  1467. file outside of mergerfs at the same time.
  1468. .PP
  1469. Note that if an application is properly sizing writes then writeback
  1470. caching will have little or no effect.
  1471. It will only help with writes of sizes below the FUSE message size (128K
  1472. on older kernels, 1M on newer).
  1473. .SS policy caching
  1474. .PP
  1475. Policies are run every time a function (with a policy as mentioned
  1476. above) is called.
  1477. These policies can be expensive depending on mergerfs\[aq] setup and
  1478. client usage patterns.
  1479. Generally we wouldn\[aq]t want to cache policy results because it may
  1480. result in stale responses if the underlying drives are used directly.
  1481. .PP
  1482. The \f[C]open\f[] policy cache will cache the result of an \f[C]open\f[]
  1483. policy for a particular input for \f[C]cache.open\f[] seconds or until
  1484. the file is unlinked.
  1485. Each file close (release) will randomly chose to clean up the cache of
  1486. expired entries.
  1487. .PP
  1488. This cache is really only useful in cases where you have a large number
  1489. of branches and \f[C]open\f[] is called on the same files repeatedly
  1490. (like \f[B]Transmission\f[] which opens and closes a file on every
  1491. read/write presumably to keep file handle usage low).
  1492. .SS statfs caching
  1493. .PP
  1494. Of the syscalls used by mergerfs in policies the \f[C]statfs\f[] /
  1495. \f[C]statvfs\f[] call is perhaps the most expensive.
  1496. It\[aq]s used to find out the available space of a drive and whether it
  1497. is mounted read\-only.
  1498. Depending on the setup and usage pattern these queries can be relatively
  1499. costly.
  1500. When \f[C]cache.statfs\f[] is enabled all calls to \f[C]statfs\f[] by a
  1501. policy will be cached for the number of seconds its set to.
  1502. .PP
  1503. Example: If the create policy is \f[C]mfs\f[] and the timeout is 60 then
  1504. for that 60 seconds the same drive will be returned as the target for
  1505. creates because the available space won\[aq]t be updated for that time.
  1506. .SS symlink caching
  1507. .PP
  1508. As of version 4.20 Linux supports symlink caching.
  1509. Significant performance increases can be had in workloads which use a
  1510. lot of symlinks.
  1511. Setting \f[C]cache.symlinks=true\f[] will result in requesting symlink
  1512. caching from the kernel only if supported.
  1513. As a result its safe to enable it on systems prior to 4.20.
  1514. That said it is disabled by default for now.
  1515. You can see if caching is enabled by querying the xattr
  1516. \f[C]user.mergerfs.cache.symlinks\f[] but given it must be requested at
  1517. startup you can not change it at runtime.
  1518. .SS readdir caching
  1519. .PP
  1520. As of version 4.20 Linux supports readdir caching.
  1521. This can have a significant impact on directory traversal.
  1522. Especially when combined with entry (\f[C]cache.entry\f[]) and attribute
  1523. (\f[C]cache.attr\f[]) caching.
  1524. Setting \f[C]cache.readdir=true\f[] will result in requesting readdir
  1525. caching from the kernel on each \f[C]opendir\f[].
  1526. If the kernel doesn\[aq]t support readdir caching setting the option to
  1527. \f[C]true\f[] has no effect.
  1528. This option is configurable at runtime via xattr
  1529. \f[C]user.mergerfs.cache.readdir\f[].
  1530. .SS tiered caching
  1531. .PP
  1532. Some storage technologies support what some call "tiered" caching.
  1533. The placing of usually smaller, faster storage as a transparent cache to
  1534. larger, slower storage.
  1535. NVMe, SSD, Optane in front of traditional HDDs for instance.
  1536. .PP
  1537. MergerFS does not natively support any sort of tiered caching.
  1538. Most users have no use for such a feature and its inclusion would
  1539. complicate the code.
  1540. However, there are a few situations where a cache drive could help with
  1541. a typical mergerfs setup.
  1542. .IP "1." 3
  1543. Fast network, slow drives, many readers: You\[aq]ve a 10+Gbps network
  1544. with many readers and your regular drives can\[aq]t keep up.
  1545. .IP "2." 3
  1546. Fast network, slow drives, small\[aq]ish bursty writes: You have a
  1547. 10+Gbps network and wish to transfer amounts of data less than your
  1548. cache drive but wish to do so quickly.
  1549. .PP
  1550. With #1 its arguable if you should be using mergerfs at all.
  1551. RAID would probably be the better solution.
  1552. If you\[aq]re going to use mergerfs there are other tactics that may
  1553. help: spreading the data across drives (see the mergerfs.dup tool) and
  1554. setting \f[C]func.open=rand\f[], using \f[C]symlinkify\f[], or using
  1555. dm\-cache or a similar technology to add tiered cache to the underlying
  1556. device.
  1557. .PP
  1558. With #2 one could use dm\-cache as well but there is another solution
  1559. which requires only mergerfs and a cronjob.
  1560. .IP "1." 3
  1561. Create 2 mergerfs pools.
  1562. One which includes just the slow drives and one which has both the fast
  1563. drives (SSD,NVME,etc.) and slow drives.
  1564. .IP "2." 3
  1565. The \[aq]cache\[aq] pool should have the cache drives listed first.
  1566. .IP "3." 3
  1567. The best \f[C]create\f[] policies to use for the \[aq]cache\[aq] pool
  1568. would probably be \f[C]ff\f[], \f[C]epff\f[], \f[C]lfs\f[], or
  1569. \f[C]eplfs\f[].
  1570. The latter two under the assumption that the cache drive(s) are far
  1571. smaller than the backing drives.
  1572. If using path preserving policies remember that you\[aq]ll need to
  1573. manually create the core directories of those paths you wish to be
  1574. cached.
  1575. Be sure the permissions are in sync.
  1576. Use \f[C]mergerfs.fsck\f[] to check / correct them.
  1577. You could also tag the slow drives as \f[C]=NC\f[] though that\[aq]d
  1578. mean if the cache drives fill you\[aq]d get "out of space" errors.
  1579. .IP "4." 3
  1580. Enable \f[C]moveonenospc\f[] and set \f[C]minfreespace\f[]
  1581. appropriately.
  1582. To make sure there is enough room on the "slow" pool you might want to
  1583. set \f[C]minfreespace\f[] to at least as large as the size of the
  1584. largest cache drive if not larger.
  1585. This way in the worst case the whole of the cache drive(s) can be moved
  1586. to the other drives.
  1587. .IP "5." 3
  1588. Set your programs to use the cache pool.
  1589. .IP "6." 3
  1590. Save one of the below scripts or create you\[aq]re own.
  1591. .IP "7." 3
  1592. Use \f[C]cron\f[] (as root) to schedule the command at whatever
  1593. frequency is appropriate for your workflow.
  1594. .SS time based expiring
  1595. .PP
  1596. Move files from cache to backing pool based only on the last time the
  1597. file was accessed.
  1598. Replace \f[C]\-atime\f[] with \f[C]\-amin\f[] if you want minutes rather
  1599. than days.
  1600. May want to use the \f[C]fadvise\f[] / \f[C]\-\-drop\-cache\f[] version
  1601. of rsync or run rsync with the tool "nocache".
  1602. .IP
  1603. .nf
  1604. \f[C]
  1605. #!/bin/bash
  1606. if\ [\ $#\ !=\ 3\ ];\ then
  1607. \ \ echo\ "usage:\ $0\ <cache\-drive>\ <backing\-pool>\ <days\-old>"
  1608. \ \ exit\ 1
  1609. fi
  1610. CACHE="${1}"
  1611. BACKING="${2}"
  1612. N=${3}
  1613. find\ "${CACHE}"\ \-type\ f\ \-atime\ +${N}\ \-printf\ \[aq]%P\\n\[aq]\ |\ \\
  1614. \ \ rsync\ \-\-files\-from=\-\ \-axqHAXWES\ \-\-preallocate\ \-\-remove\-source\-files\ "${CACHE}/"\ "${BACKING}/"
  1615. \f[]
  1616. .fi
  1617. .SS percentage full expiring
  1618. .PP
  1619. Move the oldest file from the cache to the backing pool.
  1620. Continue till below percentage threshold.
  1621. .IP
  1622. .nf
  1623. \f[C]
  1624. #!/bin/bash
  1625. if\ [\ $#\ !=\ 3\ ];\ then
  1626. \ \ echo\ "usage:\ $0\ <cache\-drive>\ <backing\-pool>\ <percentage>"
  1627. \ \ exit\ 1
  1628. fi
  1629. CACHE="${1}"
  1630. BACKING="${2}"
  1631. PERCENTAGE=${3}
  1632. set\ \-o\ errexit
  1633. while\ [\ $(df\ \-\-output=pcent\ "${CACHE}"\ |\ grep\ \-v\ Use\ |\ cut\ \-d\[aq]%\[aq]\ \-f1)\ \-gt\ ${PERCENTAGE}\ ]
  1634. do
  1635. \ \ \ \ FILE=$(find\ "${CACHE}"\ \-type\ f\ \-printf\ \[aq]%A\@\ %P\\n\[aq]\ |\ \\
  1636. \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ sort\ |\ \\
  1637. \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ head\ \-n\ 1\ |\ \\
  1638. \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ cut\ \-d\[aq]\ \[aq]\ \-f2\-)
  1639. \ \ \ \ test\ \-n\ "${FILE}"
  1640. \ \ \ \ rsync\ \-axqHAXWES\ \-\-preallocate\ \-\-remove\-source\-files\ "${CACHE}/./${FILE}"\ "${BACKING}/"
  1641. done
  1642. \f[]
  1643. .fi
  1644. .SH PERFORMANCE
  1645. .PP
  1646. mergerfs is at its core just a proxy and therefore its theoretical max
  1647. performance is that of the underlying devices.
  1648. However, given it is a FUSE filesystem working from userspace there is
  1649. an increase in overhead relative to kernel based solutions.
  1650. That said the performance can match the theoretical max but it depends
  1651. greatly on the system\[aq]s configuration.
  1652. Especially when adding network filesystems into the mix there are many
  1653. variables which can impact performance.
  1654. Drive speeds and latency, network speeds and latency, general
  1655. concurrency, read/write sizes, etc.
  1656. Unfortunately, given the number of variables it has been difficult to
  1657. find a single set of settings which provide optimal performance.
  1658. If you\[aq]re having performance issues please look over the suggestions
  1659. below (including the benchmarking section.)
  1660. .PP
  1661. NOTE: be sure to read about these features before changing them to
  1662. understand what behaviors it may impact
  1663. .IP \[bu] 2
  1664. enable (or disable) \f[C]splice_move\f[], \f[C]splice_read\f[], and
  1665. \f[C]splice_write\f[]
  1666. .IP \[bu] 2
  1667. disable \f[C]security_capability\f[] and/or \f[C]xattr\f[]
  1668. .IP \[bu] 2
  1669. increase cache timeouts \f[C]cache.attr\f[], \f[C]cache.entry\f[],
  1670. \f[C]cache.negative_entry\f[]
  1671. .IP \[bu] 2
  1672. enable (or disable) page caching (\f[C]cache.files\f[])
  1673. .IP \[bu] 2
  1674. enable \f[C]cache.writeback\f[]
  1675. .IP \[bu] 2
  1676. enable \f[C]cache.open\f[]
  1677. .IP \[bu] 2
  1678. enable \f[C]cache.statfs\f[]
  1679. .IP \[bu] 2
  1680. enable \f[C]cache.symlinks\f[]
  1681. .IP \[bu] 2
  1682. enable \f[C]cache.readdir\f[]
  1683. .IP \[bu] 2
  1684. change the number of worker threads
  1685. .IP \[bu] 2
  1686. disable \f[C]posix_acl\f[]
  1687. .IP \[bu] 2
  1688. disable \f[C]async_read\f[]
  1689. .IP \[bu] 2
  1690. test theoretical performance using \f[C]nullrw\f[] or mounting a ram
  1691. disk
  1692. .IP \[bu] 2
  1693. use \f[C]symlinkify\f[] if your data is largely static and read\-only
  1694. .IP \[bu] 2
  1695. use tiered cache drives
  1696. .IP \[bu] 2
  1697. use LVM and LVM cache to place a SSD in front of your HDDs
  1698. .PP
  1699. If you come across a setting that significantly impacts performance
  1700. please contact trapexit so he may investigate further.
  1701. .SH BENCHMARKING
  1702. .PP
  1703. Filesystems are complicated.
  1704. They do many things and many of those are interconnected.
  1705. Additionally, the OS, drivers, hardware, etc.
  1706. all can impact performance.
  1707. Therefore, when benchmarking, it is \f[B]necessary\f[] that the test
  1708. focus as narrowly as possible.
  1709. .PP
  1710. For most throughput is the key benchmark.
  1711. To test throughput \f[C]dd\f[] is useful but \f[B]must\f[] be used with
  1712. the correct settings in order to ensure the filesystem or device is
  1713. actually being tested.
  1714. The OS can and will cache data.
  1715. Without forcing synchronous reads and writes and/or disabling caching
  1716. the values returned will not be representative of the device\[aq]s true
  1717. performance.
  1718. .PP
  1719. When benchmarking through mergerfs ensure you only use 1 branch to
  1720. remove any possibility of the policies complicating the situation.
  1721. Benchmark the underlying filesystem first and then mount mergerfs over
  1722. it and test again.
  1723. If you\[aq]re experience speeds below your expectation you will need to
  1724. narrow down precisely which component is leading to the slowdown.
  1725. Preferably test the following in the order listed (but not combined).
  1726. .IP "1." 3
  1727. Enable \f[C]nullrw\f[] mode with \f[C]nullrw=true\f[].
  1728. This will effectively make reads and writes no\-ops.
  1729. Removing the underlying device / filesystem from the equation.
  1730. This will give us the top theoretical speeds.
  1731. .IP "2." 3
  1732. Mount mergerfs over \f[C]tmpfs\f[].
  1733. \f[C]tmpfs\f[] is a RAM disk.
  1734. Extremely high speed and very low latency.
  1735. This is a more realistic best case scenario.
  1736. Example: \f[C]mount\ \-t\ tmpfs\ \-o\ size=2G\ tmpfs\ /tmp/tmpfs\f[]
  1737. .IP "3." 3
  1738. Mount mergerfs over a local drive.
  1739. NVMe, SSD, HDD, etc.
  1740. If you have more than one I\[aq]d suggest testing each of them as drives
  1741. and/or controllers (their drivers) could impact performance.
  1742. .IP "4." 3
  1743. Finally, if you intend to use mergerfs with a network filesystem, either
  1744. as the source of data or to combine with another through mergerfs, test
  1745. each of those alone as above.
  1746. .PP
  1747. Once you find the component which has the performance issue you can do
  1748. further testing with different options to see if they impact
  1749. performance.
  1750. For reads and writes the most relevant would be: \f[C]cache.files\f[],
  1751. \f[C]async_read\f[], \f[C]splice_move\f[], \f[C]splice_read\f[],
  1752. \f[C]splice_write\f[].
  1753. Less likely but relevant when using NFS or with certain filesystems
  1754. would be \f[C]security_capability\f[], \f[C]xattr\f[], and
  1755. \f[C]posix_acl\f[].
  1756. If you find a specific system, drive, filesystem, controller, etc.
  1757. that performs poorly contact trapexit so he may investigate further.
  1758. .PP
  1759. Sometimes the problem is really the application accessing or writing
  1760. data through mergerfs.
  1761. Some software use small buffer sizes which can lead to more requests and
  1762. therefore greater overhead.
  1763. You can test this out yourself by replace \f[C]bs=1M\f[] in the examples
  1764. below with \f[C]ibs\f[] or \f[C]obs\f[] and using a size of \f[C]512\f[]
  1765. instead of \f[C]1M\f[].
  1766. In one example test using \f[C]nullrw\f[] the write speed dropped from
  1767. 4.9GB/s to 69.7MB/s when moving from \f[C]1M\f[] to \f[C]512\f[].
  1768. Similar results were had when testing reads.
  1769. Small writes overhead may be improved by leveraging a write cache but in
  1770. casual tests little gain was found.
  1771. More tests will need to be done before this feature would become
  1772. available.
  1773. If you have an app that appears slow with mergerfs it could be due to
  1774. this.
  1775. Contact trapexit so he may investigate further.
  1776. .SS write benchmark
  1777. .IP
  1778. .nf
  1779. \f[C]
  1780. $\ dd\ if=/dev/zero\ of=/mnt/mergerfs/1GB.file\ bs=1M\ count=1024\ oflag=nocache\ conv=fdatasync\ status=progress
  1781. \f[]
  1782. .fi
  1783. .SS read benchmark
  1784. .IP
  1785. .nf
  1786. \f[C]
  1787. $\ dd\ if=/mnt/mergerfs/1GB.file\ of=/dev/null\ bs=1M\ count=1024\ iflag=nocache\ conv=fdatasync\ status=progress
  1788. \f[]
  1789. .fi
  1790. .SH TIPS / NOTES
  1791. .IP \[bu] 2
  1792. \f[B]use_ino\f[] will only work when used with mergerfs 2.18.0 and
  1793. above.
  1794. .IP \[bu] 2
  1795. Run mergerfs as \f[C]root\f[] (with \f[B]allow_other\f[]) unless
  1796. you\[aq]re merging paths which are owned by the same user otherwise
  1797. strange permission issues may arise.
  1798. .IP \[bu] 2
  1799. https://github.com/trapexit/backup\-and\-recovery\-howtos : A set of
  1800. guides / howtos on creating a data storage system, backing it up,
  1801. maintaining it, and recovering from failure.
  1802. .IP \[bu] 2
  1803. If you don\[aq]t see some directories and files you expect in a merged
  1804. point or policies seem to skip drives be sure the user has permission to
  1805. all the underlying directories.
  1806. Use \f[C]mergerfs.fsck\f[] to audit the drive for out of sync
  1807. permissions.
  1808. .IP \[bu] 2
  1809. Do \f[B]not\f[] use \f[C]cache.files=off\f[] if you expect applications
  1810. (such as rtorrent) to use mmap (http://linux.die.net/man/2/mmap) files.
  1811. Shared mmap is not currently supported in FUSE w/ page caching disabled.
  1812. Enabling \f[C]dropcacheonclose\f[] is recommended when
  1813. \f[C]cache.files=partial|full|auto\-full\f[].
  1814. .IP \[bu] 2
  1815. Since POSIX functions give only a singular error or success its
  1816. difficult to determine the proper behavior when applying the function to
  1817. multiple targets.
  1818. \f[B]mergerfs\f[] will return an error only if all attempts of an action
  1819. fail.
  1820. Any success will lead to a success returned.
  1821. This means however that some odd situations may arise.
  1822. .IP \[bu] 2
  1823. Kodi (http://kodi.tv), Plex (http://plex.tv),
  1824. Subsonic (http://subsonic.org), etc.
  1825. can use directory mtime (http://linux.die.net/man/2/stat) to more
  1826. efficiently determine whether to scan for new content rather than simply
  1827. performing a full scan.
  1828. If using the default \f[B]getattr\f[] policy of \f[B]ff\f[] it\[aq]s
  1829. possible those programs will miss an update on account of it returning
  1830. the first directory found\[aq]s \f[B]stat\f[] info and its a later
  1831. directory on another mount which had the \f[B]mtime\f[] recently
  1832. updated.
  1833. To fix this you will want to set \f[B]func.getattr=newest\f[].
  1834. Remember though that this is just \f[B]stat\f[].
  1835. If the file is later \f[B]open\f[]\[aq]ed or \f[B]unlink\f[]\[aq]ed and
  1836. the policy is different for those then a completely different file or
  1837. directory could be acted on.
  1838. .IP \[bu] 2
  1839. Some policies mixed with some functions may result in strange behaviors.
  1840. Not that some of these behaviors and race conditions couldn\[aq]t happen
  1841. outside \f[B]mergerfs\f[] but that they are far more likely to occur on
  1842. account of the attempt to merge together multiple sources of data which
  1843. could be out of sync due to the different policies.
  1844. .IP \[bu] 2
  1845. For consistency its generally best to set \f[B]category\f[] wide
  1846. policies rather than individual \f[B]func\f[]\[aq]s.
  1847. This will help limit the confusion of tools such as
  1848. rsync (http://linux.die.net/man/1/rsync).
  1849. However, the flexibility is there if needed.
  1850. .SH KNOWN ISSUES / BUGS
  1851. .SS directory mtime is not being updated
  1852. .PP
  1853. Remember that the default policy for \f[C]getattr\f[] is \f[C]ff\f[].
  1854. The information for the first directory found will be returned.
  1855. If it wasn\[aq]t the directory which had been updated then it will
  1856. appear outdated.
  1857. .PP
  1858. The reason this is the default is because any other policy would be more
  1859. expensive and for many applications it is unnecessary.
  1860. To always return the directory with the most recent mtime or a faked
  1861. value based on all found would require a scan of all drives.
  1862. .PP
  1863. If you always want the directory information from the one with the most
  1864. recent mtime then use the \f[C]newest\f[] policy for \f[C]getattr\f[].
  1865. .SS \[aq]mv /mnt/pool/foo /mnt/disk1/foo\[aq] removes \[aq]foo\[aq]
  1866. .PP
  1867. This is not a bug.
  1868. .PP
  1869. Run in verbose mode to better understand what\[aq]s happening:
  1870. .IP
  1871. .nf
  1872. \f[C]
  1873. $\ mv\ \-v\ /mnt/pool/foo\ /mnt/disk1/foo
  1874. copied\ \[aq]/mnt/pool/foo\[aq]\ \->\ \[aq]/mnt/disk1/foo\[aq]
  1875. removed\ \[aq]/mnt/pool/foo\[aq]
  1876. $\ ls\ /mnt/pool/foo
  1877. ls:\ cannot\ access\ \[aq]/mnt/pool/foo\[aq]:\ No\ such\ file\ or\ directory
  1878. \f[]
  1879. .fi
  1880. .PP
  1881. \f[C]mv\f[], when working across devices, is copying the source to
  1882. target and then removing the source.
  1883. Since the source \f[B]is\f[] the target in this case, depending on the
  1884. unlink policy, it will remove the just copied file and other files
  1885. across the branches.
  1886. .PP
  1887. If you want to move files to one drive just copy them there and use
  1888. mergerfs.dedup to clean up the old paths or manually remove them from
  1889. the branches directly.
  1890. .SS cached memory appears greater than it should be
  1891. .PP
  1892. Use \f[C]cache.files=off\f[] and/or \f[C]dropcacheonclose=true\f[].
  1893. See the section on page caching.
  1894. .SS NFS clients returning ESTALE / Stale file handle
  1895. .PP
  1896. NFS does not like out of band changes.
  1897. That is especially true of inode values.
  1898. .PP
  1899. Be sure to use the following options:
  1900. .IP \[bu] 2
  1901. noforget
  1902. .IP \[bu] 2
  1903. use_ino
  1904. .IP \[bu] 2
  1905. inodecalc=path\-hash
  1906. .SS rtorrent fails with ENODEV (No such device)
  1907. .PP
  1908. Be sure to set \f[C]cache.files=partial|full|auto\-full\f[] or turn off
  1909. \f[C]direct_io\f[].
  1910. rtorrent and some other applications use
  1911. mmap (http://linux.die.net/man/2/mmap) to read and write to files and
  1912. offer no fallback to traditional methods.
  1913. FUSE does not currently support mmap while using \f[C]direct_io\f[].
  1914. There may be a performance penalty on writes with \f[C]direct_io\f[] off
  1915. as well as the problem of double caching but it\[aq]s the only way to
  1916. get such applications to work.
  1917. If the performance loss is too high for other apps you can mount
  1918. mergerfs twice.
  1919. Once with \f[C]direct_io\f[] enabled and one without it.
  1920. Be sure to set \f[C]dropcacheonclose=true\f[] if not using
  1921. \f[C]direct_io\f[].
  1922. .SS rtorrent fails with files >= 4GiB
  1923. .PP
  1924. This is a kernel bug with mmap and FUSE on 32bit platforms.
  1925. A fix should become available for all LTS releases.
  1926. .PP
  1927. https://marc.info/?l=linux\-fsdevel&m=155550785230874&w=2
  1928. .SS Crashing on OpenVZ
  1929. .PP
  1930. There appears to be a bug in the OpenVZ kernel with regard to how it
  1931. handles ioctl calls.
  1932. It is making invalid requests which leads to a crash.
  1933. As of 2019\-12\-10 there is a bug report filed with OpenVZ but it is not
  1934. yet fixed.
  1935. .SS Plex doesn\[aq]t work with mergerfs
  1936. .PP
  1937. It does.
  1938. If you\[aq]re trying to put Plex\[aq]s config / metadata / database on
  1939. mergerfs you can\[aq]t set \f[C]cache.fles=off\f[] because Plex is using
  1940. sqlite3 with mmap enabled.
  1941. Shared mmap is not supported by Linux\[aq]s FUSE implementation when
  1942. page caching is disabled.
  1943. To fix this place the data elsewhere (preferable) or enable
  1944. \f[C]cache.files\f[] (with \f[C]dropcacheonclose=true\f[]).
  1945. Sqlite3 does not need mmap but the developer needs to fall back to
  1946. standard IO if mmap fails.
  1947. .PP
  1948. If the issue is that scanning doesn\[aq]t seem to pick up media then be
  1949. sure to set \f[C]func.getattr=newest\f[] though generally a full scan
  1950. will pick up all media anyway.
  1951. .SS mmap performance is really bad
  1952. .PP
  1953. There is/was a bug (https://lkml.org/lkml/2016/3/16/260) in caching
  1954. which affects overall performance of mmap through FUSE in Linux 4.x
  1955. kernels.
  1956. It is fixed in 4.4.10 and 4.5.4 (https://lkml.org/lkml/2016/5/11/59).
  1957. .SS When a program tries to move or rename a file it fails
  1958. .PP
  1959. Please read the section above regarding rename & link (#rename--link).
  1960. .PP
  1961. The problem is that many applications do not properly handle
  1962. \f[C]EXDEV\f[] errors which \f[C]rename\f[] and \f[C]link\f[] may return
  1963. even though they are perfectly valid situations which do not indicate
  1964. actual drive or OS errors.
  1965. The error will only be returned by mergerfs if using a path preserving
  1966. policy as described in the policy section above.
  1967. If you do not care about path preservation simply change the mergerfs
  1968. policy to the non\-path preserving version.
  1969. For example: \f[C]\-o\ category.create=mfs\f[]
  1970. .PP
  1971. Ideally the offending software would be fixed and it is recommended that
  1972. if you run into this problem you contact the software\[aq]s author and
  1973. request proper handling of \f[C]EXDEV\f[] errors.
  1974. .SS Samba: Moving files / directories fails
  1975. .PP
  1976. Workaround: Copy the file/directory and then remove the original rather
  1977. than move.
  1978. .PP
  1979. This isn\[aq]t an issue with Samba but some SMB clients.
  1980. GVFS\-fuse v1.20.3 and prior (found in Ubuntu 14.04 among others) failed
  1981. to handle certain error codes correctly.
  1982. Particularly \f[B]STATUS_NOT_SAME_DEVICE\f[] which comes from the
  1983. \f[B]EXDEV\f[] which is returned by \f[B]rename\f[] when the call is
  1984. crossing mount points.
  1985. When a program gets an \f[B]EXDEV\f[] it needs to explicitly take an
  1986. alternate action to accomplish its goal.
  1987. In the case of \f[B]mv\f[] or similar it tries \f[B]rename\f[] and on
  1988. \f[B]EXDEV\f[] falls back to a manual copying of data between the two
  1989. locations and unlinking the source.
  1990. In these older versions of GVFS\-fuse if it received \f[B]EXDEV\f[] it
  1991. would translate that into \f[B]EIO\f[].
  1992. This would cause \f[B]mv\f[] or most any application attempting to move
  1993. files around on that SMB share to fail with a IO error.
  1994. .PP
  1995. GVFS\-fuse v1.22.0 (https://bugzilla.gnome.org/show_bug.cgi?id=734568)
  1996. and above fixed this issue but a large number of systems use the older
  1997. release.
  1998. On Ubuntu the version can be checked by issuing
  1999. \f[C]apt\-cache\ showpkg\ gvfs\-fuse\f[].
  2000. Most distros released in 2015 seem to have the updated release and will
  2001. work fine but older systems may not.
  2002. Upgrading gvfs\-fuse or the distro in general will address the problem.
  2003. .PP
  2004. In Apple\[aq]s MacOSX 10.9 they replaced Samba (client and server) with
  2005. their own product.
  2006. It appears their new client does not handle \f[B]EXDEV\f[] either and
  2007. responds similar to older release of gvfs on Linux.
  2008. .SS Trashing files occasionally fails
  2009. .PP
  2010. This is the same issue as with Samba.
  2011. \f[C]rename\f[] returns \f[C]EXDEV\f[] (in our case that will really
  2012. only happen with path preserving policies like \f[C]epmfs\f[]) and the
  2013. software doesn\[aq]t handle the situation well.
  2014. This is unfortunately a common failure of software which moves files
  2015. around.
  2016. The standard indicates that an implementation \f[C]MAY\f[] choose to
  2017. support non\-user home directory trashing of files (which is a
  2018. \f[C]MUST\f[]).
  2019. The implementation \f[C]MAY\f[] also support "top directory trashes"
  2020. which many probably do.
  2021. .PP
  2022. To create a \f[C]$topdir/.Trash\f[] directory as defined in the standard
  2023. use the mergerfs\-tools (https://github.com/trapexit/mergerfs-tools)
  2024. tool \f[C]mergerfs.mktrash\f[].
  2025. .SS tar: Directory renamed before its status could be extracted
  2026. .PP
  2027. Make sure to use the \f[C]use_ino\f[] option.
  2028. .SS Supplemental user groups
  2029. .PP
  2030. Due to the overhead of
  2031. getgroups/setgroups (http://linux.die.net/man/2/setgroups) mergerfs
  2032. utilizes a cache.
  2033. This cache is opportunistic and per thread.
  2034. Each thread will query the supplemental groups for a user when that
  2035. particular thread needs to change credentials and will keep that data
  2036. for the lifetime of the thread.
  2037. This means that if a user is added to a group it may not be picked up
  2038. without the restart of mergerfs.
  2039. However, since the high level FUSE API\[aq]s (at least the standard
  2040. version) thread pool dynamically grows and shrinks it\[aq]s possible
  2041. that over time a thread will be killed and later a new thread with no
  2042. cache will start and query the new data.
  2043. .PP
  2044. The gid cache uses fixed storage to simplify the design and be
  2045. compatible with older systems which may not have C++11 compilers.
  2046. There is enough storage for 256 users\[aq] supplemental groups.
  2047. Each user is allowed up to 32 supplemental groups.
  2048. Linux >= 2.6.3 allows up to 65535 groups per user but most other *nixs
  2049. allow far less.
  2050. NFS allowing only 16.
  2051. The system does handle overflow gracefully.
  2052. If the user has more than 32 supplemental groups only the first 32 will
  2053. be used.
  2054. If more than 256 users are using the system when an uncached user is
  2055. found it will evict an existing user\[aq]s cache at random.
  2056. So long as there aren\[aq]t more than 256 active users this should be
  2057. fine.
  2058. If either value is too low for your needs you will have to modify
  2059. \f[C]gidcache.hpp\f[] to increase the values.
  2060. Note that doing so will increase the memory needed by each thread.
  2061. .PP
  2062. While not a bug some users have found when using containers that
  2063. supplemental groups defined inside the container don\[aq]t work properly
  2064. with regard to permissions.
  2065. This is expected as mergerfs lives outside the container and therefore
  2066. is querying the host\[aq]s group database.
  2067. There might be a hack to work around this (make mergerfs read the
  2068. /etc/group file in the container) but it is not yet implemented and
  2069. would be limited to Linux and the /etc/group DB.
  2070. Preferably users would mount in the host group file into the containers
  2071. or use a standard shared user & groups technology like NIS or LDAP.
  2072. .SS mergerfs or libfuse crashing
  2073. .PP
  2074. First...
  2075. always upgrade to the latest version unless told otherwise.
  2076. .PP
  2077. If using mergerfs below 2.22.0:
  2078. .PP
  2079. If suddenly the mergerfs mount point disappears and
  2080. \f[C]Transport\ endpoint\ is\ not\ connected\f[] is returned when
  2081. attempting to perform actions within the mount directory \f[B]and\f[]
  2082. the version of libfuse (use \f[C]mergerfs\ \-v\f[] to find the version)
  2083. is older than \f[C]2.9.4\f[] its likely due to a bug in libfuse.
  2084. Affected versions of libfuse can be found in Debian Wheezy, Ubuntu
  2085. Precise and others.
  2086. .PP
  2087. In order to fix this please install newer versions of libfuse.
  2088. If using a Debian based distro (Debian,Ubuntu,Mint) you can likely just
  2089. install newer versions of
  2090. libfuse (https://packages.debian.org/unstable/libfuse2) and
  2091. fuse (https://packages.debian.org/unstable/fuse) from the repo of a
  2092. newer release.
  2093. .PP
  2094. If using mergerfs at or above 2.22.0:
  2095. .PP
  2096. First upgrade if possible, check the known bugs section, and contact
  2097. trapexit.
  2098. .SS mergerfs appears to be crashing or exiting
  2099. .PP
  2100. There seems to be an issue with Linux version \f[C]4.9.0\f[] and above
  2101. in which an invalid message appears to be transmitted to libfuse (used
  2102. by mergerfs) causing it to exit.
  2103. No messages will be printed in any logs as it\[aq]s not a proper crash.
  2104. Debugging of the issue is still ongoing and can be followed via the
  2105. fuse\-devel
  2106. thread (https://sourceforge.net/p/fuse/mailman/message/35662577).
  2107. .SS mergerfs under heavy load and memory pressure leads to kernel panic
  2108. .PP
  2109. https://lkml.org/lkml/2016/9/14/527
  2110. .IP
  2111. .nf
  2112. \f[C]
  2113. [25192.515454]\ kernel\ BUG\ at\ /build/linux\-a2WvEb/linux\-4.4.0/mm/workingset.c:346!
  2114. [25192.517521]\ invalid\ opcode:\ 0000\ [#1]\ SMP
  2115. [25192.519602]\ Modules\ linked\ in:\ netconsole\ ip6t_REJECT\ nf_reject_ipv6\ ipt_REJECT\ nf_reject_ipv4\ configfs\ binfmt_misc\ veth\ bridge\ stp\ llc\ nf_conntrack_ipv6\ nf_defrag_ipv6\ xt_conntrack\ ip6table_filter\ ip6_tables\ xt_multiport\ iptable_filter\ ipt_MASQUERADE\ nf_nat_masquerade_ipv4\ xt_comment\ xt_nat\ iptable_nat\ nf_conntrack_ipv4\ nf_defrag_ipv4\ nf_nat_ipv4\ nf_nat\ nf_conntrack\ xt_CHECKSUM\ xt_tcpudp\ iptable_mangle\ ip_tables\ x_tables\ intel_rapl\ x86_pkg_temp_thermal\ intel_powerclamp\ eeepc_wmi\ asus_wmi\ coretemp\ sparse_keymap\ kvm_intel\ ppdev\ kvm\ irqbypass\ mei_me\ 8250_fintek\ input_leds\ serio_raw\ parport_pc\ tpm_infineon\ mei\ shpchp\ mac_hid\ parport\ lpc_ich\ autofs4\ drbg\ ansi_cprng\ dm_crypt\ algif_skcipher\ af_alg\ btrfs\ raid456\ async_raid6_recov\ async_memcpy\ async_pq\ async_xor\ async_tx\ xor\ raid6_pq\ libcrc32c\ raid0\ multipath\ linear\ raid10\ raid1\ i915\ crct10dif_pclmul\ crc32_pclmul\ aesni_intel\ i2c_algo_bit\ aes_x86_64\ drm_kms_helper\ lrw\ gf128mul\ glue_helper\ ablk_helper\ syscopyarea\ cryptd\ sysfillrect\ sysimgblt\ fb_sys_fops\ drm\ ahci\ r8169\ libahci\ mii\ wmi\ fjes\ video\ [last\ unloaded:\ netconsole]
  2116. [25192.540910]\ CPU:\ 2\ PID:\ 63\ Comm:\ kswapd0\ Not\ tainted\ 4.4.0\-36\-generic\ #55\-Ubuntu
  2117. [25192.543411]\ Hardware\ name:\ System\ manufacturer\ System\ Product\ Name/P8H67\-M\ PRO,\ BIOS\ 3904\ 04/27/2013
  2118. [25192.545840]\ task:\ ffff88040cae6040\ ti:\ ffff880407488000\ task.ti:\ ffff880407488000
  2119. [25192.548277]\ RIP:\ 0010:[<ffffffff811ba501>]\ \ [<ffffffff811ba501>]\ shadow_lru_isolate+0x181/0x190
  2120. [25192.550706]\ RSP:\ 0018:ffff88040748bbe0\ \ EFLAGS:\ 00010002
  2121. [25192.553127]\ RAX:\ 0000000000001c81\ RBX:\ ffff8802f91ee928\ RCX:\ ffff8802f91eeb38
  2122. [25192.555544]\ RDX:\ ffff8802f91ee938\ RSI:\ ffff8802f91ee928\ RDI:\ ffff8804099ba2c0
  2123. [25192.557914]\ RBP:\ ffff88040748bc08\ R08:\ 000000000001a7b6\ R09:\ 000000000000003f
  2124. [25192.560237]\ R10:\ 000000000001a750\ R11:\ 0000000000000000\ R12:\ ffff8804099ba2c0
  2125. [25192.562512]\ R13:\ ffff8803157e9680\ R14:\ ffff8803157e9668\ R15:\ ffff8804099ba2c8
  2126. [25192.564724]\ FS:\ \ 0000000000000000(0000)\ GS:ffff88041f280000(0000)\ knlGS:0000000000000000
  2127. [25192.566990]\ CS:\ \ 0010\ DS:\ 0000\ ES:\ 0000\ CR0:\ 0000000080050033
  2128. [25192.569201]\ CR2:\ 00007ffabb690000\ CR3:\ 0000000001e0a000\ CR4:\ 00000000000406e0
  2129. [25192.571419]\ Stack:
  2130. [25192.573550]\ \ ffff8804099ba2c0\ ffff88039e4f86f0\ ffff8802f91ee928\ ffff8804099ba2c8
  2131. [25192.575695]\ \ ffff88040748bd08\ ffff88040748bc58\ ffffffff811b99bf\ 0000000000000052
  2132. [25192.577814]\ \ 0000000000000000\ ffffffff811ba380\ 000000000000008a\ 0000000000000080
  2133. [25192.579947]\ Call\ Trace:
  2134. [25192.582022]\ \ [<ffffffff811b99bf>]\ __list_lru_walk_one.isra.3+0x8f/0x130
  2135. [25192.584137]\ \ [<ffffffff811ba380>]\ ?\ memcg_drain_all_list_lrus+0x190/0x190
  2136. [25192.586165]\ \ [<ffffffff811b9a83>]\ list_lru_walk_one+0x23/0x30
  2137. [25192.588145]\ \ [<ffffffff811ba544>]\ scan_shadow_nodes+0x34/0x50
  2138. [25192.590074]\ \ [<ffffffff811a0e9d>]\ shrink_slab.part.40+0x1ed/0x3d0
  2139. [25192.591985]\ \ [<ffffffff811a53da>]\ shrink_zone+0x2ca/0x2e0
  2140. [25192.593863]\ \ [<ffffffff811a64ce>]\ kswapd+0x51e/0x990
  2141. [25192.595737]\ \ [<ffffffff811a5fb0>]\ ?\ mem_cgroup_shrink_node_zone+0x1c0/0x1c0
  2142. [25192.597613]\ \ [<ffffffff810a0808>]\ kthread+0xd8/0xf0
  2143. [25192.599495]\ \ [<ffffffff810a0730>]\ ?\ kthread_create_on_node+0x1e0/0x1e0
  2144. [25192.601335]\ \ [<ffffffff8182e34f>]\ ret_from_fork+0x3f/0x70
  2145. [25192.603193]\ \ [<ffffffff810a0730>]\ ?\ kthread_create_on_node+0x1e0/0x1e0
  2146. \f[]
  2147. .fi
  2148. .PP
  2149. There is a bug in the kernel.
  2150. A work around appears to be turning off \f[C]splice\f[].
  2151. Don\[aq]t add the \f[C]splice_*\f[] arguments or add
  2152. \f[C]no_splice_write,no_splice_move,no_splice_read\f[].
  2153. This, however, is not guaranteed to work.
  2154. .SS rm: fts_read failed: No such file or directory
  2155. .PP
  2156. Please update.
  2157. This is only happened to mergerfs versions at or below v2.25.x and will
  2158. not occur in more recent versions.
  2159. .SH FAQ
  2160. .SS How well does mergerfs scale? Is it "production ready?"
  2161. .PP
  2162. Users have reported running mergerfs on everything from a Raspberry Pi
  2163. to dual socket Xeon systems with >20 cores.
  2164. I\[aq]m aware of at least a few companies which use mergerfs in
  2165. production.
  2166. Open Media Vault (https://www.openmediavault.org) includes mergerfs as
  2167. its sole solution for pooling drives.
  2168. The author of mergerfs had it running for over 300 days managing 16+
  2169. drives with reasonably heavy 24/7 read and write usage.
  2170. Stopping only after the machine\[aq]s power supply died.
  2171. .PP
  2172. Most serious issues (crashes or data corruption) have been due to kernel
  2173. bugs.
  2174. All of which are fixed in stable releases.
  2175. .SS Can mergerfs be used with drives which already have data / are in
  2176. use?
  2177. .PP
  2178. Yes.
  2179. MergerFS is a proxy and does \f[B]NOT\f[] interfere with the normal form
  2180. or function of the drives / mounts / paths it manages.
  2181. .PP
  2182. MergerFS is \f[B]not\f[] a traditional filesystem.
  2183. MergerFS is \f[B]not\f[] RAID.
  2184. It does \f[B]not\f[] manipulate the data that passes through it.
  2185. It does \f[B]not\f[] shard data across drives.
  2186. It merely shards some \f[B]behavior\f[] and aggregates others.
  2187. .SS Can mergerfs be removed without affecting the data?
  2188. .PP
  2189. See the previous question\[aq]s answer.
  2190. .SS What policies should I use?
  2191. .PP
  2192. Unless you\[aq]re doing something more niche the average user is
  2193. probably best off using \f[C]mfs\f[] for \f[C]category.create\f[].
  2194. It will spread files out across your branches based on available space.
  2195. Use \f[C]mspmfs\f[] if you want to try to colocate the data a bit more.
  2196. You may want to use \f[C]lus\f[] if you prefer a slightly different
  2197. distribution of data if you have a mix of smaller and larger drives.
  2198. Generally though \f[C]mfs\f[], \f[C]lus\f[], or even \f[C]rand\f[] are
  2199. good for the general use case.
  2200. If you are starting with an imbalanced pool you can use the tool
  2201. \f[B]mergerfs.balance\f[] to redistribute files across the pool.
  2202. .PP
  2203. If you really wish to try to colocate files based on directory you can
  2204. set \f[C]func.create\f[] to \f[C]epmfs\f[] or similar and
  2205. \f[C]func.mkdir\f[] to \f[C]rand\f[] or \f[C]eprand\f[] depending on if
  2206. you just want to colocate generally or on specific branches.
  2207. Either way the \f[I]need\f[] to colocate is rare.
  2208. For instance: if you wish to remove the drive regularly and want the
  2209. data to predictably be on that drive or if you don\[aq]t use backup at
  2210. all and don\[aq]t wish to replace that data piecemeal.
  2211. In which case using path preservation can help but will require some
  2212. manual attention.
  2213. Colocating after the fact can be accomplished using the
  2214. \f[B]mergerfs.consolidate\f[] tool.
  2215. If you don\[aq]t need strict colocation which the \f[C]ep\f[] policies
  2216. provide then you can use the \f[C]msp\f[] based policies which will walk
  2217. back the path till finding a branch that works.
  2218. .PP
  2219. Ultimately there is no correct answer.
  2220. It is a preference or based on some particular need.
  2221. mergerfs is very easy to test and experiment with.
  2222. I suggest creating a test setup and experimenting to get a sense of what
  2223. you want.
  2224. .PP
  2225. The reason \f[C]mfs\f[] is not the default \f[C]category.create\f[]
  2226. policy is historical.
  2227. When/if a 3.X gets released it will be changed to minimize confusion
  2228. people often have with path preserving policies.
  2229. .SS What settings should I use?
  2230. .PP
  2231. Depends on what features you want.
  2232. Generally speaking there are no "wrong" settings.
  2233. All settings are performance or feature related.
  2234. The best bet is to read over the available options and choose what fits
  2235. your situation.
  2236. If something isn\[aq]t clear from the documentation please reach out and
  2237. the documentation will be improved.
  2238. .PP
  2239. That said, for the average person, the following should be fine:
  2240. .PP
  2241. \f[C]\-o\ use_ino,cache.files=off,dropcacheonclose=true,allow_other,category.create=mfs\f[]
  2242. .SS Why are all my files ending up on 1 drive?!
  2243. .PP
  2244. Did you start with empty drives?
  2245. Did you explicitly configure a \f[C]category.create\f[] policy?
  2246. Are you using an \f[C]existing\ path\f[] / \f[C]path\ preserving\f[]
  2247. policy?
  2248. .PP
  2249. The default create policy is \f[C]epmfs\f[].
  2250. That is a path preserving algorithm.
  2251. With such a policy for \f[C]mkdir\f[] and \f[C]create\f[] with a set of
  2252. empty drives it will select only 1 drive when the first directory is
  2253. created.
  2254. Anything, files or directories, created in that first directory will be
  2255. placed on the same branch because it is preserving paths.
  2256. .PP
  2257. This catches a lot of new users off guard but changing the default would
  2258. break the setup for many existing users.
  2259. If you do not care about path preservation and wish your files to be
  2260. spread across all your drives change to \f[C]mfs\f[] or similar policy
  2261. as described above.
  2262. If you do want path preservation you\[aq]ll need to perform the manual
  2263. act of creating paths on the drives you want the data to land on before
  2264. transferring your data.
  2265. Setting \f[C]func.mkdir=epall\f[] can simplify managing path
  2266. preservation for \f[C]create\f[].
  2267. Or use \f[C]func.mkdir=rand\f[] if you\[aq]re interested in just
  2268. grouping together directory content by drive.
  2269. .SS Do hard links work?
  2270. .PP
  2271. Yes.
  2272. You need to use \f[C]use_ino\f[] to support proper reporting of inodes
  2273. but they work regardless.
  2274. See also the option \f[C]inodecalc\f[].
  2275. .PP
  2276. What mergerfs does not do is fake hard links across branches.
  2277. Read the section "rename & link" for how it works.
  2278. .SS Does mergerfs support CoW / copy\-on\-write?
  2279. .PP
  2280. Not in the sense of a filesystem like BTRFS or ZFS nor in the overlayfs
  2281. or aufs sense.
  2282. It does offer a
  2283. cow\-shell (http://manpages.ubuntu.com/manpages/bionic/man1/cow-shell.1.html)
  2284. like hard link breaking (copy to temp file then rename over original)
  2285. which can be useful when wanting to save space by hardlinking duplicate
  2286. files but wish to treat each name as if it were a unique and separate
  2287. file.
  2288. .SS Why can\[aq]t I see my files / directories?
  2289. .PP
  2290. It\[aq]s almost always a permissions issue.
  2291. Unlike mhddfs and unionfs\-fuse, which runs as root and attempts to
  2292. access content as such, mergerfs always changes its credentials to that
  2293. of the caller.
  2294. This means that if the user does not have access to a file or directory
  2295. than neither will mergerfs.
  2296. However, because mergerfs is creating a union of paths it may be able to
  2297. read some files and directories on one drive but not another resulting
  2298. in an incomplete set.
  2299. .PP
  2300. Whenever you run into a split permission issue (seeing some but not all
  2301. files) try using
  2302. mergerfs.fsck (https://github.com/trapexit/mergerfs-tools) tool to check
  2303. for and fix the mismatch.
  2304. If you aren\[aq]t seeing anything at all be sure that the basic
  2305. permissions are correct.
  2306. The user and group values are correct and that directories have their
  2307. executable bit set.
  2308. A common mistake by users new to Linux is to \f[C]chmod\ \-R\ 644\f[]
  2309. when they should have \f[C]chmod\ \-R\ u=rwX,go=rX\f[].
  2310. .PP
  2311. If using a network filesystem such as NFS, SMB, CIFS (Samba) be sure to
  2312. pay close attention to anything regarding permissioning and users.
  2313. Root squashing and user translation for instance has bitten a few
  2314. mergerfs users.
  2315. Some of these also affect the use of mergerfs from container platforms
  2316. such as Docker.
  2317. .SS Is my OS\[aq]s libfuse needed for mergerfs to work?
  2318. .PP
  2319. No.
  2320. Normally \f[C]mount.fuse\f[] is needed to get mergerfs (or any FUSE
  2321. filesystem to mount using the \f[C]mount\f[] command but in vendoring
  2322. the libfuse library the \f[C]mount.fuse\f[] app has been renamed to
  2323. \f[C]mount.mergerfs\f[] meaning the filesystem type in \f[C]fstab\f[]
  2324. can simply be \f[C]mergerfs\f[].
  2325. That said there should be no harm in having it installed and continuing
  2326. to using \f[C]fuse.mergerfs\f[] as the type in \f[C]/etc/fstab\f[].
  2327. .PP
  2328. If \f[C]mergerfs\f[] doesn\[aq]t work as a type it could be due to how
  2329. the \f[C]mount.mergerfs\f[] tool was installed.
  2330. Must be in \f[C]/sbin/\f[] with proper permissions.
  2331. .SS Why was libfuse embedded into mergerfs?
  2332. .IP "1." 3
  2333. A significant number of users use mergerfs on distros with old versions
  2334. of libfuse which have serious bugs.
  2335. Requiring updated versions of libfuse on those distros isn\[aq]t
  2336. practical (no package offered, user inexperience, etc.).
  2337. The only practical way to provide a stable runtime on those systems was
  2338. to "vendor" / embed the library into the project.
  2339. .IP "2." 3
  2340. mergerfs was written to use the high level API.
  2341. There are a number of limitations in the HLAPI that make certain
  2342. features difficult or impossible to implement.
  2343. While some of these features could be patched into newer versions of
  2344. libfuse without breaking the public API some of them would require hacky
  2345. code to provide backwards compatibility.
  2346. While it may still be worth working with upstream to address these
  2347. issues in future versions, since the library needs to be vendored for
  2348. stability and compatibility reasons it is preferable / easier to modify
  2349. the API.
  2350. Longer term the plan is to rewrite mergerfs to use the low level API.
  2351. .SS Why did support for system libfuse get removed?
  2352. .PP
  2353. See above first.
  2354. .PP
  2355. If/when mergerfs is rewritten to use the low\-level API then it\[aq]ll
  2356. be plausible to support system libfuse but till then its simply too much
  2357. work to manage the differences across the versions.
  2358. .SS Why use mergerfs over mhddfs?
  2359. .PP
  2360. mhddfs is no longer maintained and has some known stability and security
  2361. issues (see below).
  2362. MergerFS provides a superset of mhddfs\[aq] features and should offer
  2363. the same or maybe better performance.
  2364. .PP
  2365. Below is an example of mhddfs and mergerfs setup to work similarly.
  2366. .PP
  2367. \f[C]mhddfs\ \-o\ mlimit=4G,allow_other\ /mnt/drive1,/mnt/drive2\ /mnt/pool\f[]
  2368. .PP
  2369. \f[C]mergerfs\ \-o\ minfreespace=4G,allow_other,category.create=ff\ /mnt/drive1:/mnt/drive2\ /mnt/pool\f[]
  2370. .SS Why use mergerfs over aufs?
  2371. .PP
  2372. aufs is mostly abandoned and no longer available in many distros.
  2373. .PP
  2374. While aufs can offer better peak performance mergerfs provides more
  2375. configurability and is generally easier to use.
  2376. mergerfs however does not offer the overlay / copy\-on\-write (CoW)
  2377. features which aufs and overlayfs have.
  2378. .SS Why use mergerfs over unionfs?
  2379. .PP
  2380. UnionFS is more like aufs than mergerfs in that it offers overlay / CoW
  2381. features.
  2382. If you\[aq]re just looking to create a union of drives and want
  2383. flexibility in file/directory placement then mergerfs offers that
  2384. whereas unionfs is more for overlaying RW filesystems over RO ones.
  2385. .SS Why use mergerfs over overlayfs?
  2386. .PP
  2387. Same reasons as with unionfs.
  2388. .SS Why use mergerfs over LVM/ZFS/BTRFS/RAID0 drive concatenation /
  2389. striping?
  2390. .PP
  2391. With simple JBOD / drive concatenation / stripping / RAID0 a single
  2392. drive failure will result in full pool failure.
  2393. mergerfs performs a similar function without the possibility of
  2394. catastrophic failure and the difficulties in recovery.
  2395. Drives may fail, however, all other data will continue to be accessible.
  2396. .PP
  2397. When combined with something like SnapRaid (http://www.snapraid.it)
  2398. and/or an offsite backup solution you can have the flexibility of JBOD
  2399. without the single point of failure.
  2400. .SS Why use mergerfs over ZFS?
  2401. .PP
  2402. MergerFS is not intended to be a replacement for ZFS.
  2403. MergerFS is intended to provide flexible pooling of arbitrary drives
  2404. (local or remote), of arbitrary sizes, and arbitrary filesystems.
  2405. For \f[C]write\ once,\ read\ many\f[] usecases such as bulk media
  2406. storage.
  2407. Where data integrity and backup is managed in other ways.
  2408. In that situation ZFS can introduce a number of costs and limitations as
  2409. described
  2410. here (http://louwrentius.com/the-hidden-cost-of-using-zfs-for-your-home-nas.html),
  2411. here (https://markmcb.com/2020/01/07/five-years-of-btrfs/), and
  2412. here (https://utcc.utoronto.ca/~cks/space/blog/solaris/ZFSWhyNoRealReshaping).
  2413. .SS Why use mergerfs over UnRAID?
  2414. .PP
  2415. UnRAID is a full OS and its storage layer, as I understand, is
  2416. proprietary and closed source.
  2417. Users who have experience with both have said they prefer the
  2418. flexibility offered by mergerfs and for some the fact it is free and
  2419. open source is important.
  2420. .PP
  2421. There are a number of UnRAID users who use mergerfs as well though
  2422. I\[aq]m not entirely familiar with the use case.
  2423. .SS What should mergerfs NOT be used for?
  2424. .IP \[bu] 2
  2425. databases: Even if the database stored data in separate files (mergerfs
  2426. wouldn\[aq]t offer much otherwise) the higher latency of the indirection
  2427. will kill performance.
  2428. If it is a lightly used SQLITE database then it may be fine but
  2429. you\[aq]ll need to test.
  2430. .IP \[bu] 2
  2431. VM images: For the same reasons as databases.
  2432. VM images are accessed very aggressively and mergerfs will introduce too
  2433. much latency (if it works at all).
  2434. .IP \[bu] 2
  2435. As replacement for RAID: mergerfs is just for pooling branches.
  2436. If you need that kind of device performance aggregation or high
  2437. availability you should stick with RAID.
  2438. .SS Can drives be written to directly? Outside of mergerfs while pooled?
  2439. .PP
  2440. Yes, however it\[aq]s not recommended to use the same file from within
  2441. the pool and from without at the same time (particularly writing).
  2442. Especially if using caching of any kind (cache.files, cache.entry,
  2443. cache.attr, cache.negative_entry, cache.symlinks, cache.readdir, etc.)
  2444. as there could be a conflict between cached data and not.
  2445. .SS Why do I get an "out of space" / "no space left on device" / ENOSPC
  2446. error even though there appears to be lots of space available?
  2447. .PP
  2448. First make sure you\[aq]ve read the sections above about policies, path
  2449. preservation, branch filtering, and the options \f[B]minfreespace\f[],
  2450. \f[B]moveonenospc\f[], \f[B]statfs\f[], and \f[B]statfs_ignore\f[].
  2451. .PP
  2452. mergerfs is simply presenting a union of the content within multiple
  2453. branches.
  2454. The reported free space is an aggregate of space available within the
  2455. pool (behavior modified by \f[B]statfs\f[] and \f[B]statfs_ignore\f[]).
  2456. It does not represent a contiguous space.
  2457. In the same way that read\-only filesystems, those with quotas, or
  2458. reserved space report the full theoretical space available.
  2459. .PP
  2460. Due to path preservation, branch tagging, read\-only status, and
  2461. \f[B]minfreespace\f[] settings it is perfectly valid that
  2462. \f[C]ENOSPC\f[] / "out of space" / "no space left on device" be
  2463. returned.
  2464. It is doing what was asked of it: filtering possible branches due to
  2465. those settings.
  2466. Only one error can be returned and if one of the reasons for filtering a
  2467. branch was \f[B]minfreespace\f[] then it will be returned as such.
  2468. \f[B]moveonenospc\f[] is only relevant to writing a file which is too
  2469. large for the drive its currently on.
  2470. .PP
  2471. It is also possible that the filesystem selected has run out of inodes.
  2472. Use \f[C]df\ \-i\f[] to list the total and available inodes per
  2473. filesystem.
  2474. .PP
  2475. If you don\[aq]t care about path preservation then simply change the
  2476. \f[C]create\f[] policy to one which isn\[aq]t.
  2477. \f[C]mfs\f[] is probably what most are looking for.
  2478. The reason it\[aq]s not default is because it was originally set to
  2479. \f[C]epmfs\f[] and changing it now would change people\[aq]s setup.
  2480. Such a setting change will likely occur in mergerfs 3.
  2481. .SS Why does the total available space in mergerfs not equal outside?
  2482. .PP
  2483. Are you using ext2/3/4?
  2484. With reserve for root?
  2485. mergerfs uses available space for statfs calculations.
  2486. If you\[aq]ve reserved space for root then it won\[aq]t show up.
  2487. .PP
  2488. You can remove the reserve by running:
  2489. \f[C]tune2fs\ \-m\ 0\ <device>\f[]
  2490. .SS Can mergerfs mounts be exported over NFS?
  2491. .PP
  2492. Yes, however if you do anything which may changes files out of band
  2493. (including for example using the \f[C]newest\f[] policy) it will result
  2494. in "stale file handle" errors unless properly setup.
  2495. .PP
  2496. Be sure to use the following options:
  2497. .IP \[bu] 2
  2498. noforget
  2499. .IP \[bu] 2
  2500. use_ino
  2501. .IP \[bu] 2
  2502. inodecalc=path\-hash
  2503. .SS Can mergerfs mounts be exported over Samba / SMB?
  2504. .PP
  2505. Yes.
  2506. While some users have reported problems it appears to always be related
  2507. to how Samba is setup in relation to permissions.
  2508. .SS Can mergerfs mounts be used over SSHFS?
  2509. .PP
  2510. Yes.
  2511. .SS I notice massive slowdowns of writes when enabling cache.files.
  2512. .PP
  2513. When file caching is enabled in any form (\f[C]cache.files!=off\f[] or
  2514. \f[C]direct_io=false\f[]) it will issue \f[C]getxattr\f[] requests for
  2515. \f[C]security.capability\f[] prior to \f[I]every single write\f[].
  2516. This will usually result in a performance degregation, especially when
  2517. using a network filesystem (such as NFS or CIFS/SMB/Samba.)
  2518. Unfortunately at this moment the kernel is not caching the response.
  2519. .PP
  2520. To work around this situation mergerfs offers a few solutions.
  2521. .IP "1." 3
  2522. Set \f[C]security_capability=false\f[].
  2523. It will short circuit any call and return \f[C]ENOATTR\f[].
  2524. This still means though that mergerfs will receive the request before
  2525. every write but at least it doesn\[aq]t get passed through to the
  2526. underlying filesystem.
  2527. .IP "2." 3
  2528. Set \f[C]xattr=noattr\f[].
  2529. Same as above but applies to \f[I]all\f[] calls to getxattr.
  2530. Not just \f[C]security.capability\f[].
  2531. This will not be cached by the kernel either but mergerfs\[aq] runtime
  2532. config system will still function.
  2533. .IP "3." 3
  2534. Set \f[C]xattr=nosys\f[].
  2535. Results in mergerfs returning \f[C]ENOSYS\f[] which \f[I]will\f[] be
  2536. cached by the kernel.
  2537. No future xattr calls will be forwarded to mergerfs.
  2538. The downside is that also means the xattr based config and query
  2539. functionality won\[aq]t work either.
  2540. .IP "4." 3
  2541. Disable file caching.
  2542. If you aren\[aq]t using applications which use \f[C]mmap\f[] it\[aq]s
  2543. probably simpler to just disable it all together.
  2544. The kernel won\[aq]t send the requests when caching is disabled.
  2545. .SS What are these .fuse_hidden files?
  2546. .PP
  2547. Please upgrade.
  2548. mergerfs >= 2.26.0 will not have these temporary files.
  2549. See the notes on \f[C]unlink\f[].
  2550. .SS It\[aq]s mentioned that there are some security issues with mhddfs.
  2551. What are they? How does mergerfs address them?
  2552. .PP
  2553. mhddfs (https://github.com/trapexit/mhddfs) manages running as
  2554. \f[B]root\f[] by calling
  2555. getuid() (https://github.com/trapexit/mhddfs/blob/cae96e6251dd91e2bdc24800b4a18a74044f6672/src/main.c#L319)
  2556. and if it returns \f[B]0\f[] then it will
  2557. chown (http://linux.die.net/man/1/chown) the file.
  2558. Not only is that a race condition but it doesn\[aq]t handle other
  2559. situations.
  2560. Rather than attempting to simulate POSIX ACL behavior the proper way to
  2561. manage this is to use seteuid (http://linux.die.net/man/2/seteuid) and
  2562. setegid (http://linux.die.net/man/2/setegid), in effect becoming the
  2563. user making the original call, and perform the action as them.
  2564. This is what mergerfs does and why mergerfs should always run as root.
  2565. .PP
  2566. In Linux setreuid syscalls apply only to the thread.
  2567. GLIBC hides this away by using realtime signals to inform all threads to
  2568. change credentials.
  2569. Taking after \f[B]Samba\f[], mergerfs uses
  2570. \f[B]syscall(SYS_setreuid,...)\f[] to set the callers credentials for
  2571. that thread only.
  2572. Jumping back to \f[B]root\f[] as necessary should escalated privileges
  2573. be needed (for instance: to clone paths between drives).
  2574. .PP
  2575. For non\-Linux systems mergerfs uses a read\-write lock and changes
  2576. credentials only when necessary.
  2577. If multiple threads are to be user X then only the first one will need
  2578. to change the processes credentials.
  2579. So long as the other threads need to be user X they will take a readlock
  2580. allowing multiple threads to share the credentials.
  2581. Once a request comes in to run as user Y that thread will attempt a
  2582. write lock and change to Y\[aq]s credentials when it can.
  2583. If the ability to give writers priority is supported then that flag will
  2584. be used so threads trying to change credentials don\[aq]t starve.
  2585. This isn\[aq]t the best solution but should work reasonably well
  2586. assuming there are few users.
  2587. .SH SUPPORT
  2588. .PP
  2589. Filesystems are complex and difficult to debug.
  2590. mergerfs, while being just a proxy of sorts, is also very difficult to
  2591. debug given the large number of possible settings it can have itself and
  2592. the massive number of environments it can run in.
  2593. When reporting on a suspected issue \f[B]please, please\f[] include as
  2594. much of the below information as possible otherwise it will be difficult
  2595. or impossible to diagnose.
  2596. Also please make sure to read all of the above documentation as it
  2597. includes nearly every known system or user issue previously encountered.
  2598. .PP
  2599. \f[B]Please make sure you are using the latest
  2600. release (https://github.com/trapexit/mergerfs/releases) or have tried it
  2601. in comparison. Old versions, which are often included in distros like
  2602. Debian and Ubuntu, are not ever going to be updated and your bug may
  2603. have been addressed already.\f[]
  2604. .SS Information to include in bug reports
  2605. .IP \[bu] 2
  2606. Version of mergerfs: \f[C]mergerfs\ \-V\f[]
  2607. .IP \[bu] 2
  2608. mergerfs settings: from \f[C]/etc/fstab\f[] or command line execution
  2609. .IP \[bu] 2
  2610. Version of Linux: \f[C]uname\ \-a\f[]
  2611. .IP \[bu] 2
  2612. Versions of any additional software being used
  2613. .IP \[bu] 2
  2614. List of drives, their filesystems, and sizes (before and after issue):
  2615. \f[C]df\ \-h\f[]
  2616. .IP \[bu] 2
  2617. \f[B]All\f[] information about the relevant branches and paths:
  2618. permissions, etc.
  2619. .IP \[bu] 2
  2620. A \f[C]strace\f[] of the app having problems:
  2621. .IP \[bu] 2
  2622. \f[C]strace\ \-f\ \-o\ /tmp/app.strace.txt\ <cmd>\f[]
  2623. .IP \[bu] 2
  2624. A \f[C]strace\f[] of mergerfs while the program is trying to do whatever
  2625. it\[aq]s failing to do:
  2626. .IP \[bu] 2
  2627. \f[C]strace\ \-f\ \-p\ <mergerfsPID>\ \-o\ /tmp/mergerfs.strace.txt\f[]
  2628. .IP \[bu] 2
  2629. \f[B]Precise\f[] directions on replicating the issue.
  2630. Do not leave \f[B]anything\f[] out.
  2631. .IP \[bu] 2
  2632. Try to recreate the problem in the simplist way using standard programs.
  2633. .SS Contact / Issue submission
  2634. .IP \[bu] 2
  2635. github.com: https://github.com/trapexit/mergerfs/issues
  2636. .IP \[bu] 2
  2637. email: trapexit\@spawn.link
  2638. .IP \[bu] 2
  2639. twitter: https://twitter.com/_trapexit
  2640. .IP \[bu] 2
  2641. reddit: https://www.reddit.com/user/trapexit
  2642. .IP \[bu] 2
  2643. discord: https://discord.gg/MpAr69V
  2644. .SS Support development
  2645. .PP
  2646. This software is free to use and released under a very liberal license.
  2647. That said if you like this software and would like to support its
  2648. development donations are welcome.
  2649. .IP \[bu] 2
  2650. PayPal: https://paypal.me/trapexit
  2651. .IP \[bu] 2
  2652. GitHub Sponsors: https://github.com/sponsors/trapexit
  2653. .IP \[bu] 2
  2654. Patreon: https://www.patreon.com/trapexit
  2655. .IP \[bu] 2
  2656. SubscribeStar: https://www.subscribestar.com/trapexit
  2657. .IP \[bu] 2
  2658. Ko\-Fi: https://ko\-fi.com/trapexit
  2659. .IP \[bu] 2
  2660. Bitcoin (BTC): 1DfoUd2m5WCxJAMvcFuvDpT4DR2gWX2PWb
  2661. .IP \[bu] 2
  2662. Bitcoin Cash (BCH): qrf257j0l09yxty4kur8dk2uma8p5vntdcpks72l8z
  2663. .IP \[bu] 2
  2664. Ethereum (ETH): 0xb486C0270fF75872Fc51d85879b9c15C380E66CA
  2665. .IP \[bu] 2
  2666. Litecoin (LTC): LW1rvHRPWtm2NUEMhJpP4DjHZY1FaJ1WYs
  2667. .IP \[bu] 2
  2668. Basic Attention Token (BAT): 0xE651d4900B4C305284Da43E2e182e9abE149A87A
  2669. .IP \[bu] 2
  2670. Zcash (ZEC): t1ZwTgmbQF23DJrzqbAmw8kXWvU2xUkkhTt
  2671. .IP \[bu] 2
  2672. Zcoin (XZC): a8L5Vz35KdCQe7Y7urK2pcCGau7JsqZ5Gw
  2673. .SH LINKS
  2674. .IP \[bu] 2
  2675. https://spawn.link
  2676. .IP \[bu] 2
  2677. https://github.com/trapexit/mergerfs
  2678. .IP \[bu] 2
  2679. https://github.com/trapexit/mergerfs/wiki
  2680. .IP \[bu] 2
  2681. https://github.com/trapexit/mergerfs\-tools
  2682. .IP \[bu] 2
  2683. https://github.com/trapexit/scorch
  2684. .IP \[bu] 2
  2685. https://github.com/trapexit/bbf
  2686. .IP \[bu] 2
  2687. https://github.com/trapexit/backup\-and\-recovery\-howtos
  2688. .SH AUTHORS
  2689. Antonio SJ Musumeci <trapexit@spawn.link>.