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