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