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