nbdkit-cache-filter(1) | NBDKIT | nbdkit-cache-filter(1) |
nbdkit-cache-filter - nbdkit caching filter
nbdkit --filter=cache plugin [plugin-args...] [cache=writeback|writethrough|unsafe] [cache-min-block-size=SIZE] [cache-max-size=SIZE] [cache-high-threshold=N] [cache-low-threshold=N] [cache-on-read=true|false|/PATH]
"nbdkit-cache-filter" is a filter that adds caching on top of a plugin. This is useful if a plugin is slow or expensive to use, because nbdkit will try to minimize requests to the plugin by caching previous requests.
Note that many NBD clients are able to do caching, and because the caching happens on the client side it will usually be more effective than caching inside the server. This filter can be used if the client does not have effective caching, or (with "cache=unsafe") to defeat flush requests from the client (which is unsafe and can cause data loss, as the name suggests).
This filter only caches image contents. To cache image metadata, use nbdkit-cacheextents-filter(1) between this filter and the plugin. To accelerate sequential reads, use nbdkit-readahead-filter(1) or nbdkit-scan-filter(1) on top of this filter.
This is the default caching mode, and is safe if your client issues flush requests correctly (which is true for modern Linux and other well-written NBD clients).
This makes the cache less effective, but is necessary if your client does not issue correct flush requests.
This is dangerous and can cause data loss, but this may be acceptable if you only use it for testing or with data that you don't care about or can cheaply reconstruct.
The default is 64K, or the block size of the filesystem which contains the temporary file storing the cache (whichever is larger).
Limit the size of the cache to "SIZE". See "CACHE MAXIMUM SIZE" below.
Cache read requests as well as write and cache requests. Any time a block is read from the plugin, it is saved in the cache (if there is sufficient space) so the same data can be served more quickly later.
Note that if the underlying data served by the plugin can be modified by some other means (eg. something else can write to a file which is being served by nbdkit-file-plugin(1)), this option will cause nbdkit to serve stale data because reads won't always go through to the plugin.
When /PATH (which must be an absolute path) exists, this behaves like "cache-on-read=true", and when it does not exist like "cache-on-read=false". This allows you to control the cache-on-read behaviour while nbdkit is running.
By default the cache can grow to any size (although not larger than the virtual size of the underlying plugin) and you have to ensure there is sufficient space in $TMPDIR for it.
Using the parameters "cache-max-size", "cache-high-threshold" and "cache-low-threshold" you can limit the maximum size of the cache.
This requires kernel and filesystem support (for fallocate(2) "FALLOC_FL_PUNCH_HOLE"), so it may not work on all platforms.
Some examples:
The way this works is once the size of the cache exceeds "SIZE" ✕ the high threshold, the filter works to reduce the size of the cache until it is less than "SIZE" ✕ the low threshold. Once the size is below the low threshold, no more reclaim work is done until the size exceeds the high threshold again.
The default thresholds are high 95% and low 80%. You must set 0 < low < high. The thresholds are expressed as integer percentages of "cache-max-size".
Least recently used blocks are discarded first.
Use "nbdkit --dump-config" to find the location of $filterdir.
"nbdkit-cache-filter" first appeared in nbdkit 1.2.
nbdkit(1), nbdkit-file-plugin(1), nbdkit-cacheextents-filter(1), nbdkit-cow-filter(1), nbdkit-readahead-filter(1), nbdkit-filter(3), qemu-img(1).
Eric Blake
Richard W.M. Jones
Copyright (C) 2018-2021 Red Hat Inc.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2023-01-04 | nbdkit-1.32.5 |