ZFS 重复数据删除不起作用

ZFS 重复数据删除不起作用

我创建了 pool Tank1 和 fs Tank/home。

[root@zfs]# zfs list
NAME         USED  AVAIL  REFER  MOUNTPOINT
tank1       3.22G   381G  32.0K  /tank1
tank1/home  3.22G  16.8G  1.95G  /tank1/home

我在tank1/home中创建了两个1G文件/dev/zero。重复数据删除已打开,压缩已关闭:

# zfs get all | egrep 'dedup|compression'
tank1             compression           off                    default
tank1             dedup                 on                     local
tank1/home        compression           off                    default
tank1/home        dedup                 on                     inherited from tank1

# zpool list
NAME    SIZE  ALLOC   FREE  EXPANDSZ   FRAG    CAP  DEDUP  HEALTH  ALTROOT
tank1   596G  4.84G   591G         -     0%     0%  1.00x  ONLINE  -

# zdb -D tank1
All DDTs are empty
# zdb -S tank1
Simulated DDT histogram:

bucket              allocated                       referenced          
______   ______________________________   ______________________________
refcnt   blocks   LSIZE   PSIZE   DSIZE   blocks   LSIZE   PSIZE   DSIZE
------   ------   -----   -----   -----   ------   -----   -----   -----
   16K        1    128K    128K    128K    25.8K   3.22G   3.22G   3.22G
 Total        1    128K    128K    128K    25.8K   3.22G   3.22G   3.22G

dedup = 26400.00, compress = 1.00, copies = 1.00, dedup * compress / copies = 26425.81

为什么zdb输出并zpool list没有显示任何重复数据删除,而模拟zdb -S tank1显示26400?如何开启重复数据删除?我也尝试过zfs set dedup=verify tank1,问题依旧。 menas的输出是什么zdb -DD tank1/home

# zdb -DD tank1/home
Dataset tank1/home [ZPL], ID 165, cr_txg 963, 1.95G, 8 objects

答案1

ZFS 重复数据删除仅对部署的文件生效您启用重复数据删除。

它不会影响旧文件已启用重复数据删除。

要查看 dedup 节省了多少,请使用该命令zpool status -D poolname并注意Total allocated blocksTotal referenced blocks.

相关内容