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