On Fri, Feb 15, 2019 at 10:45 AM Andrei Borzenkov <arvidj...@gmail.com> wrote: > > 15.02.2019 1:37, Chris Murphy пишет: > > On Thu, Feb 14, 2019 at 4:37 AM André Malm <ad...@sheepa.org> wrote: > >> > >> Hello, > >> > >> I'm not sure this is the right forum to ask on but I'll try and if its > >> not I do apologize. I have also created a stack overflow question > >> without success ( > >> https://stackoverflow.com/questions/54634703/btrfs-send-with-parent-different-size-depending-on-source-of-files > >> ) but ill paste the question here too. Thank you. > >> > >> What i'm trying to achieve is sending only the diff of the parent with > >> btrfs send -p > >> > >> Running this will produce a file 'out' with size 639 bytes, i.e only > >> diff sent. > >> > >> ==================================================== > >> > >> btrfs subvolume create A > >> btrfs subvolume create B > >> mkdir A/dir > >> > >> dd if=/dev/urandom of=A/dir/server.jar bs=1024 count=40K > >> cp --reflink=always A/dir/server.jar B/server.jar > >> > >> btrfs subvolume snapshot -r A a > >> btrfs subvolume snapshot -r B b > >> btrfs send -p a b > out > > > > It doesn't work this way. > > It works exactly this way.
Unproven. And in fact we have an example where it does not work, hence the point of the thread! The proven way it works, is as I've described, and many emails over a decade on this list, inferred from the man page, and the step by step recipe on the Wiki. > > The gist is that you would keep changing A, > > and take additional snapshots of A, such as a.1 a.2 a.3, and you can > > do incremental send with 'btrfs send -p a.1 a.2' which describes the > > difference between those two snapshots of A at their respective > > moments in time. You could also do 'btrfs send -p a.2 a.3' or even > > 'btrfs send -p a.1 a.3' > > > > That it is intended to be used this way does not mean it is restricted > to this way technically. Whether it should have been restricted is > another question. That's fair. But also the alternative cannot be stated to "work exactly this way" when this very thread starts with two examples leading to different and therefore unexpected results, differing only in how the file was created: dd vs wget And no one can explain that. Which tells me none of us really understands the full scope and operation of send. By the way, it is possible for send to succeed in producing a stream, that receive will reject. So there is a difference in the error checking when using send with receive, than send without receive. > > But as there's no relationship between snapshots a and b, I consider > > it a bug/missing error handling feature, that btrfs send doesn't fail > > in this case. By using -p you're claiming there is a parent-child > > relationship between a and b, but there plainly isn't. > > > > No. By using "-p" you designate subvolume which must be used as base to > apply differential (I explicitly does not use "incremental") stream on > remote side. Nothing more. Whether it should have different semantic is > subject to discussion, but it does not do what you wish it to do. man page and wiki use incremental - and linguistically incremental != differential, increment is a subset of difference. Difference suggests the order does not matter. Increment suggests it does matter. btrfs sub create A cp somestuff A btrfs sub snap -r A a.1 cp morestuff A btrfs sub snap -r A a.2 The normal case of send is: btrfs send -p a.1 a.2 However, is it valid to do? btrfs send -p a.2 a1 I haven't tried this. Maybe send allows it and it works as expected? Maybe receive also works. If it's allows *and* also if it works as expected, then maybe the command is differential and not incremental. That is a rather fundamental thing to know! -- Chris Murphy