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