nbdkit-noparallel-filter(1) | NBDKIT | nbdkit-noparallel-filter(1) |
nbdkit-noparallel-filter - nbdkit noparallel filter
nbdkit --filter=noparallel plugin [serialize=MODE] [plugin-args...]
"nbdkit-noparallel-filter" is a filter that intentionally disables parallelism in handling requests from clients. It is mainly useful for evaluating timing differences between various levels of parallelism. It can also be used as a way to work around any bugs in a plugin's claimed level of parallel support, without recompiling the plugin, or to ease efforts when connecting with a client that can batch up several requests but is not prepared to handle out-of-order replies.
To limit the number of concurrent clients it's usually better to use nbdkit-limit-filter(1).
Serve the file disk.img, but disallow out-of-order transaction completion to a given client:
nbdkit --filter=noparallel file disk.img
Serve the file disk.img, but allowing only one client at a time:
nbdkit --filter=noparallel file serialize=connections disk.img
Use "nbdkit --dump-config" to find the location of $filterdir.
"nbdkit-noparallel-filter" first appeared in nbdkit 1.14.
nbdkit(1), nbdkit-file-plugin(1), nbdkit-filter(3), nbdkit-fua-filter(1), nbdkit-limit-filter(1), nbdkit-multi-conn-filter(1), nbdkit-nocache-filter(1), nbdkit-noextents-filter(1), nbdkit-nozero-filter(1).
Eric Blake
Copyright (C) 2018-2020 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 |