bcache (abbreviated from ''block cache'') is a
cache mechanism in the
Linux kernel
The Linux kernel is a Free and open-source software, free and open source Unix-like kernel (operating system), kernel that is used in many computer systems worldwide. The kernel was created by Linus Torvalds in 1991 and was soon adopted as the k ...
's block layer, which is used for accessing
secondary storage
Computer data storage or digital data storage is a technology consisting of computer components and Data storage, recording media that are used to retain digital data. It is a core function and fundamental component of computers.
The cent ...
devices. It allows one or more fast storage devices, such as flash-based
solid-state drive
A solid-state drive (SSD) is a type of solid-state storage device that uses integrated circuits to store data persistently. It is sometimes called semiconductor storage device, solid-state device, or solid-state disk.
SSDs rely on non- ...
s (SSDs), to act as a cache for one or more slower storage devices, such as
hard disk drive
A hard disk drive (HDD), hard disk, hard drive, or fixed disk is an electro-mechanical data storage device that stores and retrieves digital data using magnetic storage with one or more rigid rapidly rotating hard disk drive platter, pla ...
s (HDDs); this effectively creates
hybrid volume
A hybrid drive (solid state hybrid drive – SSHD, and dual-storage drive) is a logical or physical computer storage device that combines a faster storage medium such as solid-state drive (SSD) with a higher-capacity hard disk drive (HDD). Th ...
s and provides performance improvements.
Designed around the nature and performance characteristics of SSDs, bcache also minimizes
write amplification
Write amplification (WA) is an undesirable phenomenon associated with flash memory and solid-state drives (SSDs) where the actual amount of information physically written to the storage media is a multiple of the logical amount intended to be wr ...
by avoiding
random writes and turning them into
sequential writes instead. This merging of
I/O operations is performed for both the cache and the primary storage, helping in extending the lifetime of flash-based devices used as caches, and in improving the performance of write-sensitive primary storages, such as
RAID 5
In computer storage, the standard RAID levels comprise a basic set of RAID ("redundant array of independent disks" or "redundant array of inexpensive disks") configurations that employ the techniques of striping, mirroring, or parity to create la ...
sets.
bcache is licensed under the
GNU General Public License
The GNU General Public Licenses (GNU GPL or simply GPL) are a series of widely used free software licenses, or ''copyleft'' licenses, that guarantee end users the freedom to run, study, share, or modify the software. The GPL was the first ...
(GPL), and Kent Overstreet is its primary developer. Overstreet considers bcache as a "prototype" for the development of
bcachefs
Bcachefs is a copy-on-write (COW) file system for Linux-based operating systems. Its primary developer, Kent Overstreet, first announced it in 2015, and it was added to the Linux kernel beginning with 6.7. It is intended to compete with the moder ...
, a filesystem with significant improvements over bcache.
Overview
Using bcache makes it possible to have SSDs as another level of indirection within the data storage access paths, resulting in improved overall performance by using fast
flash-based SSDs as caches for slower mechanical hard disk drives (HDDs) with rotational
magnetic media. That way, the gap between SSDs and HDDs can be bridged the costly speed of SSDs gets combined with the cheap storage capacity of traditional HDDs.
Caching is implemented by using SSDs for storing data associated with performed
random reads and random writes, using near-zero
seek time
Higher performance in hard disk drives comes from devices which have better performance characteristics. These performance characteristics can be grouped into two categories: #Access time, access time and #Data transfer rate, data transfer time (o ...
s as the most prominent feature of SSDs.
Sequential I/O is not cached, to avoid rapid SSD
cache invalidation on such operations that are already suitable enough for HDDs; going around the cache for big sequential writes is known as the
write-around policy. Not caching the sequential
I/O also helps in extending the lifetime of SSDs used as caches.
Write amplification
Write amplification (WA) is an undesirable phenomenon associated with flash memory and solid-state drives (SSDs) where the actual amount of information physically written to the storage media is a multiple of the logical amount intended to be wr ...
is avoided by not performing random writes to SSDs; instead, all random writes to SSD caches are always combined into block-level writes, ending up with rewriting only the complete
erase blocks on SSDs.
Both ''
write-back
In computing, a cache ( ) is a hardware or software component that stores data so that future requests for that data can be served faster; the data stored in a cache might be the result of an earlier computation or a copy of data stored elsew ...
'' and ''
write-through'' (which is the default) policies are supported for caching write operations. In case of the write-back policy, written data is stored inside the SSD caches first, and propagated to the HDDs later in a batched way while performing seek-friendly operations making bcache to act also as an
I/O scheduler
Input/output (I/O) scheduling is the method that computer operating systems use to decide in which order I/O operations will be submitted to storage volumes. I/O scheduling is sometimes called disk scheduling.
Purpose
I/O scheduling usually ...
. For the write-through policy, which ensures that no write operation is marked as finished until the data requested to be written has reached both SSDs and HDDs, performance improvements are reduced by effectively performing only caching of the written data.
Write-back policy with batched writes to HDDs provides additional benefits to write-sensitive
redundant array of independent disks
RAID (; redundant array of inexpensive disks or redundant array of independent disks) is a data storage virtualization technology that combines multiple physical data storage components into one or more logical units for the purposes of data redu ...
(RAID) layouts such as
RAID 5
In computer storage, the standard RAID levels comprise a basic set of RAID ("redundant array of independent disks" or "redundant array of inexpensive disks") configurations that employ the techniques of striping, mirroring, or parity to create la ...
and
RAID 6, which perform actual write operations as
atomic read-modify-write sequences. That way, performance penalties of small random writes are reduced or avoided for such RAID layouts, by grouping them together and performing as batched sequential writes.
Caching performed by bcache operates at the
block device
In Unix-like operating systems, a device file, device node, or special file is an interface to a device driver that appears in a file system as if it were an ordinary file. There are also special files in DOS, OS/2, and Windows. These spec ...
level, making itself
file system–agnostic as long as the file system provides an embedded
universally unique identifier
A Universally Unique Identifier (UUID) is a 128-bit label used to uniquely identify objects in computer systems. The term Globally Unique Identifier (GUID) is also used, mostly in Microsoft systems.
When generated according to the standard methods ...
(UUID); this requirement is satisfied by virtually all standard
Linux file systems, as well as by
swap partitions. Sizes of the logical blocks used internally by bcache as caching extents can go down to the size of a single HDD sector.
History
bcache was first announced by Kent Overstreet in July 2010, as a completely working Linux kernel module, though at its early beta stage. The development continued for almost two years, until May 2012, at which point bcache reached its production-ready state.
It was merged into the
Linux kernel mainline in kernel version 3.10, released on June 30, 2013.
Overstreet has since been developing the
file system bcachefs
Bcachefs is a copy-on-write (COW) file system for Linux-based operating systems. Its primary developer, Kent Overstreet, first announced it in 2015, and it was added to the Linux kernel beginning with 6.7. It is intended to compete with the moder ...
, based on ideas first developed in bcache that he said began "evolving ... into a full blown, general-purpose
POSIX
The Portable Operating System Interface (POSIX; ) is a family of standards specified by the IEEE Computer Society for maintaining compatibility between operating systems. POSIX defines application programming interfaces (APIs), along with comm ...
filesystem". He describes bcache as a "prototype" for the ideas that became bcachefs and intends bcachefs to replace bcache. He officially announced bcachefs in 2015 and got it merged into the mainline Linux kernel in October 2023.
Features
As of version 3.10 of the Linux kernel, the following features are provided by bcache:
* The same cache device can be used for caching an arbitrary number of the primary storage devices
* Runtime attaching and detaching of primary storage devices from their caches, while mounted and in use (running in passthrough mode when not cached)
* Automated recovery from unclean shutdowns writes are not completed until the cache is consistent with respect to the primary storage device; internally, bcache makes no distinction between clean and unclean shutdowns
* Transparent handling of I/O errors generated by the cache devices
*
Write barriers and associated cache flushes are properly handled
* Write-through (which is the default), write-back and write-around policies
* Sequential I/O is detected and bypassed, with configurable thresholds; bypassing can also be disabled
* Throttling of the I/O to the SSD if it becomes congested, as detected by measured latency of the SSD's I/O operations exceeding a configurable threshold; useful for configurations having one SSD providing caching for many HDDs
*
Readahead on a
cache miss
In computing, a cache ( ) is a hardware or software component that stores data so that future requests for that data can be served faster; the data stored in a cache might be the result of an earlier computation or a copy of data stored elsew ...
(disabled by default)
* Highly efficient write-back implementation dirty data is always written out in sorted order, and optionally background write-back is smoothly throttled down to keeping configured percentage of the cache dirty
* High-performance
B+ tree
A B+ tree is an m-ary tree with a variable but often large number of children per node. A B+ tree consists of a root, internal nodes and leaves. The root may be either a leaf or a node with two or more children.
A B+ tree can be viewed as a B ...
s are used internally bcache is capable of around 1,000,000
IOPS
Input/output operations per second (IOPS, pronounced ''eye-ops'') is an input/output performance measurement used to characterize computer storage devices like hard disk drives (HDD), solid state drives (SSD), and storage area networks (SAN). Lik ...
on random reads, if the hardware is fast enough
* Various runtime statistics and configuration options are exposed through
sysfs
Improvements
, the following new features are planned for the future releases of bcache:
* Awareness of
data striping in RAID 5 and RAID 6 layouts adding awareness of the stripe layout to the write-back policy, so decisions on caching will be giving preference to already "dirty" stripes, and actual background flushes will be writing out complete stripes first
* Handling cache misses with already full B+ tree nodes as of the bcache version in Linux kernel 3.10, splits of the internally used B+ tree nodes happen on writes, making initial cache warm-ups hardly achievable
* Multiple SSDs in a cache set only dirty data (for the write-back policy) and
metadata
Metadata (or metainformation) is "data that provides information about other data", but not the content of the data itself, such as the text of a message or the image itself. There are many distinct types of metadata, including:
* Descriptive ...
would be mirrored, without wasting SSD space for the clean data and read caches
* Data
checksum
A checksum is a small-sized block of data derived from another block of digital data for the purpose of detecting errors that may have been introduced during its transmission or storage. By themselves, checksums are often used to verify dat ...
ming
See also
*
dm-cache a Linux kernel's device mapper target that allows creation of hybrid volumes
*
EnhanceIO a disk cache module for the Linux kernel.
*
Flashcache a disk cache component for the Linux kernel, initially developed by Facebook
*
Hybrid drive
A hybrid drive (solid state hybrid drive – SSHD, and dual-storage drive) is a logical or physical computer storage device that combines a faster storage medium such as solid-state drive (SSD) with a higher-capacity hard disk drive (HDD). Th ...
a storage device that combines flash-based and spinning magnetic media storage technologies
*
ReadyBoost
ReadyBoost (codenamed EMD) is a disk caching software component developed by Microsoft for Windows Vista and included in later versions of Windows. ReadyBoost enables NAND memory mass storage CompactFlash, SD card, and USB flash drive devices to ...
a disk caching software component of Windows Vista and later Microsoft operating systems
*
Smart Response Technology (SRT) a proprietary disk storage caching mechanism, developed by Intel for its chipsets
References
External links
*
LSFMM: Caching dm-cache and bcache LWN.net, May 1, 2013, by Jake Edge
Linux Block Caching Choices in Stable Upstream Kernel(PDF),
Dell
Dell Inc. is an American technology company that develops, sells, repairs, and supports personal computers (PCs), Server (computing), servers, data storage devices, network switches, software, computer peripherals including printers and webcam ...
, December 2013
* Testing bcache series: , , , and , ''
Linux Magazine
''Linux Magazine'' is an international magazine for Linux software enthusiasts and professionals. It is published by Computec Media GmbH in German-speaking countries and Linux New Media USA, LLC. for English edition.
The magazine was first publ ...
'', August–September 2010, by Jeffrey B. Layton
Performance Comparison among EnhanceIO, bcache and dm-cache LKML
The Linux kernel mailing list (LKML) is the main electronic mailing list for Linux kernel development, where the majority of the announcements, discussions, debates, and flame wars over the kernel take place. Many other mailing lists exist to d ...
, June 11, 2013
EnhanceIO, Bcache & DM-Cache Benchmarked Phoronix
Phoronix Test Suite (PTS) is a free and open-source benchmark software for Linux and other operating systems.
The Phoronix Test Suite, developed by Michael Larabel and Matthew Tippett, has been endorsed by sites such as Linux.com, LinuxPlanet ...
, June 11, 2013, by Michael Larabel
{{Operating system
Solid-state caching
Free software programmed in C
Linux kernel features