Jump to content
  • Unraid 6.12-rc7 has unusually high memory usage. ( Suspected ZFS ARC cache issue)


    a632079
    • Solved Minor

     

    Firstly, while Docker is enabled, I observed that the system memory usage reported by free -mh shows that 19GB of memory has been used. However, when calculating the memory usage using docker stats and ps -ef commands, the total memory usage doesn't exceed 5GB. So, where did this additional memory go?

     

    root@OuO:~# awk '$3=="kB"{if ($2>1024^2){$2=$2/1024^2;$3="GB";} else if ($2>1024){$2=$2/1024;$3="MB";}} 1' /proc/meminfo | column -t
    MemTotal:         31.2649  GB
    MemFree:          4.54373  GB
    MemAvailable:     11.534   GB
    Buffers:          588      kB
    Cached:           7.0594   GB
    SwapCached:       0        kB
    Active:           1.10014  GB
    Inactive:         7.43252  GB
    Active(anon):     262.469  MB
    Inactive(anon):   1.54342  GB
    Active(file):     864.074  MB
    Inactive(file):   5.8891   GB
    Unevictable:      16       kB
    Mlocked:          16       kB
    SwapTotal:        0        kB
    SwapFree:         0        kB
    Dirty:            96       kB
    Writeback:        0        kB
    AnonPages:        1.16288  GB
    Mapped:           5.21825  GB
    Shmem:            338.344  MB
    KReclaimable:     722.168  MB
    Slab:             1.03822  GB
    SReclaimable:     722.168  MB
    SUnreclaim:       340.969  MB
    KernelStack:      15.9609  MB
    PageTables:       1.1418   GB
    SecPageTables:    0        kB
    NFS_Unstable:     0        kB
    Bounce:           0        kB
    WritebackTmp:     0        kB
    CommitLimit:      15.6324  GB
    Committed_AS:     4.13858  GB
    VmallocTotal:     32768    GB
    VmallocUsed:      762.547  MB
    VmallocChunk:     0        kB
    Percpu:           10.875   MB
    AnonHugePages:    596      MB
    ShmemHugePages:   0        kB
    ShmemPmdMapped:   0        kB
    FileHugePages:    0        kB
    FilePmdMapped:    0        kB
    CmaTotal:         0        kB
    CmaFree:          0        kB
    HugePages_Total:  0
    HugePages_Free:   0
    HugePages_Rsvd:   0
    HugePages_Surp:   0
    Hugepagesize:     2        MB
    Hugetlb:          0        kB
    DirectMap4k:      238.758  MB
    DirectMap2M:      9.67188  GB
    DirectMap1G:      24       GB

     

    Please provide the diagnostic report for further analysis.

     

    ouo-diagnostics-20230610-2348.zip

     

    Afterwards, I disabled the Docker service through the Unraid dashboard, and the memory usage decreased to 16GB. Why does Unraid require such a large amount of memory? So, which component is causing the issue?

    root@OuO:~# free -m
                   total        used        free      shared  buff/cache   available
    Mem:           32015       17014        9140         339        5860       14202
    Swap:              0           0           0
    root@OuO:~# htop
    root@OuO:~# cat /proc/meminfo
    MemTotal:       32783620 kB
    MemFree:         9367160 kB
    MemAvailable:   14551840 kB
    Buffers:            1364 kB
    Cached:          5622700 kB
    SwapCached:            0 kB
    Active:           783700 kB
    Inactive:        5084084 kB
    Active(anon):     263784 kB
    Inactive(anon):   327228 kB
    Active(file):     519916 kB
    Inactive(file):  4756856 kB
    Unevictable:          64 kB
    Mlocked:              64 kB
    SwapTotal:             0 kB
    SwapFree:              0 kB
    Dirty:                 0 kB
    Writeback:             0 kB
    AnonPages:        241248 kB
    Mapped:            94604 kB
    Shmem:            347292 kB
    KReclaimable:     377548 kB
    Slab:             727792 kB
    SReclaimable:     377548 kB
    SUnreclaim:       350244 kB
    KernelStack:        9296 kB
    PageTables:         8380 kB
    SecPageTables:         0 kB
    NFS_Unstable:          0 kB
    Bounce:                0 kB
    WritebackTmp:          0 kB
    CommitLimit:    16391808 kB
    Committed_AS:     854076 kB
    VmallocTotal:   34359738367 kB
    VmallocUsed:      819984 kB
    VmallocChunk:          0 kB
    Percpu:            11136 kB
    AnonHugePages:     47104 kB
    ShmemHugePages:        0 kB
    ShmemPmdMapped:        0 kB
    FileHugePages:         0 kB
    FilePmdMapped:         0 kB
    CmaTotal:              0 kB
    CmaFree:               0 kB
    HugePages_Total:       0
    HugePages_Free:        0
    HugePages_Rsvd:        0
    HugePages_Surp:        0
    Hugepagesize:       2048 kB
    Hugetlb:               0 kB
    DirectMap4k:      244488 kB
    DirectMap2M:    10141696 kB
    DirectMap1G:    25165824 kB

     

     

    Please provide the current diagnostic report for further analysis.

     

    ouo-diagnostics-20230610-2356.zip

     

     

    ouo-diagnostics-20230610-2356.zip




    User Feedback

    Recommended Comments

     

    Suspected ZFS ARC cache issue

    root@OuO:~# cat /proc/spl/kstat/zfs/arcstats
    12 1 0x01 123 33456 11959145956 43645243358297
    name                            type data
    hits                            4    17309235
    misses                          4    5720765
    demand_data_hits                4    5205420
    demand_data_misses              4    1571059
    demand_metadata_hits            4    11497630
    demand_metadata_misses          4    23172
    prefetch_data_hits              4    574986
    prefetch_data_misses            4    4103301
    prefetch_metadata_hits          4    31199
    prefetch_metadata_misses        4    23233
    mru_hits                        4    4541677
    mru_ghost_hits                  4    45435
    mfu_hits                        4    12219342
    mfu_ghost_hits                  4    70070
    deleted                         4    5341843
    mutex_miss                      4    404
    access_skip                     4    1
    evict_skip                      4    69
    evict_not_enough                4    16
    evict_l2_cached                 4    0
    evict_l2_eligible               4    482793600512
    evict_l2_eligible_mfu           4    127268785664
    evict_l2_eligible_mru           4    355524814848
    evict_l2_ineligible             4    247781412864
    evict_l2_skip                   4    0
    hash_elements                   4    268657
    hash_elements_max               4    268733
    hash_collisions                 4    326198
    hash_chains                     4    8272
    hash_chain_max                  4    4
    p                               4    7232470080
    c                               4    16785213440
    c_min                           4    1049075840
    c_max                           4    16785213440
    size                            4    16785106336
    compressed_size                 4    16157441536
    uncompressed_size               4    18429323776
    overhead_size                   4    519732736
    hdr_size                        4    86438560
    data_size                       4    16277025792
    metadata_size                   4    400148480
    dbuf_size                       4    5167488
    dnode_size                      4    9505344
    bonus_size                      4    6255936
    anon_size                       4    0
    anon_evictable_data             4    0
    anon_evictable_metadata         4    0
    mru_size                        4    7038716928
    mru_evictable_data              4    6486249472
    mru_evictable_metadata          4    13099008
    mru_ghost_size                  4    9723994112
    mru_ghost_evictable_data        4    9711779840
    mru_ghost_evictable_metadata    4    12214272
    mfu_size                        4    9638457344
    mfu_evictable_data              4    9016840192
    mfu_evictable_metadata          4    294566912
    mfu_ghost_size                  4    6467668480
    mfu_ghost_evictable_data        4    6457524224
    mfu_ghost_evictable_metadata    4    10144256
    l2_hits                         4    0
    l2_misses                       4    0
    l2_prefetch_asize               4    0
    l2_mru_asize                    4    0
    l2_mfu_asize                    4    0
    l2_bufc_data_asize              4    0
    l2_bufc_metadata_asize          4    0
    l2_feeds                        4    0
    l2_rw_clash                     4    0
    l2_read_bytes                   4    0
    l2_write_bytes                  4    0
    l2_writes_sent                  4    0
    l2_writes_done                  4    0
    l2_writes_error                 4    0
    l2_writes_lock_retry            4    0
    l2_evict_lock_retry             4    0
    l2_evict_reading                4    0
    l2_evict_l1cached               4    0
    l2_free_on_write                4    0
    l2_abort_lowmem                 4    0
    l2_cksum_bad                    4    0
    l2_io_error                     4    0
    l2_size                         4    0
    l2_asize                        4    0
    l2_hdr_size                     4    0
    l2_log_blk_writes               4    0
    l2_log_blk_avg_asize            4    0
    l2_log_blk_asize                4    0
    l2_log_blk_count                4    0
    l2_data_to_meta_ratio           4    0
    l2_rebuild_success              4    0
    l2_rebuild_unsupported          4    0
    l2_rebuild_io_errors            4    0
    l2_rebuild_dh_errors            4    0
    l2_rebuild_cksum_lb_errors      4    0
    l2_rebuild_lowmem               4    0
    l2_rebuild_size                 4    0
    l2_rebuild_asize                4    0
    l2_rebuild_bufs                 4    0
    l2_rebuild_bufs_precached       4    0
    l2_rebuild_log_blks             4    0
    memory_throttle_count           4    0
    memory_direct_count             4    0
    memory_indirect_count           4    0
    memory_all_bytes                4    33570426880
    memory_free_bytes               4    14448713728
    memory_available_bytes          3    13223765888
    arc_no_grow                     4    0
    arc_tempreserve                 4    0
    arc_loaned_bytes                4    0
    arc_prune                       4    0
    arc_meta_used                   4    507515808
    arc_meta_limit                  4    12588910080
    arc_dnode_limit                 4    1258891008
    arc_meta_max                    4    537588448
    arc_meta_min                    4    16777216
    async_upgrade_sync              4    80816
    demand_hit_predictive_prefetch  4    2051027
    demand_hit_prescient_prefetch   4    18489
    arc_need_free                   4    0
    arc_sys_free                    4    1224947840
    arc_raw_size                    4    0
    cached_only_in_progress         4    0
    abd_chunk_waste_size            4    564736
    root@OuO:~# arc_summary
    
    ------------------------------------------------------------------------
    ZFS Subsystem Report                            Sun Jun 11 01:08:10 2023
    Linux 6.1.32-Unraid                                             2.1.11-1
    Machine: OuO (x86_64)                                           2.1.11-1
    
    ARC status:                                                      HEALTHY
            Memory throttle count:                                         0
    
    ARC size (current):                                   100.0 %   15.6 GiB
            Target size (adaptive):                       100.0 %   15.6 GiB
            Min size (hard limit):                         6.2 %  1000.5 MiB
            Max size (high water):                           16:1   15.6 GiB
            Most Frequently Used (MFU) cache size:         57.8 %    9.0 GiB
            Most Recently Used (MRU) cache size:           42.2 %    6.6 GiB
            Metadata cache size (hard limit):              75.0 %   11.7 GiB
            Metadata cache size (current):                  4.0 %  484.0 MiB
            Dnode cache size (hard limit):                 10.0 %    1.2 GiB
            Dnode cache size (current):                     0.8 %    9.1 MiB
    
    ARC hash breakdown:
            Elements max:                                             268.7k
            Elements current:                             100.0 %     268.7k
            Collisions:                                               326.2k
            Chain max:                                                     4
            Chains:                                                     8.3k
    
    ARC misc:
            Deleted:                                                    5.3M
            Mutex misses:                                                404
            Eviction skips:                                               69
            Eviction skips due to L2 writes:                               0
            L2 cached evictions:                                     0 Bytes
            L2 eligible evictions:                                 449.6 GiB
            L2 eligible MFU evictions:                     26.4 %  118.5 GiB
            L2 eligible MRU evictions:                     73.6 %  331.1 GiB
            L2 ineligible evictions:                               230.8 GiB
    
    ARC total accesses (hits + misses):                                23.0M
            Cache hit ratio:                               75.2 %      17.3M
            Cache miss ratio:                              24.8 %       5.7M
            Actual hit ratio (MFU + MRU hits):             72.8 %      16.8M
            Data demand efficiency:                        76.8 %       6.8M
            Data prefetch efficiency:                      12.3 %       4.7M
    
    Cache hits by cache type:
            Most frequently used (MFU):                    70.6 %      12.2M
            Most recently used (MRU):                      26.2 %       4.5M
            Most frequently used (MFU) ghost:               0.4 %      70.1k
            Most recently used (MRU) ghost:                 0.3 %      45.4k
            Anonymously used:                               2.5 %     432.7k
    
    Cache hits by data type:
            Demand data:                                   30.1 %       5.2M
            Prefetch data:                                  3.3 %     575.0k
            Demand metadata:                               66.4 %      11.5M
            Prefetch metadata:                              0.2 %      31.4k
    
    Cache misses by data type:
            Demand data:                                   27.5 %       1.6M
            Prefetch data:                                 71.7 %       4.1M
            Demand metadata:                                0.4 %      23.2k
            Prefetch metadata:                              0.4 %      23.2k
    
    DMU prefetch efficiency:                                            4.6M
            Hit ratio:                                     42.5 %       2.0M
            Miss ratio:                                    57.5 %       2.7M
    
    L2ARC not detected, skipping section
    
    Solaris Porting Layer (SPL):
            spl_hostid                                                     0
            spl_hostid_path                                      /etc/hostid
            spl_kmem_alloc_max                                       1048576
            spl_kmem_alloc_warn                                        65536
            spl_kmem_cache_kmem_threads                                    4
            spl_kmem_cache_magazine_size                                   0
            spl_kmem_cache_max_size                                       32
            spl_kmem_cache_obj_per_slab                                    8
            spl_kmem_cache_reclaim                                         0
            spl_kmem_cache_slab_limit                                  16384
            spl_max_show_tasks                                           512
            spl_panic_halt                                                 0
            spl_schedule_hrtimeout_slack_us                                0
            spl_taskq_kick                                                 0
            spl_taskq_thread_bind                                          0
            spl_taskq_thread_dynamic                                       1
            spl_taskq_thread_priority                                      1
            spl_taskq_thread_sequential                                    4
    
    Tunables:
            dbuf_cache_hiwater_pct                                        10
            dbuf_cache_lowater_pct                                        10
            dbuf_cache_max_bytes                        18446744073709551615
            dbuf_cache_shift                                               5
            dbuf_metadata_cache_max_bytes               18446744073709551615
            dbuf_metadata_cache_shift                                      6
            dmu_object_alloc_chunk_shift                                   7
            dmu_prefetch_max                                       134217728
            ignore_hole_birth                                              1
            l2arc_exclude_special                                          0
            l2arc_feed_again                                               1
            l2arc_feed_min_ms                                            200
            l2arc_feed_secs                                                1
            l2arc_headroom                                                 2
            l2arc_headroom_boost                                         200
            l2arc_meta_percent                                            33
            l2arc_mfuonly                                                  0
            l2arc_noprefetch                                               1
            l2arc_norw                                                     0
            l2arc_rebuild_blocks_min_l2size                       1073741824
            l2arc_rebuild_enabled                                          1
            l2arc_trim_ahead                                               0
            l2arc_write_boost                                        8388608
            l2arc_write_max                                          8388608
            metaslab_aliquot                                         1048576
            metaslab_bias_enabled                                          1
            metaslab_debug_load                                            0
            metaslab_debug_unload                                          0
            metaslab_df_max_search                                  16777216
            metaslab_df_use_largest_segment                                0
            metaslab_force_ganging                                  16777217
            metaslab_fragmentation_factor_enabled                          1
            metaslab_lba_weighting_enabled                                 1
            metaslab_preload_enabled                                       1
            metaslab_unload_delay                                         32
            metaslab_unload_delay_ms                                  600000
            send_holes_without_birth_time                                  1
            spa_asize_inflation                                           24
            spa_config_path                             /etc/zfs/zpool.cache
            spa_load_print_vdev_tree                                       0
            spa_load_verify_data                                           1
            spa_load_verify_metadata                                       1
            spa_load_verify_shift                                          4
            spa_slop_shift                                                 5
            vdev_file_logical_ashift                                       9
            vdev_file_physical_ashift                                      9
            vdev_removal_max_span                                      32768
            vdev_validate_skip                                             0
            zap_iterate_prefetch                                           1
            zfetch_array_rd_sz                                       1048576
            zfetch_max_distance                                     67108864
            zfetch_max_idistance                                    67108864
            zfetch_max_sec_reap                                            2
            zfetch_max_streams                                             8
            zfetch_min_distance                                      4194304
            zfetch_min_sec_reap                                            1
            zfs_abd_scatter_enabled                                        1
            zfs_abd_scatter_max_order                                     10
            zfs_abd_scatter_min_size                                    1536
            zfs_admin_snapshot                                             0
            zfs_allow_redacted_dataset_mount                               0
            zfs_arc_average_blocksize                                   8192
            zfs_arc_dnode_limit                                            0
            zfs_arc_dnode_limit_percent                                   10
            zfs_arc_dnode_reduce_percent                                  10
            zfs_arc_evict_batch_limit                                     10
            zfs_arc_eviction_pct                                         200
            zfs_arc_grow_retry                                             0
            zfs_arc_lotsfree_percent                                      10
            zfs_arc_max                                                    0
            zfs_arc_meta_adjust_restarts                                4096
            zfs_arc_meta_limit                                             0
            zfs_arc_meta_limit_percent                                    75
            zfs_arc_meta_min                                               0
            zfs_arc_meta_prune                                         10000
            zfs_arc_meta_strategy                                          1
            zfs_arc_min                                                    0
            zfs_arc_min_prefetch_ms                                        0
            zfs_arc_min_prescient_prefetch_ms                              0
            zfs_arc_p_dampener_disable                                     1
            zfs_arc_p_min_shift                                            0
            zfs_arc_pc_percent                                             0
            zfs_arc_prune_task_threads                                     1
            zfs_arc_shrink_shift                                           0
            zfs_arc_shrinker_limit                                     10000
            zfs_arc_sys_free                                               0
            zfs_async_block_max_blocks                  18446744073709551615
            zfs_autoimport_disable                                         1
            zfs_btree_verify_intensity                                     0
            zfs_checksum_events_per_second                                20
            zfs_commit_timeout_pct                                         5
            zfs_compressed_arc_enabled                                     1
            zfs_condense_indirect_commit_entry_delay_ms                    0
            zfs_condense_indirect_obsolete_pct                            25
            zfs_condense_indirect_vdevs_enable                             1
            zfs_condense_max_obsolete_bytes                       1073741824
            zfs_condense_min_mapping_bytes                            131072
            zfs_dbgmsg_enable                                              1
            zfs_dbgmsg_maxsize                                       4194304
            zfs_dbuf_state_index                                           0
            zfs_ddt_data_is_special                                        1
            zfs_deadman_checktime_ms                                   60000
            zfs_deadman_enabled                                            1
            zfs_deadman_failmode                                        wait
            zfs_deadman_synctime_ms                                   600000
            zfs_deadman_ziotime_ms                                    300000
            zfs_dedup_prefetch                                             0
            zfs_default_bs                                                 9
            zfs_default_ibs                                               17
            zfs_delay_min_dirty_percent                                   60
            zfs_delay_scale                                           500000
            zfs_delete_blocks                                          20480
            zfs_dirty_data_max                                    3357042688
            zfs_dirty_data_max_max                                4294967296
            zfs_dirty_data_max_max_percent                                25
            zfs_dirty_data_max_percent                                    10
            zfs_dirty_data_sync_percent                                   20
            zfs_disable_ivset_guid_check                                   0
            zfs_dmu_offset_next_sync                                       1
            zfs_embedded_slog_min_ms                                      64
            zfs_expire_snapshot                                          300
            zfs_fallocate_reserve_percent                                110
            zfs_flags                                                      0
            zfs_free_bpobj_enabled                                         1
            zfs_free_leak_on_eio                                           0
            zfs_free_min_time_ms                                        1000
            zfs_history_output_max                                   1048576
            zfs_immediate_write_sz                                     32768
            zfs_initialize_chunk_size                                1048576
            zfs_initialize_value                        16045690984833335022
            zfs_keep_log_spacemaps_at_export                               0
            zfs_key_max_salt_uses                                  400000000
            zfs_livelist_condense_new_alloc                                0
            zfs_livelist_condense_sync_cancel                              0
            zfs_livelist_condense_sync_pause                               0
            zfs_livelist_condense_zthr_cancel                              0
            zfs_livelist_condense_zthr_pause                               0
            zfs_livelist_max_entries                                  500000
            zfs_livelist_min_percent_shared                               75
            zfs_lua_max_instrlimit                                 100000000
            zfs_lua_max_memlimit                                   104857600
            zfs_max_async_dedup_frees                                 100000
            zfs_max_log_walking                                            5
            zfs_max_logsm_summary_length                                  10
            zfs_max_missing_tvds                                           0
            zfs_max_nvlist_src_size                                        0
            zfs_max_recordsize                                       1048576
            zfs_metaslab_find_max_tries                                  100
            zfs_metaslab_fragmentation_threshold                          70
            zfs_metaslab_max_size_cache_sec                             3600
            zfs_metaslab_mem_limit                                        25
            zfs_metaslab_segment_weight_enabled                            1
            zfs_metaslab_switch_threshold                                  2
            zfs_metaslab_try_hard_before_gang                              0
            zfs_mg_fragmentation_threshold                                95
            zfs_mg_noalloc_threshold                                       0
            zfs_min_metaslabs_to_flush                                     1
            zfs_multihost_fail_intervals                                  10
            zfs_multihost_history                                          0
            zfs_multihost_import_intervals                                20
            zfs_multihost_interval                                      1000
            zfs_multilist_num_sublists                                     0
            zfs_no_scrub_io                                                0
            zfs_no_scrub_prefetch                                          0
            zfs_nocacheflush                                               0
            zfs_nopwrite_enabled                                           1
            zfs_object_mutex_size                                         64
            zfs_obsolete_min_time_ms                                     500
            zfs_override_estimate_recordsize                               0
            zfs_pd_bytes_max                                        52428800
            zfs_per_txg_dirty_frees_percent                               30
            zfs_prefetch_disable                                           0
            zfs_read_history                                               0
            zfs_read_history_hits                                          0
            zfs_rebuild_max_segment                                  1048576
            zfs_rebuild_scrub_enabled                                      1
            zfs_rebuild_vdev_limit                                  33554432
            zfs_reconstruct_indirect_combinations_max                   4096
            zfs_recover                                                    0
            zfs_recv_queue_ff                                             20
            zfs_recv_queue_length                                   16777216
            zfs_recv_write_batch_size                                1048576
            zfs_removal_ignore_errors                                      0
            zfs_removal_suspend_progress                                   0
            zfs_remove_max_segment                                  16777216
            zfs_resilver_disable_defer                                     0
            zfs_resilver_min_time_ms                                    3000
            zfs_scan_blkstats                                              0
            zfs_scan_checkpoint_intval                                  7200
            zfs_scan_fill_weight                                           3
            zfs_scan_ignore_errors                                         0
            zfs_scan_issue_strategy                                        0
            zfs_scan_legacy                                                0
            zfs_scan_max_ext_gap                                     2097152
            zfs_scan_mem_lim_fact                                         20
            zfs_scan_mem_lim_soft_fact                                    20
            zfs_scan_strict_mem_lim                                        0
            zfs_scan_suspend_progress                                      0
            zfs_scan_vdev_limit                                      4194304
            zfs_scrub_min_time_ms                                       1000
            zfs_send_corrupt_data                                          0
            zfs_send_no_prefetch_queue_ff                                 20
            zfs_send_no_prefetch_queue_length                        1048576
            zfs_send_queue_ff                                             20
            zfs_send_queue_length                                   16777216
            zfs_send_unmodified_spill_blocks                               1
            zfs_slow_io_events_per_second                                 20
            zfs_spa_discard_memory_limit                            16777216
            zfs_special_class_metadata_reserve_pct                        25
            zfs_sync_pass_deferred_free                                    2
            zfs_sync_pass_dont_compress                                    8
            zfs_sync_pass_rewrite                                          2
            zfs_sync_taskq_batch_pct                                      75
            zfs_traverse_indirect_prefetch_limit                          32
            zfs_trim_extent_bytes_max                              134217728
            zfs_trim_extent_bytes_min                                  32768
            zfs_trim_metaslab_skip                                         0
            zfs_trim_queue_limit                                          10
            zfs_trim_txg_batch                                            32
            zfs_txg_history                                              100
            zfs_txg_timeout                                                5
            zfs_unflushed_log_block_max                               131072
            zfs_unflushed_log_block_min                                 1000
            zfs_unflushed_log_block_pct                                  400
            zfs_unflushed_log_txg_max                                   1000
            zfs_unflushed_max_mem_amt                             1073741824
            zfs_unflushed_max_mem_ppm                                   1000
            zfs_unlink_suspend_progress                                    0
            zfs_user_indirect_is_special                                   1
            zfs_vdev_aggregate_trim                                        0
            zfs_vdev_aggregation_limit                               1048576
            zfs_vdev_aggregation_limit_non_rotating                   131072
            zfs_vdev_async_read_max_active                                 3
            zfs_vdev_async_read_min_active                                 1
            zfs_vdev_async_write_active_max_dirty_percent                 60
            zfs_vdev_async_write_active_min_dirty_percent                 30
            zfs_vdev_async_write_max_active                               10
            zfs_vdev_async_write_min_active                                2
            zfs_vdev_cache_bshift                                         16
            zfs_vdev_cache_max                                         16384
            zfs_vdev_cache_size                                            0
            zfs_vdev_default_ms_count                                    200
            zfs_vdev_default_ms_shift                                     29
            zfs_vdev_initializing_max_active                               1
            zfs_vdev_initializing_min_active                               1
            zfs_vdev_max_active                                         1000
            zfs_vdev_max_auto_ashift                                      14
            zfs_vdev_min_auto_ashift                                       9
            zfs_vdev_min_ms_count                                         16
            zfs_vdev_mirror_non_rotating_inc                               0
            zfs_vdev_mirror_non_rotating_seek_inc                          1
            zfs_vdev_mirror_rotating_inc                                   0
            zfs_vdev_mirror_rotating_seek_inc                              5
            zfs_vdev_mirror_rotating_seek_offset                     1048576
            zfs_vdev_ms_count_limit                                   131072
            zfs_vdev_nia_credit                                            5
            zfs_vdev_nia_delay                                             5
            zfs_vdev_open_timeout_ms                                    1000
            zfs_vdev_queue_depth_pct                                    1000
            zfs_vdev_raidz_impl cycle [fastest] original scalar sse2 ssse3 avx2
            zfs_vdev_read_gap_limit                                    32768
            zfs_vdev_rebuild_max_active                                    3
            zfs_vdev_rebuild_min_active                                    1
            zfs_vdev_removal_max_active                                    2
            zfs_vdev_removal_min_active                                    1
            zfs_vdev_scheduler                                        unused
            zfs_vdev_scrub_max_active                                      3
            zfs_vdev_scrub_min_active                                      1
            zfs_vdev_sync_read_max_active                                 10
            zfs_vdev_sync_read_min_active                                 10
            zfs_vdev_sync_write_max_active                                10
            zfs_vdev_sync_write_min_active                                10
            zfs_vdev_trim_max_active                                       2
            zfs_vdev_trim_min_active                                       1
            zfs_vdev_write_gap_limit                                    4096
            zfs_vnops_read_chunk_size                                1048576
            zfs_wrlog_data_max                                    6714085376
            zfs_zevent_len_max                                           512
            zfs_zevent_retain_expire_secs                                900
            zfs_zevent_retain_max                                       2000
            zfs_zil_clean_taskq_maxalloc                             1048576
            zfs_zil_clean_taskq_minalloc                                1024
            zfs_zil_clean_taskq_nthr_pct                                 100
            zil_maxblocksize                                          131072
            zil_min_commit_timeout                                      5000
            zil_nocacheflush                                               0
            zil_replay_disable                                             0
            zil_slog_bulk                                             786432
            zio_deadman_log_all                                            0
            zio_dva_throttle_enabled                                       1
            zio_requeue_io_start_cut_in_line                               1
            zio_slow_io_ms                                             30000
            zio_taskq_batch_pct                                           80
            zio_taskq_batch_tpq                                            0
            zvol_inhibit_dev                                               0
            zvol_major                                                   230
            zvol_max_discard_blocks                                    16384
            zvol_prefetch_bytes                                       131072
            zvol_request_sync                                              0
            zvol_threads                                                  32
            zvol_volmode                                                   1
    
    VDEV cache disabled, skipping section
    
    ZIL committed transactions:                                       229.9k
            Commit requests:                                            8.1k
            Flushes to stable storage:                                  8.1k
            Transactions to SLOG storage pool:            0 Bytes          0
            Transactions to non-SLOG storage pool:      863.1 MiB      14.4k
    
    root@OuO:~# cat /etc/modprobe.d/zfs.conf
    options zfs zfs_arc_max=4196303360

     

     

    Link to comment


    Join the conversation

    You can post now and register later. If you have an account, sign in now to post with your account.
    Note: Your post will require moderator approval before it will be visible.

    Guest
    Add a comment...

    ×   Pasted as rich text.   Restore formatting

      Only 75 emoji are allowed.

    ×   Your link has been automatically embedded.   Display as a link instead

    ×   Your previous content has been restored.   Clear editor

    ×   You cannot paste images directly. Upload or insert images from URL.


  • Status Definitions

     

    Open = Under consideration.

     

    Solved = The issue has been resolved.

     

    Solved version = The issue has been resolved in the indicated release version.

     

    Closed = Feedback or opinion better posted on our forum for discussion. Also for reports we cannot reproduce or need more information. In this case just add a comment and we will review it again.

     

    Retest = Please retest in latest release.


    Priority Definitions

     

    Minor = Something not working correctly.

     

    Urgent = Server crash, data loss, or other showstopper.

     

    Annoyance = Doesn't affect functionality but should be fixed.

     

    Other = Announcement or other non-issue.

×
×
  • Create New...