You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by dm...@apache.org on 2011/10/10 14:25:06 UTC

svn commit: r1180918 - in /hbase/trunk/src/docbkx: book.xml developer.xml

Author: dmeil
Date: Mon Oct 10 12:25:06 2011
New Revision: 1180918

URL: http://svn.apache.org/viewvc?rev=1180918&view=rev
Log:
HBASE-4564 book.xml,developer.xml 

Modified:
    hbase/trunk/src/docbkx/book.xml
    hbase/trunk/src/docbkx/developer.xml

Modified: hbase/trunk/src/docbkx/book.xml
URL: http://svn.apache.org/viewvc/hbase/trunk/src/docbkx/book.xml?rev=1180918&r1=1180917&r2=1180918&view=diff
==============================================================================
--- hbase/trunk/src/docbkx/book.xml (original)
+++ hbase/trunk/src/docbkx/book.xml Mon Oct 10 12:25:06 2011
@@ -1022,6 +1022,8 @@ long explicitTimeInMs = 555;  // just an
 put.add(Bytes.toBytes("cf"), Bytes.toBytes("attr1"), explicitTimeInMs, Bytes.toBytes(data));
 htable.put(put);
 </programlisting>
+          Caution:  the version timestamp is internally by HBase for things like time-to-live calculations.  
+          It's usually best to avoid setting the timestamp yourself.
           </para>
           </section>
           
@@ -1121,7 +1123,8 @@ htable.put(put);
 
 	<section xml:id="arch.catalog">
 	 <title>Catalog Tables</title>
-	  <para>
+	  <para>The catalog tables -ROOT- and .META. exist as HBase tables.  They are are filtered out 
+	  of the HBase shell's <code>list</code> command, but they are in fact tables just like any other.
      </para>
 	  <section xml:id="arch.catalog.root">
 	   <title>ROOT</title>

Modified: hbase/trunk/src/docbkx/developer.xml
URL: http://svn.apache.org/viewvc/hbase/trunk/src/docbkx/developer.xml?rev=1180918&r1=1180917&r2=1180918&view=diff
==============================================================================
--- hbase/trunk/src/docbkx/developer.xml (original)
+++ hbase/trunk/src/docbkx/developer.xml Mon Oct 10 12:25:06 2011
@@ -120,6 +120,12 @@ mvn test
 mvn test -Dtest=TestXYZ
           </programlisting>
        </section>       
+       <section xml:id="maven.build.commands.unit2"> 
+          <title>Run a Few Unit Tests</title>
+          <programlisting>
+mvn test -Dtest=TestXYZ,TestABC
+          </programlisting>
+       </section>       
        <section xml:id="maven.build.commands.unit.package"> 
           <title>Run all Unit Tests for a Package</title>
           <programlisting>
@@ -377,6 +383,9 @@ Bar bar = foo.getBar();     &lt;--- imag
             <title>ReviewBoard</title>
           <para>Larger patches should go through <link xlink:href="http://reviews.apache.org">ReviewBoard</link>.
           </para>
+          <para>For more information on how to use ReviewBoard, see
+           <link xlink:href="http://www.reviewboard.org/docs/manual/1.5/">the ReviewBoard documentation</link>.
+          </para>
         </section> 
         <section xml:id="committing.patches">
           <title>Committing Patches</title>