]> git.proxmox.com Git - mirror_zfs.git/commit - module/zfs/spa_stats.c
Multi-modifier protection (MMP)
authorOlaf Faaland <faaland1@llnl.gov>
Sat, 8 Jul 2017 03:20:35 +0000 (20:20 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 13 Jul 2017 17:54:00 +0000 (13:54 -0400)
commit379ca9cf2beba802f096273e89e30914a2d6bafc
tree13ba40770c61077f09b32107b2c375819295bce7
parent34ae0ae1749f297c23c3c1680ea552df94ae2122
Multi-modifier protection (MMP)

Add multihost=on|off pool property to control MMP.  When enabled
a new thread writes uberblocks to the last slot in each label, at a
set frequency, to indicate to other hosts the pool is actively imported.
These uberblocks are the last synced uberblock with an updated
timestamp.  Property defaults to off.

During tryimport, find the "best" uberblock (newest txg and timestamp)
repeatedly, checking for change in the found uberblock.  Include the
results of the activity test in the config returned by tryimport.
These results are reported to user in "zpool import".

Allow the user to control the period between MMP writes, and the
duration of the activity test on import, via a new module parameter
zfs_multihost_interval.  The period is specified in milliseconds.  The
activity test duration is calculated from this value, and from the
mmp_delay in the "best" uberblock found initially.

Add a kstat interface to export statistics about Multiple Modifier
Protection (MMP) updates. Include the last synced txg number, the
timestamp, the delay since the last MMP update, the VDEV GUID, the VDEV
label that received the last MMP update, and the VDEV path.  Abbreviated
output below.

$ cat /proc/spl/kstat/zfs/mypool/multihost
31 0 0x01 10 880 105092382393521 105144180101111
txg   timestamp  mmp_delay   vdev_guid   vdev_label vdev_path
20468    261337  250274925   68396651780       3    /dev/sda
20468    261339  252023374   6267402363293     1    /dev/sdc
20468    261340  252000858   6698080955233     1    /dev/sdx
20468    261341  251980635   783892869810      2    /dev/sdy
20468    261342  253385953   8923255792467     3    /dev/sdd
20468    261344  253336622   042125143176      0    /dev/sdab
20468    261345  253310522   1200778101278     2    /dev/sde
20468    261346  253286429   0950576198362     2    /dev/sdt
20468    261347  253261545   96209817917       3    /dev/sds
20468    261349  253238188   8555725937673     3    /dev/sdb

Add a new tunable zfs_multihost_history to specify the number of MMP
updates to store history for. By default it is set to zero meaning that
no MMP statistics are stored.

When using ztest to generate activity, for automated tests of the MMP
function, some test functions interfere with the test.  For example, the
pool is exported to run zdb and then imported again.  Add a new ztest
function, "-M", to alter ztest behavior to prevent this.

Add new tests to verify the new functionality.  Tests provided by
Giuseppe Di Natale.

Reviewed by: Matthew Ahrens <mahrens@delphix.com>
Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: Ned Bass <bass6@llnl.gov>
Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Olaf Faaland <faaland1@llnl.gov>
Closes #745
Closes #6279
56 files changed:
cmd/zdb/zdb.c
cmd/zhack/zhack.c
cmd/zpool/zpool_main.c
cmd/ztest/ztest.c
configure.ac
include/libzfs.h
include/libzfs_impl.h
include/sys/Makefile.am
include/sys/dsl_pool.h
include/sys/fs/zfs.h
include/sys/mmp.h [new file with mode: 0644]
include/sys/spa.h
include/sys/spa_impl.h
include/sys/uberblock.h
include/sys/uberblock_impl.h
include/sys/vdev.h
include/sys/vdev_impl.h
lib/libzfs/libzfs_import.c
lib/libzfs/libzfs_pool.c
lib/libzfs/libzfs_status.c
lib/libzfs/libzfs_util.c
lib/libzpool/Makefile.am
man/man1/ztest.1
man/man5/zfs-module-parameters.5
man/man8/zpool.8
module/zcommon/zpool_prop.c
module/zfs/Makefile.in
module/zfs/dsl_pool.c
module/zfs/mmp.c [new file with mode: 0644]
module/zfs/spa.c
module/zfs/spa_config.c
module/zfs/spa_misc.c
module/zfs/spa_stats.c
module/zfs/uberblock.c
module/zfs/vdev_label.c
module/zfs/zfs_ioctl.c
scripts/zfs-tests.sh
tests/runfiles/linux.run
tests/zfs-tests/callbacks/Makefile.am
tests/zfs-tests/callbacks/zfs_mmp.ksh [new file with mode: 0755]
tests/zfs-tests/include/commands.cfg
tests/zfs-tests/include/libtest.shlib
tests/zfs-tests/tests/functional/Makefile.am
tests/zfs-tests/tests/functional/cli_root/zpool_get/zpool_get.cfg
tests/zfs-tests/tests/functional/mmp/Makefile.am [new file with mode: 0644]
tests/zfs-tests/tests/functional/mmp/cleanup.ksh [new file with mode: 0755]
tests/zfs-tests/tests/functional/mmp/mmp.cfg [new file with mode: 0644]
tests/zfs-tests/tests/functional/mmp/mmp.kshlib [new file with mode: 0644]
tests/zfs-tests/tests/functional/mmp/mmp_active_import.ksh [new file with mode: 0755]
tests/zfs-tests/tests/functional/mmp/mmp_exported_import.ksh [new file with mode: 0755]
tests/zfs-tests/tests/functional/mmp/mmp_inactive_import.ksh [new file with mode: 0755]
tests/zfs-tests/tests/functional/mmp/mmp_interval.ksh [new file with mode: 0755]
tests/zfs-tests/tests/functional/mmp/mmp_on_off.ksh [new file with mode: 0755]
tests/zfs-tests/tests/functional/mmp/mmp_on_thread.ksh [new file with mode: 0755]
tests/zfs-tests/tests/functional/mmp/mmp_on_uberblocks.ksh [new file with mode: 0755]
tests/zfs-tests/tests/functional/mmp/setup.ksh [new file with mode: 0755]