* Imbalanced RAID1 with three unequal disks
@ 2015-11-25 11:36 Mario
2015-11-25 15:14 ` Hugo Mills
0 siblings, 1 reply; 2+ messages in thread
From: Mario @ 2015-11-25 11:36 UTC (permalink / raw)
To: linux-btrfs
Hi,
I pushed a subvolume using send/receive to an 8 TB disk, added
two 4 TB disks and started a balance with conversion to RAID1.
Afterwards, I got the following:
Total devices 3 FS bytes used 5.40TiB
devid 1 size 7.28TiB used 4.54TiB path /dev/mapper/yellow4
devid 2 size 3.64TiB used 3.17TiB path /dev/mapper/yellow1
devid 3 size 3.64TiB used 3.17TiB path /dev/mapper/yellow2
Btrfs v3.17
Data, RAID1: total=5.43TiB, used=5.39TiB
System, RAID1: total=64.00MiB, used=800.00KiB
Metadata, RAID1: total=14.00GiB, used=5.55GiB
GlobalReserve, single: total=512.00MiB, used=0.00B
In my understanding, the data isn't properly balanced and I
only get around 5.9TB of usable space. As suggested in #btrfs,
I started a second balance without filters and got this:
Total devices 3 FS bytes used 5.40TiB
devid 1 size 7.28TiB used 5.41TiB path /dev/mapper/yellow4
devid 2 size 3.64TiB used 2.71TiB path /dev/mapper/yellow1
devid 3 size 3.64TiB used 2.71TiB path /dev/mapper/yellow2
Data, RAID1: total=5.41TiB, used=5.39TiB
System, RAID1: total=32.00MiB, used=784.00KiB
Metadata, RAID1: total=7.00GiB, used=5.54GiB
GlobalReserve, single: total=512.00MiB, used=0.00B
/dev/mapper/yellow4 7,3T 5,4T 969G 86% /mnt/yellow
Now, I get 6.3TB of usable space but, in my understand, I should
get around 7.28 TB or am I missing something here? Also, a second
balance shouldn't change the data distribution, right?
I'm using kernel v4.3 with a patch [1] from kernel bugzilla [2] for
the 8 TB SMR drive. The send/receive of a 5 TB subvolume worked
flawlessly with the patch. Without, I got a lot of errors in dmesg
within the first 200GB of transferred data. The OS is a x86_64
Ubuntu 15.04.
Thank you!
Mario
[1]
http://git.kernel.org/cgit/linux/kernel/git/mkp/linux.git/commit/?h=bugzilla-93581&id=7c4fbd50bfece00abf529bc96ac989dd2bb83ca4
[2] https://bugzilla.kernel.org/show_bug.cgi?id=93581
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: Imbalanced RAID1 with three unequal disks
2015-11-25 11:36 Imbalanced RAID1 with three unequal disks Mario
@ 2015-11-25 15:14 ` Hugo Mills
0 siblings, 0 replies; 2+ messages in thread
From: Hugo Mills @ 2015-11-25 15:14 UTC (permalink / raw)
To: Mario; +Cc: linux-btrfs
[-- Attachment #1: Type: text/plain, Size: 3666 bytes --]
On Wed, Nov 25, 2015 at 12:36:32PM +0100, Mario wrote:
>
> Hi,
>
> I pushed a subvolume using send/receive to an 8 TB disk, added
> two 4 TB disks and started a balance with conversion to RAID1.
>
> Afterwards, I got the following:
>
> Total devices 3 FS bytes used 5.40TiB
> devid 1 size 7.28TiB used 4.54TiB path /dev/mapper/yellow4
> devid 2 size 3.64TiB used 3.17TiB path /dev/mapper/yellow1
> devid 3 size 3.64TiB used 3.17TiB path /dev/mapper/yellow2
>
> Btrfs v3.17
> Data, RAID1: total=5.43TiB, used=5.39TiB
> System, RAID1: total=64.00MiB, used=800.00KiB
> Metadata, RAID1: total=14.00GiB, used=5.55GiB
> GlobalReserve, single: total=512.00MiB, used=0.00B
>
> In my understanding, the data isn't properly balanced and I
> only get around 5.9TB of usable space. As suggested in #btrfs,
> I started a second balance without filters and got this:
>
> Total devices 3 FS bytes used 5.40TiB
> devid 1 size 7.28TiB used 5.41TiB path /dev/mapper/yellow4
> devid 2 size 3.64TiB used 2.71TiB path /dev/mapper/yellow1
> devid 3 size 3.64TiB used 2.71TiB path /dev/mapper/yellow2
>
> Data, RAID1: total=5.41TiB, used=5.39TiB
> System, RAID1: total=32.00MiB, used=784.00KiB
> Metadata, RAID1: total=7.00GiB, used=5.54GiB
> GlobalReserve, single: total=512.00MiB, used=0.00B
>
> /dev/mapper/yellow4 7,3T 5,4T 969G 86% /mnt/yellow
>
> Now, I get 6.3TB of usable space but, in my understand, I should
> get around 7.28 TB or am I missing something here? Also, a second
> balance shouldn't change the data distribution, right?
The first balance, because it was converting, didn't get the final
outcome right. (Possibly an area for further research on appropriate
algorithms for balance). The second one appears to have done the right
thing. It actually threw me slightly, because your free space isn't
equal on all the devices, but on reflection, that's expected in this
case. You have dev 1 double the size of devs 2 and 3, so in each
RAID-1 block group, one chunk will go on dev 1, and the other chunk
will go on one of the other two devices (spread evenly). This means
that *eventually*, they'll hit all devices with equal free space, but
only when everything's filled up completely. It's just on the edge
case between getting equal free space on all devices and having
unusable space (which you'd have if that 8TB drive was any larger).
So, yes, all normal and all good.
As to remaining free space from df, I'm fairly sure that the
algorithm for computing free space for df is just plain wrong. I've
spotted it not quite getting the answer right before. That seems to be
the case here, too; just more so. You have something just under 2 TiB
of usable space on the FS, according to my calculations.
> I'm using kernel v4.3 with a patch [1] from kernel bugzilla [2] for
> the 8 TB SMR drive. The send/receive of a 5 TB subvolume worked
> flawlessly with the patch. Without, I got a lot of errors in dmesg
> within the first 200GB of transferred data. The OS is a x86_64
> Ubuntu 15.04.
That's useful to know, in case anyone else shows up with write
errors on SMR devices.
Hugo.
> Thank you!
> Mario
>
> [1] http://git.kernel.org/cgit/linux/kernel/git/mkp/linux.git/commit/?h=bugzilla-93581&id=7c4fbd50bfece00abf529bc96ac989dd2bb83ca4
> [2] https://bugzilla.kernel.org/show_bug.cgi?id=93581
--
Hugo Mills | I was cursed with poetry very young. It creates
hugo@... carfax.org.uk | unrealistic expectations.
http://carfax.org.uk/ | Victor Frankenstein
PGP: E2AB1DE4 | Penny Dreadful
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-11-25 15:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-25 11:36 Imbalanced RAID1 with three unequal disks Mario
2015-11-25 15:14 ` Hugo Mills
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.