http://git-wip-us.apache.org/repos/asf/hbase-site/blob/f58e71c6/book.html ---------------------------------------------------------------------- diff --git a/book.html b/book.html index a1fc5e1..5c8b97b 100644 --- a/book.html +++ b/book.html @@ -23497,6 +23497,10 @@ This command assumes you have set the environment variable <code>HBASE_HOME</cod <dd> <p>Count rows in an HBase table.</p> </dd> +<dt class="hdlist1"><code>CellCounter</code></dt> +<dd> +<p>Count cells in an HBase table.</p> +</dd> <dt class="hdlist1"><code>replication.VerifyReplication</code></dt> <dd> <p>Compare the data from tables in two different clusters. @@ -23506,7 +23510,7 @@ Note that this command is in a different package than the others.</p> </dl> </div> <div class="paragraph"> -<p>Each command except <code>RowCounter</code> accepts a single <code>--help</code> argument to print usage instructions.</p> +<p>Each command except <code>RowCounter</code> and <code>CellCounter</code> accept a single <code>--help</code> argument to print usage instructions.</p> </div> </div> <div class="sect2"> @@ -23916,7 +23920,8 @@ To NOT run WALPlayer as a mapreduce job on your cluster, force it to run all in <div class="paragraph"> <p><a href="http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/mapreduce/RowCounter.html">RowCounter</a> is a mapreduce job to count all the rows of a table. This is a good utility to use as a sanity check to ensure that HBase can read all the blocks of a table if there are any concerns of metadata inconsistency. -It will run the mapreduce all in a single process but it will run faster if you have a MapReduce cluster in place for it to exploit.</p> +It will run the mapreduce all in a single process but it will run faster if you have a MapReduce cluster in place for it to exploit. It is also possible to limit +the time range of data to be scanned by using the <code>--starttime=[starttime]</code> and <code>--endtime=[endtime]</code> flags.</p> </div> <div class="listingblock"> <div class="content"> @@ -23959,7 +23964,10 @@ The statistics gathered by RowCounter are more fine-grained and include:</p> <div class="paragraph"> <p>The program allows you to limit the scope of the run. Provide a row regex or prefix to limit the rows to analyze. -Use <code>hbase.mapreduce.scan.column.family</code> to specify scanning a single column family.</p> +Specify a time range to scan the table by using the <code>--starttime=[starttime]</code> and <code>--endtime=[endtime]</code> flags.</p> +</div> +<div class="paragraph"> +<p>Use <code>hbase.mapreduce.scan.column.family</code> to specify scanning a single column family.</p> </div> <div class="listingblock"> <div class="content"> @@ -27179,6 +27187,8 @@ In the <em>version directory</em> run the following commands:</p> <div class="listingblock"> <div class="content"> <pre class="CodeRay highlight"><code data-lang="bourne">$ for i in *.tar.gz; do echo $i; gpg --print-mds $i > $i.mds ; done +$ for i in *.tar.gz; do echo $i; gpg --print-md MD5 $i > $i.md5 ; done +$ for i in *.tar.gz; do echo $i; gpg --print-md SHA512 $i > $i.sha ; done $ for i in *.tar.gz; do echo $i; gpg --armor --output $i.asc --detach-sig $i ; done $ cd .. # Presuming our 'version directory' is named 0.96.0RC0, now copy it up to people.apache.org. @@ -33472,7 +33482,7 @@ The server will return cellblocks compressed using this same compressor as long <div id="footer"> <div id="footer-text"> Version 2.0.0-SNAPSHOT<br> -Last updated 2016-04-08 14:30:12 UTC +Last updated 2016-04-19 14:37:44 UTC </div> </div> </body>
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/f58e71c6/bulk-loads.html ---------------------------------------------------------------------- diff --git a/bulk-loads.html b/bulk-loads.html index 583542f..5a946bb 100644 --- a/bulk-loads.html +++ b/bulk-loads.html @@ -7,7 +7,7 @@ <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <meta name="Date-Revision-yyyymmdd" content="20160508" /> + <meta name="Date-Revision-yyyymmdd" content="20160510" /> <meta http-equiv="Content-Language" content="en" /> <title>Apache HBase – Bulk Loads in Apache HBase (TM) @@ -305,7 +305,7 @@ under the License. --> <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved. - <li id="publishDate" class="pull-right">Last Published: 2016-05-08</li> + <li id="publishDate" class="pull-right">Last Published: 2016-05-10</li> </p> </div>
