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