bcache.txt 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437
  1. Say you've got a big slow raid 6, and an X-25E or three. Wouldn't it be
  2. nice if you could use them as cache... Hence bcache.
  3. Wiki and git repositories are at:
  4. http://bcache.evilpiepirate.org
  5. http://evilpiepirate.org/git/linux-bcache.git
  6. http://evilpiepirate.org/git/bcache-tools.git
  7. It's designed around the performance characteristics of SSDs - it only allocates
  8. in erase block sized buckets, and it uses a hybrid btree/log to track cached
  9. extants (which can be anywhere from a single sector to the bucket size). It's
  10. designed to avoid random writes at all costs; it fills up an erase block
  11. sequentially, then issues a discard before reusing it.
  12. Both writethrough and writeback caching are supported. Writeback defaults to
  13. off, but can be switched on and off arbitrarily at runtime. Bcache goes to
  14. great lengths to protect your data - it reliably handles unclean shutdown. (It
  15. doesn't even have a notion of a clean shutdown; bcache simply doesn't return
  16. writes as completed until they're on stable storage).
  17. Writeback caching can use most of the cache for buffering writes - writing
  18. dirty data to the backing device is always done sequentially, scanning from the
  19. start to the end of the index.
  20. Since random IO is what SSDs excel at, there generally won't be much benefit
  21. to caching large sequential IO. Bcache detects sequential IO and skips it;
  22. it also keeps a rolling average of the IO sizes per task, and as long as the
  23. average is above the cutoff it will skip all IO from that task - instead of
  24. caching the first 512k after every seek. Backups and large file copies should
  25. thus entirely bypass the cache.
  26. In the event of a data IO error on the flash it will try to recover by reading
  27. from disk or invalidating cache entries. For unrecoverable errors (meta data
  28. or dirty data), caching is automatically disabled; if dirty data was present
  29. in the cache it first disables writeback caching and waits for all dirty data
  30. to be flushed.
  31. Getting started:
  32. You'll need make-bcache from the bcache-tools repository. Both the cache device
  33. and backing device must be formatted before use.
  34. make-bcache -B /dev/sdb
  35. make-bcache -C /dev/sdc
  36. make-bcache has the ability to format multiple devices at the same time - if
  37. you format your backing devices and cache device at the same time, you won't
  38. have to manually attach:
  39. make-bcache -B /dev/sda /dev/sdb -C /dev/sdc
  40. To make bcache devices known to the kernel, echo them to /sys/fs/bcache/register:
  41. echo /dev/sdb > /sys/fs/bcache/register
  42. echo /dev/sdc > /sys/fs/bcache/register
  43. To register your bcache devices automatically, you could add something like
  44. this to an init script:
  45. echo /dev/sd* > /sys/fs/bcache/register_quiet
  46. It'll look for bcache superblocks and ignore everything that doesn't have one.
  47. Registering the backing device makes the bcache show up in /dev; you can now
  48. format it and use it as normal. But the first time using a new bcache device,
  49. it'll be running in passthrough mode until you attach it to a cache. See the
  50. section on attaching.
  51. The devices show up at /dev/bcacheN, and can be controlled via sysfs from
  52. /sys/block/bcacheN/bcache:
  53. mkfs.ext4 /dev/bcache0
  54. mount /dev/bcache0 /mnt
  55. Cache devices are managed as sets; multiple caches per set isn't supported yet
  56. but will allow for mirroring of metadata and dirty data in the future. Your new
  57. cache set shows up as /sys/fs/bcache/<UUID>
  58. ATTACHING:
  59. After your cache device and backing device are registered, the backing device
  60. must be attached to your cache set to enable caching. Attaching a backing
  61. device to a cache set is done thusly, with the UUID of the cache set in
  62. /sys/fs/bcache:
  63. echo <UUID> > /sys/block/bcache0/bcache/attach
  64. This only has to be done once. The next time you reboot, just reregister all
  65. your bcache devices. If a backing device has data in a cache somewhere, the
  66. /dev/bcache# device won't be created until the cache shows up - particularly
  67. important if you have writeback caching turned on.
  68. If you're booting up and your cache device is gone and never coming back, you
  69. can force run the backing device:
  70. echo 1 > /sys/block/sdb/bcache/running
  71. (You need to use /sys/block/sdb (or whatever your backing device is called), not
  72. /sys/block/bcache0, because bcache0 doesn't exist yet. If you're using a
  73. partition, the bcache directory would be at /sys/block/sdb/sdb2/bcache)
  74. The backing device will still use that cache set if it shows up in the future,
  75. but all the cached data will be invalidated. If there was dirty data in the
  76. cache, don't expect the filesystem to be recoverable - you will have massive
  77. filesystem corruption, though ext4's fsck does work miracles.
  78. ERROR HANDLING:
  79. Bcache tries to transparently handle IO errors to/from the cache device without
  80. affecting normal operation; if it sees too many errors (the threshold is
  81. configurable, and defaults to 0) it shuts down the cache device and switches all
  82. the backing devices to passthrough mode.
  83. - For reads from the cache, if they error we just retry the read from the
  84. backing device.
  85. - For writethrough writes, if the write to the cache errors we just switch to
  86. invalidating the data at that lba in the cache (i.e. the same thing we do for
  87. a write that bypasses the cache)
  88. - For writeback writes, we currently pass that error back up to the
  89. filesystem/userspace. This could be improved - we could retry it as a write
  90. that skips the cache so we don't have to error the write.
  91. - When we detach, we first try to flush any dirty data (if we were running in
  92. writeback mode). It currently doesn't do anything intelligent if it fails to
  93. read some of the dirty data, though.
  94. TROUBLESHOOTING PERFORMANCE:
  95. Bcache has a bunch of config options and tunables. The defaults are intended to
  96. be reasonable for typical desktop and server workloads, but they're not what you
  97. want for getting the best possible numbers when benchmarking.
  98. - Bad write performance
  99. If write performance is not what you expected, you probably wanted to be
  100. running in writeback mode, which isn't the default (not due to a lack of
  101. maturity, but simply because in writeback mode you'll lose data if something
  102. happens to your SSD)
  103. # echo writeback > /sys/block/bcache0/cache_mode
  104. - Bad performance, or traffic not going to the SSD that you'd expect
  105. By default, bcache doesn't cache everything. It tries to skip sequential IO -
  106. because you really want to be caching the random IO, and if you copy a 10
  107. gigabyte file you probably don't want that pushing 10 gigabytes of randomly
  108. accessed data out of your cache.
  109. But if you want to benchmark reads from cache, and you start out with fio
  110. writing an 8 gigabyte test file - so you want to disable that.
  111. # echo 0 > /sys/block/bcache0/bcache/sequential_cutoff
  112. To set it back to the default (4 mb), do
  113. # echo 4M > /sys/block/bcache0/bcache/sequential_cutoff
  114. - Traffic's still going to the spindle/still getting cache misses
  115. In the real world, SSDs don't always keep up with disks - particularly with
  116. slower SSDs, many disks being cached by one SSD, or mostly sequential IO. So
  117. you want to avoid being bottlenecked by the SSD and having it slow everything
  118. down.
  119. To avoid that bcache tracks latency to the cache device, and gradually
  120. throttles traffic if the latency exceeds a threshold (it does this by
  121. cranking down the sequential bypass).
  122. You can disable this if you need to by setting the thresholds to 0:
  123. # echo 0 > /sys/fs/bcache/<cache set>/congested_read_threshold_us
  124. # echo 0 > /sys/fs/bcache/<cache set>/congested_write_threshold_us
  125. The default is 2000 us (2 milliseconds) for reads, and 20000 for writes.
  126. - Still getting cache misses, of the same data
  127. One last issue that sometimes trips people up is actually an old bug, due to
  128. the way cache coherency is handled for cache misses. If a btree node is full,
  129. a cache miss won't be able to insert a key for the new data and the data
  130. won't be written to the cache.
  131. In practice this isn't an issue because as soon as a write comes along it'll
  132. cause the btree node to be split, and you need almost no write traffic for
  133. this to not show up enough to be noticeable (especially since bcache's btree
  134. nodes are huge and index large regions of the device). But when you're
  135. benchmarking, if you're trying to warm the cache by reading a bunch of data
  136. and there's no other traffic - that can be a problem.
  137. Solution: warm the cache by doing writes, or use the testing branch (there's
  138. a fix for the issue there).
  139. SYSFS - BACKING DEVICE:
  140. attach
  141. Echo the UUID of a cache set to this file to enable caching.
  142. cache_mode
  143. Can be one of either writethrough, writeback, writearound or none.
  144. clear_stats
  145. Writing to this file resets the running total stats (not the day/hour/5 minute
  146. decaying versions).
  147. detach
  148. Write to this file to detach from a cache set. If there is dirty data in the
  149. cache, it will be flushed first.
  150. dirty_data
  151. Amount of dirty data for this backing device in the cache. Continuously
  152. updated unlike the cache set's version, but may be slightly off.
  153. label
  154. Name of underlying device.
  155. readahead
  156. Size of readahead that should be performed. Defaults to 0. If set to e.g.
  157. 1M, it will round cache miss reads up to that size, but without overlapping
  158. existing cache entries.
  159. running
  160. 1 if bcache is running (i.e. whether the /dev/bcache device exists, whether
  161. it's in passthrough mode or caching).
  162. sequential_cutoff
  163. A sequential IO will bypass the cache once it passes this threshold; the
  164. most recent 128 IOs are tracked so sequential IO can be detected even when
  165. it isn't all done at once.
  166. sequential_merge
  167. If non zero, bcache keeps a list of the last 128 requests submitted to compare
  168. against all new requests to determine which new requests are sequential
  169. continuations of previous requests for the purpose of determining sequential
  170. cutoff. This is necessary if the sequential cutoff value is greater than the
  171. maximum acceptable sequential size for any single request.
  172. state
  173. The backing device can be in one of four different states:
  174. no cache: Has never been attached to a cache set.
  175. clean: Part of a cache set, and there is no cached dirty data.
  176. dirty: Part of a cache set, and there is cached dirty data.
  177. inconsistent: The backing device was forcibly run by the user when there was
  178. dirty data cached but the cache set was unavailable; whatever data was on the
  179. backing device has likely been corrupted.
  180. stop
  181. Write to this file to shut down the bcache device and close the backing
  182. device.
  183. writeback_delay
  184. When dirty data is written to the cache and it previously did not contain
  185. any, waits some number of seconds before initiating writeback. Defaults to
  186. 30.
  187. writeback_percent
  188. If nonzero, bcache tries to keep around this percentage of the cache dirty by
  189. throttling background writeback and using a PD controller to smoothly adjust
  190. the rate.
  191. writeback_rate
  192. Rate in sectors per second - if writeback_percent is nonzero, background
  193. writeback is throttled to this rate. Continuously adjusted by bcache but may
  194. also be set by the user.
  195. writeback_running
  196. If off, writeback of dirty data will not take place at all. Dirty data will
  197. still be added to the cache until it is mostly full; only meant for
  198. benchmarking. Defaults to on.
  199. SYSFS - BACKING DEVICE STATS:
  200. There are directories with these numbers for a running total, as well as
  201. versions that decay over the past day, hour and 5 minutes; they're also
  202. aggregated in the cache set directory as well.
  203. bypassed
  204. Amount of IO (both reads and writes) that has bypassed the cache
  205. cache_hits
  206. cache_misses
  207. cache_hit_ratio
  208. Hits and misses are counted per individual IO as bcache sees them; a
  209. partial hit is counted as a miss.
  210. cache_bypass_hits
  211. cache_bypass_misses
  212. Hits and misses for IO that is intended to skip the cache are still counted,
  213. but broken out here.
  214. cache_miss_collisions
  215. Counts instances where data was going to be inserted into the cache from a
  216. cache miss, but raced with a write and data was already present (usually 0
  217. since the synchronization for cache misses was rewritten)
  218. cache_readaheads
  219. Count of times readahead occurred.
  220. SYSFS - CACHE SET:
  221. average_key_size
  222. Average data per key in the btree.
  223. bdev<0..n>
  224. Symlink to each of the attached backing devices.
  225. block_size
  226. Block size of the cache devices.
  227. btree_cache_size
  228. Amount of memory currently used by the btree cache
  229. bucket_size
  230. Size of buckets
  231. cache<0..n>
  232. Symlink to each of the cache devices comprising this cache set.
  233. cache_available_percent
  234. Percentage of cache device which doesn't contain dirty data, and could
  235. potentially be used for writeback. This doesn't mean this space isn't used
  236. for clean cached data; the unused statistic (in priority_stats) is typically
  237. much lower.
  238. clear_stats
  239. Clears the statistics associated with this cache
  240. dirty_data
  241. Amount of dirty data is in the cache (updated when garbage collection runs).
  242. flash_vol_create
  243. Echoing a size to this file (in human readable units, k/M/G) creates a thinly
  244. provisioned volume backed by the cache set.
  245. io_error_halflife
  246. io_error_limit
  247. These determines how many errors we accept before disabling the cache.
  248. Each error is decayed by the half life (in # ios). If the decaying count
  249. reaches io_error_limit dirty data is written out and the cache is disabled.
  250. journal_delay_ms
  251. Journal writes will delay for up to this many milliseconds, unless a cache
  252. flush happens sooner. Defaults to 100.
  253. root_usage_percent
  254. Percentage of the root btree node in use. If this gets too high the node
  255. will split, increasing the tree depth.
  256. stop
  257. Write to this file to shut down the cache set - waits until all attached
  258. backing devices have been shut down.
  259. tree_depth
  260. Depth of the btree (A single node btree has depth 0).
  261. unregister
  262. Detaches all backing devices and closes the cache devices; if dirty data is
  263. present it will disable writeback caching and wait for it to be flushed.
  264. SYSFS - CACHE SET INTERNAL:
  265. This directory also exposes timings for a number of internal operations, with
  266. separate files for average duration, average frequency, last occurrence and max
  267. duration: garbage collection, btree read, btree node sorts and btree splits.
  268. active_journal_entries
  269. Number of journal entries that are newer than the index.
  270. btree_nodes
  271. Total nodes in the btree.
  272. btree_used_percent
  273. Average fraction of btree in use.
  274. bset_tree_stats
  275. Statistics about the auxiliary search trees
  276. btree_cache_max_chain
  277. Longest chain in the btree node cache's hash table
  278. cache_read_races
  279. Counts instances where while data was being read from the cache, the bucket
  280. was reused and invalidated - i.e. where the pointer was stale after the read
  281. completed. When this occurs the data is reread from the backing device.
  282. trigger_gc
  283. Writing to this file forces garbage collection to run.
  284. SYSFS - CACHE DEVICE:
  285. block_size
  286. Minimum granularity of writes - should match hardware sector size.
  287. btree_written
  288. Sum of all btree writes, in (kilo/mega/giga) bytes
  289. bucket_size
  290. Size of buckets
  291. cache_replacement_policy
  292. One of either lru, fifo or random.
  293. discard
  294. Boolean; if on a discard/TRIM will be issued to each bucket before it is
  295. reused. Defaults to off, since SATA TRIM is an unqueued command (and thus
  296. slow).
  297. freelist_percent
  298. Size of the freelist as a percentage of nbuckets. Can be written to to
  299. increase the number of buckets kept on the freelist, which lets you
  300. artificially reduce the size of the cache at runtime. Mostly for testing
  301. purposes (i.e. testing how different size caches affect your hit rate), but
  302. since buckets are discarded when they move on to the freelist will also make
  303. the SSD's garbage collection easier by effectively giving it more reserved
  304. space.
  305. io_errors
  306. Number of errors that have occurred, decayed by io_error_halflife.
  307. metadata_written
  308. Sum of all non data writes (btree writes and all other metadata).
  309. nbuckets
  310. Total buckets in this cache
  311. priority_stats
  312. Statistics about how recently data in the cache has been accessed.
  313. This can reveal your working set size. Unused is the percentage of
  314. the cache that doesn't contain any data. Metadata is bcache's
  315. metadata overhead. Average is the average priority of cache buckets.
  316. Next is a list of quantiles with the priority threshold of each.
  317. written
  318. Sum of all data that has been written to the cache; comparison with
  319. btree_written gives the amount of write inflation in bcache.