]> git.proxmox.com Git - mirror_zfs.git/blame - man/man4/zfs.4
BRT: Make BRT block sizes configurable
[mirror_zfs.git] / man / man4 / zfs.4
CommitLineData
2d815d95 1.\"
29714574 2.\" Copyright (c) 2013 by Turbo Fredriksson <turbo@bayour.com>. All rights reserved.
dd0b5c85 3.\" Copyright (c) 2019, 2021 by Delphix. All rights reserved.
65282ee9 4.\" Copyright (c) 2019 Datto Inc.
29714574
TF
5.\" The contents of this file are subject to the terms of the Common Development
6.\" and Distribution License (the "License"). You may not use this file except
7.\" in compliance with the License. You can obtain a copy of the license at
1d3ba0bf 8.\" usr/src/OPENSOLARIS.LICENSE or https://opensource.org/licenses/CDDL-1.0.
29714574
TF
9.\"
10.\" See the License for the specific language governing permissions and
11.\" limitations under the License. When distributing Covered Code, include this
12.\" CDDL HEADER in each file and include the License file at
13.\" usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this
14.\" CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your
15.\" own identifying information:
16.\" Portions Copyright [yyyy] [name of copyright owner]
2d815d95 17.\"
46adb282 18.Dd July 21, 2023
2badb345 19.Dt ZFS 4
2d815d95
AZ
20.Os
21.
22.Sh NAME
2badb345
AZ
23.Nm zfs
24.Nd tuning of the ZFS kernel module
2d815d95
AZ
25.
26.Sh DESCRIPTION
2badb345 27The ZFS module supports these parameters:
2d815d95 28.Bl -tag -width Ds
ab8d9c17 29.It Sy dbuf_cache_max_bytes Ns = Ns Sy UINT64_MAX Ns B Pq u64
2d815d95
AZ
30Maximum size in bytes of the dbuf cache.
31The target size is determined by the MIN versus
32.No 1/2^ Ns Sy dbuf_cache_shift Pq 1/32nd
77f6826b 33of the target ARC size.
2d815d95
AZ
34The behavior of the dbuf cache and its associated settings
35can be observed via the
36.Pa /proc/spl/kstat/zfs/dbufstats
37kstat.
38.
ab8d9c17 39.It Sy dbuf_metadata_cache_max_bytes Ns = Ns Sy UINT64_MAX Ns B Pq u64
2d815d95
AZ
40Maximum size in bytes of the metadata dbuf cache.
41The target size is determined by the MIN versus
42.No 1/2^ Ns Sy dbuf_metadata_cache_shift Pq 1/64th
43of the target ARC size.
44The behavior of the metadata dbuf cache and its associated settings
45can be observed via the
46.Pa /proc/spl/kstat/zfs/dbufstats
47kstat.
48.
49.It Sy dbuf_cache_hiwater_pct Ns = Ns Sy 10 Ns % Pq uint
50The percentage over
51.Sy dbuf_cache_max_bytes
52when dbufs must be evicted directly.
53.
54.It Sy dbuf_cache_lowater_pct Ns = Ns Sy 10 Ns % Pq uint
55The percentage below
56.Sy dbuf_cache_max_bytes
57when the evict thread stops evicting dbufs.
58.
fdc2d303 59.It Sy dbuf_cache_shift Ns = Ns Sy 5 Pq uint
2d815d95
AZ
60Set the size of the dbuf cache
61.Pq Sy dbuf_cache_max_bytes
62to a log2 fraction of the target ARC size.
63.
fdc2d303 64.It Sy dbuf_metadata_cache_shift Ns = Ns Sy 6 Pq uint
2d815d95
AZ
65Set the size of the dbuf metadata cache
66.Pq Sy dbuf_metadata_cache_max_bytes
77f6826b 67to a log2 fraction of the target ARC size.
2d815d95 68.
505df8d1
BB
69.It Sy dbuf_mutex_cache_shift Ns = Ns Sy 0 Pq uint
70Set the size of the mutex array for the dbuf cache.
71When set to
72.Sy 0
73the array is dynamically sized based on total system memory.
74.
fdc2d303 75.It Sy dmu_object_alloc_chunk_shift Ns = Ns Sy 7 Po 128 Pc Pq uint
2d815d95
AZ
76dnode slots allocated in a single operation as a power of 2.
77The default value minimizes lock contention for the bulk operation performed.
78.
fdc2d303 79.It Sy dmu_prefetch_max Ns = Ns Sy 134217728 Ns B Po 128 MiB Pc Pq uint
2d815d95 80Limit the amount we can prefetch with one call to this amount in bytes.
d9b4bf06 81This helps to limit the amount of memory that can be used by prefetching.
2d815d95
AZ
82.
83.It Sy ignore_hole_birth Pq int
84Alias for
85.Sy send_holes_without_birth_time .
86.
87.It Sy l2arc_feed_again Ns = Ns Sy 1 Ns | Ns 0 Pq int
88Turbo L2ARC warm-up.
89When the L2ARC is cold the fill interval will be set as fast as possible.
90.
ab8d9c17 91.It Sy l2arc_feed_min_ms Ns = Ns Sy 200 Pq u64
2d815d95
AZ
92Min feed interval in milliseconds.
93Requires
94.Sy l2arc_feed_again Ns = Ns Ar 1
95and only applicable in related situations.
96.
ab8d9c17 97.It Sy l2arc_feed_secs Ns = Ns Sy 1 Pq u64
2d815d95
AZ
98Seconds between L2ARC writing.
99.
887a3c53 100.It Sy l2arc_headroom Ns = Ns Sy 8 Pq u64
2d815d95
AZ
101How far through the ARC lists to search for L2ARC cacheable content,
102expressed as a multiplier of
103.Sy l2arc_write_max .
104ARC persistence across reboots can be achieved with persistent L2ARC
105by setting this parameter to
106.Sy 0 ,
107allowing the full length of ARC lists to be searched for cacheable content.
108.
ab8d9c17 109.It Sy l2arc_headroom_boost Ns = Ns Sy 200 Ns % Pq u64
2d815d95
AZ
110Scales
111.Sy l2arc_headroom
112by this percentage when L2ARC contents are being successfully compressed
113before writing.
114A value of
115.Sy 100
116disables this feature.
117.
c9d62d13 118.It Sy l2arc_exclude_special Ns = Ns Sy 0 Ns | Ns 1 Pq int
0175272f 119Controls whether buffers present on special vdevs are eligible for caching
c9d62d13
GA
120into L2ARC.
121If set to 1, exclude dbufs on special vdevs from being cached to L2ARC.
122.
2d815d95 123.It Sy l2arc_mfuonly Ns = Ns Sy 0 Ns | Ns 1 Pq int
feb3a7ee
GA
124Controls whether only MFU metadata and data are cached from ARC into L2ARC.
125This may be desired to avoid wasting space on L2ARC when reading/writing large
2d815d95
AZ
126amounts of data that are not expected to be accessed more than once.
127.Pp
128The default is off,
129meaning both MRU and MFU data and metadata are cached.
130When turning off this feature, some MRU buffers will still be present
131in ARC and eventually cached on L2ARC.
132.No If Sy l2arc_noprefetch Ns = Ns Sy 0 ,
08532162 133some prefetched buffers will be cached to L2ARC, and those might later
2d815d95
AZ
134transition to MRU, in which case the
135.Sy l2arc_mru_asize No arcstat will not be Sy 0 .
136.Pp
137Regardless of
138.Sy l2arc_noprefetch ,
139some MFU buffers might be evicted from ARC,
140accessed later on as prefetches and transition to MRU as prefetches.
141If accessed again they are counted as MRU and the
142.Sy l2arc_mru_asize No arcstat will not be Sy 0 .
143.Pp
144The ARC status of L2ARC buffers when they were first cached in
145L2ARC can be seen in the
146.Sy l2arc_mru_asize , Sy l2arc_mfu_asize , No and Sy l2arc_prefetch_asize
147arcstats when importing the pool or onlining a cache
148device if persistent L2ARC is enabled.
149.Pp
150The
151.Sy evict_l2_eligible_mru
37b00fb0 152arcstat does not take into account if this option is enabled as the information
2d815d95
AZ
153provided by the
154.Sy evict_l2_eligible_m[rf]u
155arcstats can be used to decide if toggling this option is appropriate
156for the current workload.
157.
fdc2d303 158.It Sy l2arc_meta_percent Ns = Ns Sy 33 Ns % Pq uint
523e1295 159Percent of ARC size allowed for L2ARC-only headers.
2d815d95
AZ
160Since L2ARC buffers are not evicted on memory pressure,
161too many headers on a system with an irrationally large L2ARC
162can render it slow or unusable.
163This parameter limits L2ARC writes and rebuilds to achieve the target.
164.
ab8d9c17 165.It Sy l2arc_trim_ahead Ns = Ns Sy 0 Ns % Pq u64
2d815d95
AZ
166Trims ahead of the current write size
167.Pq Sy l2arc_write_max
168on L2ARC devices by this percentage of write size if we have filled the device.
169If set to
170.Sy 100
171we TRIM twice the space required to accommodate upcoming writes.
172A minimum of
a894ae75 173.Sy 64 MiB
2d815d95
AZ
174will be trimmed.
175It also enables TRIM of the whole L2ARC device upon creation
176or addition to an existing pool or if the header of the device is
177invalid upon importing a pool or onlining a cache device.
178A value of
179.Sy 0
b7654bd7 180disables TRIM on L2ARC altogether and is the default as it can put significant
2d815d95
AZ
181stress on the underlying storage devices.
182This will vary depending of how well the specific device handles these commands.
183.
184.It Sy l2arc_noprefetch Ns = Ns Sy 1 Ns | Ns 0 Pq int
83426735 185Do not write buffers to L2ARC if they were prefetched but not used by
2d815d95
AZ
186applications.
187In case there are prefetched buffers in L2ARC and this option
188is later set, we do not read the prefetched buffers from L2ARC.
189Unsetting this option is useful for caching sequential reads from the
190disks to L2ARC and serve those reads from L2ARC later on.
191This may be beneficial in case the L2ARC device is significantly faster
192in sequential reads than the disks of the pool.
193.Pp
194Use
195.Sy 1
196to disable and
197.Sy 0
198to enable caching/reading prefetches to/from L2ARC.
199.
200.It Sy l2arc_norw Ns = Ns Sy 0 Ns | Ns 1 Pq int
77f6826b 201No reads during writes.
2d815d95 202.
887a3c53 203.It Sy l2arc_write_boost Ns = Ns Sy 33554432 Ns B Po 32 MiB Pc Pq u64
2d815d95
AZ
204Cold L2ARC devices will have
205.Sy l2arc_write_max
206increased by this amount while they remain cold.
207.
887a3c53 208.It Sy l2arc_write_max Ns = Ns Sy 33554432 Ns B Po 32 MiB Pc Pq u64
77f6826b 209Max write bytes per interval.
2d815d95
AZ
210.
211.It Sy l2arc_rebuild_enabled Ns = Ns Sy 1 Ns | Ns 0 Pq int
212Rebuild the L2ARC when importing a pool (persistent L2ARC).
213This can be disabled if there are problems importing a pool
214or attaching an L2ARC device (e.g. the L2ARC device is slow
215in reading stored log metadata, or the metadata
77f6826b 216has become somehow fragmented/unusable).
2d815d95 217.
ab8d9c17 218.It Sy l2arc_rebuild_blocks_min_l2size Ns = Ns Sy 1073741824 Ns B Po 1 GiB Pc Pq u64
2d815d95
AZ
219Mininum size of an L2ARC device required in order to write log blocks in it.
220The log blocks are used upon importing the pool to rebuild the persistent L2ARC.
221.Pp
a894ae75 222For L2ARC devices less than 1 GiB, the amount of data
2d815d95
AZ
223.Fn l2arc_evict
224evicts is significant compared to the amount of restored L2ARC data.
225In this case, do not write log blocks in L2ARC in order not to waste space.
226.
ab8d9c17 227.It Sy metaslab_aliquot Ns = Ns Sy 1048576 Ns B Po 1 MiB Pc Pq u64
2d815d95
AZ
228Metaslab granularity, in bytes.
229This is roughly similar to what would be referred to as the "stripe size"
230in traditional RAID arrays.
c55b2932
AM
231In normal operation, ZFS will try to write this amount of data to each disk
232before moving on to the next top-level vdev.
2d815d95
AZ
233.
234.It Sy metaslab_bias_enabled Ns = Ns Sy 1 Ns | Ns 0 Pq int
235Enable metaslab group biasing based on their vdevs' over- or under-utilization
f3a7f661 236relative to the pool.
2d815d95 237.
ab8d9c17 238.It Sy metaslab_force_ganging Ns = Ns Sy 16777217 Ns B Po 16 MiB + 1 B Pc Pq u64
2d815d95
AZ
239Make some blocks above a certain size be gang blocks.
240This option is used by the test suite to facilitate testing.
241.
46adb282
RN
242.It Sy metaslab_force_ganging_pct Ns = Ns Sy 3 Ns % Pq uint
243For blocks that could be forced to be a gang block (due to
244.Sy metaslab_force_ganging ) ,
245force this many of them to be gang blocks.
246.
f68bde72
AM
247.It Sy brt_zap_prefetch Ns = Ns Sy 1 Ns | Ns 0 Pq int
248Controls prefetching BRT records for blocks which are going to be cloned.
249.
250.It Sy brt_zap_default_bs Ns = Ns Sy 12 Po 4 KiB Pc Pq int
251Default BRT ZAP data block size as a power of 2. Note that changing this after
252creating a BRT on the pool will not affect existing BRTs, only newly created
253ones.
254.
255.It Sy brt_zap_default_ibs Ns = Ns Sy 12 Po 4 KiB Pc Pq int
256Default BRT ZAP indirect block size as a power of 2. Note that changing this
257after creating a BRT on the pool will not affect existing BRTs, only newly
258created ones.
259.
260.It Sy ddt_zap_default_bs Ns = Ns Sy 15 Po 32 KiB Pc Pq int
2b10e325
RE
261Default DDT ZAP data block size as a power of 2. Note that changing this after
262creating a DDT on the pool will not affect existing DDTs, only newly created
263ones.
264.
f68bde72 265.It Sy ddt_zap_default_ibs Ns = Ns Sy 15 Po 32 KiB Pc Pq int
2b10e325
RE
266Default DDT ZAP indirect block size as a power of 2. Note that changing this
267after creating a DDT on the pool will not affect existing DDTs, only newly
268created ones.
269.
926715b9
MP
270.It Sy zfs_default_bs Ns = Ns Sy 9 Po 512 B Pc Pq int
271Default dnode block size as a power of 2.
272.
273.It Sy zfs_default_ibs Ns = Ns Sy 17 Po 128 KiB Pc Pq int
274Default dnode indirect block size as a power of 2.
275.
ab8d9c17 276.It Sy zfs_history_output_max Ns = Ns Sy 1048576 Ns B Po 1 MiB Pc Pq u64
2d815d95
AZ
277When attempting to log an output nvlist of an ioctl in the on-disk history,
278the output will not be stored if it is larger than this size (in bytes).
279This must be less than
a894ae75 280.Sy DMU_MAX_ACCESS Pq 64 MiB .
2d815d95
AZ
281This applies primarily to
282.Fn zfs_ioc_channel_program Pq cf. Xr zfs-program 8 .
283.
284.It Sy zfs_keep_log_spacemaps_at_export Ns = Ns Sy 0 Ns | Ns 1 Pq int
93e28d66 285Prevent log spacemaps from being destroyed during pool exports and destroys.
2d815d95
AZ
286.
287.It Sy zfs_metaslab_segment_weight_enabled Ns = Ns Sy 1 Ns | Ns 0 Pq int
4e21fd06 288Enable/disable segment-based metaslab selection.
2d815d95
AZ
289.
290.It Sy zfs_metaslab_switch_threshold Ns = Ns Sy 2 Pq int
4e21fd06 291When using segment-based metaslab selection, continue allocating
2d815d95 292from the active metaslab until this option's
4e21fd06 293worth of buckets have been exhausted.
2d815d95
AZ
294.
295.It Sy metaslab_debug_load Ns = Ns Sy 0 Ns | Ns 1 Pq int
aa7d06a9 296Load all metaslabs during pool import.
2d815d95
AZ
297.
298.It Sy metaslab_debug_unload Ns = Ns Sy 0 Ns | Ns 1 Pq int
aa7d06a9 299Prevent metaslabs from being unloaded.
2d815d95
AZ
300.
301.It Sy metaslab_fragmentation_factor_enabled Ns = Ns Sy 1 Ns | Ns 0 Pq int
f3a7f661 302Enable use of the fragmentation metric in computing metaslab weights.
2d815d95 303.
fdc2d303 304.It Sy metaslab_df_max_search Ns = Ns Sy 16777216 Ns B Po 16 MiB Pc Pq uint
2d815d95
AZ
305Maximum distance to search forward from the last offset.
306Without this limit, fragmented pools can see
307.Em >100`000
308iterations and
309.Fn metaslab_block_picker
d3230d76 310becomes the performance limiting factor on high-performance storage.
2d815d95
AZ
311.Pp
312With the default setting of
a894ae75 313.Sy 16 MiB ,
2d815d95
AZ
314we typically see less than
315.Em 500
316iterations, even with very fragmented
317.Sy ashift Ns = Ns Sy 9
318pools.
319The maximum number of iterations possible is
320.Sy metaslab_df_max_search / 2^(ashift+1) .
321With the default setting of
a894ae75 322.Sy 16 MiB
2d815d95
AZ
323this is
324.Em 16*1024 Pq with Sy ashift Ns = Ns Sy 9
325or
326.Em 2*1024 Pq with Sy ashift Ns = Ns Sy 12 .
327.
328.It Sy metaslab_df_use_largest_segment Ns = Ns Sy 0 Ns | Ns 1 Pq int
329If not searching forward (due to
330.Sy metaslab_df_max_search , metaslab_df_free_pct ,
331.No or Sy metaslab_df_alloc_threshold ) ,
332this tunable controls which segment is used.
333If set, we will use the largest free segment.
334If unset, we will use a segment of at least the requested size.
335.
ab8d9c17 336.It Sy zfs_metaslab_max_size_cache_sec Ns = Ns Sy 3600 Ns s Po 1 hour Pc Pq u64
2d815d95
AZ
337When we unload a metaslab, we cache the size of the largest free chunk.
338We use that cached size to determine whether or not to load a metaslab
339for a given allocation.
340As more frees accumulate in that metaslab while it's unloaded,
341the cached max size becomes less and less accurate.
342After a number of seconds controlled by this tunable,
343we stop considering the cached max size and start
c81f1790 344considering only the histogram instead.
2d815d95 345.
fdc2d303 346.It Sy zfs_metaslab_mem_limit Ns = Ns Sy 25 Ns % Pq uint
f09fda50 347When we are loading a new metaslab, we check the amount of memory being used
2d815d95
AZ
348to store metaslab range trees.
349If it is over a threshold, we attempt to unload the least recently used metaslab
350to prevent the system from clogging all of its memory with range trees.
351This tunable sets the percentage of total system memory that is the threshold.
352.
353.It Sy zfs_metaslab_try_hard_before_gang Ns = Ns Sy 0 Ns | Ns 1 Pq int
354.Bl -item -compact
355.It
356If unset, we will first try normal allocation.
357.It
be5c6d96 358If that fails then we will do a gang allocation.
2d815d95 359.It
be5c6d96 360If that fails then we will do a "try hard" gang allocation.
2d815d95 361.It
be5c6d96 362If that fails then we will have a multi-layer gang block.
2d815d95
AZ
363.El
364.Pp
365.Bl -item -compact
366.It
be5c6d96 367If set, we will first try normal allocation.
2d815d95 368.It
be5c6d96 369If that fails then we will do a "try hard" allocation.
2d815d95 370.It
be5c6d96 371If that fails we will do a gang allocation.
2d815d95 372.It
be5c6d96 373If that fails we will do a "try hard" gang allocation.
2d815d95 374.It
be5c6d96 375If that fails then we will have a multi-layer gang block.
2d815d95
AZ
376.El
377.
fdc2d303 378.It Sy zfs_metaslab_find_max_tries Ns = Ns Sy 100 Pq uint
be5c6d96
MA
379When not trying hard, we only consider this number of the best metaslabs.
380This improves performance, especially when there are many metaslabs per vdev
2d815d95
AZ
381and the allocation can't actually be satisfied
382(so we would otherwise iterate all metaslabs).
383.
fdc2d303 384.It Sy zfs_vdev_default_ms_count Ns = Ns Sy 200 Pq uint
2d815d95
AZ
385When a vdev is added, target this number of metaslabs per top-level vdev.
386.
fdc2d303 387.It Sy zfs_vdev_default_ms_shift Ns = Ns Sy 29 Po 512 MiB Pc Pq uint
ff73574c
RN
388Default lower limit for metaslab size.
389.
390.It Sy zfs_vdev_max_ms_shift Ns = Ns Sy 34 Po 16 GiB Pc Pq uint
391Default upper limit for metaslab size.
2d815d95 392.
ab8d9c17 393.It Sy zfs_vdev_max_auto_ashift Ns = Ns Sy 14 Pq uint
b46be903
DS
394Maximum ashift used when optimizing for logical \[->] physical sector size on
395new
6fe3498c 396top-level vdevs.
37f6845c
AM
397May be increased up to
398.Sy ASHIFT_MAX Po 16 Pc ,
399but this may negatively impact pool space efficiency.
2d815d95 400.
ab8d9c17 401.It Sy zfs_vdev_min_auto_ashift Ns = Ns Sy ASHIFT_MIN Po 9 Pc Pq uint
6fe3498c 402Minimum ashift used when creating new top-level vdevs.
2d815d95 403.
fdc2d303 404.It Sy zfs_vdev_min_ms_count Ns = Ns Sy 16 Pq uint
d2734cce 405Minimum number of metaslabs to create in a top-level vdev.
2d815d95
AZ
406.
407.It Sy vdev_validate_skip Ns = Ns Sy 0 Ns | Ns 1 Pq int
408Skip label validation steps during pool import.
409Changing is not recommended unless you know what you're doing
410and are recovering a damaged label.
411.
fdc2d303 412.It Sy zfs_vdev_ms_count_limit Ns = Ns Sy 131072 Po 128k Pc Pq uint
e4e94ca3 413Practical upper limit of total metaslabs per top-level vdev.
2d815d95
AZ
414.
415.It Sy metaslab_preload_enabled Ns = Ns Sy 1 Ns | Ns 0 Pq int
f3a7f661 416Enable metaslab group preloading.
2d815d95 417.
342357cd
AM
418.It Sy metaslab_preload_limit Ns = Ns Sy 10 Pq uint
419Maximum number of metaslabs per group to preload
420.
421.It Sy metaslab_preload_pct Ns = Ns Sy 50 Pq uint
422Percentage of CPUs to run a metaslab preload taskq
423.
2d815d95
AZ
424.It Sy metaslab_lba_weighting_enabled Ns = Ns Sy 1 Ns | Ns 0 Pq int
425Give more weight to metaslabs with lower LBAs,
426assuming they have greater bandwidth,
427as is typically the case on a modern constant angular velocity disk drive.
428.
fdc2d303 429.It Sy metaslab_unload_delay Ns = Ns Sy 32 Pq uint
2d815d95
AZ
430After a metaslab is used, we keep it loaded for this many TXGs, to attempt to
431reduce unnecessary reloading.
432Note that both this many TXGs and
433.Sy metaslab_unload_delay_ms
434milliseconds must pass before unloading will occur.
435.
fdc2d303 436.It Sy metaslab_unload_delay_ms Ns = Ns Sy 600000 Ns ms Po 10 min Pc Pq uint
2d815d95
AZ
437After a metaslab is used, we keep it loaded for this many milliseconds,
438to attempt to reduce unnecessary reloading.
439Note, that both this many milliseconds and
440.Sy metaslab_unload_delay
441TXGs must pass before unloading will occur.
442.
fdc2d303 443.It Sy reference_history Ns = Ns Sy 3 Pq uint
b46be903
DS
444Maximum reference holders being tracked when reference_tracking_enable is
445active.
5caeef02
DB
446.It Sy raidz_expand_max_copy_bytes Ns = Ns Sy 160MB Pq ulong
447Max amount of memory to use for RAID-Z expansion I/O.
448This limits how much I/O can be outstanding at once.
449.
450.It Sy raidz_expand_max_reflow_bytes Ns = Ns Sy 0 Pq ulong
451For testing, pause RAID-Z expansion when reflow amount reaches this value.
452.
453.It Sy raidz_io_aggregate_rows Ns = Ns Sy 4 Pq ulong
454For expanded RAID-Z, aggregate reads that have more rows than this.
455.
456.It Sy reference_history Ns = Ns Sy 3 Pq int
457Maximum reference holders being tracked when reference_tracking_enable is
458active.
2d815d95
AZ
459.
460.It Sy reference_tracking_enable Ns = Ns Sy 0 Ns | Ns 1 Pq int
461Track reference holders to
462.Sy refcount_t
463objects (debug builds only).
464.
465.It Sy send_holes_without_birth_time Ns = Ns Sy 1 Ns | Ns 0 Pq int
466When set, the
467.Sy hole_birth
468optimization will not be used, and all holes will always be sent during a
469.Nm zfs Cm send .
470This is useful if you suspect your datasets are affected by a bug in
471.Sy hole_birth .
472.
473.It Sy spa_config_path Ns = Ns Pa /etc/zfs/zpool.cache Pq charp
474SPA config file.
475.
fdc2d303 476.It Sy spa_asize_inflation Ns = Ns Sy 24 Pq uint
e8b96c60 477Multiplication factor used to estimate actual disk consumption from the
2d815d95
AZ
478size of data being written.
479The default value is a worst case estimate,
480but lower values may be valid for a given pool depending on its configuration.
481Pool administrators who understand the factors involved
482may wish to specify a more realistic inflation factor,
483particularly if they operate close to quota or capacity limits.
484.
485.It Sy spa_load_print_vdev_tree Ns = Ns Sy 0 Ns | Ns 1 Pq int
b46be903
DS
486Whether to print the vdev tree in the debugging message buffer during pool
487import.
2d815d95
AZ
488.
489.It Sy spa_load_verify_data Ns = Ns Sy 1 Ns | Ns 0 Pq int
490Whether to traverse data blocks during an "extreme rewind"
491.Pq Fl X
492import.
493.Pp
dea377c0 494An extreme rewind import normally performs a full traversal of all
2d815d95
AZ
495blocks in the pool for verification.
496If this parameter is unset, the traversal skips non-metadata blocks.
497It can be toggled once the
dea377c0 498import has started to stop or start the traversal of non-metadata blocks.
2d815d95
AZ
499.
500.It Sy spa_load_verify_metadata Ns = Ns Sy 1 Ns | Ns 0 Pq int
501Whether to traverse blocks during an "extreme rewind"
502.Pq Fl X
503pool import.
504.Pp
dea377c0 505An extreme rewind import normally performs a full traversal of all
2d815d95
AZ
506blocks in the pool for verification.
507If this parameter is unset, the traversal is not performed.
508It can be toggled once the import has started to stop or start the traversal.
509.
fdc2d303 510.It Sy spa_load_verify_shift Ns = Ns Sy 4 Po 1/16th Pc Pq uint
c8242a96 511Sets the maximum number of bytes to consume during pool import to the log2
77f6826b 512fraction of the target ARC size.
2d815d95
AZ
513.
514.It Sy spa_slop_shift Ns = Ns Sy 5 Po 1/32nd Pc Pq int
515Normally, we don't allow the last
516.Sy 3.2% Pq Sy 1/2^spa_slop_shift
517of space in the pool to be consumed.
518This ensures that we don't run the pool completely out of space,
519due to unaccounted changes (e.g. to the MOS).
520It also limits the worst-case time to allocate space.
521If we have less than this amount of free space,
522most ZPL operations (e.g. write, create) will return
523.Sy ENOSPC .
524.
3bd4df38
EN
525.It Sy spa_num_allocators Ns = Ns Sy 4 Pq int
526Determines the number of block alloctators to use per spa instance.
527Capped by the number of actual CPUs in the system.
528.Pp
529Note that setting this value too high could result in performance
530degredation and/or excess fragmentation.
531.
0409d332
GA
532.It Sy spa_upgrade_errlog_limit Ns = Ns Sy 0 Pq uint
533Limits the number of on-disk error log entries that will be converted to the
534new format when enabling the
535.Sy head_errlog
536feature.
537The default is to convert all log entries.
538.
fdc2d303 539.It Sy vdev_removal_max_span Ns = Ns Sy 32768 Ns B Po 32 KiB Pc Pq uint
0dc2f70c
MA
540During top-level vdev removal, chunks of data are copied from the vdev
541which may include free space in order to trade bandwidth for IOPS.
2d815d95 542This parameter determines the maximum span of free space, in bytes,
0dc2f70c 543which will be included as "unnecessary" data in a chunk of copied data.
2d815d95 544.Pp
0dc2f70c 545The default value here was chosen to align with
2d815d95
AZ
546.Sy zfs_vdev_read_gap_limit ,
547which is a similar concept when doing
0dc2f70c 548regular reads (but there's no reason it has to be the same).
2d815d95 549.
ab8d9c17 550.It Sy vdev_file_logical_ashift Ns = Ns Sy 9 Po 512 B Pc Pq u64
c494aa7f 551Logical ashift for file-based devices.
2d815d95 552.
ab8d9c17 553.It Sy vdev_file_physical_ashift Ns = Ns Sy 9 Po 512 B Pc Pq u64
c494aa7f 554Physical ashift for file-based devices.
2d815d95
AZ
555.
556.It Sy zap_iterate_prefetch Ns = Ns Sy 1 Ns | Ns 0 Pq int
557If set, when we start iterating over a ZAP object,
558prefetch the entire object (all leaf blocks).
559However, this is limited by
560.Sy dmu_prefetch_max .
561.
a4b21ead
MP
562.It Sy zap_micro_max_size Ns = Ns Sy 131072 Ns B Po 128 KiB Pc Pq int
563Maximum micro ZAP size.
564A micro ZAP is upgraded to a fat ZAP, once it grows beyond the specified size.
565.
6aa8c21a
AM
566.It Sy zfetch_min_distance Ns = Ns Sy 4194304 Ns B Po 4 MiB Pc Pq uint
567Min bytes to prefetch per stream.
568Prefetch distance starts from the demand access size and quickly grows to
569this value, doubling on each hit.
570After that it may grow further by 1/8 per hit, but only if some prefetch
571since last time haven't completed in time to satisfy demand request, i.e.
572prefetch depth didn't cover the read latency or the pool got saturated.
573.
574.It Sy zfetch_max_distance Ns = Ns Sy 67108864 Ns B Po 64 MiB Pc Pq uint
7dfc56d8 575Max bytes to prefetch per stream.
2d815d95 576.
a894ae75 577.It Sy zfetch_max_idistance Ns = Ns Sy 67108864 Ns B Po 64 MiB Pc Pq uint
7dfc56d8 578Max bytes to prefetch indirects for per stream.
2d815d95
AZ
579.
580.It Sy zfetch_max_streams Ns = Ns Sy 8 Pq uint
27b293be 581Max number of streams per zfetch (prefetch streams per file).
2d815d95 582.
6aa8c21a
AM
583.It Sy zfetch_min_sec_reap Ns = Ns Sy 1 Pq uint
584Min time before inactive prefetch stream can be reclaimed
585.
586.It Sy zfetch_max_sec_reap Ns = Ns Sy 2 Pq uint
587Max time before inactive prefetch stream can be deleted
2d815d95
AZ
588.
589.It Sy zfs_abd_scatter_enabled Ns = Ns Sy 1 Ns | Ns 0 Pq int
67709516 590Enables ARC from using scatter/gather lists and forces all allocations to be
2d815d95
AZ
591linear in kernel memory.
592Disabling can improve performance in some code paths
67709516 593at the expense of fragmented kernel memory.
2d815d95 594.
12bd322d 595.It Sy zfs_abd_scatter_max_order Ns = Ns Sy MAX_ORDER\-1 Pq uint
67709516 596Maximum number of consecutive memory pages allocated in a single block for
2d815d95
AZ
597scatter/gather lists.
598.Pp
599The value of
600.Sy MAX_ORDER
601depends on kernel configuration.
602.
a894ae75 603.It Sy zfs_abd_scatter_min_size Ns = Ns Sy 1536 Ns B Po 1.5 KiB Pc Pq uint
2d815d95
AZ
604This is the minimum allocation size that will use scatter (page-based) ABDs.
605Smaller allocations will use linear ABDs.
606.
ab8d9c17 607.It Sy zfs_arc_dnode_limit Ns = Ns Sy 0 Ns B Pq u64
25458cbe 608When the number of bytes consumed by dnodes in the ARC exceeds this number of
2d815d95
AZ
609bytes, try to unpin some of it in response to demand for non-metadata.
610This value acts as a ceiling to the amount of dnode metadata, and defaults to
611.Sy 0 ,
612which indicates that a percent which is based on
613.Sy zfs_arc_dnode_limit_percent
614of the ARC meta buffers that may be used for dnodes.
ab8d9c17 615.It Sy zfs_arc_dnode_limit_percent Ns = Ns Sy 10 Ns % Pq u64
9907cc1c 616Percentage that can be consumed by dnodes of ARC meta buffers.
2d815d95
AZ
617.Pp
618See also
619.Sy zfs_arc_dnode_limit ,
620which serves a similar purpose but has a higher priority if nonzero.
621.
ab8d9c17 622.It Sy zfs_arc_dnode_reduce_percent Ns = Ns Sy 10 Ns % Pq u64
25458cbe 623Percentage of ARC dnodes to try to scan in response to demand for non-metadata
2d815d95
AZ
624when the number of bytes consumed by dnodes exceeds
625.Sy zfs_arc_dnode_limit .
626.
fdc2d303 627.It Sy zfs_arc_average_blocksize Ns = Ns Sy 8192 Ns B Po 8 KiB Pc Pq uint
49ddb315 628The ARC's buffer hash table is sized based on the assumption of an average
2d815d95 629block size of this value.
a894ae75 630This works out to roughly 1 MiB of hash table per 1 GiB of physical memory
2d815d95
AZ
631with 8-byte pointers.
632For configurations with a known larger average block size,
633this value can be increased to reduce the memory footprint.
634.
fdc2d303 635.It Sy zfs_arc_eviction_pct Ns = Ns Sy 200 Ns % Pq uint
2d815d95
AZ
636When
637.Fn arc_is_overflowing ,
638.Fn arc_get_data_impl
639waits for this percent of the requested amount of data to be evicted.
640For example, by default, for every
a894ae75 641.Em 2 KiB
2d815d95 642that's evicted,
a894ae75 643.Em 1 KiB
2d815d95
AZ
644of it may be "reused" by a new allocation.
645Since this is above
646.Sy 100 Ns % ,
647it ensures that progress is made towards getting
648.Sy arc_size No under Sy arc_c .
649Since this is finite, it ensures that allocations can still happen,
650even during the potentially long time that
651.Sy arc_size No is more than Sy arc_c .
652.
fdc2d303 653.It Sy zfs_arc_evict_batch_limit Ns = Ns Sy 10 Pq uint
8f343973 654Number ARC headers to evict per sub-list before proceeding to another sub-list.
ca0bf58d
PS
655This batch-style operation prevents entire sub-lists from being evicted at once
656but comes at a cost of additional unlocking and locking.
2d815d95 657.
fdc2d303 658.It Sy zfs_arc_grow_retry Ns = Ns Sy 0 Ns s Pq uint
2d815d95
AZ
659If set to a non zero value, it will replace the
660.Sy arc_grow_retry
661value with this value.
662The
663.Sy arc_grow_retry
664.No value Pq default Sy 5 Ns s
665is the number of seconds the ARC will wait before
ca85d690 666trying to resume growth after a memory pressure event.
2d815d95
AZ
667.
668.It Sy zfs_arc_lotsfree_percent Ns = Ns Sy 10 Ns % Pq int
7e8bddd0 669Throttle I/O when free system memory drops below this percentage of total
2d815d95
AZ
670system memory.
671Setting this value to
672.Sy 0
673will disable the throttle.
674.
ab8d9c17 675.It Sy zfs_arc_max Ns = Ns Sy 0 Ns B Pq u64
2d815d95
AZ
676Max size of ARC in bytes.
677If
678.Sy 0 ,
679then the max size of ARC is determined by the amount of system memory installed.
6a629f32 680The larger of
a894ae75 681.Sy all_system_memory No \- Sy 1 GiB
12bd322d
AZ
682and
683.Sy 5/8 No \(mu Sy all_system_memory
2d815d95
AZ
684will be used as the limit.
685This value must be at least
a894ae75 686.Sy 67108864 Ns B Pq 64 MiB .
2d815d95
AZ
687.Pp
688This value can be changed dynamically, with some caveats.
689It cannot be set back to
690.Sy 0
691while running, and reducing it below the current ARC size will not cause
83426735 692the ARC to shrink without memory pressure to induce shrinking.
2d815d95 693.
a8d83e2a
AM
694.It Sy zfs_arc_meta_balance Ns = Ns Sy 500 Pq uint
695Balance between metadata and data on ghost hits.
696Values above 100 increase metadata caching by proportionally reducing effect
697of ghost data hits on target data/metadata rate.
2d815d95 698.
ab8d9c17 699.It Sy zfs_arc_min Ns = Ns Sy 0 Ns B Pq u64
2d815d95
AZ
700Min size of ARC in bytes.
701.No If set to Sy 0 , arc_c_min
702will default to consuming the larger of
a894ae75 703.Sy 32 MiB
12bd322d
AZ
704and
705.Sy all_system_memory No / Sy 32 .
2d815d95 706.
fdc2d303 707.It Sy zfs_arc_min_prefetch_ms Ns = Ns Sy 0 Ns ms Ns Po Ns ≡ Ns 1s Pc Pq uint
2d815d95
AZ
708Minimum time prefetched blocks are locked in the ARC.
709.
fdc2d303 710.It Sy zfs_arc_min_prescient_prefetch_ms Ns = Ns Sy 0 Ns ms Ns Po Ns ≡ Ns 6s Pc Pq uint
2d815d95
AZ
711Minimum time "prescient prefetched" blocks are locked in the ARC.
712These blocks are meant to be prefetched fairly aggressively ahead of
713the code that may use them.
714.
462217d1
AM
715.It Sy zfs_arc_prune_task_threads Ns = Ns Sy 1 Pq int
716Number of arc_prune threads.
717.Fx
718does not need more than one.
719Linux may theoretically use one per mount point up to number of CPUs,
720but that was not proven to be useful.
721.
2d815d95 722.It Sy zfs_max_missing_tvds Ns = Ns Sy 0 Pq int
6cb8e530
PZ
723Number of missing top-level vdevs which will be allowed during
724pool import (only in read-only mode).
2d815d95 725.
ab8d9c17 726.It Sy zfs_max_nvlist_src_size Ns = Sy 0 Pq u64
2d815d95
AZ
727Maximum size in bytes allowed to be passed as
728.Sy zc_nvlist_src_size
729for ioctls on
730.Pa /dev/zfs .
731This prevents a user from causing the kernel to allocate
732an excessive amount of memory.
733When the limit is exceeded, the ioctl fails with
734.Sy EINVAL
735and a description of the error is sent to the
736.Pa zfs-dbgmsg
737log.
738This parameter should not need to be touched under normal circumstances.
739If
740.Sy 0 ,
741equivalent to a quarter of the user-wired memory limit under
742.Fx
743and to
a894ae75 744.Sy 134217728 Ns B Pq 128 MiB
2d815d95
AZ
745under Linux.
746.
fdc2d303 747.It Sy zfs_multilist_num_sublists Ns = Ns Sy 0 Pq uint
ca0bf58d 748To allow more fine-grained locking, each ARC state contains a series
2d815d95
AZ
749of lists for both data and metadata objects.
750Locking is performed at the level of these "sub-lists".
751This parameters controls the number of sub-lists per ARC state,
752and also applies to other uses of the multilist data structure.
753.Pp
754If
755.Sy 0 ,
756equivalent to the greater of the number of online CPUs and
757.Sy 4 .
758.
759.It Sy zfs_arc_overflow_shift Ns = Ns Sy 8 Pq int
ca0bf58d 760The ARC size is considered to be overflowing if it exceeds the current
2d815d95
AZ
761ARC target size
762.Pq Sy arc_c
f7de776d
AM
763by thresholds determined by this parameter.
764Exceeding by
12bd322d 765.Sy ( arc_c No >> Sy zfs_arc_overflow_shift ) No / Sy 2
f7de776d
AM
766starts ARC reclamation process.
767If that appears insufficient, exceeding by
12bd322d 768.Sy ( arc_c No >> Sy zfs_arc_overflow_shift ) No \(mu Sy 1.5
f7de776d
AM
769blocks new buffer allocation until the reclaim thread catches up.
770Started reclamation process continues till ARC size returns below the
771target size.
2d815d95
AZ
772.Pp
773The default value of
774.Sy 8
f7de776d
AM
775causes the ARC to start reclamation if it exceeds the target size by
776.Em 0.2%
777of the target size, and block allocations by
778.Em 0.6% .
2d815d95 779.
fdc2d303 780.It Sy zfs_arc_shrink_shift Ns = Ns Sy 0 Pq uint
2d815d95
AZ
781If nonzero, this will update
782.Sy arc_shrink_shift Pq default Sy 7
ca85d690 783with the new value.
2d815d95
AZ
784.
785.It Sy zfs_arc_pc_percent Ns = Ns Sy 0 Ns % Po off Pc Pq uint
786Percent of pagecache to reclaim ARC to.
787.Pp
788This tunable allows the ZFS ARC to play more nicely
789with the kernel's LRU pagecache.
790It can guarantee that the ARC size won't collapse under scanning
791pressure on the pagecache, yet still allows the ARC to be reclaimed down to
792.Sy zfs_arc_min
793if necessary.
794This value is specified as percent of pagecache size (as measured by
795.Sy NR_FILE_PAGES ) ,
796where that percent may exceed
797.Sy 100 .
798This
03b60eee 799only operates during memory pressure/reclaim.
2d815d95
AZ
800.
801.It Sy zfs_arc_shrinker_limit Ns = Ns Sy 10000 Pq int
3442c2a0 802This is a limit on how many pages the ARC shrinker makes available for
2d815d95
AZ
803eviction in response to one page allocation attempt.
804Note that in practice, the kernel's shrinker can ask us to evict
805up to about four times this for one allocation attempt.
806.Pp
807The default limit of
a894ae75 808.Sy 10000 Pq in practice, Em 160 MiB No per allocation attempt with 4 KiB pages
2d815d95 809limits the amount of time spent attempting to reclaim ARC memory to
a894ae75
W
810less than 100 ms per allocation attempt,
811even with a small average compressed block size of ~8 KiB.
2d815d95
AZ
812.Pp
813The parameter can be set to 0 (zero) to disable the limit,
814and only applies on Linux.
815.
ab8d9c17 816.It Sy zfs_arc_sys_free Ns = Ns Sy 0 Ns B Pq u64
11f552fa 817The target number of bytes the ARC should leave as free memory on the system.
2d815d95 818If zero, equivalent to the bigger of
a894ae75 819.Sy 512 KiB No and Sy all_system_memory/64 .
2d815d95
AZ
820.
821.It Sy zfs_autoimport_disable Ns = Ns Sy 1 Ns | Ns 0 Pq int
822Disable pool import at module load by ignoring the cache file
823.Pq Sy spa_config_path .
824.
825.It Sy zfs_checksum_events_per_second Ns = Ns Sy 20 Ns /s Pq uint
826Rate limit checksum events to this many per second.
827Note that this should not be set below the ZED thresholds
828(currently 10 checksums over 10 seconds)
829or else the daemon may not trigger any action.
830.
252f46be 831.It Sy zfs_commit_timeout_pct Ns = Ns Sy 10 Ns % Pq uint
2fe61a7e
PS
832This controls the amount of time that a ZIL block (lwb) will remain "open"
833when it isn't "full", and it has a thread waiting for it to be committed to
2d815d95
AZ
834stable storage.
835The timeout is scaled based on a percentage of the last lwb
2fe61a7e
PS
836latency to avoid significantly impacting the latency of each individual
837transaction record (itx).
2d815d95
AZ
838.
839.It Sy zfs_condense_indirect_commit_entry_delay_ms Ns = Ns Sy 0 Ns ms Pq int
67709516 840Vdev indirection layer (used for device removal) sleeps for this many
2d815d95
AZ
841milliseconds during mapping generation.
842Intended for use with the test suite to throttle vdev removal speed.
843.
fdc2d303 844.It Sy zfs_condense_indirect_obsolete_pct Ns = Ns Sy 25 Ns % Pq uint
b46be903
DS
845Minimum percent of obsolete bytes in vdev mapping required to attempt to
846condense
2d815d95
AZ
847.Pq see Sy zfs_condense_indirect_vdevs_enable .
848Intended for use with the test suite
849to facilitate triggering condensing as needed.
850.
851.It Sy zfs_condense_indirect_vdevs_enable Ns = Ns Sy 1 Ns | Ns 0 Pq int
852Enable condensing indirect vdev mappings.
853When set, attempt to condense indirect vdev mappings
854if the mapping uses more than
855.Sy zfs_condense_min_mapping_bytes
856bytes of memory and if the obsolete space map object uses more than
857.Sy zfs_condense_max_obsolete_bytes
858bytes on-disk.
b46be903
DS
859The condensing process is an attempt to save memory by removing obsolete
860mappings.
2d815d95 861.
ab8d9c17 862.It Sy zfs_condense_max_obsolete_bytes Ns = Ns Sy 1073741824 Ns B Po 1 GiB Pc Pq u64
0dc2f70c
MA
863Only attempt to condense indirect vdev mappings if the on-disk size
864of the obsolete space map object is greater than this number of bytes
2d815d95
AZ
865.Pq see Sy zfs_condense_indirect_vdevs_enable .
866.
ab8d9c17 867.It Sy zfs_condense_min_mapping_bytes Ns = Ns Sy 131072 Ns B Po 128 KiB Pc Pq u64
2d815d95
AZ
868Minimum size vdev mapping to attempt to condense
869.Pq see Sy zfs_condense_indirect_vdevs_enable .
870.
871.It Sy zfs_dbgmsg_enable Ns = Ns Sy 1 Ns | Ns 0 Pq int
872Internally ZFS keeps a small log to facilitate debugging.
873The log is enabled by default, and can be disabled by unsetting this option.
874The contents of the log can be accessed by reading
875.Pa /proc/spl/kstat/zfs/dbgmsg .
876Writing
877.Sy 0
878to the file clears the log.
879.Pp
880This setting does not influence debug prints due to
881.Sy zfs_flags .
882.
fdc2d303 883.It Sy zfs_dbgmsg_maxsize Ns = Ns Sy 4194304 Ns B Po 4 MiB Pc Pq uint
2d815d95
AZ
884Maximum size of the internal ZFS debug log.
885.
886.It Sy zfs_dbuf_state_index Ns = Ns Sy 0 Pq int
887Historically used for controlling what reporting was available under
888.Pa /proc/spl/kstat/zfs .
889No effect.
890.
891.It Sy zfs_deadman_enabled Ns = Ns Sy 1 Ns | Ns 0 Pq int
892When a pool sync operation takes longer than
893.Sy zfs_deadman_synctime_ms ,
894or when an individual I/O operation takes longer than
895.Sy zfs_deadman_ziotime_ms ,
896then the operation is considered to be "hung".
897If
898.Sy zfs_deadman_enabled
899is set, then the deadman behavior is invoked as described by
900.Sy zfs_deadman_failmode .
901By default, the deadman is enabled and set to
902.Sy wait
a737b415 903which results in "hung" I/O operations only being logged.
2d815d95
AZ
904The deadman is automatically disabled when a pool gets suspended.
905.
906.It Sy zfs_deadman_failmode Ns = Ns Sy wait Pq charp
907Controls the failure behavior when the deadman detects a "hung" I/O operation.
908Valid values are:
909.Bl -tag -compact -offset 4n -width "continue"
910.It Sy wait
911Wait for a "hung" operation to complete.
912For each "hung" operation a "deadman" event will be posted
913describing that operation.
914.It Sy continue
915Attempt to recover from a "hung" operation by re-dispatching it
8fb1ede1 916to the I/O pipeline if possible.
2d815d95
AZ
917.It Sy panic
918Panic the system.
919This can be used to facilitate automatic fail-over
920to a properly configured fail-over partner.
921.El
922.
ab8d9c17 923.It Sy zfs_deadman_checktime_ms Ns = Ns Sy 60000 Ns ms Po 1 min Pc Pq u64
2d815d95
AZ
924Check time in milliseconds.
925This defines the frequency at which we check for hung I/O requests
926and potentially invoke the
927.Sy zfs_deadman_failmode
928behavior.
929.
ab8d9c17 930.It Sy zfs_deadman_synctime_ms Ns = Ns Sy 600000 Ns ms Po 10 min Pc Pq u64
b81a3ddc 931Interval in milliseconds after which the deadman is triggered and also
8fb1ede1
BB
932the interval after which a pool sync operation is considered to be "hung".
933Once this limit is exceeded the deadman will be invoked every
2d815d95
AZ
934.Sy zfs_deadman_checktime_ms
935milliseconds until the pool sync completes.
936.
ab8d9c17 937.It Sy zfs_deadman_ziotime_ms Ns = Ns Sy 300000 Ns ms Po 5 min Pc Pq u64
8fb1ede1 938Interval in milliseconds after which the deadman is triggered and an
2d815d95
AZ
939individual I/O operation is considered to be "hung".
940As long as the operation remains "hung",
941the deadman will be invoked every
942.Sy zfs_deadman_checktime_ms
943milliseconds until the operation completes.
944.
945.It Sy zfs_dedup_prefetch Ns = Ns Sy 0 Ns | Ns 1 Pq int
946Enable prefetching dedup-ed blocks which are going to be freed.
947.
fdc2d303 948.It Sy zfs_delay_min_dirty_percent Ns = Ns Sy 60 Ns % Pq uint
e8b96c60 949Start to delay each transaction once there is this amount of dirty data,
2d815d95
AZ
950expressed as a percentage of
951.Sy zfs_dirty_data_max .
952This value should be at least
953.Sy zfs_vdev_async_write_active_max_dirty_percent .
954.No See Sx ZFS TRANSACTION DELAY .
955.
956.It Sy zfs_delay_scale Ns = Ns Sy 500000 Pq int
e8b96c60
MA
957This controls how quickly the transaction delay approaches infinity.
958Larger values cause longer delays for a given amount of dirty data.
2d815d95 959.Pp
e8b96c60 960For the smoothest delay, this value should be about 1 billion divided
2d815d95
AZ
961by the maximum number of operations per second.
962This will smoothly handle between ten times and a tenth of this number.
963.No See Sx ZFS TRANSACTION DELAY .
964.Pp
12bd322d 965.Sy zfs_delay_scale No \(mu Sy zfs_dirty_data_max Em must No be smaller than Sy 2^64 .
2d815d95
AZ
966.
967.It Sy zfs_disable_ivset_guid_check Ns = Ns Sy 0 Ns | Ns 1 Pq int
968Disables requirement for IVset GUIDs to be present and match when doing a raw
969receive of encrypted datasets.
970Intended for users whose pools were created with
d0249a4b 971OpenZFS pre-release versions and now have compatibility issues.
2d815d95
AZ
972.
973.It Sy zfs_key_max_salt_uses Ns = Ns Sy 400000000 Po 4*10^8 Pc Pq ulong
67709516 974Maximum number of uses of a single salt value before generating a new one for
2d815d95
AZ
975encrypted datasets.
976The default value is also the maximum.
977.
978.It Sy zfs_object_mutex_size Ns = Ns Sy 64 Pq uint
67709516 979Size of the znode hashtable used for holds.
2d815d95 980.Pp
67709516
D
981Due to the need to hold locks on objects that may not exist yet, kernel mutexes
982are not created per-object and instead a hashtable is used where collisions
983will result in objects waiting when there is not actually contention on the
984same object.
2d815d95
AZ
985.
986.It Sy zfs_slow_io_events_per_second Ns = Ns Sy 20 Ns /s Pq int
b46be903
DS
987Rate limit delay and deadman zevents (which report slow I/O operations) to this
988many per
e778b048 989second.
2d815d95 990.
ab8d9c17 991.It Sy zfs_unflushed_max_mem_amt Ns = Ns Sy 1073741824 Ns B Po 1 GiB Pc Pq u64
93e28d66 992Upper-bound limit for unflushed metadata changes to be held by the
2d815d95
AZ
993log spacemap in memory, in bytes.
994.
ab8d9c17 995.It Sy zfs_unflushed_max_mem_ppm Ns = Ns Sy 1000 Ns ppm Po 0.1% Pc Pq u64
2d815d95
AZ
996Part of overall system memory that ZFS allows to be used
997for unflushed metadata changes by the log spacemap, in millionths.
998.
ab8d9c17 999.It Sy zfs_unflushed_log_block_max Ns = Ns Sy 131072 Po 128k Pc Pq u64
93e28d66 1000Describes the maximum number of log spacemap blocks allowed for each pool.
2d815d95
AZ
1001The default value means that the space in all the log spacemaps
1002can add up to no more than
600a02b8 1003.Sy 131072
2d815d95 1004blocks (which means
a894ae75 1005.Em 16 GiB
2d815d95
AZ
1006of logical space before compression and ditto blocks,
1007assuming that blocksize is
a894ae75 1008.Em 128 KiB ) .
2d815d95 1009.Pp
93e28d66
SD
1010This tunable is important because it involves a trade-off between import
1011time after an unclean export and the frequency of flushing metaslabs.
1012The higher this number is, the more log blocks we allow when the pool is
1013active which means that we flush metaslabs less often and thus decrease
a737b415 1014the number of I/O operations for spacemap updates per TXG.
93e28d66
SD
1015At the same time though, that means that in the event of an unclean export,
1016there will be more log spacemap blocks for us to read, inducing overhead
1017in the import time of the pool.
2d815d95 1018The lower the number, the amount of flushing increases, destroying log
93e28d66
SD
1019blocks quicker as they become obsolete faster, which leaves less blocks
1020to be read during import time after a crash.
2d815d95 1021.Pp
93e28d66
SD
1022Each log spacemap block existing during pool import leads to approximately
1023one extra logical I/O issued.
1024This is the reason why this tunable is exposed in terms of blocks rather
1025than space used.
2d815d95 1026.
ab8d9c17 1027.It Sy zfs_unflushed_log_block_min Ns = Ns Sy 1000 Pq u64
2d815d95
AZ
1028If the number of metaslabs is small and our incoming rate is high,
1029we could get into a situation that we are flushing all our metaslabs every TXG.
93e28d66 1030Thus we always allow at least this many log blocks.
2d815d95 1031.
ab8d9c17 1032.It Sy zfs_unflushed_log_block_pct Ns = Ns Sy 400 Ns % Pq u64
93e28d66
SD
1033Tunable used to determine the number of blocks that can be used for
1034the spacemap log, expressed as a percentage of the total number of
600a02b8
AM
1035unflushed metaslabs in the pool.
1036.
ab8d9c17 1037.It Sy zfs_unflushed_log_txg_max Ns = Ns Sy 1000 Pq u64
600a02b8
AM
1038Tunable limiting maximum time in TXGs any metaslab may remain unflushed.
1039It effectively limits maximum number of unflushed per-TXG spacemap logs
1040that need to be read after unclean pool export.
2d815d95
AZ
1041.
1042.It Sy zfs_unlink_suspend_progress Ns = Ns Sy 0 Ns | Ns 1 Pq uint
dcec0a12 1043When enabled, files will not be asynchronously removed from the list of pending
2d815d95
AZ
1044unlinks and the space they consume will be leaked.
1045Once this option has been disabled and the dataset is remounted,
1046the pending unlinks will be processed and the freed space returned to the pool.
1047This option is used by the test suite.
1048.
1049.It Sy zfs_delete_blocks Ns = Ns Sy 20480 Pq ulong
1050This is the used to define a large file for the purposes of deletion.
1051Files containing more than
1052.Sy zfs_delete_blocks
1053will be deleted asynchronously, while smaller files are deleted synchronously.
1054Decreasing this value will reduce the time spent in an
1055.Xr unlink 2
b46be903
DS
1056system call, at the expense of a longer delay before the freed space is
1057available.
ab8d9c17 1058This only applies on Linux.
2d815d95
AZ
1059.
1060.It Sy zfs_dirty_data_max Ns = Pq int
1061Determines the dirty space limit in bytes.
1062Once this limit is exceeded, new writes are halted until space frees up.
1063This parameter takes precedence over
1064.Sy zfs_dirty_data_max_percent .
1065.No See Sx ZFS TRANSACTION DELAY .
1066.Pp
1067Defaults to
1068.Sy physical_ram/10 ,
1069capped at
1070.Sy zfs_dirty_data_max_max .
1071.
1072.It Sy zfs_dirty_data_max_max Ns = Pq int
1073Maximum allowable value of
1074.Sy zfs_dirty_data_max ,
1075expressed in bytes.
1076This limit is only enforced at module load time, and will be ignored if
1077.Sy zfs_dirty_data_max
1078is later changed.
1079This parameter takes precedence over
1080.Sy zfs_dirty_data_max_max_percent .
1081.No See Sx ZFS TRANSACTION DELAY .
1082.Pp
1083Defaults to
a379083d
GM
1084.Sy min(physical_ram/4, 4GiB) ,
1085or
1086.Sy min(physical_ram/4, 1GiB)
1087for 32-bit systems.
2d815d95 1088.
fdc2d303 1089.It Sy zfs_dirty_data_max_max_percent Ns = Ns Sy 25 Ns % Pq uint
2d815d95
AZ
1090Maximum allowable value of
1091.Sy zfs_dirty_data_max ,
1092expressed as a percentage of physical RAM.
e8b96c60 1093This limit is only enforced at module load time, and will be ignored if
2d815d95
AZ
1094.Sy zfs_dirty_data_max
1095is later changed.
1096The parameter
1097.Sy zfs_dirty_data_max_max
1098takes precedence over this one.
1099.No See Sx ZFS TRANSACTION DELAY .
1100.
fdc2d303 1101.It Sy zfs_dirty_data_max_percent Ns = Ns Sy 10 Ns % Pq uint
2d815d95
AZ
1102Determines the dirty space limit, expressed as a percentage of all memory.
1103Once this limit is exceeded, new writes are halted until space frees up.
1104The parameter
1105.Sy zfs_dirty_data_max
1106takes precedence over this one.
1107.No See Sx ZFS TRANSACTION DELAY .
1108.Pp
1109Subject to
1110.Sy zfs_dirty_data_max_max .
1111.
fdc2d303 1112.It Sy zfs_dirty_data_sync_percent Ns = Ns Sy 20 Ns % Pq uint
dfbe2675 1113Start syncing out a transaction group if there's at least this much dirty data
2d815d95
AZ
1114.Pq as a percentage of Sy zfs_dirty_data_max .
1115This should be less than
1116.Sy zfs_vdev_async_write_active_min_dirty_percent .
1117.
a7bd20e3
KJ
1118.It Sy zfs_wrlog_data_max Ns = Pq int
1119The upper limit of write-transaction zil log data size in bytes.
84d0a03f
AM
1120Write operations are throttled when approaching the limit until log data is
1121cleared out after transaction group sync.
1122Because of some overhead, it should be set at least 2 times the size of
a7bd20e3 1123.Sy zfs_dirty_data_max
b46be903 1124.No to prevent harming normal write throughput .
a7bd20e3
KJ
1125It also should be smaller than the size of the slog device if slog is present.
1126.Pp
1127Defaults to
1128.Sy zfs_dirty_data_max*2
1129.
2d815d95 1130.It Sy zfs_fallocate_reserve_percent Ns = Ns Sy 110 Ns % Pq uint
f734301d
AD
1131Since ZFS is a copy-on-write filesystem with snapshots, blocks cannot be
1132preallocated for a file in order to guarantee that later writes will not
2d815d95
AZ
1133run out of space.
1134Instead,
1135.Xr fallocate 2
1136space preallocation only checks that sufficient space is currently available
1137in the pool or the user's project quota allocation,
1138and then creates a sparse file of the requested size.
1139The requested space is multiplied by
1140.Sy zfs_fallocate_reserve_percent
f734301d 1141to allow additional space for indirect blocks and other internal metadata.
2d815d95
AZ
1142Setting this to
1143.Sy 0
1144disables support for
1145.Xr fallocate 2
1146and causes it to return
1147.Sy EOPNOTSUPP .
1148.
1149.It Sy zfs_fletcher_4_impl Ns = Ns Sy fastest Pq string
1eeb4562 1150Select a fletcher 4 implementation.
2d815d95
AZ
1151.Pp
1152Supported selectors are:
1153.Sy fastest , scalar , sse2 , ssse3 , avx2 , avx512f , avx512bw ,
1154.No and Sy aarch64_neon .
1155All except
1156.Sy fastest No and Sy scalar
1157require instruction set extensions to be available,
1158and will only appear if ZFS detects that they are present at runtime.
1159If multiple implementations of fletcher 4 are available, the
1160.Sy fastest
1161will be chosen using a micro benchmark.
1162Selecting
1163.Sy scalar
1164results in the original CPU-based calculation being used.
1165Selecting any option other than
1166.Sy fastest No or Sy scalar
1167results in vector instructions
1168from the respective CPU instruction set being used.
1169.
03e9caae
RE
1170.It Sy zfs_bclone_enabled Ns = Ns Sy 1 Ns | Ns 0 Pq int
1171Enable the experimental block cloning feature.
1172If this setting is 0, then even if feature@block_cloning is enabled,
1173attempts to clone blocks will act as though the feature is disabled.
1174.
6dccdf50
BB
1175.It Sy zfs_bclone_wait_dirty Ns = Ns Sy 0 Ns | Ns 1 Pq int
1176When set to 1 the FICLONE and FICLONERANGE ioctls wait for dirty data to be
1177written to disk.
1178This allows the clone operation to reliably succeed when a file is
1179modified and then immediately cloned.
1180For small files this may be slower than making a copy of the file.
1181Therefore, this setting defaults to 0 which causes a clone operation to
1182immediately fail when encountering a dirty block.
1183.
eeca9d27
TR
1184.It Sy zfs_blake3_impl Ns = Ns Sy fastest Pq string
1185Select a BLAKE3 implementation.
1186.Pp
1187Supported selectors are:
1188.Sy cycle , fastest , generic , sse2 , sse41 , avx2 , avx512 .
1189All except
1190.Sy cycle , fastest No and Sy generic
1191require instruction set extensions to be available,
1192and will only appear if ZFS detects that they are present at runtime.
1193If multiple implementations of BLAKE3 are available, the
1194.Sy fastest will be chosen using a micro benchmark. You can see the
1195benchmark results by reading this kstat file:
1196.Pa /proc/spl/kstat/zfs/chksum_bench .
1197.
2d815d95 1198.It Sy zfs_free_bpobj_enabled Ns = Ns Sy 1 Ns | Ns 0 Pq int
ba5ad9a4 1199Enable/disable the processing of the free_bpobj object.
2d815d95 1200.
ab8d9c17 1201.It Sy zfs_async_block_max_blocks Ns = Ns Sy UINT64_MAX Po unlimited Pc Pq u64
2d815d95
AZ
1202Maximum number of blocks freed in a single TXG.
1203.
ab8d9c17 1204.It Sy zfs_max_async_dedup_frees Ns = Ns Sy 100000 Po 10^5 Pc Pq u64
2d815d95
AZ
1205Maximum number of dedup blocks freed in a single TXG.
1206.
fdc2d303 1207.It Sy zfs_vdev_async_read_max_active Ns = Ns Sy 3 Pq uint
2d815d95
AZ
1208Maximum asynchronous read I/O operations active to each device.
1209.No See Sx ZFS I/O SCHEDULER .
1210.
fdc2d303 1211.It Sy zfs_vdev_async_read_min_active Ns = Ns Sy 1 Pq uint
2d815d95
AZ
1212Minimum asynchronous read I/O operation active to each device.
1213.No See Sx ZFS I/O SCHEDULER .
1214.
fdc2d303 1215.It Sy zfs_vdev_async_write_active_max_dirty_percent Ns = Ns Sy 60 Ns % Pq uint
2d815d95
AZ
1216When the pool has more than this much dirty data, use
1217.Sy zfs_vdev_async_write_max_active
1218to limit active async writes.
1219If the dirty data is between the minimum and maximum,
1220the active I/O limit is linearly interpolated.
1221.No See Sx ZFS I/O SCHEDULER .
1222.
fdc2d303 1223.It Sy zfs_vdev_async_write_active_min_dirty_percent Ns = Ns Sy 30 Ns % Pq uint
2d815d95
AZ
1224When the pool has less than this much dirty data, use
1225.Sy zfs_vdev_async_write_min_active
1226to limit active async writes.
1227If the dirty data is between the minimum and maximum,
1228the active I/O limit is linearly
1229interpolated.
1230.No See Sx ZFS I/O SCHEDULER .
1231.
077fd55e 1232.It Sy zfs_vdev_async_write_max_active Ns = Ns Sy 10 Pq uint
2d815d95
AZ
1233Maximum asynchronous write I/O operations active to each device.
1234.No See Sx ZFS I/O SCHEDULER .
1235.
fdc2d303 1236.It Sy zfs_vdev_async_write_min_active Ns = Ns Sy 2 Pq uint
2d815d95
AZ
1237Minimum asynchronous write I/O operations active to each device.
1238.No See Sx ZFS I/O SCHEDULER .
1239.Pp
06226b59 1240Lower values are associated with better latency on rotational media but poorer
2d815d95
AZ
1241resilver performance.
1242The default value of
1243.Sy 2
1244was chosen as a compromise.
1245A value of
1246.Sy 3
1247has been shown to improve resilver performance further at a cost of
06226b59 1248further increasing latency.
2d815d95 1249.
fdc2d303 1250.It Sy zfs_vdev_initializing_max_active Ns = Ns Sy 1 Pq uint
2d815d95
AZ
1251Maximum initializing I/O operations active to each device.
1252.No See Sx ZFS I/O SCHEDULER .
1253.
fdc2d303 1254.It Sy zfs_vdev_initializing_min_active Ns = Ns Sy 1 Pq uint
2d815d95
AZ
1255Minimum initializing I/O operations active to each device.
1256.No See Sx ZFS I/O SCHEDULER .
1257.
fdc2d303 1258.It Sy zfs_vdev_max_active Ns = Ns Sy 1000 Pq uint
2d815d95
AZ
1259The maximum number of I/O operations active to each device.
1260Ideally, this will be at least the sum of each queue's
1261.Sy max_active .
1262.No See Sx ZFS I/O SCHEDULER .
1263.
f66ffe68
SD
1264.It Sy zfs_vdev_open_timeout_ms Ns = Ns Sy 1000 Pq uint
1265Timeout value to wait before determining a device is missing
1266during import.
1267This is helpful for transient missing paths due
1268to links being briefly removed and recreated in response to
1269udev events.
1270.
fdc2d303 1271.It Sy zfs_vdev_rebuild_max_active Ns = Ns Sy 3 Pq uint
2d815d95
AZ
1272Maximum sequential resilver I/O operations active to each device.
1273.No See Sx ZFS I/O SCHEDULER .
1274.
fdc2d303 1275.It Sy zfs_vdev_rebuild_min_active Ns = Ns Sy 1 Pq uint
2d815d95
AZ
1276Minimum sequential resilver I/O operations active to each device.
1277.No See Sx ZFS I/O SCHEDULER .
1278.
fdc2d303 1279.It Sy zfs_vdev_removal_max_active Ns = Ns Sy 2 Pq uint
2d815d95
AZ
1280Maximum removal I/O operations active to each device.
1281.No See Sx ZFS I/O SCHEDULER .
1282.
fdc2d303 1283.It Sy zfs_vdev_removal_min_active Ns = Ns Sy 1 Pq uint
2d815d95
AZ
1284Minimum removal I/O operations active to each device.
1285.No See Sx ZFS I/O SCHEDULER .
1286.
fdc2d303 1287.It Sy zfs_vdev_scrub_max_active Ns = Ns Sy 2 Pq uint
2d815d95
AZ
1288Maximum scrub I/O operations active to each device.
1289.No See Sx ZFS I/O SCHEDULER .
1290.
fdc2d303 1291.It Sy zfs_vdev_scrub_min_active Ns = Ns Sy 1 Pq uint
2d815d95
AZ
1292Minimum scrub I/O operations active to each device.
1293.No See Sx ZFS I/O SCHEDULER .
1294.
fdc2d303 1295.It Sy zfs_vdev_sync_read_max_active Ns = Ns Sy 10 Pq uint
2d815d95
AZ
1296Maximum synchronous read I/O operations active to each device.
1297.No See Sx ZFS I/O SCHEDULER .
1298.
fdc2d303 1299.It Sy zfs_vdev_sync_read_min_active Ns = Ns Sy 10 Pq uint
2d815d95
AZ
1300Minimum synchronous read I/O operations active to each device.
1301.No See Sx ZFS I/O SCHEDULER .
1302.
fdc2d303 1303.It Sy zfs_vdev_sync_write_max_active Ns = Ns Sy 10 Pq uint
2d815d95
AZ
1304Maximum synchronous write I/O operations active to each device.
1305.No See Sx ZFS I/O SCHEDULER .
1306.
fdc2d303 1307.It Sy zfs_vdev_sync_write_min_active Ns = Ns Sy 10 Pq uint
2d815d95
AZ
1308Minimum synchronous write I/O operations active to each device.
1309.No See Sx ZFS I/O SCHEDULER .
1310.
fdc2d303 1311.It Sy zfs_vdev_trim_max_active Ns = Ns Sy 2 Pq uint
2d815d95
AZ
1312Maximum trim/discard I/O operations active to each device.
1313.No See Sx ZFS I/O SCHEDULER .
1314.
fdc2d303 1315.It Sy zfs_vdev_trim_min_active Ns = Ns Sy 1 Pq uint
2d815d95
AZ
1316Minimum trim/discard I/O operations active to each device.
1317.No See Sx ZFS I/O SCHEDULER .
1318.
fdc2d303 1319.It Sy zfs_vdev_nia_delay Ns = Ns Sy 5 Pq uint
6f5aac3c 1320For non-interactive I/O (scrub, resilver, removal, initialize and rebuild),
2d815d95
AZ
1321the number of concurrently-active I/O operations is limited to
1322.Sy zfs_*_min_active ,
1323unless the vdev is "idle".
0175272f 1324When there are no interactive I/O operations active (synchronous or otherwise),
2d815d95
AZ
1325and
1326.Sy zfs_vdev_nia_delay
1327operations have completed since the last interactive operation,
1328then the vdev is considered to be "idle",
1329and the number of concurrently-active non-interactive operations is increased to
1330.Sy zfs_*_max_active .
1331.No See Sx ZFS I/O SCHEDULER .
1332.
fdc2d303 1333.It Sy zfs_vdev_nia_credit Ns = Ns Sy 5 Pq uint
2d815d95
AZ
1334Some HDDs tend to prioritize sequential I/O so strongly, that concurrent
1335random I/O latency reaches several seconds.
1336On some HDDs this happens even if sequential I/O operations
1337are submitted one at a time, and so setting
1338.Sy zfs_*_max_active Ns = Sy 1
1339does not help.
1340To prevent non-interactive I/O, like scrub,
1341from monopolizing the device, no more than
1342.Sy zfs_vdev_nia_credit operations can be sent
1343while there are outstanding incomplete interactive operations.
1344This enforced wait ensures the HDD services the interactive I/O
6f5aac3c 1345within a reasonable amount of time.
2d815d95
AZ
1346.No See Sx ZFS I/O SCHEDULER .
1347.
fdc2d303 1348.It Sy zfs_vdev_queue_depth_pct Ns = Ns Sy 1000 Ns % Pq uint
e815485f 1349Maximum number of queued allocations per top-level vdev expressed as
2d815d95
AZ
1350a percentage of
1351.Sy zfs_vdev_async_write_max_active ,
1352which allows the system to detect devices that are more capable
1353of handling allocations and to allocate more blocks to those devices.
1354This allows for dynamic allocation distribution when devices are imbalanced,
1355as fuller devices will tend to be slower than empty devices.
1356.Pp
1357Also see
1358.Sy zio_dva_throttle_enabled .
1359.
ece7ab7e
RN
1360.It Sy zfs_vdev_def_queue_depth Ns = Ns Sy 32 Pq uint
1361Default queue depth for each vdev IO allocator.
1362Higher values allow for better coalescing of sequential writes before sending
1363them to the disk, but can increase transaction commit times.
1364.
16f0fdad
MZ
1365.It Sy zfs_vdev_failfast_mask Ns = Ns Sy 1 Pq uint
1366Defines if the driver should retire on a given error type.
1367The following options may be bitwise-ored together:
1368.TS
1369box;
1370lbz r l l .
1371 Value Name Description
1372_
1373 1 Device No driver retries on device errors
1374 2 Transport No driver retries on transport errors.
1375 4 Driver No driver retries on driver errors.
1376.TE
1377.
2d815d95
AZ
1378.It Sy zfs_expire_snapshot Ns = Ns Sy 300 Ns s Pq int
1379Time before expiring
1380.Pa .zfs/snapshot .
1381.
1382.It Sy zfs_admin_snapshot Ns = Ns Sy 0 Ns | Ns 1 Pq int
1383Allow the creation, removal, or renaming of entries in the
1384.Sy .zfs/snapshot
0500e835 1385directory to cause the creation, destruction, or renaming of snapshots.
2d815d95
AZ
1386When enabled, this functionality works both locally and over NFS exports
1387which have the
1388.Em no_root_squash
1389option set.
1390.
1391.It Sy zfs_flags Ns = Ns Sy 0 Pq int
1392Set additional debugging flags.
1393The following flags may be bitwise-ored together:
33b6dbbc
NB
1394.TS
1395box;
2d815d95 1396lbz r l l .
16f0fdad 1397 Value Name Description
33b6dbbc 1398_
2d815d95
AZ
1399 1 ZFS_DEBUG_DPRINTF Enable dprintf entries in the debug log.
1400* 2 ZFS_DEBUG_DBUF_VERIFY Enable extra dbuf verifications.
1401* 4 ZFS_DEBUG_DNODE_VERIFY Enable extra dnode verifications.
1402 8 ZFS_DEBUG_SNAPNAMES Enable snapshot name verification.
bacf366f 1403* 16 ZFS_DEBUG_MODIFY Check for illegally modified ARC buffers.
2d815d95
AZ
1404 64 ZFS_DEBUG_ZIO_FREE Enable verification of block frees.
1405 128 ZFS_DEBUG_HISTOGRAM_VERIFY Enable extra spacemap histogram verifications.
1406 256 ZFS_DEBUG_METASLAB_VERIFY Verify space accounting on disk matches in-memory \fBrange_trees\fP.
1407 512 ZFS_DEBUG_SET_ERROR Enable \fBSET_ERROR\fP and dprintf entries in the debug log.
1408 1024 ZFS_DEBUG_INDIRECT_REMAP Verify split blocks created by device removal.
1409 2048 ZFS_DEBUG_TRIM Verify TRIM ranges are always within the allocatable range tree.
1410 4096 ZFS_DEBUG_LOG_SPACEMAP Verify that the log summary is consistent with the spacemap log
1411 and enable \fBzfs_dbgmsgs\fP for metaslab loading and flushing.
33b6dbbc 1412.TE
b46be903 1413.Sy \& * No Requires debug build .
2d815d95 1414.
b24d1c77
RY
1415.It Sy zfs_btree_verify_intensity Ns = Ns Sy 0 Pq uint
1416Enables btree verification.
1417The following settings are culminative:
1418.TS
1419box;
1420lbz r l l .
1421 Value Description
1422
1423 1 Verify height.
1424 2 Verify pointers from children to parent.
1425 3 Verify element counts.
1426 4 Verify element order. (expensive)
1427* 5 Verify unused memory is poisoned. (expensive)
1428.TE
b46be903 1429.Sy \& * No Requires debug build .
b24d1c77 1430.
2d815d95
AZ
1431.It Sy zfs_free_leak_on_eio Ns = Ns Sy 0 Ns | Ns 1 Pq int
1432If destroy encounters an
1433.Sy EIO
1434while reading metadata (e.g. indirect blocks),
1435space referenced by the missing metadata can not be freed.
1436Normally this causes the background destroy to become "stalled",
1437as it is unable to make forward progress.
1438While in this stalled state, all remaining space to free
1439from the error-encountering filesystem is "temporarily leaked".
1440Set this flag to cause it to ignore the
1441.Sy EIO ,
fbeddd60
MA
1442permanently leak the space from indirect blocks that can not be read,
1443and continue to free everything else that it can.
2d815d95
AZ
1444.Pp
1445The default "stalling" behavior is useful if the storage partially
1446fails (i.e. some but not all I/O operations fail), and then later recovers.
1447In this case, we will be able to continue pool operations while it is
fbeddd60 1448partially failed, and when it recovers, we can continue to free the
2d815d95
AZ
1449space, with no leaks.
1450Note, however, that this case is actually fairly rare.
1451.Pp
1452Typically pools either
1453.Bl -enum -compact -offset 4n -width "1."
1454.It
1455fail completely (but perhaps temporarily,
1456e.g. due to a top-level vdev going offline), or
1457.It
1458have localized, permanent errors (e.g. disk returns the wrong data
1459due to bit flip or firmware bug).
1460.El
1461In the former case, this setting does not matter because the
fbeddd60 1462pool will be suspended and the sync thread will not be able to make
2d815d95
AZ
1463forward progress regardless.
1464In the latter, because the error is permanent, the best we can do
1465is leak the minimum amount of space,
1466which is what setting this flag will do.
1467It is therefore reasonable for this flag to normally be set,
1468but we chose the more conservative approach of not setting it,
1469so that there is no possibility of
fbeddd60 1470leaking space in the "partial temporary" failure case.
2d815d95 1471.
fdc2d303 1472.It Sy zfs_free_min_time_ms Ns = Ns Sy 1000 Ns ms Po 1s Pc Pq uint
2d815d95
AZ
1473During a
1474.Nm zfs Cm destroy
1475operation using the
1476.Sy async_destroy
1477feature,
1478a minimum of this much time will be spent working on freeing blocks per TXG.
1479.
fdc2d303 1480.It Sy zfs_obsolete_min_time_ms Ns = Ns Sy 500 Ns ms Pq uint
2d815d95
AZ
1481Similar to
1482.Sy zfs_free_min_time_ms ,
1483but for cleanup of old indirection records for removed vdevs.
1484.
ab8d9c17 1485.It Sy zfs_immediate_write_sz Ns = Ns Sy 32768 Ns B Po 32 KiB Pc Pq s64
2d815d95
AZ
1486Largest data block to write to the ZIL.
1487Larger blocks will be treated as if the dataset being written to had the
1488.Sy logbias Ns = Ns Sy throughput
1489property set.
1490.
ab8d9c17 1491.It Sy zfs_initialize_value Ns = Ns Sy 16045690984833335022 Po 0xDEADBEEFDEADBEEE Pc Pq u64
2d815d95
AZ
1492Pattern written to vdev free space by
1493.Xr zpool-initialize 8 .
1494.
ab8d9c17 1495.It Sy zfs_initialize_chunk_size Ns = Ns Sy 1048576 Ns B Po 1 MiB Pc Pq u64
2d815d95
AZ
1496Size of writes used by
1497.Xr zpool-initialize 8 .
1498This option is used by the test suite.
1499.
ab8d9c17 1500.It Sy zfs_livelist_max_entries Ns = Ns Sy 500000 Po 5*10^5 Pc Pq u64
37f03da8
SH
1501The threshold size (in block pointers) at which we create a new sub-livelist.
1502Larger sublists are more costly from a memory perspective but the fewer
1503sublists there are, the lower the cost of insertion.
2d815d95
AZ
1504.
1505.It Sy zfs_livelist_min_percent_shared Ns = Ns Sy 75 Ns % Pq int
37f03da8 1506If the amount of shared space between a snapshot and its clone drops below
2d815d95
AZ
1507this threshold, the clone turns off the livelist and reverts to the old
1508deletion method.
1509This is in place because livelists no long give us a benefit
1510once a clone has been overwritten enough.
1511.
1512.It Sy zfs_livelist_condense_new_alloc Ns = Ns Sy 0 Pq int
37f03da8
SH
1513Incremented each time an extra ALLOC blkptr is added to a livelist entry while
1514it is being condensed.
1515This option is used by the test suite to track race conditions.
2d815d95
AZ
1516.
1517.It Sy zfs_livelist_condense_sync_cancel Ns = Ns Sy 0 Pq int
37f03da8 1518Incremented each time livelist condensing is canceled while in
2d815d95 1519.Fn spa_livelist_condense_sync .
37f03da8 1520This option is used by the test suite to track race conditions.
2d815d95
AZ
1521.
1522.It Sy zfs_livelist_condense_sync_pause Ns = Ns Sy 0 Ns | Ns 1 Pq int
37f03da8 1523When set, the livelist condense process pauses indefinitely before
12bd322d 1524executing the synctask \(em
2d815d95 1525.Fn spa_livelist_condense_sync .
37f03da8 1526This option is used by the test suite to trigger race conditions.
2d815d95
AZ
1527.
1528.It Sy zfs_livelist_condense_zthr_cancel Ns = Ns Sy 0 Pq int
37f03da8 1529Incremented each time livelist condensing is canceled while in
2d815d95 1530.Fn spa_livelist_condense_cb .
37f03da8 1531This option is used by the test suite to track race conditions.
2d815d95
AZ
1532.
1533.It Sy zfs_livelist_condense_zthr_pause Ns = Ns Sy 0 Ns | Ns 1 Pq int
37f03da8 1534When set, the livelist condense process pauses indefinitely before
2d815d95
AZ
1535executing the open context condensing work in
1536.Fn spa_livelist_condense_cb .
37f03da8 1537This option is used by the test suite to trigger race conditions.
2d815d95 1538.
ab8d9c17 1539.It Sy zfs_lua_max_instrlimit Ns = Ns Sy 100000000 Po 10^8 Pc Pq u64
917f475f
JG
1540The maximum execution time limit that can be set for a ZFS channel program,
1541specified as a number of Lua instructions.
2d815d95 1542.
ab8d9c17 1543.It Sy zfs_lua_max_memlimit Ns = Ns Sy 104857600 Po 100 MiB Pc Pq u64
917f475f
JG
1544The maximum memory limit that can be set for a ZFS channel program, specified
1545in bytes.
2d815d95
AZ
1546.
1547.It Sy zfs_max_dataset_nesting Ns = Ns Sy 50 Pq int
1548The maximum depth of nested datasets.
1549This value can be tuned temporarily to
a7ed98d8 1550fix existing datasets that exceed the predefined limit.
2d815d95 1551.
ab8d9c17 1552.It Sy zfs_max_log_walking Ns = Ns Sy 5 Pq u64
93e28d66
SD
1553The number of past TXGs that the flushing algorithm of the log spacemap
1554feature uses to estimate incoming log blocks.
2d815d95 1555.
ab8d9c17 1556.It Sy zfs_max_logsm_summary_length Ns = Ns Sy 10 Pq u64
93e28d66 1557Maximum number of rows allowed in the summary of the spacemap log.
2d815d95 1558.
fdc2d303 1559.It Sy zfs_max_recordsize Ns = Ns Sy 16777216 Po 16 MiB Pc Pq uint
2d815d95 1560We currently support block sizes from
a894ae75 1561.Em 512 Po 512 B Pc No to Em 16777216 Po 16 MiB Pc .
2d815d95
AZ
1562The benefits of larger blocks, and thus larger I/O,
1563need to be weighed against the cost of COWing a giant block to modify one byte.
1564Additionally, very large blocks can have an impact on I/O latency,
1565and also potentially on the memory allocator.
f2330bd1
RE
1566Therefore, we formerly forbade creating blocks larger than 1M.
1567Larger blocks could be created by changing it,
2d815d95 1568and pools with larger blocks can always be imported and used,
f1512ee6 1569regardless of this setting.
2d815d95
AZ
1570.
1571.It Sy zfs_allow_redacted_dataset_mount Ns = Ns Sy 0 Ns | Ns 1 Pq int
1572Allow datasets received with redacted send/receive to be mounted.
1573Normally disabled because these datasets may be missing key data.
1574.
ab8d9c17 1575.It Sy zfs_min_metaslabs_to_flush Ns = Ns Sy 1 Pq u64
2d815d95
AZ
1576Minimum number of metaslabs to flush per dirty TXG.
1577.
fdc2d303 1578.It Sy zfs_metaslab_fragmentation_threshold Ns = Ns Sy 70 Ns % Pq uint
f3a7f661 1579Allow metaslabs to keep their active state as long as their fragmentation
2d815d95
AZ
1580percentage is no more than this value.
1581An active metaslab that exceeds this threshold
1582will no longer keep its active status allowing better metaslabs to be selected.
1583.
fdc2d303 1584.It Sy zfs_mg_fragmentation_threshold Ns = Ns Sy 95 Ns % Pq uint
f3a7f661 1585Metaslab groups are considered eligible for allocations if their
83426735 1586fragmentation metric (measured as a percentage) is less than or equal to
2d815d95
AZ
1587this value.
1588If a metaslab group exceeds this threshold then it will be
f3a7f661
GW
1589skipped unless all metaslab groups within the metaslab class have also
1590crossed this threshold.
2d815d95 1591.
fdc2d303 1592.It Sy zfs_mg_noalloc_threshold Ns = Ns Sy 0 Ns % Pq uint
2d815d95
AZ
1593Defines a threshold at which metaslab groups should be eligible for allocations.
1594The value is expressed as a percentage of free space
f4a4046b
TC
1595beyond which a metaslab group is always eligible for allocations.
1596If a metaslab group's free space is less than or equal to the
6b4e21c6 1597threshold, the allocator will avoid allocating to that group
2d815d95
AZ
1598unless all groups in the pool have reached the threshold.
1599Once all groups have reached the threshold, all groups are allowed to accept
1600allocations.
1601The default value of
1602.Sy 0
b46be903
DS
1603disables the feature and causes all metaslab groups to be eligible for
1604allocations.
2d815d95 1605.Pp
b58237e7 1606This parameter allows one to deal with pools having heavily imbalanced
f4a4046b
TC
1607vdevs such as would be the case when a new vdev has been added.
1608Setting the threshold to a non-zero percentage will stop allocations
1609from being made to vdevs that aren't filled to the specified percentage
1610and allow lesser filled vdevs to acquire more allocations than they
2d815d95
AZ
1611otherwise would under the old
1612.Sy zfs_mg_alloc_failures
1613facility.
1614.
1615.It Sy zfs_ddt_data_is_special Ns = Ns Sy 1 Ns | Ns 0 Pq int
cc99f275 1616If enabled, ZFS will place DDT data into the special allocation class.
2d815d95
AZ
1617.
1618.It Sy zfs_user_indirect_is_special Ns = Ns Sy 1 Ns | Ns 0 Pq int
1619If enabled, ZFS will place user data indirect blocks
cc99f275 1620into the special allocation class.
2d815d95 1621.
fdc2d303 1622.It Sy zfs_multihost_history Ns = Ns Sy 0 Pq uint
b46be903
DS
1623Historical statistics for this many latest multihost updates will be available
1624in
2d815d95
AZ
1625.Pa /proc/spl/kstat/zfs/ Ns Ao Ar pool Ac Ns Pa /multihost .
1626.
ab8d9c17 1627.It Sy zfs_multihost_interval Ns = Ns Sy 1000 Ns ms Po 1 s Pc Pq u64
379ca9cf 1628Used to control the frequency of multihost writes which are performed when the
2d815d95
AZ
1629.Sy multihost
1630pool property is on.
1631This is one of the factors used to determine the
060f0226 1632length of the activity check during import.
2d815d95
AZ
1633.Pp
1634The multihost write period is
12bd322d 1635.Sy zfs_multihost_interval No / Sy leaf-vdevs .
2d815d95
AZ
1636On average a multihost write will be issued for each leaf vdev
1637every
1638.Sy zfs_multihost_interval
1639milliseconds.
1640In practice, the observed period can vary with the I/O load
1641and this observed value is the delay which is stored in the uberblock.
1642.
1643.It Sy zfs_multihost_import_intervals Ns = Ns Sy 20 Pq uint
1644Used to control the duration of the activity test on import.
1645Smaller values of
1646.Sy zfs_multihost_import_intervals
1647will reduce the import time but increase
1648the risk of failing to detect an active pool.
1649The total activity check time is never allowed to drop below one second.
1650.Pp
060f0226 1651On import the activity check waits a minimum amount of time determined by
12bd322d 1652.Sy zfs_multihost_interval No \(mu Sy zfs_multihost_import_intervals ,
2d815d95
AZ
1653or the same product computed on the host which last had the pool imported,
1654whichever is greater.
1655The activity check time may be further extended if the value of MMP
060f0226 1656delay found in the best uberblock indicates actual multihost updates happened
2d815d95
AZ
1657at longer intervals than
1658.Sy zfs_multihost_interval .
1659A minimum of
a894ae75 1660.Em 100 ms
2d815d95
AZ
1661is enforced.
1662.Pp
1663.Sy 0 No is equivalent to Sy 1 .
1664.
1665.It Sy zfs_multihost_fail_intervals Ns = Ns Sy 10 Pq uint
060f0226
OF
1666Controls the behavior of the pool when multihost write failures or delays are
1667detected.
2d815d95
AZ
1668.Pp
1669When
1670.Sy 0 ,
1671multihost write failures or delays are ignored.
1672The failures will still be reported to the ZED which depending on
060f0226
OF
1673its configuration may take action such as suspending the pool or offlining a
1674device.
2d815d95
AZ
1675.Pp
1676Otherwise, the pool will be suspended if
12bd322d 1677.Sy zfs_multihost_fail_intervals No \(mu Sy zfs_multihost_interval
2d815d95
AZ
1678milliseconds pass without a successful MMP write.
1679This guarantees the activity test will see MMP writes if the pool is imported.
1680.Sy 1 No is equivalent to Sy 2 ;
1681this is necessary to prevent the pool from being suspended
060f0226 1682due to normal, small I/O latency variations.
2d815d95
AZ
1683.
1684.It Sy zfs_no_scrub_io Ns = Ns Sy 0 Ns | Ns 1 Pq int
1685Set to disable scrub I/O.
1686This results in scrubs not actually scrubbing data and
83426735 1687simply doing a metadata crawl of the pool instead.
2d815d95
AZ
1688.
1689.It Sy zfs_no_scrub_prefetch Ns = Ns Sy 0 Ns | Ns 1 Pq int
83426735 1690Set to disable block prefetching for scrubs.
2d815d95
AZ
1691.
1692.It Sy zfs_nocacheflush Ns = Ns Sy 0 Ns | Ns 1 Pq int
1693Disable cache flush operations on disks when writing.
1694Setting this will cause pool corruption on power loss
1695if a volatile out-of-order write cache is enabled.
1696.
1697.It Sy zfs_nopwrite_enabled Ns = Ns Sy 1 Ns | Ns 0 Pq int
1698Allow no-operation writes.
1699The occurrence of nopwrites will further depend on other pool properties
1700.Pq i.a. the checksumming and compression algorithms .
1701.
05b3eb6d 1702.It Sy zfs_dmu_offset_next_sync Ns = Ns Sy 1 Ns | Ns 0 Pq int
2d815d95 1703Enable forcing TXG sync to find holes.
05b3eb6d 1704When enabled forces ZFS to sync data when
2d815d95 1705.Sy SEEK_HOLE No or Sy SEEK_DATA
05b3eb6d
BB
1706flags are used allowing holes in a file to be accurately reported.
1707When disabled holes will not be reported in recently dirtied files.
2d815d95 1708.
a894ae75 1709.It Sy zfs_pd_bytes_max Ns = Ns Sy 52428800 Ns B Po 50 MiB Pc Pq int
2d815d95
AZ
1710The number of bytes which should be prefetched during a pool traversal, like
1711.Nm zfs Cm send
1712or other data crawling operations.
1713.
fdc2d303 1714.It Sy zfs_traverse_indirect_prefetch_limit Ns = Ns Sy 32 Pq uint
2d815d95
AZ
1715The number of blocks pointed by indirect (non-L0) block which should be
1716prefetched during a pool traversal, like
1717.Nm zfs Cm send
1718or other data crawling operations.
1719.
ab8d9c17 1720.It Sy zfs_per_txg_dirty_frees_percent Ns = Ns Sy 30 Ns % Pq u64
2d815d95
AZ
1721Control percentage of dirtied indirect blocks from frees allowed into one TXG.
1722After this threshold is crossed, additional frees will wait until the next TXG.
b46be903 1723.Sy 0 No disables this throttle .
2d815d95
AZ
1724.
1725.It Sy zfs_prefetch_disable Ns = Ns Sy 0 Ns | Ns 1 Pq int
1726Disable predictive prefetch.
2d232ca8
AZ
1727Note that it leaves "prescient" prefetch
1728.Pq for, e.g., Nm zfs Cm send
2d815d95
AZ
1729intact.
1730Unlike predictive prefetch, prescient prefetch never issues I/O
1731that ends up not being needed, so it can't hurt performance.
1732.
1733.It Sy zfs_qat_checksum_disable Ns = Ns Sy 0 Ns | Ns 1 Pq int
1734Disable QAT hardware acceleration for SHA256 checksums.
1735May be unset after the ZFS modules have been loaded to initialize the QAT
1736hardware as long as support is compiled in and the QAT driver is present.
1737.
1738.It Sy zfs_qat_compress_disable Ns = Ns Sy 0 Ns | Ns 1 Pq int
1739Disable QAT hardware acceleration for gzip compression.
1740May be unset after the ZFS modules have been loaded to initialize the QAT
1741hardware as long as support is compiled in and the QAT driver is present.
1742.
1743.It Sy zfs_qat_encrypt_disable Ns = Ns Sy 0 Ns | Ns 1 Pq int
1744Disable QAT hardware acceleration for AES-GCM encryption.
1745May be unset after the ZFS modules have been loaded to initialize the QAT
1746hardware as long as support is compiled in and the QAT driver is present.
1747.
ab8d9c17 1748.It Sy zfs_vnops_read_chunk_size Ns = Ns Sy 1048576 Ns B Po 1 MiB Pc Pq u64
2d815d95
AZ
1749Bytes to read per chunk.
1750.
fdc2d303 1751.It Sy zfs_read_history Ns = Ns Sy 0 Pq uint
2d815d95
AZ
1752Historical statistics for this many latest reads will be available in
1753.Pa /proc/spl/kstat/zfs/ Ns Ao Ar pool Ac Ns Pa /reads .
1754.
1755.It Sy zfs_read_history_hits Ns = Ns Sy 0 Ns | Ns 1 Pq int
29714574 1756Include cache hits in read history
2d815d95 1757.
ab8d9c17 1758.It Sy zfs_rebuild_max_segment Ns = Ns Sy 1048576 Ns B Po 1 MiB Pc Pq u64
9a49d3f3
BB
1759Maximum read segment size to issue when sequentially resilvering a
1760top-level vdev.
2d815d95
AZ
1761.
1762.It Sy zfs_rebuild_scrub_enabled Ns = Ns Sy 1 Ns | Ns 0 Pq int
b2255edc
BB
1763Automatically start a pool scrub when the last active sequential resilver
1764completes in order to verify the checksums of all blocks which have been
2d815d95
AZ
1765resilvered.
1766This is enabled by default and strongly recommended.
1767.
973934b9 1768.It Sy zfs_rebuild_vdev_limit Ns = Ns Sy 67108864 Ns B Po 64 MiB Pc Pq u64
2d815d95 1769Maximum amount of I/O that can be concurrently issued for a sequential
b2255edc 1770resilver per leaf device, given in bytes.
2d815d95
AZ
1771.
1772.It Sy zfs_reconstruct_indirect_combinations_max Ns = Ns Sy 4096 Pq int
4589f3ae
BB
1773If an indirect split block contains more than this many possible unique
1774combinations when being reconstructed, consider it too computationally
2d815d95
AZ
1775expensive to check them all.
1776Instead, try at most this many randomly selected
1777combinations each time the block is accessed.
1778This allows all segment copies to participate fairly
1779in the reconstruction when all combinations
4589f3ae 1780cannot be checked and prevents repeated use of one bad copy.
2d815d95
AZ
1781.
1782.It Sy zfs_recover Ns = Ns Sy 0 Ns | Ns 1 Pq int
1783Set to attempt to recover from fatal errors.
1784This should only be used as a last resort,
1785as it typically results in leaked space, or worse.
1786.
1787.It Sy zfs_removal_ignore_errors Ns = Ns Sy 0 Ns | Ns 1 Pq int
a737b415
AZ
1788Ignore hard I/O errors during device removal.
1789When set, if a device encounters a hard I/O error during the removal process
2d815d95 1790the removal will not be cancelled.
7c9a4292 1791This can result in a normally recoverable block becoming permanently damaged
2d815d95
AZ
1792and is hence not recommended.
1793This should only be used as a last resort when the
7c9a4292 1794pool cannot be returned to a healthy state prior to removing the device.
2d815d95 1795.
fdc2d303 1796.It Sy zfs_removal_suspend_progress Ns = Ns Sy 0 Ns | Ns 1 Pq uint
53dce5ac
MA
1797This is used by the test suite so that it can ensure that certain actions
1798happen while in the middle of a removal.
2d815d95 1799.
fdc2d303 1800.It Sy zfs_remove_max_segment Ns = Ns Sy 16777216 Ns B Po 16 MiB Pc Pq uint
53dce5ac 1801The largest contiguous segment that we will attempt to allocate when removing
2d815d95
AZ
1802a device.
1803If there is a performance problem with attempting to allocate large blocks,
1804consider decreasing this.
1805The default value is also the maximum.
1806.
1807.It Sy zfs_resilver_disable_defer Ns = Ns Sy 0 Ns | Ns 1 Pq int
1808Ignore the
1809.Sy resilver_defer
1810feature, causing an operation that would start a resilver to
1811immediately restart the one in progress.
1812.
fdc2d303 1813.It Sy zfs_resilver_min_time_ms Ns = Ns Sy 3000 Ns ms Po 3 s Pc Pq uint
2d815d95
AZ
1814Resilvers are processed by the sync thread.
1815While resilvering, it will spend at least this much time
1816working on a resilver between TXG flushes.
1817.
1818.It Sy zfs_scan_ignore_errors Ns = Ns Sy 0 Ns | Ns 1 Pq int
1819If set, remove the DTL (dirty time list) upon completion of a pool scan (scrub),
1820even if there were unrepairable errors.
1821Intended to be used during pool repair or recovery to
02638a30 1822stop resilvering when the pool is next imported.
2d815d95 1823.
5caeef02
DB
1824.It Sy zfs_scrub_after_expand Ns = Ns Sy 1 Ns | Ns 0 Pq int
1825Automatically start a pool scrub after a RAIDZ expansion completes
1826in order to verify the checksums of all blocks which have been
1827copied during the expansion.
1828This is enabled by default and strongly recommended.
1829.
fdc2d303 1830.It Sy zfs_scrub_min_time_ms Ns = Ns Sy 1000 Ns ms Po 1 s Pc Pq uint
2d815d95
AZ
1831Scrubs are processed by the sync thread.
1832While scrubbing, it will spend at least this much time
1833working on a scrub between TXG flushes.
1834.
482eeef8
GA
1835.It Sy zfs_scrub_error_blocks_per_txg Ns = Ns Sy 4096 Pq uint
1836Error blocks to be scrubbed in one txg.
1837.
fdc2d303 1838.It Sy zfs_scan_checkpoint_intval Ns = Ns Sy 7200 Ns s Po 2 hour Pc Pq uint
2d815d95
AZ
1839To preserve progress across reboots, the sequential scan algorithm periodically
1840needs to stop metadata scanning and issue all the verification I/O to disk.
1841The frequency of this flushing is determined by this tunable.
1842.
fdc2d303 1843.It Sy zfs_scan_fill_weight Ns = Ns Sy 3 Pq uint
2d815d95
AZ
1844This tunable affects how scrub and resilver I/O segments are ordered.
1845A higher number indicates that we care more about how filled in a segment is,
1846while a lower number indicates we care more about the size of the extent without
1847considering the gaps within a segment.
1848This value is only tunable upon module insertion.
b46be903
DS
1849Changing the value afterwards will have no effect on scrub or resilver
1850performance.
2d815d95 1851.
fdc2d303 1852.It Sy zfs_scan_issue_strategy Ns = Ns Sy 0 Pq uint
2d815d95
AZ
1853Determines the order that data will be verified while scrubbing or resilvering:
1854.Bl -tag -compact -offset 4n -width "a"
1855.It Sy 1
1856Data will be verified as sequentially as possible, given the
1857amount of memory reserved for scrubbing
1858.Pq see Sy zfs_scan_mem_lim_fact .
1859This may improve scrub performance if the pool's data is very fragmented.
1860.It Sy 2
1861The largest mostly-contiguous chunk of found data will be verified first.
1862By deferring scrubbing of small segments, we may later find adjacent data
1863to coalesce and increase the segment size.
1864.It Sy 0
1865.No Use strategy Sy 1 No during normal verification
b46be903 1866.No and strategy Sy 2 No while taking a checkpoint .
2d815d95
AZ
1867.El
1868.
1869.It Sy zfs_scan_legacy Ns = Ns Sy 0 Ns | Ns 1 Pq int
1870If unset, indicates that scrubs and resilvers will gather metadata in
1871memory before issuing sequential I/O.
1872Otherwise indicates that the legacy algorithm will be used,
1873where I/O is initiated as soon as it is discovered.
1874Unsetting will not affect scrubs or resilvers that are already in progress.
1875.
a894ae75 1876.It Sy zfs_scan_max_ext_gap Ns = Ns Sy 2097152 Ns B Po 2 MiB Pc Pq int
2d815d95
AZ
1877Sets the largest gap in bytes between scrub/resilver I/O operations
1878that will still be considered sequential for sorting purposes.
1879Changing this value will not
d4a72f23 1880affect scrubs or resilvers that are already in progress.
2d815d95 1881.
fdc2d303 1882.It Sy zfs_scan_mem_lim_fact Ns = Ns Sy 20 Ns ^-1 Pq uint
d4a72f23
TC
1883Maximum fraction of RAM used for I/O sorting by sequential scan algorithm.
1884This tunable determines the hard limit for I/O sorting memory usage.
1885When the hard limit is reached we stop scanning metadata and start issuing
2d815d95
AZ
1886data verification I/O.
1887This is done until we get below the soft limit.
1888.
fdc2d303 1889.It Sy zfs_scan_mem_lim_soft_fact Ns = Ns Sy 20 Ns ^-1 Pq uint
d4a72f23 1890The fraction of the hard limit used to determined the soft limit for I/O sorting
2d815d95
AZ
1891by the sequential scan algorithm.
1892When we cross this limit from below no action is taken.
b46be903
DS
1893When we cross this limit from above it is because we are issuing verification
1894I/O.
2d815d95
AZ
1895In this case (unless the metadata scan is done) we stop issuing verification I/O
1896and start scanning metadata again until we get to the hard limit.
1897.
c85ac731
BB
1898.It Sy zfs_scan_report_txgs Ns = Ns Sy 0 Ns | Ns 1 Pq uint
1899When reporting resilver throughput and estimated completion time use the
1900performance observed over roughly the last
1901.Sy zfs_scan_report_txgs
1902TXGs.
1903When set to zero performance is calculated over the time between checkpoints.
1904.
2d815d95
AZ
1905.It Sy zfs_scan_strict_mem_lim Ns = Ns Sy 0 Ns | Ns 1 Pq int
1906Enforce tight memory limits on pool scans when a sequential scan is in progress.
1907When disabled, the memory limit may be exceeded by fast disks.
1908.
1909.It Sy zfs_scan_suspend_progress Ns = Ns Sy 0 Ns | Ns 1 Pq int
1910Freezes a scrub/resilver in progress without actually pausing it.
1911Intended for testing/debugging.
1912.
c0aea7cf 1913.It Sy zfs_scan_vdev_limit Ns = Ns Sy 16777216 Ns B Po 16 MiB Pc Pq int
d4a72f23
TC
1914Maximum amount of data that can be concurrently issued at once for scrubs and
1915resilvers per leaf device, given in bytes.
2d815d95
AZ
1916.
1917.It Sy zfs_send_corrupt_data Ns = Ns Sy 0 Ns | Ns 1 Pq int
1918Allow sending of corrupt data (ignore read/checksum errors when sending).
1919.
1920.It Sy zfs_send_unmodified_spill_blocks Ns = Ns Sy 1 Ns | Ns 0 Pq int
1921Include unmodified spill blocks in the send stream.
1922Under certain circumstances, previous versions of ZFS could incorrectly
1923remove the spill block from an existing object.
1924Including unmodified copies of the spill blocks creates a backwards-compatible
1925stream which will recreate a spill block if it was incorrectly removed.
1926.
fdc2d303 1927.It Sy zfs_send_no_prefetch_queue_ff Ns = Ns Sy 20 Ns ^\-1 Pq uint
2d815d95
AZ
1928The fill fraction of the
1929.Nm zfs Cm send
1930internal queues.
1931The fill fraction controls the timing with which internal threads are woken up.
1932.
fdc2d303 1933.It Sy zfs_send_no_prefetch_queue_length Ns = Ns Sy 1048576 Ns B Po 1 MiB Pc Pq uint
2d815d95
AZ
1934The maximum number of bytes allowed in
1935.Nm zfs Cm send Ns 's
1936internal queues.
1937.
fdc2d303 1938.It Sy zfs_send_queue_ff Ns = Ns Sy 20 Ns ^\-1 Pq uint
2d815d95
AZ
1939The fill fraction of the
1940.Nm zfs Cm send
1941prefetch queue.
1942The fill fraction controls the timing with which internal threads are woken up.
1943.
fdc2d303 1944.It Sy zfs_send_queue_length Ns = Ns Sy 16777216 Ns B Po 16 MiB Pc Pq uint
2d815d95
AZ
1945The maximum number of bytes allowed that will be prefetched by
1946.Nm zfs Cm send .
1947This value must be at least twice the maximum block size in use.
1948.
fdc2d303 1949.It Sy zfs_recv_queue_ff Ns = Ns Sy 20 Ns ^\-1 Pq uint
2d815d95
AZ
1950The fill fraction of the
1951.Nm zfs Cm receive
1952queue.
1953The fill fraction controls the timing with which internal threads are woken up.
1954.
fdc2d303 1955.It Sy zfs_recv_queue_length Ns = Ns Sy 16777216 Ns B Po 16 MiB Pc Pq uint
2d815d95
AZ
1956The maximum number of bytes allowed in the
1957.Nm zfs Cm receive
1958queue.
30af21b0 1959This value must be at least twice the maximum block size in use.
2d815d95 1960.
fdc2d303 1961.It Sy zfs_recv_write_batch_size Ns = Ns Sy 1048576 Ns B Po 1 MiB Pc Pq uint
2d815d95
AZ
1962The maximum amount of data, in bytes, that
1963.Nm zfs Cm receive
1964will write in one DMU transaction.
1965This is the uncompressed size, even when receiving a compressed send stream.
1966This setting will not reduce the write size below a single block.
1967Capped at a maximum of
a894ae75 1968.Sy 32 MiB .
2d815d95 1969.
e8cf3a4f
AP
1970.It Sy zfs_recv_best_effort_corrective Ns = Ns Sy 0 Pq int
1971When this variable is set to non-zero a corrective receive:
1972.Bl -enum -compact -offset 4n -width "1."
1973.It
1974Does not enforce the restriction of source & destination snapshot GUIDs
1975matching.
1976.It
1977If there is an error during healing, the healing receive is not
1978terminated instead it moves on to the next record.
1979.El
1980.
fdc2d303 1981.It Sy zfs_override_estimate_recordsize Ns = Ns Sy 0 Ns | Ns 1 Pq uint
30af21b0 1982Setting this variable overrides the default logic for estimating block
2d815d95
AZ
1983sizes when doing a
1984.Nm zfs Cm send .
1985The default heuristic is that the average block size
1986will be the current recordsize.
1987Override this value if most data in your dataset is not of that size
1988and you require accurate zfs send size estimates.
1989.
fdc2d303 1990.It Sy zfs_sync_pass_deferred_free Ns = Ns Sy 2 Pq uint
2d815d95
AZ
1991Flushing of data to disk is done in passes.
1992Defer frees starting in this pass.
1993.
a894ae75 1994.It Sy zfs_spa_discard_memory_limit Ns = Ns Sy 16777216 Ns B Po 16 MiB Pc Pq int
d2734cce
SD
1995Maximum memory used for prefetching a checkpoint's space map on each
1996vdev while discarding the checkpoint.
2d815d95 1997.
fdc2d303 1998.It Sy zfs_special_class_metadata_reserve_pct Ns = Ns Sy 25 Ns % Pq uint
1f02ecc5 1999Only allow small data blocks to be allocated on the special and dedup vdev
b46be903
DS
2000types when the available free space percentage on these vdevs exceeds this
2001value.
2d815d95 2002This ensures reserved space is available for pool metadata as the
1f02ecc5 2003special vdevs approach capacity.
2d815d95 2004.
fdc2d303 2005.It Sy zfs_sync_pass_dont_compress Ns = Ns Sy 8 Pq uint
2d815d95 2006Starting in this sync pass, disable compression (including of metadata).
be89734a
MA
2007With the default setting, in practice, we don't have this many sync passes,
2008so this has no effect.
2d815d95 2009.Pp
be89734a 2010The original intent was that disabling compression would help the sync passes
2d815d95
AZ
2011to converge.
2012However, in practice, disabling compression increases
2013the average number of sync passes; because when we turn compression off,
2014many blocks' size will change, and thus we have to re-allocate
2015(not overwrite) them.
2016It also increases the number of
a894ae75 2017.Em 128 KiB
2d815d95
AZ
2018allocations (e.g. for indirect blocks and spacemaps)
2019because these will not be compressed.
2020The
a894ae75 2021.Em 128 KiB
2d815d95 2022allocations are especially detrimental to performance
b46be903
DS
2023on highly fragmented systems, which may have very few free segments of this
2024size,
2d815d95
AZ
2025and may need to load new metaslabs to satisfy these allocations.
2026.
fdc2d303 2027.It Sy zfs_sync_pass_rewrite Ns = Ns Sy 2 Pq uint
2d815d95
AZ
2028Rewrite new block pointers starting in this pass.
2029.
a894ae75 2030.It Sy zfs_trim_extent_bytes_max Ns = Ns Sy 134217728 Ns B Po 128 MiB Pc Pq uint
2d815d95 2031Maximum size of TRIM command.
b46be903
DS
2032Larger ranges will be split into chunks no larger than this value before
2033issuing.
2d815d95 2034.
a894ae75 2035.It Sy zfs_trim_extent_bytes_min Ns = Ns Sy 32768 Ns B Po 32 KiB Pc Pq uint
2d815d95
AZ
2036Minimum size of TRIM commands.
2037TRIM ranges smaller than this will be skipped,
2038unless they're part of a larger range which was chunked.
2039This is done because it's common for these small TRIMs
2040to negatively impact overall performance.
2041.
2042.It Sy zfs_trim_metaslab_skip Ns = Ns Sy 0 Ns | Ns 1 Pq uint
2043Skip uninitialized metaslabs during the TRIM process.
b46be903
DS
2044This option is useful for pools constructed from large thinly-provisioned
2045devices
2d815d95
AZ
2046where TRIM operations are slow.
2047As a pool ages, an increasing fraction of the pool's metaslabs
2048will be initialized, progressively degrading the usefulness of this option.
2049This setting is stored when starting a manual TRIM and will
1b939560 2050persist for the duration of the requested TRIM.
2d815d95
AZ
2051.
2052.It Sy zfs_trim_queue_limit Ns = Ns Sy 10 Pq uint
2053Maximum number of queued TRIMs outstanding per leaf vdev.
2054The number of concurrent TRIM commands issued to the device is controlled by
2055.Sy zfs_vdev_trim_min_active No and Sy zfs_vdev_trim_max_active .
2056.
2057.It Sy zfs_trim_txg_batch Ns = Ns Sy 32 Pq uint
2058The number of transaction groups' worth of frees which should be aggregated
2059before TRIM operations are issued to the device.
2060This setting represents a trade-off between issuing larger,
2061more efficient TRIM operations and the delay
2062before the recently trimmed space is available for use by the device.
2063.Pp
1b939560 2064Increasing this value will allow frees to be aggregated for a longer time.
b46be903
DS
2065This will result is larger TRIM operations and potentially increased memory
2066usage.
2d815d95
AZ
2067Decreasing this value will have the opposite effect.
2068The default of
2069.Sy 32
2070was determined to be a reasonable compromise.
2071.
fdc2d303 2072.It Sy zfs_txg_history Ns = Ns Sy 0 Pq uint
2d815d95
AZ
2073Historical statistics for this many latest TXGs will be available in
2074.Pa /proc/spl/kstat/zfs/ Ns Ao Ar pool Ac Ns Pa /TXGs .
2075.
fdc2d303 2076.It Sy zfs_txg_timeout Ns = Ns Sy 5 Ns s Pq uint
b46be903
DS
2077Flush dirty data to disk at least every this many seconds (maximum TXG
2078duration).
2d815d95 2079.
fdc2d303 2080.It Sy zfs_vdev_aggregation_limit Ns = Ns Sy 1048576 Ns B Po 1 MiB Pc Pq uint
2d815d95
AZ
2081Max vdev I/O aggregation size.
2082.
fdc2d303 2083.It Sy zfs_vdev_aggregation_limit_non_rotating Ns = Ns Sy 131072 Ns B Po 128 KiB Pc Pq uint
2d815d95
AZ
2084Max vdev I/O aggregation size for non-rotating media.
2085.
2d815d95 2086.It Sy zfs_vdev_mirror_rotating_inc Ns = Ns Sy 0 Pq int
9f500936 2087A number by which the balancing algorithm increments the load calculation for
2d815d95
AZ
2088the purpose of selecting the least busy mirror member when an I/O operation
2089immediately follows its predecessor on rotational vdevs
2090for the purpose of making decisions based on load.
2091.
2092.It Sy zfs_vdev_mirror_rotating_seek_inc Ns = Ns Sy 5 Pq int
9f500936 2093A number by which the balancing algorithm increments the load calculation for
2d815d95
AZ
2094the purpose of selecting the least busy mirror member when an I/O operation
2095lacks locality as defined by
2096.Sy zfs_vdev_mirror_rotating_seek_offset .
2097Operations within this that are not immediately following the previous operation
2098are incremented by half.
2099.
a894ae75 2100.It Sy zfs_vdev_mirror_rotating_seek_offset Ns = Ns Sy 1048576 Ns B Po 1 MiB Pc Pq int
2d815d95
AZ
2101The maximum distance for the last queued I/O operation in which
2102the balancing algorithm considers an operation to have locality.
2103.No See Sx ZFS I/O SCHEDULER .
2104.
2105.It Sy zfs_vdev_mirror_non_rotating_inc Ns = Ns Sy 0 Pq int
9f500936 2106A number by which the balancing algorithm increments the load calculation for
2107the purpose of selecting the least busy mirror member on non-rotational vdevs
2d815d95
AZ
2108when I/O operations do not immediately follow one another.
2109.
2110.It Sy zfs_vdev_mirror_non_rotating_seek_inc Ns = Ns Sy 1 Pq int
9f500936 2111A number by which the balancing algorithm increments the load calculation for
b46be903
DS
2112the purpose of selecting the least busy mirror member when an I/O operation
2113lacks
2d815d95
AZ
2114locality as defined by the
2115.Sy zfs_vdev_mirror_rotating_seek_offset .
2116Operations within this that are not immediately following the previous operation
2117are incremented by half.
2118.
fdc2d303 2119.It Sy zfs_vdev_read_gap_limit Ns = Ns Sy 32768 Ns B Po 32 KiB Pc Pq uint
2d815d95 2120Aggregate read I/O operations if the on-disk gap between them is within this
83426735 2121threshold.
2d815d95 2122.
fdc2d303 2123.It Sy zfs_vdev_write_gap_limit Ns = Ns Sy 4096 Ns B Po 4 KiB Pc Pq uint
2d815d95
AZ
2124Aggregate write I/O operations if the on-disk gap between them is within this
2125threshold.
2126.
2127.It Sy zfs_vdev_raidz_impl Ns = Ns Sy fastest Pq string
2128Select the raidz parity implementation to use.
2129.Pp
2130Variants that don't depend on CPU-specific features
2131may be selected on module load, as they are supported on all systems.
2132The remaining options may only be set after the module is loaded,
2133as they are available only if the implementations are compiled in
2134and supported on the running system.
2135.Pp
2136Once the module is loaded,
2137.Pa /sys/module/zfs/parameters/zfs_vdev_raidz_impl
2138will show the available options,
2139with the currently selected one enclosed in square brackets.
2140.Pp
2141.TS
2142lb l l .
2143fastest selected by built-in benchmark
2144original original implementation
2145scalar scalar implementation
2146sse2 SSE2 instruction set 64-bit x86
2147ssse3 SSSE3 instruction set 64-bit x86
2148avx2 AVX2 instruction set 64-bit x86
2149avx512f AVX512F instruction set 64-bit x86
2150avx512bw AVX512F & AVX512BW instruction sets 64-bit x86
2151aarch64_neon NEON Aarch64/64-bit ARMv8
2152aarch64_neonx2 NEON with more unrolling Aarch64/64-bit ARMv8
2153powerpc_altivec Altivec PowerPC
2154.TE
2155.
2156.It Sy zfs_vdev_scheduler Pq charp
2157.Sy DEPRECATED .
0f402668 2158Prints warning to kernel log for compatibility.
2d815d95 2159.
fdc2d303 2160.It Sy zfs_zevent_len_max Ns = Ns Sy 512 Pq uint
032a213e 2161Max event queue length.
2d815d95
AZ
2162Events in the queue can be viewed with
2163.Xr zpool-events 8 .
2164.
2165.It Sy zfs_zevent_retain_max Ns = Ns Sy 2000 Pq int
2166Maximum recent zevent records to retain for duplicate checking.
2167Setting this to
2168.Sy 0
2169disables duplicate detection.
2170.
a894ae75 2171.It Sy zfs_zevent_retain_expire_secs Ns = Ns Sy 900 Ns s Po 15 min Pc Pq int
4f072827 2172Lifespan for a recent ereport that was retained for duplicate checking.
2d815d95
AZ
2173.
2174.It Sy zfs_zil_clean_taskq_maxalloc Ns = Ns Sy 1048576 Pq int
2175The maximum number of taskq entries that are allowed to be cached.
2176When this limit is exceeded transaction records (itxs)
2177will be cleaned synchronously.
2178.
2179.It Sy zfs_zil_clean_taskq_minalloc Ns = Ns Sy 1024 Pq int
a032ac4b
BB
2180The number of taskq entries that are pre-populated when the taskq is first
2181created and are immediately available for use.
2d815d95
AZ
2182.
2183.It Sy zfs_zil_clean_taskq_nthr_pct Ns = Ns Sy 100 Ns % Pq int
2184This controls the number of threads used by
2185.Sy dp_zil_clean_taskq .
2186The default value of
2187.Sy 100%
2188will create a maximum of one thread per cpu.
2189.
fdc2d303 2190.It Sy zil_maxblocksize Ns = Ns Sy 131072 Ns B Po 128 KiB Pc Pq uint
2d815d95
AZ
2191This sets the maximum block size used by the ZIL.
2192On very fragmented pools, lowering this
a894ae75 2193.Pq typically to Sy 36 KiB
2d815d95
AZ
2194can improve performance.
2195.
66b81b34
AM
2196.It Sy zil_maxcopied Ns = Ns Sy 7680 Ns B Po 7.5 KiB Pc Pq uint
2197This sets the maximum number of write bytes logged via WR_COPIED.
2198It tunes a tradeoff between additional memory copy and possibly worse log
2199space efficiency vs additional range lock/unlock.
2200.
2d815d95
AZ
2201.It Sy zil_nocacheflush Ns = Ns Sy 0 Ns | Ns 1 Pq int
2202Disable the cache flush commands that are normally sent to disk by
2203the ZIL after an LWB write has completed.
2204Setting this will cause ZIL corruption on power loss
2205if a volatile out-of-order write cache is enabled.
2206.
2207.It Sy zil_replay_disable Ns = Ns Sy 0 Ns | Ns 1 Pq int
2208Disable intent logging replay.
2209Can be disabled for recovery from corrupted ZIL.
2210.
c0e58995 2211.It Sy zil_slog_bulk Ns = Ns Sy 67108864 Ns B Po 64 MiB Pc Pq u64
1b7c1e5c
GDN
2212Limit SLOG write size per commit executed with synchronous priority.
2213Any writes above that will be executed with lower (asynchronous) priority
2214to limit potential SLOG device abuse by single active ZIL writer.
2d815d95 2215.
361a7e82
JP
2216.It Sy zfs_zil_saxattr Ns = Ns Sy 1 Ns | Ns 0 Pq int
2217Setting this tunable to zero disables ZIL logging of new
2218.Sy xattr Ns = Ns Sy sa
2219records if the
2220.Sy org.openzfs:zilsaxattr
2221feature is enabled on the pool.
2222This would only be necessary to work around bugs in the ZIL logging or replay
2223code for this record type.
2224The tunable has no effect if the feature is disabled.
2225.
fdc2d303 2226.It Sy zfs_embedded_slog_min_ms Ns = Ns Sy 64 Pq uint
2d815d95
AZ
2227Usually, one metaslab from each normal-class vdev is dedicated for use by
2228the ZIL to log synchronous writes.
2229However, if there are fewer than
2230.Sy zfs_embedded_slog_min_ms
2231metaslabs in the vdev, this functionality is disabled.
b46be903
DS
2232This ensures that we don't set aside an unreasonable amount of space for the
2233ZIL.
2d815d95 2234.
fdc2d303 2235.It Sy zstd_earlyabort_pass Ns = Ns Sy 1 Pq uint
f375b23c
RE
2236Whether heuristic for detection of incompressible data with zstd levels >= 3
2237using LZ4 and zstd-1 passes is enabled.
2238.
fdc2d303 2239.It Sy zstd_abort_size Ns = Ns Sy 131072 Pq uint
f375b23c
RE
2240Minimal uncompressed size (inclusive) of a record before the early abort
2241heuristic will be attempted.
2242.
2d815d95
AZ
2243.It Sy zio_deadman_log_all Ns = Ns Sy 0 Ns | Ns 1 Pq int
2244If non-zero, the zio deadman will produce debugging messages
2245.Pq see Sy zfs_dbgmsg_enable
2246for all zios, rather than only for leaf zios possessing a vdev.
2247This is meant to be used by developers to gain
638dd5f4 2248diagnostic information for hang conditions which don't involve a mutex
2d815d95 2249or other locking primitive: typically conditions in which a thread in
638dd5f4 2250the zio pipeline is looping indefinitely.
2d815d95 2251.
a894ae75 2252.It Sy zio_slow_io_ms Ns = Ns Sy 30000 Ns ms Po 30 s Pc Pq int
2d815d95
AZ
2253When an I/O operation takes more than this much time to complete,
2254it's marked as slow.
2255Each slow operation causes a delay zevent.
2256Slow I/O counters can be seen with
2257.Nm zpool Cm status Fl s .
2258.
2259.It Sy zio_dva_throttle_enabled Ns = Ns Sy 1 Ns | Ns 0 Pq int
2260Throttle block allocations in the I/O pipeline.
2261This allows for dynamic allocation distribution when devices are imbalanced.
e815485f 2262When enabled, the maximum number of pending allocations per top-level vdev
2d815d95
AZ
2263is limited by
2264.Sy zfs_vdev_queue_depth_pct .
2265.
5c006134
RM
2266.It Sy zfs_xattr_compat Ns = Ns 0 Ns | Ns 1 Pq int
2267Control the naming scheme used when setting new xattrs in the user namespace.
2268If
2269.Sy 0
2270.Pq the default on Linux ,
2271user namespace xattr names are prefixed with the namespace, to be backwards
2272compatible with previous versions of ZFS on Linux.
2273If
2274.Sy 1
2275.Pq the default on Fx ,
2276user namespace xattr names are not prefixed, to be backwards compatible with
2277previous versions of ZFS on illumos and
2278.Fx .
2279.Pp
2280Either naming scheme can be read on this and future versions of ZFS, regardless
2281of this tunable, but legacy ZFS on illumos or
2282.Fx
2283are unable to read user namespace xattrs written in the Linux format, and
2284legacy versions of ZFS on Linux are unable to read user namespace xattrs written
2285in the legacy ZFS format.
2286.Pp
2287An existing xattr with the alternate naming scheme is removed when overwriting
2288the xattr so as to not accumulate duplicates.
2289.
2d815d95
AZ
2290.It Sy zio_requeue_io_start_cut_in_line Ns = Ns Sy 0 Ns | Ns 1 Pq int
2291Prioritize requeued I/O.
2292.
2293.It Sy zio_taskq_batch_pct Ns = Ns Sy 80 Ns % Pq uint
2294Percentage of online CPUs which will run a worker thread for I/O.
2295These workers are responsible for I/O work such as compression and
2296checksum calculations.
2297Fractional number of CPUs will be rounded down.
2298.Pp
2299The default value of
2300.Sy 80%
2301was chosen to avoid using all CPUs which can result in
2302latency issues and inconsistent application performance,
2303especially when slower compression and/or checksumming is enabled.
2304.
2305.It Sy zio_taskq_batch_tpq Ns = Ns Sy 0 Pq uint
2306Number of worker threads per taskq.
2307Lower values improve I/O ordering and CPU utilization,
2308while higher reduces lock contention.
2309.Pp
2310If
2311.Sy 0 ,
2312generate a system-dependent value close to 6 threads per taskq.
2313.
3bd4df38
EN
2314.It Sy zio_taskq_wr_iss_ncpus Ns = Ns Sy 0 Pq uint
2315Determines the number of CPUs to run write issue taskqs.
2316.Pp
2317When 0 (the default), the value to use is computed internally
2318as the number of actual CPUs in the system divided by the
2319.Sy spa_num_allocators
2320value.
2321.
6930ecbb
RN
2322.It Sy zio_taskq_read Ns = Ns Sy fixed,1,8 null scale null Pq charp
2323Set the queue and thread configuration for the IO read queues.
2324This is an advanced debugging parameter.
2325Don't change this unless you understand what it does.
2326.
2327.It Sy zio_taskq_write Ns = Ns Sy sync fixed,1,5 scale fixed,1,5 Pq charp
2328Set the queue and thread configuration for the IO write queues.
2329This is an advanced debugging parameter.
2330Don't change this unless you understand what it does.
2331.
2d815d95
AZ
2332.It Sy zvol_inhibit_dev Ns = Ns Sy 0 Ns | Ns 1 Pq uint
2333Do not create zvol device nodes.
2334This may slightly improve startup time on
83426735 2335systems with a very large number of zvols.
2d815d95
AZ
2336.
2337.It Sy zvol_major Ns = Ns Sy 230 Pq uint
2338Major number for zvol block devices.
2339.
ab8d9c17 2340.It Sy zvol_max_discard_blocks Ns = Ns Sy 16384 Pq long
2d815d95
AZ
2341Discard (TRIM) operations done on zvols will be done in batches of this
2342many blocks, where block size is determined by the
2343.Sy volblocksize
2344property of a zvol.
2345.
a894ae75 2346.It Sy zvol_prefetch_bytes Ns = Ns Sy 131072 Ns B Po 128 KiB Pc Pq uint
2d815d95
AZ
2347When adding a zvol to the system, prefetch this many bytes
2348from the start and end of the volume.
2349Prefetching these regions of the volume is desirable,
2350because they are likely to be accessed immediately by
2351.Xr blkid 8
2352or the kernel partitioner.
2353.
2354.It Sy zvol_request_sync Ns = Ns Sy 0 Ns | Ns 1 Pq uint
2355When processing I/O requests for a zvol, submit them synchronously.
2356This effectively limits the queue depth to
2357.Em 1
2358for each I/O submitter.
2359When unset, requests are handled asynchronously by a thread pool.
2360The number of requests which can be handled concurrently is controlled by
2361.Sy zvol_threads .
6f73d021
TH
2362.Sy zvol_request_sync
2363is ignored when running on a kernel that supports block multiqueue
2364.Pq Li blk-mq .
2d815d95 2365.
6f73d021
TH
2366.It Sy zvol_threads Ns = Ns Sy 0 Pq uint
2367The number of system wide threads to use for processing zvol block IOs.
2368If
2369.Sy 0
2370(the default) then internally set
2371.Sy zvol_threads
2372to the number of CPUs present or 32 (whichever is greater).
2373.
05c4710e
TH
2374.It Sy zvol_blk_mq_threads Ns = Ns Sy 0 Pq uint
2375The number of threads per zvol to use for queuing IO requests.
2376This parameter will only appear if your kernel supports
2377.Li blk-mq
2378and is only read and assigned to a zvol at zvol load time.
2379If
2380.Sy 0
2381(the default) then internally set
2382.Sy zvol_blk_mq_threads
2383to the number of CPUs present.
2384.
2385.It Sy zvol_use_blk_mq Ns = Ns Sy 0 Ns | Ns 1 Pq uint
2386Set to
2387.Sy 1
2388to use the
2389.Li blk-mq
2390API for zvols.
2391Set to
2392.Sy 0
2393(the default) to use the legacy zvol APIs.
2394This setting can give better or worse zvol performance depending on
2395the workload.
2396This parameter will only appear if your kernel supports
2397.Li blk-mq
2398and is only read and assigned to a zvol at zvol load time.
2399.
2400.It Sy zvol_blk_mq_blocks_per_thread Ns = Ns Sy 8 Pq uint
2401If
2402.Sy zvol_use_blk_mq
2403is enabled, then process this number of
2404.Sy volblocksize Ns -sized blocks per zvol thread.
2405This tunable can be use to favor better performance for zvol reads (lower
2406values) or writes (higher values).
2407If set to
2408.Sy 0 ,
2409then the zvol layer will process the maximum number of blocks
2410per thread that it can.
2411This parameter will only appear if your kernel supports
2412.Li blk-mq
2413and is only applied at each zvol's load time.
2414.
2415.It Sy zvol_blk_mq_queue_depth Ns = Ns Sy 0 Pq uint
2416The queue_depth value for the zvol
2417.Li blk-mq
2418interface.
2419This parameter will only appear if your kernel supports
2420.Li blk-mq
2421and is only applied at each zvol's load time.
2422If
2423.Sy 0
2424(the default) then use the kernel's default queue depth.
2425Values are clamped to the kernel's
2426.Dv BLKDEV_MIN_RQ
2427and
2428.Dv BLKDEV_MAX_RQ Ns / Ns Dv BLKDEV_DEFAULT_RQ
2429limits.
2430.
2d815d95
AZ
2431.It Sy zvol_volmode Ns = Ns Sy 1 Pq uint
2432Defines zvol block devices behaviour when
2433.Sy volmode Ns = Ns Sy default :
2434.Bl -tag -compact -offset 4n -width "a"
2435.It Sy 1
2436.No equivalent to Sy full
2437.It Sy 2
2438.No equivalent to Sy dev
2439.It Sy 3
2440.No equivalent to Sy none
2441.El
945b4074
MZ
2442.
2443.It Sy zvol_enforce_quotas Ns = Ns Sy 0 Ns | Ns 1 Pq uint
2444Enable strict ZVOL quota enforcement.
2445The strict quota enforcement may have a performance impact.
2d815d95
AZ
2446.El
2447.
2448.Sh ZFS I/O SCHEDULER
2449ZFS issues I/O operations to leaf vdevs to satisfy and complete I/O operations.
2450The scheduler determines when and in what order those operations are issued.
2451The scheduler divides operations into five I/O classes,
e8b96c60 2452prioritized in the following order: sync read, sync write, async read,
2d815d95
AZ
2453async write, and scrub/resilver.
2454Each queue defines the minimum and maximum number of concurrent operations
2455that may be issued to the device.
2456In addition, the device has an aggregate maximum,
2457.Sy zfs_vdev_max_active .
2458Note that the sum of the per-queue minima must not exceed the aggregate maximum.
2459If the sum of the per-queue maxima exceeds the aggregate maximum,
2460then the number of active operations may reach
2461.Sy zfs_vdev_max_active ,
2462in which case no further operations will be issued,
2463regardless of whether all per-queue minima have been met.
2464.Pp
e8b96c60 2465For many physical devices, throughput increases with the number of
2d815d95
AZ
2466concurrent operations, but latency typically suffers.
2467Furthermore, physical devices typically have a limit
2468at which more concurrent operations have no
e8b96c60 2469effect on throughput or can actually cause it to decrease.
2d815d95 2470.Pp
e8b96c60 2471The scheduler selects the next operation to issue by first looking for an
2d815d95
AZ
2472I/O class whose minimum has not been satisfied.
2473Once all are satisfied and the aggregate maximum has not been hit,
2474the scheduler looks for classes whose maximum has not been satisfied.
2475Iteration through the I/O classes is done in the order specified above.
2476No further operations are issued
2477if the aggregate maximum number of concurrent operations has been hit,
b46be903
DS
2478or if there are no operations queued for an I/O class that has not hit its
2479maximum.
2d815d95
AZ
2480Every time an I/O operation is queued or an operation completes,
2481the scheduler looks for new operations to issue.
2482.Pp
2483In general, smaller
2484.Sy max_active Ns s
2485will lead to lower latency of synchronous operations.
2486Larger
2487.Sy max_active Ns s
2488may lead to higher overall throughput, depending on underlying storage.
2489.Pp
2490The ratio of the queues'
2491.Sy max_active Ns s
2492determines the balance of performance between reads, writes, and scrubs.
2493For example, increasing
2494.Sy zfs_vdev_scrub_max_active
2495will cause the scrub or resilver to complete more quickly,
2496but reads and writes to have higher latency and lower throughput.
2497.Pp
2498All I/O classes have a fixed maximum number of outstanding operations,
2499except for the async write class.
2500Asynchronous writes represent the data that is committed to stable storage
2501during the syncing stage for transaction groups.
2502Transaction groups enter the syncing state periodically,
2503so the number of queued async writes will quickly burst up
2504and then bleed down to zero.
2505Rather than servicing them as quickly as possible,
2506the I/O scheduler changes the maximum number of active async write operations
2507according to the amount of dirty data in the pool.
2508Since both throughput and latency typically increase with the number of
e8b96c60 2509concurrent operations issued to physical devices, reducing the
b46be903
DS
2510burstiness in the number of simultaneous operations also stabilizes the
2511response time of operations from other queues, in particular synchronous ones.
2d815d95 2512In broad strokes, the I/O scheduler will issue more concurrent operations
b46be903 2513from the async write queue as there is more dirty data in the pool.
2d815d95
AZ
2514.
2515.Ss Async Writes
e8b96c60 2516The number of concurrent operations issued for the async write I/O class
2d815d95
AZ
2517follows a piece-wise linear function defined by a few adjustable points:
2518.Bd -literal
2519 | o---------| <-- \fBzfs_vdev_async_write_max_active\fP
e8b96c60
MA
2520 ^ | /^ |
2521 | | / | |
2522active | / | |
2523 I/O | / | |
2524count | / | |
2525 | / | |
2d815d95 2526 |-------o | | <-- \fBzfs_vdev_async_write_min_active\fP
e8b96c60 2527 0|_______^______|_________|
2d815d95 2528 0% | | 100% of \fBzfs_dirty_data_max\fP
e8b96c60 2529 | |
2d815d95
AZ
2530 | `-- \fBzfs_vdev_async_write_active_max_dirty_percent\fP
2531 `--------- \fBzfs_vdev_async_write_active_min_dirty_percent\fP
2532.Ed
2533.Pp
e8b96c60
MA
2534Until the amount of dirty data exceeds a minimum percentage of the dirty
2535data allowed in the pool, the I/O scheduler will limit the number of
2d815d95
AZ
2536concurrent operations to the minimum.
2537As that threshold is crossed, the number of concurrent operations issued
2538increases linearly to the maximum at the specified maximum percentage
2539of the dirty data allowed in the pool.
2540.Pp
e8b96c60 2541Ideally, the amount of dirty data on a busy pool will stay in the sloped
2d815d95
AZ
2542part of the function between
2543.Sy zfs_vdev_async_write_active_min_dirty_percent
2544and
2545.Sy zfs_vdev_async_write_active_max_dirty_percent .
2546If it exceeds the maximum percentage,
2547this indicates that the rate of incoming data is
2548greater than the rate that the backend storage can handle.
2549In this case, we must further throttle incoming writes,
2550as described in the next section.
2551.
2552.Sh ZFS TRANSACTION DELAY
e8b96c60
MA
2553We delay transactions when we've determined that the backend storage
2554isn't able to accommodate the rate of incoming writes.
2d815d95 2555.Pp
e8b96c60 2556If there is already a transaction waiting, we delay relative to when
2d815d95
AZ
2557that transaction will finish waiting.
2558This way the calculated delay time
2559is independent of the number of threads concurrently executing transactions.
2560.Pp
2561If we are the only waiter, wait relative to when the transaction started,
2562rather than the current time.
2563This credits the transaction for "time already served",
2564e.g. reading indirect blocks.
2565.Pp
2566The minimum time for a transaction to take is calculated as
12bd322d 2567.D1 min_time = min( Ns Sy zfs_delay_scale No \(mu Po Sy dirty No \- Sy min Pc / Po Sy max No \- Sy dirty Pc , 100ms)
2d815d95
AZ
2568.Pp
2569The delay has two degrees of freedom that can be adjusted via tunables.
2570The percentage of dirty data at which we start to delay is defined by
2571.Sy zfs_delay_min_dirty_percent .
2572This should typically be at or above
2573.Sy zfs_vdev_async_write_active_max_dirty_percent ,
2574so that we only start to delay after writing at full speed
2575has failed to keep up with the incoming write rate.
2576The scale of the curve is defined by
2577.Sy zfs_delay_scale .
b46be903
DS
2578Roughly speaking, this variable determines the amount of delay at the midpoint
2579of the curve.
2d815d95 2580.Bd -literal
e8b96c60
MA
2581delay
2582 10ms +-------------------------------------------------------------*+
2583 | *|
2584 9ms + *+
2585 | *|
2586 8ms + *+
2587 | * |
2588 7ms + * +
2589 | * |
2590 6ms + * +
2591 | * |
2592 5ms + * +
2593 | * |
2594 4ms + * +
2595 | * |
2596 3ms + * +
2597 | * |
2598 2ms + (midpoint) * +
2599 | | ** |
2600 1ms + v *** +
2d815d95 2601 | \fBzfs_delay_scale\fP ----------> ******** |
e8b96c60 2602 0 +-------------------------------------*********----------------+
2d815d95
AZ
2603 0% <- \fBzfs_dirty_data_max\fP -> 100%
2604.Ed
2605.Pp
2606Note, that since the delay is added to the outstanding time remaining on the
2607most recent transaction it's effectively the inverse of IOPS.
2608Here, the midpoint of
a894ae75 2609.Em 500 us
2d815d95
AZ
2610translates to
2611.Em 2000 IOPS .
2612The shape of the curve
e8b96c60 2613was chosen such that small changes in the amount of accumulated dirty data
2d815d95
AZ
2614in the first three quarters of the curve yield relatively small differences
2615in the amount of delay.
2616.Pp
e8b96c60 2617The effects can be easier to understand when the amount of delay is
2d815d95
AZ
2618represented on a logarithmic scale:
2619.Bd -literal
e8b96c60
MA
2620delay
2621100ms +-------------------------------------------------------------++
2622 + +
2623 | |
2624 + *+
2625 10ms + *+
2626 + ** +
2627 | (midpoint) ** |
2628 + | ** +
2629 1ms + v **** +
2d815d95 2630 + \fBzfs_delay_scale\fP ----------> ***** +
e8b96c60
MA
2631 | **** |
2632 + **** +
2633100us + ** +
2634 + * +
2635 | * |
2636 + * +
2637 10us + * +
2638 + +
2639 | |
2640 + +
2641 +--------------------------------------------------------------+
2d815d95
AZ
2642 0% <- \fBzfs_dirty_data_max\fP -> 100%
2643.Ed
2644.Pp
e8b96c60 2645Note here that only as the amount of dirty data approaches its limit does
2d815d95
AZ
2646the delay start to increase rapidly.
2647The goal of a properly tuned system should be to keep the amount of dirty data
2648out of that range by first ensuring that the appropriate limits are set
2649for the I/O scheduler to reach optimal throughput on the back-end storage,
2650and then by changing the value of
2651.Sy zfs_delay_scale
2652to increase the steepness of the curve.