From: "Austin S. Hemmelgarn" <ahferroin7@gmail.com>
To: Qu Wenruo <quwenruo.btrfs@gmx.com>, Anand Jain <anand.jain@oracle.com>
Cc: linux-btrfs@vger.kernel.org, dsterba@suse.cz
Subject: Re: [PATCH v3 07/14] btrfs-progs: Doc/mkfs: Add extra condition for rootdir option
Date: Fri, 22 Sep 2017 09:33:14 -0400 [thread overview]
Message-ID: <5e079410-cd64-3d40-8914-b3d48ecdebfd@gmail.com> (raw)
In-Reply-To: <9652f4f4-b91c-0382-fa2a-01d45dde7fbb@gmx.com>
On 2017-09-22 08:32, Qu Wenruo wrote:
> On 2017年09月22日 19:38, Austin S. Hemmelgarn wrote:
>> On 2017-09-22 06:39, Qu Wenruo wrote:
>>> As I already stated in an other thread, if you want to shrink, do it
>>> in another command line tool.
>>> Do one thing and do it simple. (Although Btrfs itself is already out
>>> of the UNIX way)
>> Unless I'm reading the code wrong, the shrinking isn't happening in a
>> second pass, so this _is_ doing one thing, and it appears to be doing
>> it as simply as possible (although arguably not correctly because of
>> the 1MB reserved area being used).
>
> If you're referring to my V1 implementation of shrink, that's doing
> *one* thing.
>
> But the original shrinking code? Nope, or we won't have the custom chunk
> allocator at all.
>
> What I really mean is, if one wants to shrink, at least don't couple the
> shrink code into "mkfs.btrfs".
>
> Do shrink in its own tool/subcommand, not in a really unrelated tool.
There are two cases for shrinking a filesystem:
1. You're resizing it to move to a smaller disk (or speed up copying to
another disk).
2. You're generating a filesystem image that needs to be as small as
possible.
Case 1 is obviously unrelated to creating a filesystem. Case 2 however
is kind of integral to the creation of the filesystem image itself by
definition, especially for a CoW filesystem because it's not possible to
shrink to the absolute smallest size due to the GlobalReserve and other
things.
Similarly, there are two primary use cases for pre-loading the
filesystem with data:
1. Avoiding a copy when reprovisioning storage on a system. For
example, splitting a directory out to a new filesystem, you could use
the -r option to avoid having to copy the data after mounting the
filesystem.
2. Creating base images for systems.
The first case shouldn't need the shrinking functionality, but the
second is a very common use case together with the second usage for
shrinking a filesystem.
>
>>>
>>> It may be offline shrink/balance. But not to further complexing the
>>> --rootdir option now. >
>>> And you also said that, the shrink feature is not a popular feature
>>> *NOW*, then I don't think it's worthy to implment it *NOW* either.
>>> Implement future feature in the future please.
>> I'm not sure about you, but I could have sworn that he meant seed
>> devices weren't a popular feature right now,
>
> Oh, sorry for my misunderstanding.
>
>> not that the shrinking is. As a general rule, the whole option of
>> pre-loading a filesystem with data as you're creating it is not a
>> popular feature, because most sysadmins are much more willing to trust
>> adding data after the filesystem is created.
>>
>> Personally, given the existence of seed devices, I would absolutely
>> expect there to be a quick and easy way to generate a minimalistic
>> image using a single command (because realistic usage of seed devices
>> implies minimalistic images). I agree that it shouldn't be the
>> default behavior, but I don't think it needs to be removed completely.
>
> Just like I said in cover letter, even for ext*, it's provided by
> genext2fs, not mke2fs.
Then maybe this should get split out into a separate tool instead of
just removing it completely? There is obviously at least some interest
in this functionality.
>
> I totally understand end-user really want a do-it-all solution.
> But from developers' view, the old UNIX way is better to maintain code
> clean and easy to read.
What the code is doing should have near zero impact on readability. If
it did, then the BTRFS code in general is already way beyond most people.
>
>
> In fact, you can even create your script to do the old behavior if you
> don't care that the result may not fully take use of the space, just by:
>
> 1) Calculate the size of the whole directory
> "du" command can do it easily, and it does things better than us! For
> years!
Um, no it actually doesn't do things better in all cases. it doesn't
account for extended attributes, or metadata usage, or any number of
other things that factor into how much space a file or directory will
take up on BTRFS. It's good enough for finding what's using most of
your space, but it's not reliable for determining how much space you
need to store that data (especially once you throw in in-line compression).
>
> 2) Multiple the value according to the meta/data profile
> Take care of small files, which will be inlined.
> And don't forget size for data checksum.
> (BTW, there is no way to change the behavor of inlined data and data
> checksum for mkfs. unlike btrfs-convert)
This is where the issue lies. It's not possible for a person to
calculate this with reasonable accuracy, and you arguably can't even do
it for certain programmatically without some serious work.
>
> 3) Create a file with size calculated by step 2)
>
> 4) Execute "mkfs.btrfs -d <dir> <created file>"
>
>> The main issues here are that it wasn't documented well (like many
>> other things in BTRFS), and it didn't generate a filesystem that was
>> properly compliant with the on-disk format (because it used space in
>> the 1MB reserved area at the beginning of the FS). Fixing those
>> issues in no way requires removing the feature.
>
> Yes, 1MB can be fixed easily (although not properly). But the whole
> customized chunk allocator is the real problem.
> The almost dead code is always bug-prone. Replace it with updated
> generic chunk allocator is the way to avoid later whac-a-mole, and
> should be done asap.
Agreed, but that doesn't preclude having the option to keep the
generated image to the minimum size.
>
>>>
>>> And further more, even following the existing shrink behavior, you
>>> still need to truncate the file all by yourself.
>>> Which is no better than creating a good sized file and then mkfs on it.
>> Only if you pre-create the file. If the file doesn't exist, it gets
>> created at the appropriate size. That's part of why the chunk
>> allocations are screwed up and stuff gets put in the first 1MB, it
>> generates the FS on-the-fly and writes it out as it's generating it.
>
> Nope, even you created the file in advance, it will still occupy the
> first 1M.
Because it doesn't assume that the file is there to begin with. It's
not trying O_CREAT and falling back to some different code if that
fails. The code assumes that the file won't be there, and handles
things accordingly albeit incorrectly (it should seek past the first
1MB, write the initial SB, and then start chunk allocation). IOW, the
code takes a shortcut in that it doesn't check for the file, and the
rest is written to account for that by assuming there wasn't a file.
The lack of truncation just means it doesn't try to trim things down by
itself if the file is already there (it assumes that you knew what you
were doing).
Put differently, I'm fairly certain that the current -r option removes
the total size check unless the target is a device (although it may
remove the check there too and just fail when it tries to write past the
end of the device), and will thus extend existing files to the required
size to hold the data.
>
> BTW, you can get back the size calculation for shrink, but you will soon
> find that it's just the start of a new nightmare.
> Because there is no easy way to calculate the real metadata usage.
>
> The result (and the old calculator) will be no better than guessing it.
> (Well, just multiply the dir size by 2 will never go wrong)
No, it can go wrong depending on what you count as part of the size.
>
>
> Thanks,
> Qu
>
>>>
>>> Thanks,
>>> Qu
>>>
>>> Sent: Friday, September 22, 2017 at 5:24 PM
>>> From: "Anand Jain" <anand.jain@oracle.com>
>>> To: "Qu Wenruo" <quwenruo.btrfs@gmx.com>, linux-btrfs@vger.kernel.org
>>> Cc: dsterba@suse.cz
>>> Subject: Re: [PATCH v3 07/14] btrfs-progs: Doc/mkfs: Add extra
>>> condition for rootdir option
>>>
>>>> +WARNING: Before v4.14 btrfs-progs, *--rootdir* will shrink the
>>>> filesystem,
>>>> +prevent user to make use of the remaining space.
>>>> +In v4.14 btrfs-progs, this behavior is changed, and will not shrink
>>>> the fs.
>>>> +The result should be the same as `mkfs`, `mount` and then `cp -r`. +
>>>
>>> Hmm well. Shrink to fit exactly to the size of the given
>>> files-and-directory is indeed a nice feature. Which would help to create
>>> a golden-image btrfs seed device. Its not popular as of now, but at some
>>> point it may in the cloud environment.
>>>
>>> Replacing this feature instead of creating a new option is not a good
>>> idea indeed. I missed something ?
>>>
>>> Thanks, Anand
>>>
>>>> +Also, if destination file/block device does not exist, *--rootdir*
>>>> will not
>>>> +create the image file, to make it follow the normal mkfs behavior.
>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2017-09-22 13:33 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-18 7:21 [PATCH v3 00/14] Mkfs: Rework --rootdir to a more generic behavior Qu Wenruo
2017-09-18 7:21 ` [PATCH v3 01/14] btrfs-progs: Refactor find_next_chunk() to get rid of parameter root and objectid Qu Wenruo
2017-09-18 7:21 ` [PATCH v3 02/14] btrfs-progs: Fix one-byte overlap bug in free_block_group_cache Qu Wenruo
2017-09-18 7:21 ` [PATCH v3 03/14] btrfs-progs: mkfs: Rework rootdir option to avoid custom chunk layout Qu Wenruo
2017-09-18 7:21 ` [PATCH v3 04/14] btrfs-progs: mkfs: Update allocation info before verbose output Qu Wenruo
2017-09-18 7:21 ` [PATCH v3 05/14] btrfs-progs: Avoid BUG_ON for chunk allocation when ENOSPC happens Qu Wenruo
2017-09-18 7:21 ` [PATCH v3 06/14] btrfs-progs: mkfs: Workaround BUG_ON caused by rootdir option Qu Wenruo
2017-09-18 7:21 ` [PATCH v3 07/14] btrfs-progs: Doc/mkfs: Add extra condition for " Qu Wenruo
2017-09-22 9:24 ` Anand Jain
2017-09-22 10:39 ` Qu Wenruo
2017-09-22 11:38 ` Austin S. Hemmelgarn
2017-09-22 12:32 ` Qu Wenruo
2017-09-22 13:33 ` Austin S. Hemmelgarn [this message]
2017-09-22 15:07 ` Qu Wenruo
2017-09-24 10:10 ` Anand Jain
2017-09-24 14:08 ` Goffredo Baroncelli
2017-09-25 11:15 ` Austin S. Hemmelgarn
2017-09-27 16:20 ` David Sterba
2017-09-28 0:00 ` Qu Wenruo
2017-09-29 11:30 ` Austin S. Hemmelgarn
2017-09-29 16:57 ` Goffredo Baroncelli
2017-09-30 3:33 ` Qu Wenruo
2017-10-02 11:47 ` Austin S. Hemmelgarn
2017-10-02 18:47 ` Goffredo Baroncelli
2017-09-25 11:53 ` Austin S. Hemmelgarn
2017-09-18 7:21 ` [PATCH v3 08/14] btrfs-progs: tests/common: Split user xattr into its own branch for generate_dataset Qu Wenruo
2017-09-18 7:21 ` [PATCH v3 09/14] btrfs-progs: tests/common: Introduce optional parameter to specify destination directory " Qu Wenruo
2017-09-18 7:21 ` [PATCH v3 10/14] btrfs-progs: tests/common: Make checksum, permission and acl check path independent Qu Wenruo
2017-09-18 7:21 ` [PATCH v3 11/14] btrfs-progs: tests/mkfs: Add basic test case for rootdir parameter Qu Wenruo
2017-09-18 7:35 ` [PATCH v3.1 " Qu Wenruo
2017-09-18 7:21 ` [PATCH v3 12/14] btrfs-progs: tests/common: Detect ungraceful failure case Qu Wenruo
2017-09-18 7:21 ` [PATCH v3 13/14] btrfs-progs: mkfs: Fix overwritten return value for mkfs Qu Wenruo
2017-09-18 7:21 ` [PATCH v3 14/14] btrfs-progs: tests/mkfs: Check error handler for rootdir parameter Qu Wenruo
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=5e079410-cd64-3d40-8914-b3d48ecdebfd@gmail.com \
--to=ahferroin7@gmail.com \
--cc=anand.jain@oracle.com \
--cc=dsterba@suse.cz \
--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;
as well as URLs for NNTP newsgroup(s).