bcache.txt 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650
  1. ============================
  2. A block layer cache (bcache)
  3. ============================
  4. Say you've got a big slow raid 6, and an ssd or three. Wouldn't it be
  5. nice if you could use them as cache... Hence bcache.
  6. Wiki and git repositories are at:
  7. - http://bcache.evilpiepirate.org
  8. - http://evilpiepirate.org/git/linux-bcache.git
  9. - http://evilpiepirate.org/git/bcache-tools.git
  10. It's designed around the performance characteristics of SSDs - it only allocates
  11. in erase block sized buckets, and it uses a hybrid btree/log to track cached
  12. extents (which can be anywhere from a single sector to the bucket size). It's
  13. designed to avoid random writes at all costs; it fills up an erase block
  14. sequentially, then issues a discard before reusing it.
  15. Both writethrough and writeback caching are supported. Writeback defaults to
  16. off, but can be switched on and off arbitrarily at runtime. Bcache goes to
  17. great lengths to protect your data - it reliably handles unclean shutdown. (It
  18. doesn't even have a notion of a clean shutdown; bcache simply doesn't return
  19. writes as completed until they're on stable storage).
  20. Writeback caching can use most of the cache for buffering writes - writing
  21. dirty data to the backing device is always done sequentially, scanning from the
  22. start to the end of the index.
  23. Since random IO is what SSDs excel at, there generally won't be much benefit
  24. to caching large sequential IO. Bcache detects sequential IO and skips it;
  25. it also keeps a rolling average of the IO sizes per task, and as long as the
  26. average is above the cutoff it will skip all IO from that task - instead of
  27. caching the first 512k after every seek. Backups and large file copies should
  28. thus entirely bypass the cache.
  29. In the event of a data IO error on the flash it will try to recover by reading
  30. from disk or invalidating cache entries. For unrecoverable errors (meta data
  31. or dirty data), caching is automatically disabled; if dirty data was present
  32. in the cache it first disables writeback caching and waits for all dirty data
  33. to be flushed.
  34. Getting started:
  35. You'll need make-bcache from the bcache-tools repository. Both the cache device
  36. and backing device must be formatted before use::
  37. make-bcache -B /dev/sdb
  38. make-bcache -C /dev/sdc
  39. make-bcache has the ability to format multiple devices at the same time - if
  40. you format your backing devices and cache device at the same time, you won't
  41. have to manually attach::
  42. make-bcache -B /dev/sda /dev/sdb -C /dev/sdc
  43. bcache-tools now ships udev rules, and bcache devices are known to the kernel
  44. immediately. Without udev, you can manually register devices like this::
  45. echo /dev/sdb > /sys/fs/bcache/register
  46. echo /dev/sdc > /sys/fs/bcache/register
  47. Registering the backing device makes the bcache device show up in /dev; you can
  48. now format it and use it as normal. But the first time using a new bcache
  49. device, it'll be running in passthrough mode until you attach it to a cache.
  50. If you are thinking about using bcache later, it is recommended to setup all your
  51. slow devices as bcache backing devices without a cache, and you can choose to add
  52. a caching device later.
  53. See 'ATTACHING' section below.
  54. The devices show up as::
  55. /dev/bcache<N>
  56. As well as (with udev)::
  57. /dev/bcache/by-uuid/<uuid>
  58. /dev/bcache/by-label/<label>
  59. To get started::
  60. mkfs.ext4 /dev/bcache0
  61. mount /dev/bcache0 /mnt
  62. You can control bcache devices through sysfs at /sys/block/bcache<N>/bcache .
  63. You can also control them through /sys/fs//bcache/<cset-uuid>/ .
  64. Cache devices are managed as sets; multiple caches per set isn't supported yet
  65. but will allow for mirroring of metadata and dirty data in the future. Your new
  66. cache set shows up as /sys/fs/bcache/<UUID>
  67. Attaching
  68. ---------
  69. After your cache device and backing device are registered, the backing device
  70. must be attached to your cache set to enable caching. Attaching a backing
  71. device to a cache set is done thusly, with the UUID of the cache set in
  72. /sys/fs/bcache::
  73. echo <CSET-UUID> > /sys/block/bcache0/bcache/attach
  74. This only has to be done once. The next time you reboot, just reregister all
  75. your bcache devices. If a backing device has data in a cache somewhere, the
  76. /dev/bcache<N> device won't be created until the cache shows up - particularly
  77. important if you have writeback caching turned on.
  78. If you're booting up and your cache device is gone and never coming back, you
  79. can force run the backing device::
  80. echo 1 > /sys/block/sdb/bcache/running
  81. (You need to use /sys/block/sdb (or whatever your backing device is called), not
  82. /sys/block/bcache0, because bcache0 doesn't exist yet. If you're using a
  83. partition, the bcache directory would be at /sys/block/sdb/sdb2/bcache)
  84. The backing device will still use that cache set if it shows up in the future,
  85. but all the cached data will be invalidated. If there was dirty data in the
  86. cache, don't expect the filesystem to be recoverable - you will have massive
  87. filesystem corruption, though ext4's fsck does work miracles.
  88. Error Handling
  89. --------------
  90. Bcache tries to transparently handle IO errors to/from the cache device without
  91. affecting normal operation; if it sees too many errors (the threshold is
  92. configurable, and defaults to 0) it shuts down the cache device and switches all
  93. the backing devices to passthrough mode.
  94. - For reads from the cache, if they error we just retry the read from the
  95. backing device.
  96. - For writethrough writes, if the write to the cache errors we just switch to
  97. invalidating the data at that lba in the cache (i.e. the same thing we do for
  98. a write that bypasses the cache)
  99. - For writeback writes, we currently pass that error back up to the
  100. filesystem/userspace. This could be improved - we could retry it as a write
  101. that skips the cache so we don't have to error the write.
  102. - When we detach, we first try to flush any dirty data (if we were running in
  103. writeback mode). It currently doesn't do anything intelligent if it fails to
  104. read some of the dirty data, though.
  105. Howto/cookbook
  106. --------------
  107. A) Starting a bcache with a missing caching device
  108. If registering the backing device doesn't help, it's already there, you just need
  109. to force it to run without the cache::
  110. host:~# echo /dev/sdb1 > /sys/fs/bcache/register
  111. [ 119.844831] bcache: register_bcache() error opening /dev/sdb1: device already registered
  112. Next, you try to register your caching device if it's present. However
  113. if it's absent, or registration fails for some reason, you can still
  114. start your bcache without its cache, like so::
  115. host:/sys/block/sdb/sdb1/bcache# echo 1 > running
  116. Note that this may cause data loss if you were running in writeback mode.
  117. B) Bcache does not find its cache::
  118. host:/sys/block/md5/bcache# echo 0226553a-37cf-41d5-b3ce-8b1e944543a8 > attach
  119. [ 1933.455082] bcache: bch_cached_dev_attach() Couldn't find uuid for md5 in set
  120. [ 1933.478179] bcache: __cached_dev_store() Can't attach 0226553a-37cf-41d5-b3ce-8b1e944543a8
  121. [ 1933.478179] : cache set not found
  122. In this case, the caching device was simply not registered at boot
  123. or disappeared and came back, and needs to be (re-)registered::
  124. host:/sys/block/md5/bcache# echo /dev/sdh2 > /sys/fs/bcache/register
  125. C) Corrupt bcache crashes the kernel at device registration time:
  126. This should never happen. If it does happen, then you have found a bug!
  127. Please report it to the bcache development list: linux-bcache@vger.kernel.org
  128. Be sure to provide as much information that you can including kernel dmesg
  129. output if available so that we may assist.
  130. D) Recovering data without bcache:
  131. If bcache is not available in the kernel, a filesystem on the backing
  132. device is still available at an 8KiB offset. So either via a loopdev
  133. of the backing device created with --offset 8K, or any value defined by
  134. --data-offset when you originally formatted bcache with `make-bcache`.
  135. For example::
  136. losetup -o 8192 /dev/loop0 /dev/your_bcache_backing_dev
  137. This should present your unmodified backing device data in /dev/loop0
  138. If your cache is in writethrough mode, then you can safely discard the
  139. cache device without loosing data.
  140. E) Wiping a cache device
  141. ::
  142. host:~# wipefs -a /dev/sdh2
  143. 16 bytes were erased at offset 0x1018 (bcache)
  144. they were: c6 85 73 f6 4e 1a 45 ca 82 65 f5 7f 48 ba 6d 81
  145. After you boot back with bcache enabled, you recreate the cache and attach it::
  146. host:~# make-bcache -C /dev/sdh2
  147. UUID: 7be7e175-8f4c-4f99-94b2-9c904d227045
  148. Set UUID: 5bc072a8-ab17-446d-9744-e247949913c1
  149. version: 0
  150. nbuckets: 106874
  151. block_size: 1
  152. bucket_size: 1024
  153. nr_in_set: 1
  154. nr_this_dev: 0
  155. first_bucket: 1
  156. [ 650.511912] bcache: run_cache_set() invalidating existing data
  157. [ 650.549228] bcache: register_cache() registered cache device sdh2
  158. start backing device with missing cache::
  159. host:/sys/block/md5/bcache# echo 1 > running
  160. attach new cache::
  161. host:/sys/block/md5/bcache# echo 5bc072a8-ab17-446d-9744-e247949913c1 > attach
  162. [ 865.276616] bcache: bch_cached_dev_attach() Caching md5 as bcache0 on set 5bc072a8-ab17-446d-9744-e247949913c1
  163. F) Remove or replace a caching device::
  164. host:/sys/block/sda/sda7/bcache# echo 1 > detach
  165. [ 695.872542] bcache: cached_dev_detach_finish() Caching disabled for sda7
  166. host:~# wipefs -a /dev/nvme0n1p4
  167. wipefs: error: /dev/nvme0n1p4: probing initialization failed: Device or resource busy
  168. Ooops, it's disabled, but not unregistered, so it's still protected
  169. We need to go and unregister it::
  170. host:/sys/fs/bcache/b7ba27a1-2398-4649-8ae3-0959f57ba128# ls -l cache0
  171. lrwxrwxrwx 1 root root 0 Feb 25 18:33 cache0 -> ../../../devices/pci0000:00/0000:00:1d.0/0000:70:00.0/nvme/nvme0/nvme0n1/nvme0n1p4/bcache/
  172. host:/sys/fs/bcache/b7ba27a1-2398-4649-8ae3-0959f57ba128# echo 1 > stop
  173. kernel: [ 917.041908] bcache: cache_set_free() Cache set b7ba27a1-2398-4649-8ae3-0959f57ba128 unregistered
  174. Now we can wipe it::
  175. host:~# wipefs -a /dev/nvme0n1p4
  176. /dev/nvme0n1p4: 16 bytes were erased at offset 0x00001018 (bcache): c6 85 73 f6 4e 1a 45 ca 82 65 f5 7f 48 ba 6d 81
  177. G) dm-crypt and bcache
  178. First setup bcache unencrypted and then install dmcrypt on top of
  179. /dev/bcache<N> This will work faster than if you dmcrypt both the backing
  180. and caching devices and then install bcache on top. [benchmarks?]
  181. H) Stop/free a registered bcache to wipe and/or recreate it
  182. Suppose that you need to free up all bcache references so that you can
  183. fdisk run and re-register a changed partition table, which won't work
  184. if there are any active backing or caching devices left on it:
  185. 1) Is it present in /dev/bcache* ? (there are times where it won't be)
  186. If so, it's easy::
  187. host:/sys/block/bcache0/bcache# echo 1 > stop
  188. 2) But if your backing device is gone, this won't work::
  189. host:/sys/block/bcache0# cd bcache
  190. bash: cd: bcache: No such file or directory
  191. In this case, you may have to unregister the dmcrypt block device that
  192. references this bcache to free it up::
  193. host:~# dmsetup remove oldds1
  194. bcache: bcache_device_free() bcache0 stopped
  195. bcache: cache_set_free() Cache set 5bc072a8-ab17-446d-9744-e247949913c1 unregistered
  196. This causes the backing bcache to be removed from /sys/fs/bcache and
  197. then it can be reused. This would be true of any block device stacking
  198. where bcache is a lower device.
  199. 3) In other cases, you can also look in /sys/fs/bcache/::
  200. host:/sys/fs/bcache# ls -l */{cache?,bdev?}
  201. lrwxrwxrwx 1 root root 0 Mar 5 09:39 0226553a-37cf-41d5-b3ce-8b1e944543a8/bdev1 -> ../../../devices/virtual/block/dm-1/bcache/
  202. lrwxrwxrwx 1 root root 0 Mar 5 09:39 0226553a-37cf-41d5-b3ce-8b1e944543a8/cache0 -> ../../../devices/virtual/block/dm-4/bcache/
  203. lrwxrwxrwx 1 root root 0 Mar 5 09:39 5bc072a8-ab17-446d-9744-e247949913c1/cache0 -> ../../../devices/pci0000:00/0000:00:01.0/0000:01:00.0/ata10/host9/target9:0:0/9:0:0:0/block/sdl/sdl2/bcache/
  204. The device names will show which UUID is relevant, cd in that directory
  205. and stop the cache::
  206. host:/sys/fs/bcache/5bc072a8-ab17-446d-9744-e247949913c1# echo 1 > stop
  207. This will free up bcache references and let you reuse the partition for
  208. other purposes.
  209. Troubleshooting performance
  210. ---------------------------
  211. Bcache has a bunch of config options and tunables. The defaults are intended to
  212. be reasonable for typical desktop and server workloads, but they're not what you
  213. want for getting the best possible numbers when benchmarking.
  214. - Backing device alignment
  215. The default metadata size in bcache is 8k. If your backing device is
  216. RAID based, then be sure to align this by a multiple of your stride
  217. width using `make-bcache --data-offset`. If you intend to expand your
  218. disk array in the future, then multiply a series of primes by your
  219. raid stripe size to get the disk multiples that you would like.
  220. For example: If you have a 64k stripe size, then the following offset
  221. would provide alignment for many common RAID5 data spindle counts::
  222. 64k * 2*2*2*3*3*5*7 bytes = 161280k
  223. That space is wasted, but for only 157.5MB you can grow your RAID 5
  224. volume to the following data-spindle counts without re-aligning::
  225. 3,4,5,6,7,8,9,10,12,14,15,18,20,21 ...
  226. - Bad write performance
  227. If write performance is not what you expected, you probably wanted to be
  228. running in writeback mode, which isn't the default (not due to a lack of
  229. maturity, but simply because in writeback mode you'll lose data if something
  230. happens to your SSD)::
  231. # echo writeback > /sys/block/bcache0/bcache/cache_mode
  232. - Bad performance, or traffic not going to the SSD that you'd expect
  233. By default, bcache doesn't cache everything. It tries to skip sequential IO -
  234. because you really want to be caching the random IO, and if you copy a 10
  235. gigabyte file you probably don't want that pushing 10 gigabytes of randomly
  236. accessed data out of your cache.
  237. But if you want to benchmark reads from cache, and you start out with fio
  238. writing an 8 gigabyte test file - so you want to disable that::
  239. # echo 0 > /sys/block/bcache0/bcache/sequential_cutoff
  240. To set it back to the default (4 mb), do::
  241. # echo 4M > /sys/block/bcache0/bcache/sequential_cutoff
  242. - Traffic's still going to the spindle/still getting cache misses
  243. In the real world, SSDs don't always keep up with disks - particularly with
  244. slower SSDs, many disks being cached by one SSD, or mostly sequential IO. So
  245. you want to avoid being bottlenecked by the SSD and having it slow everything
  246. down.
  247. To avoid that bcache tracks latency to the cache device, and gradually
  248. throttles traffic if the latency exceeds a threshold (it does this by
  249. cranking down the sequential bypass).
  250. You can disable this if you need to by setting the thresholds to 0::
  251. # echo 0 > /sys/fs/bcache/<cache set>/congested_read_threshold_us
  252. # echo 0 > /sys/fs/bcache/<cache set>/congested_write_threshold_us
  253. The default is 2000 us (2 milliseconds) for reads, and 20000 for writes.
  254. - Still getting cache misses, of the same data
  255. One last issue that sometimes trips people up is actually an old bug, due to
  256. the way cache coherency is handled for cache misses. If a btree node is full,
  257. a cache miss won't be able to insert a key for the new data and the data
  258. won't be written to the cache.
  259. In practice this isn't an issue because as soon as a write comes along it'll
  260. cause the btree node to be split, and you need almost no write traffic for
  261. this to not show up enough to be noticeable (especially since bcache's btree
  262. nodes are huge and index large regions of the device). But when you're
  263. benchmarking, if you're trying to warm the cache by reading a bunch of data
  264. and there's no other traffic - that can be a problem.
  265. Solution: warm the cache by doing writes, or use the testing branch (there's
  266. a fix for the issue there).
  267. Sysfs - backing device
  268. ----------------------
  269. Available at /sys/block/<bdev>/bcache, /sys/block/bcache*/bcache and
  270. (if attached) /sys/fs/bcache/<cset-uuid>/bdev*
  271. attach
  272. Echo the UUID of a cache set to this file to enable caching.
  273. cache_mode
  274. Can be one of either writethrough, writeback, writearound or none.
  275. clear_stats
  276. Writing to this file resets the running total stats (not the day/hour/5 minute
  277. decaying versions).
  278. detach
  279. Write to this file to detach from a cache set. If there is dirty data in the
  280. cache, it will be flushed first.
  281. dirty_data
  282. Amount of dirty data for this backing device in the cache. Continuously
  283. updated unlike the cache set's version, but may be slightly off.
  284. label
  285. Name of underlying device.
  286. readahead
  287. Size of readahead that should be performed. Defaults to 0. If set to e.g.
  288. 1M, it will round cache miss reads up to that size, but without overlapping
  289. existing cache entries.
  290. running
  291. 1 if bcache is running (i.e. whether the /dev/bcache device exists, whether
  292. it's in passthrough mode or caching).
  293. sequential_cutoff
  294. A sequential IO will bypass the cache once it passes this threshold; the
  295. most recent 128 IOs are tracked so sequential IO can be detected even when
  296. it isn't all done at once.
  297. sequential_merge
  298. If non zero, bcache keeps a list of the last 128 requests submitted to compare
  299. against all new requests to determine which new requests are sequential
  300. continuations of previous requests for the purpose of determining sequential
  301. cutoff. This is necessary if the sequential cutoff value is greater than the
  302. maximum acceptable sequential size for any single request.
  303. state
  304. The backing device can be in one of four different states:
  305. no cache: Has never been attached to a cache set.
  306. clean: Part of a cache set, and there is no cached dirty data.
  307. dirty: Part of a cache set, and there is cached dirty data.
  308. inconsistent: The backing device was forcibly run by the user when there was
  309. dirty data cached but the cache set was unavailable; whatever data was on the
  310. backing device has likely been corrupted.
  311. stop
  312. Write to this file to shut down the bcache device and close the backing
  313. device.
  314. writeback_delay
  315. When dirty data is written to the cache and it previously did not contain
  316. any, waits some number of seconds before initiating writeback. Defaults to
  317. 30.
  318. writeback_percent
  319. If nonzero, bcache tries to keep around this percentage of the cache dirty by
  320. throttling background writeback and using a PD controller to smoothly adjust
  321. the rate.
  322. writeback_rate
  323. Rate in sectors per second - if writeback_percent is nonzero, background
  324. writeback is throttled to this rate. Continuously adjusted by bcache but may
  325. also be set by the user.
  326. writeback_running
  327. If off, writeback of dirty data will not take place at all. Dirty data will
  328. still be added to the cache until it is mostly full; only meant for
  329. benchmarking. Defaults to on.
  330. Sysfs - backing device stats
  331. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  332. There are directories with these numbers for a running total, as well as
  333. versions that decay over the past day, hour and 5 minutes; they're also
  334. aggregated in the cache set directory as well.
  335. bypassed
  336. Amount of IO (both reads and writes) that has bypassed the cache
  337. cache_hits, cache_misses, cache_hit_ratio
  338. Hits and misses are counted per individual IO as bcache sees them; a
  339. partial hit is counted as a miss.
  340. cache_bypass_hits, cache_bypass_misses
  341. Hits and misses for IO that is intended to skip the cache are still counted,
  342. but broken out here.
  343. cache_miss_collisions
  344. Counts instances where data was going to be inserted into the cache from a
  345. cache miss, but raced with a write and data was already present (usually 0
  346. since the synchronization for cache misses was rewritten)
  347. cache_readaheads
  348. Count of times readahead occurred.
  349. Sysfs - cache set
  350. ~~~~~~~~~~~~~~~~~
  351. Available at /sys/fs/bcache/<cset-uuid>
  352. average_key_size
  353. Average data per key in the btree.
  354. bdev<0..n>
  355. Symlink to each of the attached backing devices.
  356. block_size
  357. Block size of the cache devices.
  358. btree_cache_size
  359. Amount of memory currently used by the btree cache
  360. bucket_size
  361. Size of buckets
  362. cache<0..n>
  363. Symlink to each of the cache devices comprising this cache set.
  364. cache_available_percent
  365. Percentage of cache device which doesn't contain dirty data, and could
  366. potentially be used for writeback. This doesn't mean this space isn't used
  367. for clean cached data; the unused statistic (in priority_stats) is typically
  368. much lower.
  369. clear_stats
  370. Clears the statistics associated with this cache
  371. dirty_data
  372. Amount of dirty data is in the cache (updated when garbage collection runs).
  373. flash_vol_create
  374. Echoing a size to this file (in human readable units, k/M/G) creates a thinly
  375. provisioned volume backed by the cache set.
  376. io_error_halflife, io_error_limit
  377. These determines how many errors we accept before disabling the cache.
  378. Each error is decayed by the half life (in # ios). If the decaying count
  379. reaches io_error_limit dirty data is written out and the cache is disabled.
  380. journal_delay_ms
  381. Journal writes will delay for up to this many milliseconds, unless a cache
  382. flush happens sooner. Defaults to 100.
  383. root_usage_percent
  384. Percentage of the root btree node in use. If this gets too high the node
  385. will split, increasing the tree depth.
  386. stop
  387. Write to this file to shut down the cache set - waits until all attached
  388. backing devices have been shut down.
  389. tree_depth
  390. Depth of the btree (A single node btree has depth 0).
  391. unregister
  392. Detaches all backing devices and closes the cache devices; if dirty data is
  393. present it will disable writeback caching and wait for it to be flushed.
  394. Sysfs - cache set internal
  395. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  396. This directory also exposes timings for a number of internal operations, with
  397. separate files for average duration, average frequency, last occurrence and max
  398. duration: garbage collection, btree read, btree node sorts and btree splits.
  399. active_journal_entries
  400. Number of journal entries that are newer than the index.
  401. btree_nodes
  402. Total nodes in the btree.
  403. btree_used_percent
  404. Average fraction of btree in use.
  405. bset_tree_stats
  406. Statistics about the auxiliary search trees
  407. btree_cache_max_chain
  408. Longest chain in the btree node cache's hash table
  409. cache_read_races
  410. Counts instances where while data was being read from the cache, the bucket
  411. was reused and invalidated - i.e. where the pointer was stale after the read
  412. completed. When this occurs the data is reread from the backing device.
  413. trigger_gc
  414. Writing to this file forces garbage collection to run.
  415. Sysfs - Cache device
  416. ~~~~~~~~~~~~~~~~~~~~
  417. Available at /sys/block/<cdev>/bcache
  418. block_size
  419. Minimum granularity of writes - should match hardware sector size.
  420. btree_written
  421. Sum of all btree writes, in (kilo/mega/giga) bytes
  422. bucket_size
  423. Size of buckets
  424. cache_replacement_policy
  425. One of either lru, fifo or random.
  426. discard
  427. Boolean; if on a discard/TRIM will be issued to each bucket before it is
  428. reused. Defaults to off, since SATA TRIM is an unqueued command (and thus
  429. slow).
  430. freelist_percent
  431. Size of the freelist as a percentage of nbuckets. Can be written to to
  432. increase the number of buckets kept on the freelist, which lets you
  433. artificially reduce the size of the cache at runtime. Mostly for testing
  434. purposes (i.e. testing how different size caches affect your hit rate), but
  435. since buckets are discarded when they move on to the freelist will also make
  436. the SSD's garbage collection easier by effectively giving it more reserved
  437. space.
  438. io_errors
  439. Number of errors that have occurred, decayed by io_error_halflife.
  440. metadata_written
  441. Sum of all non data writes (btree writes and all other metadata).
  442. nbuckets
  443. Total buckets in this cache
  444. priority_stats
  445. Statistics about how recently data in the cache has been accessed.
  446. This can reveal your working set size. Unused is the percentage of
  447. the cache that doesn't contain any data. Metadata is bcache's
  448. metadata overhead. Average is the average priority of cache buckets.
  449. Next is a list of quantiles with the priority threshold of each.
  450. written
  451. Sum of all data that has been written to the cache; comparison with
  452. btree_written gives the amount of write inflation in bcache.