You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would guess it would help to only go through files with a filesize smaller that a certain value. A good place to start would be the block size of ZFS pool: zfs get special_small_blocks <pool_name>. Normally this is 128K.
So just add the check before doing anything with the file as wrinting those bigger files back and forth is just a waste of time. :)
Also given the small file size in the above case, this would work even better with a small (1GB) RAM drive and read the files there, then move them back from RAM disk.
The text was updated successfully, but these errors were encountered:
IMO this only has limited utility. When adding a special device, you want both metadata and small blocks to be present. Having the metadata on the main pool would negate the performance benefits somewhat. Might as well go through the whole pool.
I would guess it would help to only go through files with a filesize smaller that a certain value. A good place to start would be the block size of ZFS pool: zfs get special_small_blocks <pool_name>. Normally this is 128K.
So just add the check before doing anything with the file as wrinting those bigger files back and forth is just a waste of time. :)
Also given the small file size in the above case, this would work even better with a small (1GB) RAM drive and read the files there, then move them back from RAM disk.
The text was updated successfully, but these errors were encountered: