Scroll to navigation

nbdkit-delay-filter(1) NBDKIT nbdkit-delay-filter(1)

NAME

nbdkit-delay-filter - nbdkit delay filter

SYNOPSIS

 nbdkit --filter=delay plugin rdelay=SECS wdelay=SECS [plugin-args...]

 nbdkit --filter=delay plugin rdelay=NNms wdelay=NNms [plugin-args...]

 nbdkit --filter=delay plugin [plugin-args ...]
          delay-read=(SECS|NNms) delay-write=(SECS|NNms)
          delay-zero=(SECS|NNms) delay-trim=(SECS|NNms)

DESCRIPTION

"nbdkit-delay-filter" is a filter that delays read and write requests by some seconds or milliseconds. This is used to simulate a slow or remote server, or to test certain kinds of race conditions in Linux.

EXAMPLES

Delays reads and writes by 100ms:

 nbdkit --filter=delay file disk.img rdelay=100ms wdelay=100ms

Delay only zero operations by 1 second, nothing else is affected:

 nbdkit --filter=delay file disk.img delay-zero=1

PARAMETERS

rdelay=SECS
rdelay=NNms
delay-read=SECS
delay-read=NNms
Delay read operations by "SECS" seconds or "NN" milliseconds.

The two forms "rdelay" and "delay-read" work identically.

delay-write=SECS
delay-write=NNms
Delay write operations by "SECS" seconds or "NN" milliseconds.
delay-zero=SECS
delay-zero=NNms
Delay zero operations by "SECS" seconds or "NN" milliseconds.
delay-trim=SECS
delay-trim=NNms
Delay trim/discard operations by "SECS" seconds or "NN" milliseconds.
wdelay=SECS
wdelay=NNms
Delay write, zero and trim operations by "SECS" seconds or "NN" milliseconds.

SEE ALSO

nbdkit(1), nbdkit-filter(3).

AUTHORS

Richard W.M. Jones

COPYRIGHT

Copyright (C) 2018 Red Hat Inc.

LICENSE

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  • Neither the name of Red Hat nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

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.

2019-01-26 nbdkit-1.10.3