<div dir="ltr">Thanks for the detailed email Xavi!! Helps a lot to clarify about the intention of the patch.<div><br></div><div>Raghavendra / Nithya / Susant,</div><div><br></div><div>Considering the patch surely needs one of your review to make sure DHT locking is not impacted due to the patch, can you review the patch?</div><div><br></div><div>As per the locking code itself, Kruthika actually did take a look. Xavi and me are waiting on one of your reviews to go forward on this. Others, more reviews on the patch is helpful too.</div><div><br></div><div>-Amar</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, May 18, 2018 at 12:21 PM, Xavi Hernandez <span dir="ltr">&lt;<a href="mailto:xhernandez@redhat.com" target="_blank">xhernandez@redhat.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi all,<div><br></div><div>tl;dr: to solve a bug [1] I&#39;ve written a patch [2] that needs some hacks to prevent deadlocks. I think the approach is quite good and maybe we should check if the hacks can be eliminated by making use of the new behavior in DHT and other xlators.</div><div><br></div><div>Now a more detailed explanation:</div><div><br></div><div>As part of debugging an issue [1] for EC where directories got in a bad state when there were concurrent renames and mkdirs, I found that the problem really came from the fact that DHT does additional operations after creating a directory, and it were these operations what was conflicting with renames. This is not really a problem in DHT, but it served to detect the issue.</div><div><br></div><div>In fact, any concurrent modification of an entry while it&#39;s being removed can cause this bug. Normally, if you modify a file that is being deleted, the modification could fail (depending on the state it can fail with multiple errors, even EIO), but the file will be deleted anyway, so no big problem here. The problem is more important in the scenario described in the bug (though unlikely to be a real use case).</div><div><br></div><div>The root cause of the problem is that entry modification operations take locks on the entry itself, while entry creation/deletion take locks on the parent directory. This allows that both operations arrive at brick level in parallel, and we can have some bricks executing them in one order and other bricks executing them in the reverse order.</div><div><br></div><div>In the case of EC, having an entry disappearing in the middle of another operation can be very bad. It can disappear in multiple stages:</div><div><br></div><div>1. While acquiring locks. It&#39;s not much bad, but can return unwanted errors (EIO)</div><div>2. While requesting size and version information. This is very bad and will surely lead to EIO errors (instead of ESTALE that would be the most useful error) or mark healthy bricks as bad.</div><div>3. While the main operation is executed. In this case we can even have data corruption (though the file will be deleted, but it&#39;s more important for directories).</div><div>4. While updating backend info. Many combinations are possible here depending on what failed and on how many bricks.</div><div><br></div><div>To prevent this I&#39;ve taken the following approach [2]:<br></div><div><br></div><div>1. Take into account ESTALE errors when acquiring locks, so that EC is able to report ESTALE instead of EIO on most cases.</div><div>2. Once a lock is acquired, the locks xlator will prevent the entry from being deleted until locks are released again, giving a lot of stability to client side.</div><div><br></div><div>I&#39;ve tested this approach and it works pretty well. On heavy contention of modifications and removals, the client side sees completely stable and consistent updates, which is very good.</div><div><br></div><div>The problem I&#39;ve seen is that it&#39;s quite easy to get into deadlocks with this approach. The main reason for the deadlocks is how DHT tries to solve the same or similar problems from DHT level (I&#39;ve found this document [3] that explains them).</div><div><br></div><div>To prevent deadlocks I&#39;ve had to completely ignore locks coming from special PIDs (&lt; 0), but I&#39;ve also had to ignore locks from domain &quot;dht.file.migrate&quot;. Otherwise I have no way to prevent deadlocks on concurrent renames to the same destination from multiple clients.</div><div><br></div><div>I don&#39;t like to use these hacks in the code because they tend to be hard to maintain and prone to errors. Do you think it makes sense to see if some of the DHT synchronization methods can be simplified by making use of this feature ? with some changes, we would probably be able to remove the hacks.</div><div><br></div><div>Other ideas on how to implement this without delaying removes (thus preventing deadlocks) are also welcome.</div><div><br></div><div>Xavi</div><div><br></div><div>[1] <a href="https://bugzilla.redhat.com/show_bug.cgi?id=1578405" target="_blank">https://bugzilla.redhat.co<wbr>m/show_bug.cgi?id=1578405</a></div><div>[2] <a href="https://review.gluster.org/20025" target="_blank">https://review.gluster.org<wbr>/20025</a></div><div>[3] <a href="https://review.gluster.org/16876" target="_blank">https://review.gluster.<wbr>org/16876</a></div></div>
</blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div>Amar Tumballi (amarts)<br></div></div></div></div></div>
</div>