<div dir="ltr"><div dir="ltr">Hi Dmitry,</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Sep 30, 2020 at 9:21 AM Dmitry Antipov &lt;<a href="mailto:dmantipov@yandex.ru">dmantipov@yandex.ru</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On 9/30/20 8:58 AM, Xavi Hernandez wrote:<br>
<br>
&gt; This is normal. A dispersed volume writes encoded fragments of each block in each brick. In this case it&#39;s a 2+1 configuration, so each block is divided into 2 fragments. A third fragment is generated <br>
&gt; for redundancy and stored on the third brick.<br>
<br>
OK. But for Distributed-Replicate 2 x 3 setup and 64K shards, 4M file should be split into (4096 / 64) * 3 = 192 shards, not 189. So why 189?<br></blockquote><div><br></div><div>In fact, there aren&#39;t 189 shards. There are 63 shards replicated 3 times each. The shard 0 is not inside the .shard directory. It&#39;s placed in the directory where the file was created. So there are a total of 64 chunks of 64 KiB = 4 MiB.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
And if all bricks are considered equal and has enough amount of free space, shards distribution {24, 24, 24, 39, 39, 39} looks suboptimal.<br></blockquote><div><br></div><div>Shards are distributed exactly equal as regular files. This means that they are balanced based on a random distribution (with some correction when free space is not equal, but this is irrelevant now). Random distributions tend to balance very well the number of files, but only with a big number of files. Statistics on a small number of files may be biased.</div><div><br></div><div>If you keep adding new files to the volume, the balance will improve.</div><div></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
Why not {31, 32, 31, 32, 31, 32}? Isn&#39;t it a bug?<br></blockquote><div><br></div><div>This can&#39;t happen. When you create a 2 x 3 replicated volume, you are creating 2 independent replica 3 subvolumes. The first replica set is composed of the first 3 bricks, and the second of the last 3. The distribution layer chooses on which replica set to put each file.</div><div><br></div><div>It&#39;s not a bug. It&#39;s by design. Gluster can work with multiple clients creating files simultaneously. To force a perfect distribution, all of them would have to synchronize to decide where to create each file. This would have a significant performance impact. Instead of that, distribution is done randomly, which allows each client to work independently and it will balance files pretty well in the long term.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
&gt; This is not right. A disperse 2+1 configuration only supports a single failure. Wiping 2 fragments from the same file makes the file unrecoverable. Disperse works using the Reed-Solomon erasure code, <br>
&gt; which requires at least 2 healthy fragments to recover the data (in a 2+1 configuration).<br>
<br>
It seems that I missed the point that all bricks are considered equal, regardless of the physical host they&#39;re attached to.<br></blockquote><div><br></div><div>All bricks are considered equal inside a single replica/disperse set. A 2 x (2 + 1) configuration has 2 independent disperse sets, so only one brick from each of them may fail without data loss. If you want to support any 2 brick failures, you need to use a 1 x (4 + 2) configuration. In this case there&#39;s a single disperse set which tolerates up to 2 brick failures.</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
So, for the Distributed-Disperse 2 x (2 + 1) setup with 3 hosts, 2 bricks per each, and two files, A and B, it&#39;s possible to have<br>
the following layout:<br>
<br>
Host0:                  Host1:                  Host2:<br>
|- Brick0: A0 B0        |- Brick0: A1           |- Brick0: A2<br>
|- Brick1: B1           |- Brick1: B2           |- Brick1:<br></blockquote><div><br></div><div>No, this won&#39;t happen. A single file will go either to brick0 of all hosts or brick1 of all hosts. They won&#39;t be mixed.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
This setup can tolerate single brick failure but not single host failure because if Host0 is down, two fragments of B will be lost<br>
and so B becomes unrecoverable (but A is not).<br>
<br>
If this is so, is it possible/hard to enforce &#39;one fragment per *host*&#39; behavior? If we can guarantee the following:<br>
<br>
Host0:                  Host1:                  Host2:<br>
|- Brick0: A0           |- Brick0: A1           |- Brick0: A2<br>
|- Brick1: B1           |- Brick1: B2           |- Brick1: B0<br></blockquote><div><br></div><div>This is how it currently works. You only need to take care of creating the volume with the bricks in the right order. In this case the order should be H0/B0, H1/B0, H2/B0, H0/B1, H1/B1, H1/B1. Anyway, if you create the volume using an incorrect order and two bricks of the same disperse set are placed in the same host, the operation will complain about it. This will only be accepted by gluster if you create the volume with the &#39;force&#39; option.</div><div><br></div><div>Regards,</div><div><br></div><div>Xavi</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
this setup can tolerate both single brick and single host failures.<br>
<br>
Dmitry<br>
<br>
</blockquote></div></div>