Update documentation for zfs_vdev_queue_depth_pct
It was documented as being related to zfs_vdev_async_max_active
when it is actually related to zfs_vdev_async_write_max_active.
Also, expand the documentation to describe the allocation throttle
which was introduced as part of OpenZFS 7090 in 3dfb57a
.
Reviewed-by: Richard Yao <ryao@gentoo.org>
Reviewed-by: Reviewed-by: George Melikov <mail@gmelikov.ru>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tim Chase <tim@chase2k.com>
Closes #6064
This commit is contained in:
parent
a7004725d0
commit
e815485fe9
|
@ -1151,8 +1151,14 @@ Default value: \fB10\fR.
|
||||||
\fBzfs_vdev_queue_depth_pct\fR (int)
|
\fBzfs_vdev_queue_depth_pct\fR (int)
|
||||||
.ad
|
.ad
|
||||||
.RS 12n
|
.RS 12n
|
||||||
The queue depth percentage for each top-level virtual device.
|
Maximum number of queued allocations per top-level vdev expressed as
|
||||||
Used in conjunction with zfs_vdev_async_max_active.
|
a percentage of \fBzfs_vdev_async_write_max_active\fR which allows the
|
||||||
|
system to detect devices that are more capable of handling allocations
|
||||||
|
and to allocate more blocks to those devices. It allows for dynamic
|
||||||
|
allocation distribution when devices are imbalanced as fuller devices
|
||||||
|
will tend to be slower than empty devices.
|
||||||
|
|
||||||
|
See also \fBzio_dva_throttle_enabled\fR.
|
||||||
.sp
|
.sp
|
||||||
Default value: \fB1000\fR.
|
Default value: \fB1000\fR.
|
||||||
.RE
|
.RE
|
||||||
|
@ -1940,6 +1946,8 @@ Default value: \fB30,000\fR.
|
||||||
.RS 12n
|
.RS 12n
|
||||||
Throttle block allocations in the ZIO pipeline. This allows for
|
Throttle block allocations in the ZIO pipeline. This allows for
|
||||||
dynamic allocation distribution when devices are imbalanced.
|
dynamic allocation distribution when devices are imbalanced.
|
||||||
|
When enabled, the maximum number of pending allocations per top-level vdev
|
||||||
|
is limited by \fBzfs_vdev_queue_depth_pct\fR.
|
||||||
.sp
|
.sp
|
||||||
Default value: \fB1\fR.
|
Default value: \fB1\fR.
|
||||||
.RE
|
.RE
|
||||||
|
|
Loading…
Reference in New Issue