Make zil_slog_limit a tunable module parameter.
authorEtienne Dechamps <e-t172@akegroup.org>
Tue, 12 Jun 2012 09:40:36 +0000 (11:40 +0200)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 12 Jun 2012 15:45:53 +0000 (08:45 -0700)
commitee191e802c515ae509aec382cac33c9d89235dc5
treea82decdca42590e9beb1a31ec55cdf92150fe93b
parentc6327b63e6d3a11bb333829a8341d572e2fa7d9f
Make zil_slog_limit a tunable module parameter.

zil_slog_limit specifies the maximum commit size to be written to the separate
log device. Larger commits bypass the separate log device and go directly to
the data devices.

The optimal value for zil_slog_limit directly depends on the latency and
throughput characteristics of both the separate log device and the data disks.
Small synchronous writes are faster on low-latency separate log devices (e.g.
SSDs) whereas large synchronous writes are faster on high-latency data disks
(e.g. spindles) because of higher throughput, especially with a large array.
The point is, the line between "small" and "large" synchronous writes in this
scenario is heavily dependent on the hardware used. That's why it should be
made configurable.

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #783
module/zfs/zil.c