http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eafe6020/book.html
----------------------------------------------------------------------
diff --git a/book.html b/book.html
index 975a275..a7e5e71 100644
--- a/book.html
+++ b/book.html
@@ -27632,7 +27632,165 @@ For performance consider the following general 
options:
 </div>
 </div>
 <div class="sect2">
-<h3 id="export"><a class="anchor" href="#export"></a>149.11. Export</h3>
+<h3 id="hashtable.synctable"><a class="anchor" 
href="#hashtable.synctable"></a>149.11. HashTable/SyncTable</h3>
+<div class="paragraph">
+<p>HashTable/SyncTable is a two steps tool for synchronizing table data, where 
each of the steps are implemented as MapReduce jobs.
+Similarly to CopyTable, it can be used for partial or entire table data 
syncing, under same or remote cluster.
+However, it performs the sync in a more efficient way than CopyTable. Instead 
of copying all cells
+in specified row key/time period range, HashTable (the first step) creates 
hashed indexes for batch of cells on source table and output those as results.
+On the next stage, SyncTable scans the source table and now calculates hash 
indexes for table cells,
+compares these hashes with the outputs of HashTable, then it just scans (and 
compares) cells for diverging hashes, only updating
+mismatching cells. This results in less network traffic/data transfers, which 
can be impacting when syncing large tables on remote clusters.</p>
+</div>
+<div class="sect3">
+<h4 id="_step_1_hashtable"><a class="anchor" 
href="#_step_1_hashtable"></a>149.11.1. Step 1, HashTable</h4>
+<div class="paragraph">
+<p>First, run HashTable on the source table cluster (this is the table whose 
state will be copied to its counterpart).</p>
+</div>
+<div class="paragraph">
+<p>Usage:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre>$ ./bin/hbase org.apache.hadoop.hbase.mapreduce.HashTable --help
+Usage: HashTable [options] &lt;tablename&gt; &lt;outputpath&gt;
+
+Options:
+ batchsize     the target amount of bytes to hash in each batch
+               rows are added to the batch until this size is reached
+               (defaults to 8000 bytes)
+ numhashfiles  the number of hash files to create
+               if set to fewer than number of regions then
+               the job will create this number of reducers
+               (defaults to 1/100 of regions -- at least 1)
+ startrow      the start row
+ stoprow       the stop row
+ starttime     beginning of the time range (unixtime in millis)
+               without endtime means from starttime to forever
+ endtime       end of the time range.  Ignored if no starttime specified.
+ scanbatch     scanner batch size to support intra row scans
+ versions      number of cell versions to include
+ families      comma-separated list of families to include
+
+Args:
+ tablename     Name of the table to hash
+ outputpath    Filesystem path to put the output data
+
+Examples:
+ To hash 'TestTable' in 32kB batches for a 1 hour window into 50 files:
+ $ bin/hbase org.apache.hadoop.hbase.mapreduce.HashTable --batchsize=32000 
--numhashfiles=50 --starttime=1265875194289 --endtime=1265878794289 
--families=cf2,cf3 TestTable /hashes/testTable</pre>
+</div>
+</div>
+<div class="paragraph">
+<p>The <strong>batchsize</strong> property defines how much cell data for a 
given region will be hashed together in a single hash value.
+Sizing this properly has a direct impact on the sync efficiency, as it may 
lead to less scans executed by mapper tasks
+of SyncTable (the next step in the process). The rule of thumb is that, the 
smaller the number of cells out of sync
+(lower probability of finding a diff), larger batch size values can be 
determined.</p>
+</div>
+</div>
+<div class="sect3">
+<h4 id="_step_2_synctable"><a class="anchor" 
href="#_step_2_synctable"></a>149.11.2. Step 2, SyncTable</h4>
+<div class="paragraph">
+<p>Once HashTable has completed on source cluster, SyncTable can be ran on 
target cluster.
+Just like replication and other synchronization jobs, it requires that all 
RegionServers/DataNodes
+on source cluster be accessible by NodeManagers on the target cluster (where 
SyncTable job tasks will be running).</p>
+</div>
+<div class="paragraph">
+<p>Usage:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre>$ ./bin/hbase org.apache.hadoop.hbase.mapreduce.SyncTable --help
+Usage: SyncTable [options] &lt;sourcehashdir&gt; &lt;sourcetable&gt; 
&lt;targettable&gt;
+
+Options:
+ sourcezkcluster  ZK cluster key of the source table
+                  (defaults to cluster in classpath's config)
+ targetzkcluster  ZK cluster key of the target table
+                  (defaults to cluster in classpath's config)
+ dryrun           if true, output counters but no writes
+                  (defaults to false)
+ doDeletes        if false, does not perform deletes
+                  (defaults to true)
+ doPuts           if false, does not perform puts
+                  (defaults to true)
+
+Args:
+ sourcehashdir    path to HashTable output dir for source table
+                  (see org.apache.hadoop.hbase.mapreduce.HashTable)
+ sourcetable      Name of the source table to sync from
+ targettable      Name of the target table to sync to
+
+Examples:
+ For a dry run SyncTable of tableA from a remote source cluster
+ to a local target cluster:
+ $ bin/hbase org.apache.hadoop.hbase.mapreduce.SyncTable --dryrun=true 
--sourcezkcluster=zk1.example.com,zk2.example.com,zk3.example.com:2181:/hbase 
hdfs://nn:9000/hashes/tableA tableA tableA</pre>
+</div>
+</div>
+<div class="paragraph">
+<p>The <strong>dryrun</strong> option is useful when a read only, diff report 
is wanted, as it will produce only COUNTERS indicating the differences, but 
will not perform
+any actual changes. It can be used as an alternative to VerifyReplication 
tool.</p>
+</div>
+<div class="paragraph">
+<p>By default, SyncTable will cause target table to become an exact copy of 
source table (at least, for the specified startrow/stoprow or/and 
starttime/endtime).</p>
+</div>
+<div class="paragraph">
+<p>Setting doDeletes to false modifies default behaviour to not delete target 
cells that are missing on source.
+Similarly, setting doPuts to false modifies default behaviour to not add 
missing cells on target. Setting both doDeletes
+and doPuts to false would give same effect as setting dryrun to true.</p>
+</div>
+<div class="admonitionblock note">
+<table>
+<tr>
+<td class="icon">
+<i class="fa icon-note" title="Note"></i>
+</td>
+<td class="content">
+<div class="title">Set doDeletes to false on Two-Way Replication 
scenarios</div>
+<div class="paragraph">
+<p>On Two-Way Replication or other scenarios where both source and target 
clusters can have data ingested, it&#8217;s advisable to always set doDeletes 
option to false,
+as any additional cell inserted on SyncTable target cluster and not yet 
replicated to source would be deleted, and potentially lost permanently.</p>
+</div>
+</td>
+</tr>
+</table>
+</div>
+<div class="admonitionblock note">
+<table>
+<tr>
+<td class="icon">
+<i class="fa icon-note" title="Note"></i>
+</td>
+<td class="content">
+<div class="title">Set sourcezkcluster to the actual source cluster ZK 
quorum</div>
+<div class="paragraph">
+<p>Although not required, if sourcezkcluster is not set, SyncTable will 
connect to local HBase cluster for both source and target,
+which does not give any meaningful result.</p>
+</div>
+</td>
+</tr>
+</table>
+</div>
+<div class="admonitionblock note">
+<table>
+<tr>
+<td class="icon">
+<i class="fa icon-note" title="Note"></i>
+</td>
+<td class="content">
+<div class="title">Remote Clusters on different Kerberos Realms</div>
+<div class="paragraph">
+<p>Currently, SyncTable can&#8217;t be ran for remote clusters on different 
Kerberos realms.
+There&#8217;s some work in progress to resolve this on <a 
href="https://jira.apache.org/jira/browse/HBASE-20586";>HBASE-20586</a></p>
+</div>
+</td>
+</tr>
+</table>
+</div>
+</div>
+</div>
+<div class="sect2">
+<h3 id="export"><a class="anchor" href="#export"></a>149.12. Export</h3>
 <div class="paragraph">
 <p>Export is a utility that will dump the contents of table to HDFS in a 
sequence file.
 The Export can be run via a Coprocessor Endpoint or MapReduce. Invoke via:</p>
@@ -27748,7 +27906,7 @@ specifying column families and applying filters during 
the export.
 </div>
 </div>
 <div class="sect2">
-<h3 id="import"><a class="anchor" href="#import"></a>149.12. Import</h3>
+<h3 id="import"><a class="anchor" href="#import"></a>149.13. Import</h3>
 <div class="paragraph">
 <p>Import is a utility that will load data that has been exported back into 
HBase.
 Invoke via:</p>
@@ -27780,7 +27938,7 @@ To see usage instructions, run the command with no 
options.
 </div>
 </div>
 <div class="sect2">
-<h3 id="importtsv"><a class="anchor" href="#importtsv"></a>149.13. 
ImportTsv</h3>
+<h3 id="importtsv"><a class="anchor" href="#importtsv"></a>149.14. 
ImportTsv</h3>
 <div class="paragraph">
 <p>ImportTsv is a utility that will load data in TSV format into HBase.
 It has two distinct usages: loading data from TSV format in HDFS into HBase 
via Puts, and preparing StoreFiles to be loaded via the 
<code>completebulkload</code>.</p>
@@ -27805,7 +27963,7 @@ It has two distinct usages: loading data from TSV 
format in HDFS into HBase via
 <p>These generated StoreFiles can be loaded into HBase via <a 
href="#completebulkload">completebulkload</a>.</p>
 </div>
 <div class="sect3">
-<h4 id="importtsv.options"><a class="anchor" 
href="#importtsv.options"></a>149.13.1. ImportTsv Options</h4>
+<h4 id="importtsv.options"><a class="anchor" 
href="#importtsv.options"></a>149.14.1. ImportTsv Options</h4>
 <div class="paragraph">
 <p>Running <code>ImportTsv</code> with no arguments prints brief usage 
information:</p>
 </div>
@@ -27837,7 +27995,7 @@ Other options that may be specified with -D include:
 </div>
 </div>
 <div class="sect3">
-<h4 id="importtsv.example"><a class="anchor" 
href="#importtsv.example"></a>149.13.2. ImportTsv Example</h4>
+<h4 id="importtsv.example"><a class="anchor" 
href="#importtsv.example"></a>149.14.2. ImportTsv Example</h4>
 <div class="paragraph">
 <p>For example, assume that we are loading data into a table called 'datatsv' 
with a ColumnFamily called 'd' with two columns "c1" and "c2".</p>
 </div>
@@ -27872,20 +28030,20 @@ The second and third columns in the file will be 
imported as "d:c1" and "d:c2",
 </div>
 </div>
 <div class="sect3">
-<h4 id="importtsv.warning"><a class="anchor" 
href="#importtsv.warning"></a>149.13.3. ImportTsv Warning</h4>
+<h4 id="importtsv.warning"><a class="anchor" 
href="#importtsv.warning"></a>149.14.3. ImportTsv Warning</h4>
 <div class="paragraph">
 <p>If you have preparing a lot of data for bulk loading, make sure the target 
HBase table is pre-split appropriately.</p>
 </div>
 </div>
 <div class="sect3">
-<h4 id="importtsv.also"><a class="anchor" href="#importtsv.also"></a>149.13.4. 
See Also</h4>
+<h4 id="importtsv.also"><a class="anchor" href="#importtsv.also"></a>149.14.4. 
See Also</h4>
 <div class="paragraph">
 <p>For more information about bulk-loading HFiles into HBase, see <a 
href="#arch.bulk.load">arch.bulk.load</a></p>
 </div>
 </div>
 </div>
 <div class="sect2">
-<h3 id="completebulkload"><a class="anchor" 
href="#completebulkload"></a>149.14. CompleteBulkLoad</h3>
+<h3 id="completebulkload"><a class="anchor" 
href="#completebulkload"></a>149.15. CompleteBulkLoad</h3>
 <div class="paragraph">
 <p>The <code>completebulkload</code> utility will move generated StoreFiles 
into an HBase table.
 This utility is often used in conjunction with output from <a 
href="#importtsv">importtsv</a>.</p>
@@ -27906,7 +28064,7 @@ This utility is often used in conjunction with output 
from <a href="#importtsv">
 </div>
 </div>
 <div class="sect3">
-<h4 id="completebulkload.warning"><a class="anchor" 
href="#completebulkload.warning"></a>149.14.1. CompleteBulkLoad Warning</h4>
+<h4 id="completebulkload.warning"><a class="anchor" 
href="#completebulkload.warning"></a>149.15.1. CompleteBulkLoad Warning</h4>
 <div class="paragraph">
 <p>Data generated via MapReduce is often created with file permissions that 
are not compatible with the running HBase process.
 Assuming you&#8217;re running HDFS with permissions enabled, those permissions 
will need to be updated before you run CompleteBulkLoad.</p>
@@ -27917,7 +28075,7 @@ Assuming you&#8217;re running HDFS with permissions 
enabled, those permissions w
 </div>
 </div>
 <div class="sect2">
-<h3 id="walplayer"><a class="anchor" href="#walplayer"></a>149.15. 
WALPlayer</h3>
+<h3 id="walplayer"><a class="anchor" href="#walplayer"></a>149.16. 
WALPlayer</h3>
 <div class="paragraph">
 <p>WALPlayer is a utility to replay WAL files into HBase.</p>
 </div>
@@ -27949,7 +28107,7 @@ The output can optionally be mapped to another set of 
tables.</p>
 To NOT run WALPlayer as a mapreduce job on your cluster, force it to run all 
in the local process by adding the flags 
<code>-Dmapreduce.jobtracker.address=local</code> on the command line.</p>
 </div>
 <div class="sect3">
-<h4 id="walplayer.options"><a class="anchor" 
href="#walplayer.options"></a>149.15.1. WALPlayer Options</h4>
+<h4 id="walplayer.options"><a class="anchor" 
href="#walplayer.options"></a>149.16.1. WALPlayer Options</h4>
 <div class="paragraph">
 <p>Running <code>WALPlayer</code> with no arguments prints brief usage 
information:</p>
 </div>
@@ -27986,7 +28144,7 @@ For performance also consider the following options:
 </div>
 </div>
 <div class="sect2">
-<h3 id="rowcounter"><a class="anchor" href="#rowcounter"></a>149.16. 
RowCounter</h3>
+<h3 id="rowcounter"><a class="anchor" href="#rowcounter"></a>149.17. 
RowCounter</h3>
 <div class="paragraph">
 <p><a 
href="https://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.
@@ -28007,7 +28165,7 @@ The scanned data can be limited based on keys using the 
<code>--range=[startKey]
 </div>
 </div>
 <div class="sect2">
-<h3 id="cellcounter"><a class="anchor" href="#cellcounter"></a>149.17. 
CellCounter</h3>
+<h3 id="cellcounter"><a class="anchor" href="#cellcounter"></a>149.18. 
CellCounter</h3>
 <div class="paragraph">
 <p>HBase ships another diagnostic mapreduce job called <a 
href="https://hbase.apache.org/apidocs/org/apache/hadoop/hbase/mapreduce/CellCounter.html";>CellCounter</a>.
 Like RowCounter, it gathers more fine-grained statistics about your table.
@@ -28053,14 +28211,14 @@ Specify a time range to scan the table by using the 
<code>--starttime=&lt;startt
 </div>
 </div>
 <div class="sect2">
-<h3 id="_mlockall"><a class="anchor" href="#_mlockall"></a>149.18. 
mlockall</h3>
+<h3 id="_mlockall"><a class="anchor" href="#_mlockall"></a>149.19. 
mlockall</h3>
 <div class="paragraph">
 <p>It is possible to optionally pin your servers in physical memory making 
them less likely to be swapped out in oversubscribed environments by having the 
servers call <a href="http://linux.die.net/man/2/mlockall";>mlockall</a> on 
startup.
 See <a href="https://issues.apache.org/jira/browse/HBASE-4391";>HBASE-4391 Add 
ability to start RS as root and call mlockall</a> for how to build the optional 
library and have it run on startup.</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="compaction.tool"><a class="anchor" href="#compaction.tool"></a>149.19. 
Offline Compaction Tool</h3>
+<h3 id="compaction.tool"><a class="anchor" href="#compaction.tool"></a>149.20. 
Offline Compaction Tool</h3>
 <div class="paragraph">
 <p>See the usage for the
 <a 
href="https://hbase.apache.org/devapidocs/org/apache/hadoop/hbase/regionserver/CompactionTool.html";>CompactionTool</a>.
@@ -28073,7 +28231,7 @@ Run it like:</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="__code_hbase_clean_code"><a class="anchor" 
href="#__code_hbase_clean_code"></a>149.20. <code>hbase clean</code></h3>
+<h3 id="__code_hbase_clean_code"><a class="anchor" 
href="#__code_hbase_clean_code"></a>149.21. <code>hbase clean</code></h3>
 <div class="paragraph">
 <p>The <code>hbase clean</code> command cleans HBase data from ZooKeeper, 
HDFS, or both.
 It is appropriate to use for testing.
@@ -28092,7 +28250,7 @@ Options:
 </div>
 </div>
 <div class="sect2">
-<h3 id="__code_hbase_pe_code"><a class="anchor" 
href="#__code_hbase_pe_code"></a>149.21. <code>hbase pe</code></h3>
+<h3 id="__code_hbase_pe_code"><a class="anchor" 
href="#__code_hbase_pe_code"></a>149.22. <code>hbase pe</code></h3>
 <div class="paragraph">
 <p>The <code>hbase pe</code> command runs the PerformanceEvaluation tool, 
which is used for testing.</p>
 </div>
@@ -28105,7 +28263,7 @@ For usage instructions, run the command with no 
options.</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="__code_hbase_ltt_code"><a class="anchor" 
href="#__code_hbase_ltt_code"></a>149.22. <code>hbase ltt</code></h3>
+<h3 id="__code_hbase_ltt_code"><a class="anchor" 
href="#__code_hbase_ltt_code"></a>149.23. <code>hbase ltt</code></h3>
 <div class="paragraph">
 <p>The <code>hbase ltt</code> command runs the LoadTestTool utility, which is 
used for testing.</p>
 </div>
@@ -28118,7 +28276,7 @@ For general usage instructions, pass the 
<code>-h</code> option.</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="ops.pre-upgrade"><a class="anchor" href="#ops.pre-upgrade"></a>149.23. 
Pre-Upgrade validator</h3>
+<h3 id="ops.pre-upgrade"><a class="anchor" href="#ops.pre-upgrade"></a>149.24. 
Pre-Upgrade validator</h3>
 <div class="paragraph">
 <p>Pre-Upgrade validator tool can be used to check the cluster for known 
incompatibilities before upgrading from HBase 1 to HBase 2.</p>
 </div>
@@ -28128,7 +28286,7 @@ For general usage instructions, pass the 
<code>-h</code> option.</p>
 </div>
 </div>
 <div class="sect3">
-<h4 id="_coprocessor_validation"><a class="anchor" 
href="#_coprocessor_validation"></a>149.23.1. Coprocessor validation</h4>
+<h4 id="_coprocessor_validation"><a class="anchor" 
href="#_coprocessor_validation"></a>149.24.1. Coprocessor validation</h4>
 <div class="paragraph">
 <p>HBase supports co-processors for a long time, but the co-processor API can 
be changed between major releases. Co-processor validator tries to determine
 whether the old co-processors are still compatible with the actual HBase 
version.</p>
@@ -28179,7 +28337,7 @@ for warnings.</p>
 </div>
 </div>
 <div class="sect3">
-<h4 id="_datablockencoding_validation"><a class="anchor" 
href="#_datablockencoding_validation"></a>149.23.2. DataBlockEncoding 
validation</h4>
+<h4 id="_datablockencoding_validation"><a class="anchor" 
href="#_datablockencoding_validation"></a>149.24.2. DataBlockEncoding 
validation</h4>
 <div class="paragraph">
 <p>HBase 2.0 removed <code>PREFIX_TREE</code> Data Block Encoding from column 
families. For further information
 please check <a href="#upgrade2.0.prefix-tree.removed"><em>prefix-tree</em> 
encoding removed</a>.
@@ -28211,7 +28369,7 @@ To verify that none of the column families are using 
incompatible Data Block Enc
 </div>
 </div>
 <div class="sect3">
-<h4 id="_hfile_content_validation"><a class="anchor" 
href="#_hfile_content_validation"></a>149.23.3. HFile Content validation</h4>
+<h4 id="_hfile_content_validation"><a class="anchor" 
href="#_hfile_content_validation"></a>149.24.3. HFile Content validation</h4>
 <div class="paragraph">
 <p>Even though Data Block Encoding is changed from <code>PREFIX_TREE</code> it 
is still possible to have HFiles that contain data encoded that way.
 To verify that HFiles are readable with HBase 2 please use <em>HFile content 
validator</em>.</p>
@@ -28312,7 +28470,7 @@ drop_namespace 'pre_upgrade_cleanup'</pre>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_data_block_encoding_tool"><a class="anchor" 
href="#_data_block_encoding_tool"></a>149.24. Data Block Encoding Tool</h3>
+<h3 id="_data_block_encoding_tool"><a class="anchor" 
href="#_data_block_encoding_tool"></a>149.25. Data Block Encoding Tool</h3>
 <div class="paragraph">
 <p>Tests various compression algorithms with different data block encoder for 
key compression on an existing HFile.
 Useful for testing, debugging and benchmarking.</p>
@@ -41114,7 +41272,7 @@ 
org/apache/hadoop/hbase/security/access/AccessControlClient.revoke:(Lorg/apache/
 <div id="footer">
 <div id="footer-text">
 Version 3.0.0-SNAPSHOT<br>
-Last updated 2018-11-06 14:33:18 UTC
+Last updated 2018-11-07 14:33:07 UTC
 </div>
 </div>
 </body>

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eafe6020/bulk-loads.html
----------------------------------------------------------------------
diff --git a/bulk-loads.html b/bulk-loads.html
index 36d027f..6489052 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="20181106" />
+    <meta name="Date-Revision-yyyymmdd" content="20181107" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013;  
       Bulk Loads in Apache HBase (TM)
@@ -316,7 +316,7 @@ under the License. -->
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eafe6020/checkstyle-aggregate.html
----------------------------------------------------------------------
diff --git a/checkstyle-aggregate.html b/checkstyle-aggregate.html
index ac00290..a6cf3e9 100644
--- a/checkstyle-aggregate.html
+++ b/checkstyle-aggregate.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="20181106" />
+    <meta name="Date-Revision-yyyymmdd" content="20181107" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Checkstyle Results</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -291,7 +291,7 @@
 <th><img src="images/icon_warning_sml.gif" alt="" />&#160;Warnings</th>
 <th><img src="images/icon_error_sml.gif" alt="" />&#160;Errors</th></tr>
 <tr class="b">
-<td>3813</td>
+<td>3814</td>
 <td>0</td>
 <td>0</td>
 <td>15079</td></tr></table></div>
@@ -9826,12 +9826,12 @@
 <td><a class="externalLink" 
href="http://checkstyle.sourceforge.net/config_javadoc.html#JavadocTagContinuationIndentation";>JavadocTagContinuationIndentation</a>
 <ul>
 <li>offset: <tt>&quot;2&quot;</tt></li></ul></td>
-<td>731</td>
+<td>730</td>
 <td><img src="images/icon_error_sml.gif" alt="" />&#160;Error</td></tr>
 <tr class="b">
 <td></td>
 <td><a class="externalLink" 
href="http://checkstyle.sourceforge.net/config_javadoc.html#NonEmptyAtclauseDescription";>NonEmptyAtclauseDescription</a></td>
-<td>3494</td>
+<td>3495</td>
 <td><img src="images/icon_error_sml.gif" alt="" />&#160;Error</td></tr>
 <tr class="a">
 <td>misc</td>
@@ -19125,7 +19125,7 @@
 <tr class="b">
 <td><img src="images/icon_error_sml.gif" alt="" />&#160;Error</td>
 <td>javadoc</td>
-<td>JavadocTagContinuationIndentation</td>
+<td>NonEmptyAtclauseDescription</td>
 <td>Javadoc comment at column 0 has parse error. Details: no viable 
alternative at input '   *' while parsing JAVADOC_TAG</td>
 <td>117</td></tr>
 <tr class="a">
@@ -89792,13 +89792,13 @@
 <td>javadoc</td>
 <td>NonEmptyAtclauseDescription</td>
 <td>At-clause should have a non-empty description.</td>
-<td>186</td></tr>
+<td>197</td></tr>
 <tr class="a">
 <td><img src="images/icon_error_sml.gif" alt="" />&#160;Error</td>
 <td>javadoc</td>
 <td>NonEmptyAtclauseDescription</td>
 <td>At-clause should have a non-empty description.</td>
-<td>199</td></tr></table></div>
+<td>210</td></tr></table></div>
 <div class="section">
 <h3 
id="org.apache.hadoop.hbase.replication.regionserver.ReplicationLoad.java">org/apache/hadoop/hbase/replication/regionserver/ReplicationLoad.java</h3>
 <table border="0" class="table table-striped">
@@ -117279,7 +117279,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eafe6020/checkstyle.rss
----------------------------------------------------------------------
diff --git a/checkstyle.rss b/checkstyle.rss
index 27f6d30..4a332a9 100644
--- a/checkstyle.rss
+++ b/checkstyle.rss
@@ -25,7 +25,7 @@ under the License.
     <language>en-us</language>
     <copyright>&#169;2007 - 2018 The Apache Software Foundation</copyright>
     <item>
-      <title>File: 3813,
+      <title>File: 3814,
              Errors: 15079,
              Warnings: 0,
              Infos: 0
@@ -52084,6 +52084,20 @@ under the License.
               </tr>
                           <tr>
                 <td>
+                  <a 
href="http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.replication.TestSyncReplicationNewRSJoinBetweenRefreshes.java";>org/apache/hadoop/hbase/replication/TestSyncReplicationNewRSJoinBetweenRefreshes.java</a>
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  0
+                </td>
+                <td>
+                  0
+                </td>
+              </tr>
+                          <tr>
+                <td>
                   <a 
href="http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.util.TestFSTableDescriptors.java";>org/apache/hadoop/hbase/util/TestFSTableDescriptors.java</a>
                 </td>
                 <td>

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eafe6020/coc.html
----------------------------------------------------------------------
diff --git a/coc.html b/coc.html
index 5d6eb77..945ef69 100644
--- a/coc.html
+++ b/coc.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="20181106" />
+    <meta name="Date-Revision-yyyymmdd" content="20181107" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; 
       Code of Conduct Policy
@@ -385,7 +385,7 @@ email to <a class="externalLink" 
href="mailto:priv...@hbase.apache.org";>the priv
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eafe6020/dependencies.html
----------------------------------------------------------------------
diff --git a/dependencies.html b/dependencies.html
index 44e8559..2543e31 100644
--- a/dependencies.html
+++ b/dependencies.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="20181106" />
+    <meta name="Date-Revision-yyyymmdd" content="20181107" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Dependencies</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -450,7 +450,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eafe6020/dependency-convergence.html
----------------------------------------------------------------------
diff --git a/dependency-convergence.html b/dependency-convergence.html
index 6ea3d69..7f4b6e2 100644
--- a/dependency-convergence.html
+++ b/dependency-convergence.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="20181106" />
+    <meta name="Date-Revision-yyyymmdd" content="20181107" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Reactor Dependency Convergence</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -889,7 +889,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eafe6020/dependency-info.html
----------------------------------------------------------------------
diff --git a/dependency-info.html b/dependency-info.html
index 111ec7c..d1af49c 100644
--- a/dependency-info.html
+++ b/dependency-info.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="20181106" />
+    <meta name="Date-Revision-yyyymmdd" content="20181107" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Dependency Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -323,7 +323,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eafe6020/dependency-management.html
----------------------------------------------------------------------
diff --git a/dependency-management.html b/dependency-management.html
index e70f24c..0990f9d 100644
--- a/dependency-management.html
+++ b/dependency-management.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="20181106" />
+    <meta name="Date-Revision-yyyymmdd" content="20181107" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Dependency Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.4-HBase.min.css" 
/>
@@ -1015,7 +1015,7 @@
                         <a href="https://www.apache.org/";>The Apache Software 
Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 
2018-11-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eafe6020/devapidocs/constant-values.html
----------------------------------------------------------------------
diff --git a/devapidocs/constant-values.html b/devapidocs/constant-values.html
index 3c06489..9a25c74 100644
--- a/devapidocs/constant-values.html
+++ b/devapidocs/constant-values.html
@@ -3824,7 +3824,7 @@
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;<a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a></code></td>
 <td><code><a 
href="org/apache/hadoop/hbase/Version.html#date">date</a></code></td>
-<td class="colLast"><code>"Tue Nov  6 14:44:50 UTC 2018"</code></td>
+<td class="colLast"><code>"Wed Nov  7 14:44:57 UTC 2018"</code></td>
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><a name="org.apache.hadoop.hbase.Version.revision">
@@ -3838,7 +3838,7 @@
 <!--   -->
 </a><code>public&nbsp;static&nbsp;final&nbsp;<a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a></code></td>
 <td><code><a 
href="org/apache/hadoop/hbase/Version.html#srcChecksum">srcChecksum</a></code></td>
-<td class="colLast"><code>"704999be84a6927f48d112b5a1611ea3"</code></td>
+<td class="colLast"><code>"4a937f77e7e95643ea93d32197bf04dd"</code></td>
 </tr>
 <tr class="rowColor">
 <td class="colFirst"><a name="org.apache.hadoop.hbase.Version.url">

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eafe6020/devapidocs/org/apache/hadoop/hbase/replication/regionserver/Replication.ReplicationStatisticsTask.html
----------------------------------------------------------------------
diff --git 
a/devapidocs/org/apache/hadoop/hbase/replication/regionserver/Replication.ReplicationStatisticsTask.html
 
b/devapidocs/org/apache/hadoop/hbase/replication/regionserver/Replication.ReplicationStatisticsTask.html
index c9c04f7..f9700c4 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/replication/regionserver/Replication.ReplicationStatisticsTask.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/replication/regionserver/Replication.ReplicationStatisticsTask.html
@@ -117,7 +117,7 @@ var activeTableTab = "activeTableTab";
 </dl>
 <hr>
 <br>
-<pre>private static final class <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.231">Replication.ReplicationStatisticsTask</a>
+<pre>private static final class <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.242">Replication.ReplicationStatisticsTask</a>
 extends <a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object</a>
 implements <a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.html?is-external=true";
 title="class or interface in java.lang">Runnable</a></pre>
 <div class="block">Statistics task. Periodically prints the cache statistics 
to the log.</div>
@@ -216,7 +216,7 @@ implements <a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Runnable
 <ul class="blockList">
 <li class="blockList">
 <h4>replicationSink</h4>
-<pre>private final&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationSink.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationSink</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.ReplicationStatisticsTask.html#line.233">replicationSink</a></pre>
+<pre>private final&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationSink.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationSink</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.ReplicationStatisticsTask.html#line.244">replicationSink</a></pre>
 </li>
 </ul>
 <a name="replicationManager">
@@ -225,7 +225,7 @@ implements <a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Runnable
 <ul class="blockListLast">
 <li class="blockList">
 <h4>replicationManager</h4>
-<pre>private final&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceManager.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationSourceManager</a> 
<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.ReplicationStatisticsTask.html#line.234">replicationManager</a></pre>
+<pre>private final&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceManager.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationSourceManager</a> 
<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.ReplicationStatisticsTask.html#line.245">replicationManager</a></pre>
 </li>
 </ul>
 </li>
@@ -242,7 +242,7 @@ implements <a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Runnable
 <ul class="blockListLast">
 <li class="blockList">
 <h4>ReplicationStatisticsTask</h4>
-<pre>public&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.ReplicationStatisticsTask.html#line.236">ReplicationStatisticsTask</a>(<a
 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationSink.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationSink</a>&nbsp;replicationSink,
+<pre>public&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.ReplicationStatisticsTask.html#line.247">ReplicationStatisticsTask</a>(<a
 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationSink.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationSink</a>&nbsp;replicationSink,
                                  <a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceManager.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationSourceManager</a>&nbsp;replicationManager)</pre>
 </li>
 </ul>
@@ -260,7 +260,7 @@ implements <a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Runnable
 <ul class="blockList">
 <li class="blockList">
 <h4>run</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.ReplicationStatisticsTask.html#line.243">run</a>()</pre>
+<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.ReplicationStatisticsTask.html#line.254">run</a>()</pre>
 <dl>
 <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
 <dd><code><a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.html?is-external=true#run--";
 title="class or interface in java.lang">run</a></code>&nbsp;in 
interface&nbsp;<code><a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.html?is-external=true";
 title="class or interface in java.lang">Runnable</a></code></dd>
@@ -273,7 +273,7 @@ implements <a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Runnable
 <ul class="blockListLast">
 <li class="blockList">
 <h4>printStats</h4>
-<pre>private&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.ReplicationStatisticsTask.html#line.248">printStats</a>(<a
 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;stats)</pre>
+<pre>private&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.ReplicationStatisticsTask.html#line.259">printStats</a>(<a
 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;stats)</pre>
 </li>
 </ul>
 </li>

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eafe6020/devapidocs/org/apache/hadoop/hbase/replication/regionserver/Replication.html
----------------------------------------------------------------------
diff --git 
a/devapidocs/org/apache/hadoop/hbase/replication/regionserver/Replication.html 
b/devapidocs/org/apache/hadoop/hbase/replication/regionserver/Replication.html
index 9d52369..6d548bb 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/replication/regionserver/Replication.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/replication/regionserver/Replication.html
@@ -114,7 +114,7 @@ var activeTableTab = "activeTableTab";
 <hr>
 <br>
 <pre>@InterfaceAudience.Private
-public class <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.60">Replication</a>
+public class <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.61">Replication</a>
 extends <a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object</a>
 implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/ReplicationSourceService.html"
 title="interface in 
org.apache.hadoop.hbase.regionserver">ReplicationSourceService</a>, <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/ReplicationSinkService.html"
 title="interface in 
org.apache.hadoop.hbase.regionserver">ReplicationSinkService</a></pre>
 <div class="block">Gateway to Replication. Used by <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/HRegionServer.html"
 title="class in 
org.apache.hadoop.hbase.regionserver"><code>HRegionServer</code></a>.</div>
@@ -356,7 +356,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>LOG</h4>
-<pre>private static final&nbsp;org.slf4j.Logger <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.61">LOG</a></pre>
+<pre>private static final&nbsp;org.slf4j.Logger <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.62">LOG</a></pre>
 </li>
 </ul>
 <a name="isReplicationForBulkLoadDataEnabled">
@@ -365,7 +365,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>isReplicationForBulkLoadDataEnabled</h4>
-<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.63">isReplicationForBulkLoadDataEnabled</a></pre>
+<pre>private&nbsp;boolean <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.64">isReplicationForBulkLoadDataEnabled</a></pre>
 </li>
 </ul>
 <a name="replicationManager">
@@ -374,7 +374,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>replicationManager</h4>
-<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceManager.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationSourceManager</a> 
<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.64">replicationManager</a></pre>
+<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceManager.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationSourceManager</a> 
<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.65">replicationManager</a></pre>
 </li>
 </ul>
 <a name="queueStorage">
@@ -383,7 +383,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>queueStorage</h4>
-<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationQueueStorage.html"
 title="interface in 
org.apache.hadoop.hbase.replication">ReplicationQueueStorage</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.65">queueStorage</a></pre>
+<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationQueueStorage.html"
 title="interface in 
org.apache.hadoop.hbase.replication">ReplicationQueueStorage</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.66">queueStorage</a></pre>
 </li>
 </ul>
 <a name="replicationPeers">
@@ -392,7 +392,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>replicationPeers</h4>
-<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationPeers.html"
 title="class in org.apache.hadoop.hbase.replication">ReplicationPeers</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.66">replicationPeers</a></pre>
+<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationPeers.html"
 title="class in org.apache.hadoop.hbase.replication">ReplicationPeers</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.67">replicationPeers</a></pre>
 </li>
 </ul>
 <a name="replicationTracker">
@@ -401,7 +401,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>replicationTracker</h4>
-<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationTracker.html"
 title="interface in 
org.apache.hadoop.hbase.replication">ReplicationTracker</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.67">replicationTracker</a></pre>
+<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationTracker.html"
 title="interface in 
org.apache.hadoop.hbase.replication">ReplicationTracker</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.68">replicationTracker</a></pre>
 </li>
 </ul>
 <a name="conf">
@@ -410,7 +410,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>conf</h4>
-<pre>private&nbsp;org.apache.hadoop.conf.Configuration <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.68">conf</a></pre>
+<pre>private&nbsp;org.apache.hadoop.conf.Configuration <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.69">conf</a></pre>
 </li>
 </ul>
 <a name="replicationSink">
@@ -419,7 +419,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>replicationSink</h4>
-<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationSink.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationSink</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.69">replicationSink</a></pre>
+<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationSink.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationSink</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.70">replicationSink</a></pre>
 </li>
 </ul>
 <a name="syncReplicationPeerInfoProvider">
@@ -428,7 +428,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>syncReplicationPeerInfoProvider</h4>
-<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/SyncReplicationPeerInfoProvider.html"
 title="interface in 
org.apache.hadoop.hbase.replication.regionserver">SyncReplicationPeerInfoProvider</a>
 <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.70">syncReplicationPeerInfoProvider</a></pre>
+<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/SyncReplicationPeerInfoProvider.html"
 title="interface in 
org.apache.hadoop.hbase.replication.regionserver">SyncReplicationPeerInfoProvider</a>
 <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.71">syncReplicationPeerInfoProvider</a></pre>
 </li>
 </ul>
 <a name="server">
@@ -437,7 +437,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>server</h4>
-<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/Server.html" title="interface 
in org.apache.hadoop.hbase">Server</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.72">server</a></pre>
+<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/Server.html" title="interface 
in org.apache.hadoop.hbase">Server</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.73">server</a></pre>
 </li>
 </ul>
 <a name="scheduleThreadPool">
@@ -446,7 +446,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>scheduleThreadPool</h4>
-<pre>private&nbsp;<a 
href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ScheduledExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ScheduledExecutorService</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.74">scheduleThreadPool</a></pre>
+<pre>private&nbsp;<a 
href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ScheduledExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ScheduledExecutorService</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.75">scheduleThreadPool</a></pre>
 <div class="block">Statistics thread schedule pool</div>
 </li>
 </ul>
@@ -456,7 +456,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>statsThreadPeriod</h4>
-<pre>private&nbsp;int <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.75">statsThreadPeriod</a></pre>
+<pre>private&nbsp;int <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.76">statsThreadPeriod</a></pre>
 </li>
 </ul>
 <a name="replicationLoad">
@@ -465,7 +465,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>replicationLoad</h4>
-<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationLoad.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationLoad</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.77">replicationLoad</a></pre>
+<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationLoad.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationLoad</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.78">replicationLoad</a></pre>
 </li>
 </ul>
 <a name="peerProcedureHandler">
@@ -474,7 +474,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockListLast">
 <li class="blockList">
 <h4>peerProcedureHandler</h4>
-<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/PeerProcedureHandler.html"
 title="interface in 
org.apache.hadoop.hbase.replication.regionserver">PeerProcedureHandler</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.79">peerProcedureHandler</a></pre>
+<pre>private&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/PeerProcedureHandler.html"
 title="interface in 
org.apache.hadoop.hbase.replication.regionserver">PeerProcedureHandler</a> <a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.80">peerProcedureHandler</a></pre>
 </li>
 </ul>
 </li>
@@ -491,7 +491,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockListLast">
 <li class="blockList">
 <h4>Replication</h4>
-<pre>public&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.84">Replication</a>()</pre>
+<pre>public&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.85">Replication</a>()</pre>
 <div class="block">Empty constructor</div>
 </li>
 </ul>
@@ -509,7 +509,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>initialize</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.88">initialize</a>(<a
 href="../../../../../../org/apache/hadoop/hbase/Server.html" title="interface 
in org.apache.hadoop.hbase">Server</a>&nbsp;server,
+<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.89">initialize</a>(<a
 href="../../../../../../org/apache/hadoop/hbase/Server.html" title="interface 
in org.apache.hadoop.hbase">Server</a>&nbsp;server,
                        org.apache.hadoop.fs.FileSystem&nbsp;fs,
                        org.apache.hadoop.fs.Path&nbsp;logDir,
                        org.apache.hadoop.fs.Path&nbsp;oldLogDir,
@@ -533,7 +533,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>getPeerProcedureHandler</h4>
-<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/PeerProcedureHandler.html"
 title="interface in 
org.apache.hadoop.hbase.replication.regionserver">PeerProcedureHandler</a>&nbsp;<a
 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.152">getPeerProcedureHandler</a>()</pre>
+<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/PeerProcedureHandler.html"
 title="interface in 
org.apache.hadoop.hbase.replication.regionserver">PeerProcedureHandler</a>&nbsp;<a
 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.163">getPeerProcedureHandler</a>()</pre>
 <div class="block"><span class="descfrmTypeLabel">Description copied from 
interface:&nbsp;<code><a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/ReplicationSourceService.html#getPeerProcedureHandler--">ReplicationSourceService</a></code></span></div>
 <div class="block">Returns a Handler to handle peer procedures.</div>
 <dl>
@@ -548,7 +548,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>stopReplicationService</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.160">stopReplicationService</a>()</pre>
+<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.171">stopReplicationService</a>()</pre>
 <div class="block">Stops replication service.</div>
 <dl>
 <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
@@ -562,7 +562,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>join</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.167">join</a>()</pre>
+<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.178">join</a>()</pre>
 <div class="block">Join with the replication threads</div>
 </li>
 </ul>
@@ -572,7 +572,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>replicateLogEntries</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.189">replicateLogEntries</a>(<a
 
href="https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in 
java.util">List</a>&lt;org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.WALEntry&gt;&nbsp;entries,
+<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.200">replicateLogEntries</a>(<a
 
href="https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in 
java.util">List</a>&lt;org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.WALEntry&gt;&nbsp;entries,
                                 <a 
href="../../../../../../org/apache/hadoop/hbase/CellScanner.html" 
title="interface in org.apache.hadoop.hbase">CellScanner</a>&nbsp;cells,
                                 <a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String</a>&nbsp;replicationClusterId,
                                 <a 
href="https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String</a>&nbsp;sourceBaseNamespaceDirPath,
@@ -603,7 +603,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>startReplicationService</h4>
-<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.202">startReplicationService</a>()
+<pre>public&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.213">startReplicationService</a>()
                              throws <a 
href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException</a></pre>
 <div class="block">If replication is enabled and this cluster is a master,
  it starts</div>
@@ -621,7 +621,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>getReplicationManager</h4>
-<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceManager.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationSourceManager</a>&nbsp;<a
 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.214">getReplicationManager</a>()</pre>
+<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceManager.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationSourceManager</a>&nbsp;<a
 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.225">getReplicationManager</a>()</pre>
 <div class="block">Get the replication sources manager</div>
 <dl>
 <dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
@@ -637,7 +637,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>addHFileRefsToQueue</h4>
-<pre>void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.218">addHFileRefsToQueue</a>(<a
 href="../../../../../../org/apache/hadoop/hbase/TableName.html" title="class 
in org.apache.hadoop.hbase">TableName</a>&nbsp;tableName,
+<pre>void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.229">addHFileRefsToQueue</a>(<a
 href="../../../../../../org/apache/hadoop/hbase/TableName.html" title="class 
in org.apache.hadoop.hbase">TableName</a>&nbsp;tableName,
                          byte[]&nbsp;family,
                          <a 
href="https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List</a>&lt;<a 
href="../../../../../../org/apache/hadoop/hbase/util/Pair.html" title="class in 
org.apache.hadoop.hbase.util">Pair</a>&lt;org.apache.hadoop.fs.Path,org.apache.hadoop.fs.Path&gt;&gt;&nbsp;pairs)
                   throws <a 
href="https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException</a></pre>
@@ -653,7 +653,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>refreshAndGetReplicationLoad</h4>
-<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationLoad.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationLoad</a>&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.256">refreshAndGetReplicationLoad</a>()</pre>
+<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/ReplicationLoad.html"
 title="class in 
org.apache.hadoop.hbase.replication.regionserver">ReplicationLoad</a>&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.267">refreshAndGetReplicationLoad</a>()</pre>
 <div class="block"><span class="descfrmTypeLabel">Description copied from 
interface:&nbsp;<code><a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/ReplicationService.html#refreshAndGetReplicationLoad--">ReplicationService</a></code></span></div>
 <div class="block">Refresh and Get ReplicationLoad</div>
 <dl>
@@ -668,7 +668,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>buildReplicationLoad</h4>
-<pre>private&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.265">buildReplicationLoad</a>()</pre>
+<pre>private&nbsp;void&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.276">buildReplicationLoad</a>()</pre>
 </li>
 </ul>
 <a name="getSyncReplicationPeerInfoProvider--">
@@ -677,7 +677,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockList">
 <li class="blockList">
 <h4>getSyncReplicationPeerInfoProvider</h4>
-<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/SyncReplicationPeerInfoProvider.html"
 title="interface in 
org.apache.hadoop.hbase.replication.regionserver">SyncReplicationPeerInfoProvider</a>&nbsp;<a
 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.288">getSyncReplicationPeerInfoProvider</a>()</pre>
+<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/regionserver/SyncReplicationPeerInfoProvider.html"
 title="interface in 
org.apache.hadoop.hbase.replication.regionserver">SyncReplicationPeerInfoProvider</a>&nbsp;<a
 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.299">getSyncReplicationPeerInfoProvider</a>()</pre>
 <div class="block"><span class="descfrmTypeLabel">Description copied from 
interface:&nbsp;<code><a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/ReplicationSourceService.html#getSyncReplicationPeerInfoProvider--">ReplicationSourceService</a></code></span></div>
 <div class="block">Returns an info provider for sync replication peer.</div>
 <dl>
@@ -692,7 +692,7 @@ implements <a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/Repli
 <ul class="blockListLast">
 <li class="blockList">
 <h4>getReplicationPeers</h4>
-<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationPeers.html"
 title="class in 
org.apache.hadoop.hbase.replication">ReplicationPeers</a>&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.293">getReplicationPeers</a>()</pre>
+<pre>public&nbsp;<a 
href="../../../../../../org/apache/hadoop/hbase/replication/ReplicationPeers.html"
 title="class in 
org.apache.hadoop.hbase.replication">ReplicationPeers</a>&nbsp;<a 
href="../../../../../../src-html/org/apache/hadoop/hbase/replication/regionserver/Replication.html#line.304">getReplicationPeers</a>()</pre>
 <div class="block"><span class="descfrmTypeLabel">Description copied from 
interface:&nbsp;<code><a 
href="../../../../../../org/apache/hadoop/hbase/regionserver/ReplicationSourceService.html#getReplicationPeers--">ReplicationSourceService</a></code></span></div>
 <div class="block">Return the replication peers.</div>
 <dl>

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eafe6020/devapidocs/src-html/org/apache/hadoop/hbase/Version.html
----------------------------------------------------------------------
diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/Version.html 
b/devapidocs/src-html/org/apache/hadoop/hbase/Version.html
index 520b923..662b976 100644
--- a/devapidocs/src-html/org/apache/hadoop/hbase/Version.html
+++ b/devapidocs/src-html/org/apache/hadoop/hbase/Version.html
@@ -18,9 +18,9 @@
 <span class="sourceLineNo">010</span>  public static final String version = 
"3.0.0-SNAPSHOT";<a name="line.10"></a>
 <span class="sourceLineNo">011</span>  public static final String revision = 
"";<a name="line.11"></a>
 <span class="sourceLineNo">012</span>  public static final String user = 
"jenkins";<a name="line.12"></a>
-<span class="sourceLineNo">013</span>  public static final String date = "Tue 
Nov  6 14:44:50 UTC 2018";<a name="line.13"></a>
+<span class="sourceLineNo">013</span>  public static final String date = "Wed 
Nov  7 14:44:57 UTC 2018";<a name="line.13"></a>
 <span class="sourceLineNo">014</span>  public static final String url = 
"git://jenkins-websites1.apache.org/home/jenkins/jenkins-slave/workspace/hbase_generate_website/hbase";<a
 name="line.14"></a>
-<span class="sourceLineNo">015</span>  public static final String srcChecksum 
= "704999be84a6927f48d112b5a1611ea3";<a name="line.15"></a>
+<span class="sourceLineNo">015</span>  public static final String srcChecksum 
= "4a937f77e7e95643ea93d32197bf04dd";<a name="line.15"></a>
 <span class="sourceLineNo">016</span>}<a name="line.16"></a>
 
 

Reply via email to