NAME

ztest - was written by the ZFS Developers as a ZFS unit test.

SYNOPSIS

ztest <options>

DESCRIPTION

This manual page documents briefly the ztest command.

ztest was written by the ZFS Developers as a ZFS unit test. The tool was developed in tandem with the ZFS functionality and was executed nightly as one of the many regression test against the daily build. As features were added to ZFS, unit tests were also added to ztest. In addition, a separate test development team wrote and executed more functional and stress tests.

By default ztest runs for ten minutes and uses block files (stored in /tmp) to create pools rather than using physical disks. Block files afford ztest its flexibility to play around with zpool components without requiring large hardware configurations. However, storing the block files in /tmp may not work for you if you have a small tmp directory.

By default is non-verbose. This is why entering the command above will result in ztest quietly executing for 5 minutes. The -V option can be used to increase the verbosity of the tool. Adding multiple -V option is allowed and the more you add the more chatty ztest becomes.

After the ztest run completes, you should notice many ztest.* files lying around. Once the run completes you can safely remove these files. Note that you shouldn't remove these files during a run. You can re-use these files in your next *ztest* run by using the -E option.

OPTIONS

-?

Print a help summary

-v vdevs (default: 5)

Number of vdevs.

-s size_of_each_vdev (default: 64M)

Size of each vdev.

-a alignment_shift (default: 9) (use 0 for random)

Used alignment in test.

-m mirror_copies (default: 2)

Number of mirror copies.

-r raidz_disks (default: 4)

Number of raidz disks.

-R raidz_parity (default: 1)

Raidz parity.

-d datasets (default: 7)

Number of datasets.

-t threads (default: 23)

Number of threads.

-g gang_block_threshold (default: 32K)

Gang block threshold.

-i initialize pool i times (default: 1)

Number of pool initialisations.

-k kill percentage (default: 70%)

Kill percentage.

-p pool_name (default: ztest)

Pool name.

-f file directory for vdev files (default: /tmp)

Directory for vdev files.

-V(erbose)

Verbose (use multiple times for ever more blather).

-E(xisting)

Use existing pool (use existing pool instead of creating new one).

-T time (default: 300 sec)

Total test run time.

-P passtime (default: 60 sec)

Time per pass.

-z zil failure rate (default: fail every 2^5 allocs)

Injected failure rate.

EXAMPLES

To override /tmp as your location for block files, you can use the -f option:

    ztest -f /

To get an idea of what ztest is actually testing try this:

    ztest -f / -VVV

Maybe you'd like to run ztest for longer? To do so simply use the -T option and specify the runlength in seconds like so:

    ztest -f / -V -T 120

SEE ALSO

zpool(1), zfs(1), zdb(1), zfs-fuse(1)

AUTHOR

This manual page was transvered to asciidoc by Michael Gebetsroither <gebi@grml.org> from http://opensolaris.org/os/community/zfs/ztest/