diff options
author | Don Brady <[email protected]> | 2024-02-08 10:19:52 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2024-02-08 09:19:52 -0800 |
commit | cbe882298e4ddc3917dfaf239eca475fe06d62d4 (patch) | |
tree | ff089153d8a4180df1dca1e7e47fd23584155f77 /include/sys/fs/zfs.h | |
parent | 229b9f4ed05e6d14fb4d73fa04a71e99b01bb534 (diff) |
Add slow disk diagnosis to ZED
Slow disk response times can be indicative of a failing drive. ZFS
currently tracks slow I/Os (slower than zio_slow_io_ms) and generates
events (ereport.fs.zfs.delay). However, no action is taken by ZED,
like is done for checksum or I/O errors. This change adds slow disk
diagnosis to ZED which is opt-in using new VDEV properties:
VDEV_PROP_SLOW_IO_N
VDEV_PROP_SLOW_IO_T
If multiple VDEVs in a pool are undergoing slow I/Os, then it skips
the zpool_vdev_degrade().
Sponsored-By: OpenDrives Inc.
Sponsored-By: Klara Inc.
Reviewed-by: Tony Hutter <[email protected]>
Reviewed-by: Allan Jude <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Co-authored-by: Rob Wing <[email protected]>
Signed-off-by: Don Brady <[email protected]>
Closes #15469
Diffstat (limited to 'include/sys/fs/zfs.h')
-rw-r--r-- | include/sys/fs/zfs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sys/fs/zfs.h b/include/sys/fs/zfs.h index c6f7dcca7..025567e21 100644 --- a/include/sys/fs/zfs.h +++ b/include/sys/fs/zfs.h @@ -366,6 +366,8 @@ typedef enum { VDEV_PROP_IO_N, VDEV_PROP_IO_T, VDEV_PROP_RAIDZ_EXPANDING, + VDEV_PROP_SLOW_IO_N, + VDEV_PROP_SLOW_IO_T, VDEV_NUM_PROPS } vdev_prop_t; |