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