HBASE-4456 [doc] Add a section about RS failover (Misty Stanley-Jones)

This commit is contained in:
Michael Stack 2014-05-28 23:10:21 -07:00
parent 9fc9c0f210
commit 2db8aafe7d
1 changed files with 20 additions and 8 deletions

View File

@ -2193,17 +2193,29 @@ rs.close();
</para> </para>
</section> </section>
<section xml:id="regions.arch.assignment.failover"> <section
xml:id="regions.arch.assignment.failover">
<title>Failover</title> <title>Failover</title>
<para>When a RegionServer fails (short version): <para>When a RegionServer fails: <orderedlist>
<orderedlist> <listitem>
<listitem><para>The regions immediately become unavailable because the RegionServer is down.</para> <para>The regions immediately become unavailable because the RegionServer is
down.</para>
</listitem> </listitem>
<listitem><para>The Master will detect that the RegionServer has failed.</para> <listitem>
<para>The Master will detect that the RegionServer has failed.</para>
</listitem> </listitem>
<listitem><para>The region assignments will be considered invalid and will be re-assigned just <listitem>
<para>The region assignments will be considered invalid and will be re-assigned just
like the startup sequence.</para> like the startup sequence.</para>
</listitem> </listitem>
<listitem>
<para>In-flight queries are re-tried, and not lost.</para>
</listitem>
<listitem>
<para>Operations are switched to a new RegionServer within the following amount of
time:</para>
<programlisting>ZooKeeper session timeout + split time + assignment/replay time</programlisting>
</listitem>
</orderedlist> </orderedlist>
</para> </para>
</section> </section>