public inbox for linux-btrfs@vger.kernel.org
 help / color / mirror / Atom feed
From: Roland <devzero@web.de>
To: Qu Wenruo <quwenruo.btrfs@gmx.com>, linux-btrfs@vger.kernel.org
Subject: Re: apply different compress/compress-force settings on different subvolumes ?
Date: Thu, 22 Feb 2024 09:33:40 +0100	[thread overview]
Message-ID: <39bee23c-65c8-4226-be79-6e035f0a7f49@web.de> (raw)
In-Reply-To: <2790f277-fc10-43fc-b7d3-9a3cef1eced2@web.de>

re-send becaus my answer accidentally contained html and that was
rejected by mailinglist

 >The "compress-force=%s" is really confusing against the existing
 >"comrepss=%s" option.

yes, it is

 >To me, this sounds like a change which would improve the user interface.
 >And with the new option named determined, I'm pretty happy to add a new
 >prop to skip the heuristic.

fantastic. thank you for positive response

btw,

https://btrfs.readthedocs.io/en/latest/Compression.html

"unless the filesystem is mounted with /compress-force/. In that case
compression will always be attempted on the file only to be later
discarded. This is not optimal and subject to optimizations and further
development."

afaik, zfs is exactly doing that, i.e. it's always using
"compress-force", afaik there is no "more intelligent" heuristics to
determine if data is compressible.

if you choose to have compression, you are tradingcpu cycles for
increased diskspace but also decreased i/o latency and bandwidth. that's
the deal. users excpect that, but they don't expect that they only have
"compression lite" when they use "compress=zstd".

i read some days ago, that zfs plans more cpu friendly check if data is
compressible at all, by first using faster compression algorithm and
then later on recompress with better one (
https://www.truenas.com/community/threads/game-changer-for-zfs-2-2-intelligent-compression-that-saves-cpu-and-space.113247/
) . that sounds interesting.

regards
roland

Am 21.02.24 um 14:15 schrieb Roland:
> Am 21.02.24 um 10:33 schrieb Qu Wenruo:
>
>> 在 2024/2/21 19:19, Roland 写道:
>>> hello,
>>>
>>> what can be the reason , that multiple compress mount option do not
>>> work
>>> on subvolume level , i.e. it's always the first that wins ?
>> In that case, you may want to use "btrfs prop" subcommand to setup
>> compression for each subvolume.
>>
>> The mount option one is really affecting the whole filesystem.
>>>
>>> and why is compress-force silently ignored? (see below)
>> Compress-force has no coresponding per-inode prop option though.
>>
>> But I don't think compress-force would cause much difference against
>> regular compress.
>
> apparently, force-compress can make a big difference (and compress
> only can lead to no compression at all):
>
> https://bugzilla.proxmox.com/show_bug.cgi?id=5250#c6
>
>
>>> regarding compress mount option, it seems that this can be overriden
>>> via
>>> subvolume property, which can work around the problem and have multiple
>>> compression settings.
>>>
>>> but how to fix compress-force in the same way, i.e. how can we have
>>> differenty compress-force settings with one btrfs fs ?
>>>
>>> wouldn't it make sense to introduce compress-force property for this ?
>>>
>>> what about replacing compress with compress-force (i.e. make it the
>>> default), as there is not much overhead with modern/fast cpu ?
>>>
>>> i think compress-force / compress is VERY confusing from and end user
>>> perspective - and even worse, i have set "compress" on a subvolume used
>>> for virtual machines and they do not get compressed at all (not a
>>> single
>>> bit) . so i think, compress option is pretty short-sighted and not,
>>> what
>>> an average user would expect (
>>> https://marc.info/?l=linux-btrfs&m=154523409314147&w=2 )
>>
>> IIRC compress prop needs to be set to all inodes.
>> If you set it on a directory, only new inodes would inherit the prop,
>> the existing ones won't get the new prop.
>
>
> that's clear, and no different from zfs.
>
> the big advantage of btrfs is, that we have btrfs filesystem
> defragment to recompress everything
> in place, whereas in zfs we need to move it forth and back to a
> different dataset.
>
> regards
> Roland
>
>>
>> Thanks,
>> Qu
>>>
>>> i'd be happy on some feedback. not subscribed to this list, so
>>> please CC.
>>>
>>> roland
>>>
>>>
>>> zstd compression applied to all subvolumes, though specified otherwise:
>>>
>>> cat /etc/fstab|grep btrfs
>>> UUID=da0fadf1-5db4-4f5b-a77e-2f0730f4e872 /btrfs/zstd btrfs
>>> subvol=zstd,compress=zstd,defaults 0 1
>>> UUID=da0fadf1-5db4-4f5b-a77e-2f0730f4e872 /btrfs/lzo  btrfs
>>> subvol=lzo,compress=lzo,defaults 0 1
>>> UUID=da0fadf1-5db4-4f5b-a77e-2f0730f4e872 /btrfs/none btrfs
>>> subvol=none,compress=none,defaults 0 1
>>> UUID=da0fadf1-5db4-4f5b-a77e-2f0730f4e872 /btrfs/zstd-force btrfs
>>> subvol=zstd-force,compress-force=zstd,defaults 0 1
>>>
>>> mount|grep btrfs
>>> /dev/sdb1 on /btrfs/zstd type btrfs
>>> (rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvolid=259,subvol=/zstd)
>>>
>>> /dev/sdb1 on /btrfs/lzo type btrfs
>>> (rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvolid=257,subvol=/lzo)
>>>
>>> /dev/sdb1 on /btrfs/none type btrfs
>>> (rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvolid=258,subvol=/none)
>>>
>>> /dev/sdb1 on /btrfs/zstd-force type btrfs
>>> (rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvolid=260,subvol=/zstd-force)
>>>
>>>
>>>
>>> different order in fstab has different result - first wins:
>>>
>>> UUID=da0fadf1-5db4-4f5b-a77e-2f0730f4e872 /btrfs/lzo  btrfs
>>> subvol=lzo,compress=lzo,defaults 0 1
>>> UUID=da0fadf1-5db4-4f5b-a77e-2f0730f4e872 /btrfs/zstd btrfs
>>> subvol=zstd,compress=zstd,defaults 0 1
>>> UUID=da0fadf1-5db4-4f5b-a77e-2f0730f4e872 /btrfs/none btrfs
>>> subvol=none,compress=none,defaults 0 1
>>> UUID=da0fadf1-5db4-4f5b-a77e-2f0730f4e872 /btrfs/zstd-force btrfs
>>> subvol=zstd-force,compress-force=zstd,defaults 0 1
>>>
>>> /dev/sdb1 on /btrfs/lzo type btrfs
>>> (rw,relatime,compress=lzo,ssd,discard=async,space_cache=v2,subvolid=257,subvol=/lzo)
>>>
>>> /dev/sdb1 on /btrfs/zstd type btrfs
>>> (rw,relatime,compress=lzo,ssd,discard=async,space_cache=v2,subvolid=259,subvol=/zstd)
>>>
>>> /dev/sdb1 on /btrfs/none type btrfs
>>> (rw,relatime,compress=lzo,ssd,discard=async,space_cache=v2,subvolid=258,subvol=/none)
>>>
>>> /dev/sdb1 on /btrfs/zstd-force type btrfs
>>> (rw,relatime,compress=lzo,ssd,discard=async,space_cache=v2,subvolid=260,subvol=/zstd-force)
>>>
>>>
>>>
>>> compress-force silently ignored:
>>>
>>> UUID=da0fadf1-5db4-4f5b-a77e-2f0730f4e872 /btrfs/zstd btrfs
>>> subvol=zstd,compress=zstd,defaults 0 1
>>> UUID=da0fadf1-5db4-4f5b-a77e-2f0730f4e872 /btrfs/lzo  btrfs
>>> subvol=lzo,compress=lzo,defaults 0 1
>>> UUID=da0fadf1-5db4-4f5b-a77e-2f0730f4e872 /btrfs/none btrfs
>>> subvol=none,compress=none,defaults 0 1
>>> UUID=da0fadf1-5db4-4f5b-a77e-2f0730f4e872 /btrfs/zstd-force btrfs
>>> subvol=zstd-force,compress-force=zstd,defaults 0 1
>>>
>>> /dev/sdb1 on /btrfs/zstd type btrfs
>>> (rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvolid=259,subvol=/zstd)
>>>
>>> /dev/sdb1 on /btrfs/lzo type btrfs
>>> (rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvolid=257,subvol=/lzo)
>>>
>>> /dev/sdb1 on /btrfs/none type btrfs
>>> (rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvolid=258,subvol=/none)
>>>
>>> /dev/sdb1 on /btrfs/zstd-force type btrfs
>>> (rw,relatime,compress=zstd:3,ssd,discard=async,space_cache=v2,subvolid=260,subvol=/zstd-force)
>>>
>>>
>>>
>>>
>>> this is the write speed i get with compress-force=zstd on i7-7700
>>>
>>> # dd if=/dev/zero of=test.dat bs=1024k count=10240 ;time sync
>>> 10240+0 records in
>>> 10240+0 records out
>>> 10737418240 bytes (11 GB, 10 GiB) copied, 3.76111 s, 2.9 GB/s
>>>
>>> real    0m0.224s
>>> user    0m0.000s
>>> sys    0m0.081s
>>>
>>>
>>>

      parent reply	other threads:[~2024-02-22  8:33 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-21  8:49 apply different compress/compress-force settings on different subvolumes ? Roland
2024-02-21  9:33 ` Qu Wenruo
2024-02-21 13:15   ` Roland
2024-02-21 17:45     ` Austin S. Hemmelgarn
2024-02-22  3:25     ` Qu Wenruo
2024-02-23  1:06       ` Chris Murphy
2024-02-22  8:33     ` Roland [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=39bee23c-65c8-4226-be79-6e035f0a7f49@web.de \
    --to=devzero@web.de \
    --cc=linux-btrfs@vger.kernel.org \
    --cc=quwenruo.btrfs@gmx.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox