hbase-5227. [book] book.xml, troubleshooting.xml - added caution about rowlocks.
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1232953 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
22bc7c8231
commit
c5cea96fbd
|
@ -1406,6 +1406,15 @@ HTable table2 = new HTable(conf2, "myTable");</programlisting>
|
|||
<para>Information on non-Java clients and custom protocols is covered in <xref linkend="external_apis" />
|
||||
</para>
|
||||
</section>
|
||||
<section xml:id="client.rowlocks"><title>RowLocks</title>
|
||||
<para><link xlink:href="http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/HTable.html#lockRow%28byte[]%29">RowLocks</link> are still
|
||||
in the client API <emphasis>however</emphasis> they are discouraged because if not managed properly these can
|
||||
lock up the RegionServers.
|
||||
</para>
|
||||
<para>There is an oustanding ticket <link xlink:href="https://issues.apache.org/jira/browse/HBASE-2332">HBASE-2332</link> to
|
||||
remove this feature from the client.
|
||||
</para>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
<section xml:id="client.filter"><title>Client Request Filters</title>
|
||||
|
|
|
@ -761,6 +761,9 @@ java.lang.UnsatisfiedLinkError: no gplcompression in java.library.path
|
|||
Adding <code>-XX:+UseMembar</code> to the HBase <varname>HBASE_OPTS</varname> in <filename>conf/hbase-env.sh</filename>
|
||||
may fix it.
|
||||
</para>
|
||||
<para>Also, are you using <xref linkend="client.rowlocks"/>? These are discouraged because they can lock up the
|
||||
RegionServers if not managed properly.
|
||||
</para>
|
||||
</section>
|
||||
<section xml:id="trouble.rs.runtime.filehandles">
|
||||
<title>java.io.IOException...(Too many open files)</title>
|
||||
|
|
Loading…
Reference in New Issue