You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by gi...@apache.org on 2018/02/07 15:14:14 UTC

[20/42] hbase-site git commit: Published site at .

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/devapidocs/src-html/org/apache/hadoop/hbase/util/DrainBarrier.html
----------------------------------------------------------------------
diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/util/DrainBarrier.html b/devapidocs/src-html/org/apache/hadoop/hbase/util/DrainBarrier.html
deleted file mode 100644
index 6c5f9e0..0000000
--- a/devapidocs/src-html/org/apache/hadoop/hbase/util/DrainBarrier.html
+++ /dev/null
@@ -1,206 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
-<html lang="en">
-<head>
-<title>Source code</title>
-<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
-</head>
-<body>
-<div class="sourceContainer">
-<pre><span class="sourceLineNo">001</span>/**<a name="line.1"></a>
-<span class="sourceLineNo">002</span> *<a name="line.2"></a>
-<span class="sourceLineNo">003</span> * Licensed to the Apache Software Foundation (ASF) under one<a name="line.3"></a>
-<span class="sourceLineNo">004</span> * or more contributor license agreements.  See the NOTICE file<a name="line.4"></a>
-<span class="sourceLineNo">005</span> * distributed with this work for additional information<a name="line.5"></a>
-<span class="sourceLineNo">006</span> * regarding copyright ownership.  The ASF licenses this file<a name="line.6"></a>
-<span class="sourceLineNo">007</span> * to you under the Apache License, Version 2.0 (the<a name="line.7"></a>
-<span class="sourceLineNo">008</span> * "License"); you may not use this file except in compliance<a name="line.8"></a>
-<span class="sourceLineNo">009</span> * with the License.  You may obtain a copy of the License at<a name="line.9"></a>
-<span class="sourceLineNo">010</span> *<a name="line.10"></a>
-<span class="sourceLineNo">011</span> *     http://www.apache.org/licenses/LICENSE-2.0<a name="line.11"></a>
-<span class="sourceLineNo">012</span> *<a name="line.12"></a>
-<span class="sourceLineNo">013</span> * Unless required by applicable law or agreed to in writing, software<a name="line.13"></a>
-<span class="sourceLineNo">014</span> * distributed under the License is distributed on an "AS IS" BASIS,<a name="line.14"></a>
-<span class="sourceLineNo">015</span> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.<a name="line.15"></a>
-<span class="sourceLineNo">016</span> * See the License for the specific language governing permissions and<a name="line.16"></a>
-<span class="sourceLineNo">017</span> * limitations under the License.<a name="line.17"></a>
-<span class="sourceLineNo">018</span> */<a name="line.18"></a>
-<span class="sourceLineNo">019</span><a name="line.19"></a>
-<span class="sourceLineNo">020</span>package org.apache.hadoop.hbase.util;<a name="line.20"></a>
-<span class="sourceLineNo">021</span><a name="line.21"></a>
-<span class="sourceLineNo">022</span>import java.util.concurrent.atomic.AtomicLong;<a name="line.22"></a>
-<span class="sourceLineNo">023</span><a name="line.23"></a>
-<span class="sourceLineNo">024</span>import org.apache.yetus.audience.InterfaceAudience;<a name="line.24"></a>
-<span class="sourceLineNo">025</span><a name="line.25"></a>
-<span class="sourceLineNo">026</span>/**<a name="line.26"></a>
-<span class="sourceLineNo">027</span> * A simple barrier that can be used by classes that need to wait for some operations to<a name="line.27"></a>
-<span class="sourceLineNo">028</span> * finish before stopping/closing/etc. forever.<a name="line.28"></a>
-<span class="sourceLineNo">029</span> */<a name="line.29"></a>
-<span class="sourceLineNo">030</span>@InterfaceAudience.Private<a name="line.30"></a>
-<span class="sourceLineNo">031</span>public class DrainBarrier {<a name="line.31"></a>
-<span class="sourceLineNo">032</span>  /**<a name="line.32"></a>
-<span class="sourceLineNo">033</span>   * Contains the number of outstanding operations, as well as flags.<a name="line.33"></a>
-<span class="sourceLineNo">034</span>   * Initially, the number of operations is 1. Each beginOp increments, and endOp decrements it.<a name="line.34"></a>
-<span class="sourceLineNo">035</span>   * beginOp does not proceed when it sees the draining flag. When stop is called, it atomically<a name="line.35"></a>
-<span class="sourceLineNo">036</span>   * decrements the number of operations (the initial 1) and sets the draining flag. If stop did<a name="line.36"></a>
-<span class="sourceLineNo">037</span>   * the decrement to zero, that means there are no more operations outstanding, so stop is done.<a name="line.37"></a>
-<span class="sourceLineNo">038</span>   * Otherwise, stop blocks, and the endOp that decrements the count to 0 unblocks it.<a name="line.38"></a>
-<span class="sourceLineNo">039</span>   */<a name="line.39"></a>
-<span class="sourceLineNo">040</span>  private final AtomicLong valueAndFlags = new AtomicLong(inc(0));<a name="line.40"></a>
-<span class="sourceLineNo">041</span>  private final static long DRAINING_FLAG = 0x1;<a name="line.41"></a>
-<span class="sourceLineNo">042</span>  private final static int FLAG_BIT_COUNT = 1;<a name="line.42"></a>
-<span class="sourceLineNo">043</span><a name="line.43"></a>
-<span class="sourceLineNo">044</span>  /**<a name="line.44"></a>
-<span class="sourceLineNo">045</span>   * Tries to start an operation.<a name="line.45"></a>
-<span class="sourceLineNo">046</span>   * @return false iff the stop is in progress, and the operation cannot be started.<a name="line.46"></a>
-<span class="sourceLineNo">047</span>   */<a name="line.47"></a>
-<span class="sourceLineNo">048</span>  public boolean beginOp() {<a name="line.48"></a>
-<span class="sourceLineNo">049</span>    long oldValAndFlags;<a name="line.49"></a>
-<span class="sourceLineNo">050</span>    do {<a name="line.50"></a>
-<span class="sourceLineNo">051</span>      oldValAndFlags = valueAndFlags.get();<a name="line.51"></a>
-<span class="sourceLineNo">052</span>      if (isDraining(oldValAndFlags)) return false;<a name="line.52"></a>
-<span class="sourceLineNo">053</span>    } while (!valueAndFlags.compareAndSet(oldValAndFlags, inc(oldValAndFlags)));<a name="line.53"></a>
-<span class="sourceLineNo">054</span>    return true;<a name="line.54"></a>
-<span class="sourceLineNo">055</span>  }<a name="line.55"></a>
-<span class="sourceLineNo">056</span><a name="line.56"></a>
-<span class="sourceLineNo">057</span>  /**<a name="line.57"></a>
-<span class="sourceLineNo">058</span>   * Ends the operation. Unblocks the blocked caller of stop, if necessary.<a name="line.58"></a>
-<span class="sourceLineNo">059</span>   */<a name="line.59"></a>
-<span class="sourceLineNo">060</span>  @edu.umd.cs.findbugs.annotations.SuppressWarnings(value="NN_NAKED_NOTIFY",<a name="line.60"></a>
-<span class="sourceLineNo">061</span>      justification="First, we do change the state before notify, 2nd, it doesn't even matter")<a name="line.61"></a>
-<span class="sourceLineNo">062</span>  public void endOp() {<a name="line.62"></a>
-<span class="sourceLineNo">063</span>    long oldValAndFlags;<a name="line.63"></a>
-<span class="sourceLineNo">064</span>    do {<a name="line.64"></a>
-<span class="sourceLineNo">065</span>      oldValAndFlags = valueAndFlags.get();<a name="line.65"></a>
-<span class="sourceLineNo">066</span>      long unacceptableCount = isDraining(oldValAndFlags) ? 0 : 1;<a name="line.66"></a>
-<span class="sourceLineNo">067</span>      if (getValue(oldValAndFlags) == unacceptableCount) {<a name="line.67"></a>
-<span class="sourceLineNo">068</span>        throw new AssertionError("endOp called without corresponding beginOp call ("<a name="line.68"></a>
-<span class="sourceLineNo">069</span>          + "the current count is " + unacceptableCount + ")");<a name="line.69"></a>
-<span class="sourceLineNo">070</span>      }<a name="line.70"></a>
-<span class="sourceLineNo">071</span>    } while (!valueAndFlags.compareAndSet(oldValAndFlags, dec(oldValAndFlags)));<a name="line.71"></a>
-<span class="sourceLineNo">072</span>    if (getValue(oldValAndFlags) == 1) {<a name="line.72"></a>
-<span class="sourceLineNo">073</span>      synchronized (this) { this.notifyAll(); }<a name="line.73"></a>
-<span class="sourceLineNo">074</span>    }<a name="line.74"></a>
-<span class="sourceLineNo">075</span>  }<a name="line.75"></a>
-<span class="sourceLineNo">076</span><a name="line.76"></a>
-<span class="sourceLineNo">077</span>  /**<a name="line.77"></a>
-<span class="sourceLineNo">078</span>   * Blocks new operations from starting, waits for the current ones to drain.<a name="line.78"></a>
-<span class="sourceLineNo">079</span>   * If someone already called it, returns immediately, which is currently unavoidable as<a name="line.79"></a>
-<span class="sourceLineNo">080</span>   * most of the users stop and close things right and left, and hope for the best.<a name="line.80"></a>
-<span class="sourceLineNo">081</span>   * stopAndWaitForOpsOnce asserts instead.<a name="line.81"></a>
-<span class="sourceLineNo">082</span>   * @throws InterruptedException the wait for operations has been interrupted.<a name="line.82"></a>
-<span class="sourceLineNo">083</span>   */<a name="line.83"></a>
-<span class="sourceLineNo">084</span>  public void stopAndDrainOps() throws InterruptedException {<a name="line.84"></a>
-<span class="sourceLineNo">085</span>    stopAndDrainOps(true);<a name="line.85"></a>
-<span class="sourceLineNo">086</span>  }<a name="line.86"></a>
-<span class="sourceLineNo">087</span><a name="line.87"></a>
-<span class="sourceLineNo">088</span>  /**<a name="line.88"></a>
-<span class="sourceLineNo">089</span>   * Blocks new operations from starting, waits for the current ones to drain.<a name="line.89"></a>
-<span class="sourceLineNo">090</span>   * Can only be called once.<a name="line.90"></a>
-<span class="sourceLineNo">091</span>   * @throws InterruptedException the wait for operations has been interrupted.<a name="line.91"></a>
-<span class="sourceLineNo">092</span>   */<a name="line.92"></a>
-<span class="sourceLineNo">093</span>  public void stopAndDrainOpsOnce() throws InterruptedException {<a name="line.93"></a>
-<span class="sourceLineNo">094</span>    stopAndDrainOps(false);<a name="line.94"></a>
-<span class="sourceLineNo">095</span>  }<a name="line.95"></a>
-<span class="sourceLineNo">096</span><a name="line.96"></a>
-<span class="sourceLineNo">097</span>  /**<a name="line.97"></a>
-<span class="sourceLineNo">098</span>   * @param ignoreRepeatedCalls If this is true and somebody already called stop, this method<a name="line.98"></a>
-<span class="sourceLineNo">099</span>   *                            will return immediately if true; if this is false and somebody<a name="line.99"></a>
-<span class="sourceLineNo">100</span>   *                            already called stop, it will assert.<a name="line.100"></a>
-<span class="sourceLineNo">101</span>   */<a name="line.101"></a>
-<span class="sourceLineNo">102</span>  // Justification for warnings - wait is not unconditional, and contrary to what WA_NOT_IN_LOOP<a name="line.102"></a>
-<span class="sourceLineNo">103</span>  // description says we are not waiting on multiple conditions.<a name="line.103"></a>
-<span class="sourceLineNo">104</span>  @edu.umd.cs.findbugs.annotations.SuppressWarnings({"UW_UNCOND_WAIT", "WA_NOT_IN_LOOP"})<a name="line.104"></a>
-<span class="sourceLineNo">105</span>  private void stopAndDrainOps(boolean ignoreRepeatedCalls) throws InterruptedException {<a name="line.105"></a>
-<span class="sourceLineNo">106</span>    long oldValAndFlags;<a name="line.106"></a>
-<span class="sourceLineNo">107</span>    do {<a name="line.107"></a>
-<span class="sourceLineNo">108</span>      oldValAndFlags = valueAndFlags.get();<a name="line.108"></a>
-<span class="sourceLineNo">109</span>      if (isDraining(oldValAndFlags)) {<a name="line.109"></a>
-<span class="sourceLineNo">110</span>        if (ignoreRepeatedCalls) return;<a name="line.110"></a>
-<span class="sourceLineNo">111</span>        throw new AssertionError("stopAndWaitForOpsOnce called more than once");<a name="line.111"></a>
-<span class="sourceLineNo">112</span>      }<a name="line.112"></a>
-<span class="sourceLineNo">113</span>    } while (!valueAndFlags.compareAndSet(oldValAndFlags, dec(oldValAndFlags) | DRAINING_FLAG));<a name="line.113"></a>
-<span class="sourceLineNo">114</span>    if (getValue(oldValAndFlags) == 1) return; // There were no operations outstanding.<a name="line.114"></a>
-<span class="sourceLineNo">115</span>    synchronized (this) { this.wait(); }<a name="line.115"></a>
-<span class="sourceLineNo">116</span>  }<a name="line.116"></a>
-<span class="sourceLineNo">117</span><a name="line.117"></a>
-<span class="sourceLineNo">118</span>  // Helper methods.<a name="line.118"></a>
-<span class="sourceLineNo">119</span>  private static final boolean isDraining(long valueAndFlags) {<a name="line.119"></a>
-<span class="sourceLineNo">120</span>    return (valueAndFlags &amp; DRAINING_FLAG) == DRAINING_FLAG;<a name="line.120"></a>
-<span class="sourceLineNo">121</span>  }<a name="line.121"></a>
-<span class="sourceLineNo">122</span><a name="line.122"></a>
-<span class="sourceLineNo">123</span>  private static final long getValue(long valueAndFlags) {<a name="line.123"></a>
-<span class="sourceLineNo">124</span>    return valueAndFlags &gt;&gt; FLAG_BIT_COUNT;<a name="line.124"></a>
-<span class="sourceLineNo">125</span>  }<a name="line.125"></a>
-<span class="sourceLineNo">126</span><a name="line.126"></a>
-<span class="sourceLineNo">127</span>  private static final long inc(long valueAndFlags) {<a name="line.127"></a>
-<span class="sourceLineNo">128</span>    return valueAndFlags + (1 &lt;&lt; FLAG_BIT_COUNT); // Not checking for overflow.<a name="line.128"></a>
-<span class="sourceLineNo">129</span>  }<a name="line.129"></a>
-<span class="sourceLineNo">130</span><a name="line.130"></a>
-<span class="sourceLineNo">131</span>  private static final long dec(long valueAndFlags) {<a name="line.131"></a>
-<span class="sourceLineNo">132</span>    return valueAndFlags - (1 &lt;&lt; FLAG_BIT_COUNT); // Negative overflow checked outside.<a name="line.132"></a>
-<span class="sourceLineNo">133</span>  }<a name="line.133"></a>
-<span class="sourceLineNo">134</span>}<a name="line.134"></a>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-</pre>
-</div>
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/devapidocs/src-html/org/apache/hadoop/hbase/util/JVMClusterUtil.MasterThread.html
----------------------------------------------------------------------
diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/util/JVMClusterUtil.MasterThread.html b/devapidocs/src-html/org/apache/hadoop/hbase/util/JVMClusterUtil.MasterThread.html
index c4390b5..f9d05cb 100644
--- a/devapidocs/src-html/org/apache/hadoop/hbase/util/JVMClusterUtil.MasterThread.html
+++ b/devapidocs/src-html/org/apache/hadoop/hbase/util/JVMClusterUtil.MasterThread.html
@@ -305,46 +305,42 @@
 <span class="sourceLineNo">297</span>        for (RegionServerThread t : regionservers) {<a name="line.297"></a>
 <span class="sourceLineNo">298</span>          if (t.isAlive()) {<a name="line.298"></a>
 <span class="sourceLineNo">299</span>            LOG.warn("RegionServerThreads taking too long to stop, interrupting; thread dump "  +<a name="line.299"></a>
-<span class="sourceLineNo">300</span>              "if &gt; three attempts");<a name="line.300"></a>
+<span class="sourceLineNo">300</span>              "if &gt; 3 attempts: i=" + i);<a name="line.300"></a>
 <span class="sourceLineNo">301</span>            if (i &gt; 3) {<a name="line.301"></a>
-<span class="sourceLineNo">302</span>              try {<a name="line.302"></a>
-<span class="sourceLineNo">303</span>                Threads.threadDumpingIsAlive(t.getRegionServer().getThread());<a name="line.303"></a>
-<span class="sourceLineNo">304</span>              } catch (InterruptedException e) {<a name="line.304"></a>
-<span class="sourceLineNo">305</span>                e.printStackTrace();<a name="line.305"></a>
-<span class="sourceLineNo">306</span>              }<a name="line.306"></a>
-<span class="sourceLineNo">307</span>            }<a name="line.307"></a>
-<span class="sourceLineNo">308</span>            t.interrupt();<a name="line.308"></a>
-<span class="sourceLineNo">309</span>          }<a name="line.309"></a>
-<span class="sourceLineNo">310</span>        }<a name="line.310"></a>
-<span class="sourceLineNo">311</span>      }<a name="line.311"></a>
-<span class="sourceLineNo">312</span>    }<a name="line.312"></a>
-<span class="sourceLineNo">313</span><a name="line.313"></a>
-<span class="sourceLineNo">314</span>    if (masters != null) {<a name="line.314"></a>
-<span class="sourceLineNo">315</span>      for (JVMClusterUtil.MasterThread t : masters) {<a name="line.315"></a>
-<span class="sourceLineNo">316</span>        while (t.master.isAlive() &amp;&amp; !wasInterrupted) {<a name="line.316"></a>
-<span class="sourceLineNo">317</span>          try {<a name="line.317"></a>
-<span class="sourceLineNo">318</span>            // The below has been replaced to debug sometime hangs on end of<a name="line.318"></a>
-<span class="sourceLineNo">319</span>            // tests.<a name="line.319"></a>
-<span class="sourceLineNo">320</span>            // this.master.join():<a name="line.320"></a>
-<span class="sourceLineNo">321</span>            Threads.threadDumpingIsAlive(t.master.getThread());<a name="line.321"></a>
-<span class="sourceLineNo">322</span>          } catch(InterruptedException e) {<a name="line.322"></a>
-<span class="sourceLineNo">323</span>            LOG.info("Got InterruptedException on shutdown - " +<a name="line.323"></a>
-<span class="sourceLineNo">324</span>                "not waiting anymore on master ends", e);<a name="line.324"></a>
-<span class="sourceLineNo">325</span>            wasInterrupted = true;<a name="line.325"></a>
-<span class="sourceLineNo">326</span>          }<a name="line.326"></a>
-<span class="sourceLineNo">327</span>        }<a name="line.327"></a>
-<span class="sourceLineNo">328</span>      }<a name="line.328"></a>
-<span class="sourceLineNo">329</span>    }<a name="line.329"></a>
-<span class="sourceLineNo">330</span>    LOG.info("Shutdown of " +<a name="line.330"></a>
-<span class="sourceLineNo">331</span>      ((masters != null) ? masters.size() : "0") + " master(s) and " +<a name="line.331"></a>
-<span class="sourceLineNo">332</span>      ((regionservers != null) ? regionservers.size() : "0") +<a name="line.332"></a>
-<span class="sourceLineNo">333</span>      " regionserver(s) " + (wasInterrupted ? "interrupted" : "complete"));<a name="line.333"></a>
-<span class="sourceLineNo">334</span><a name="line.334"></a>
-<span class="sourceLineNo">335</span>    if (wasInterrupted){<a name="line.335"></a>
-<span class="sourceLineNo">336</span>      Thread.currentThread().interrupt();<a name="line.336"></a>
-<span class="sourceLineNo">337</span>    }<a name="line.337"></a>
-<span class="sourceLineNo">338</span>  }<a name="line.338"></a>
-<span class="sourceLineNo">339</span>}<a name="line.339"></a>
+<span class="sourceLineNo">302</span>              Threads.printThreadInfo(System.out, "Thread dump " + t.getName());<a name="line.302"></a>
+<span class="sourceLineNo">303</span>            }<a name="line.303"></a>
+<span class="sourceLineNo">304</span>            t.interrupt();<a name="line.304"></a>
+<span class="sourceLineNo">305</span>          }<a name="line.305"></a>
+<span class="sourceLineNo">306</span>        }<a name="line.306"></a>
+<span class="sourceLineNo">307</span>      }<a name="line.307"></a>
+<span class="sourceLineNo">308</span>    }<a name="line.308"></a>
+<span class="sourceLineNo">309</span><a name="line.309"></a>
+<span class="sourceLineNo">310</span>    if (masters != null) {<a name="line.310"></a>
+<span class="sourceLineNo">311</span>      for (JVMClusterUtil.MasterThread t : masters) {<a name="line.311"></a>
+<span class="sourceLineNo">312</span>        while (t.master.isAlive() &amp;&amp; !wasInterrupted) {<a name="line.312"></a>
+<span class="sourceLineNo">313</span>          try {<a name="line.313"></a>
+<span class="sourceLineNo">314</span>            // The below has been replaced to debug sometime hangs on end of<a name="line.314"></a>
+<span class="sourceLineNo">315</span>            // tests.<a name="line.315"></a>
+<span class="sourceLineNo">316</span>            // this.master.join():<a name="line.316"></a>
+<span class="sourceLineNo">317</span>            Threads.threadDumpingIsAlive(t.master.getThread());<a name="line.317"></a>
+<span class="sourceLineNo">318</span>          } catch(InterruptedException e) {<a name="line.318"></a>
+<span class="sourceLineNo">319</span>            LOG.info("Got InterruptedException on shutdown - " +<a name="line.319"></a>
+<span class="sourceLineNo">320</span>                "not waiting anymore on master ends", e);<a name="line.320"></a>
+<span class="sourceLineNo">321</span>            wasInterrupted = true;<a name="line.321"></a>
+<span class="sourceLineNo">322</span>          }<a name="line.322"></a>
+<span class="sourceLineNo">323</span>        }<a name="line.323"></a>
+<span class="sourceLineNo">324</span>      }<a name="line.324"></a>
+<span class="sourceLineNo">325</span>    }<a name="line.325"></a>
+<span class="sourceLineNo">326</span>    LOG.info("Shutdown of " +<a name="line.326"></a>
+<span class="sourceLineNo">327</span>      ((masters != null) ? masters.size() : "0") + " master(s) and " +<a name="line.327"></a>
+<span class="sourceLineNo">328</span>      ((regionservers != null) ? regionservers.size() : "0") +<a name="line.328"></a>
+<span class="sourceLineNo">329</span>      " regionserver(s) " + (wasInterrupted ? "interrupted" : "complete"));<a name="line.329"></a>
+<span class="sourceLineNo">330</span><a name="line.330"></a>
+<span class="sourceLineNo">331</span>    if (wasInterrupted){<a name="line.331"></a>
+<span class="sourceLineNo">332</span>      Thread.currentThread().interrupt();<a name="line.332"></a>
+<span class="sourceLineNo">333</span>    }<a name="line.333"></a>
+<span class="sourceLineNo">334</span>  }<a name="line.334"></a>
+<span class="sourceLineNo">335</span>}<a name="line.335"></a>
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/devapidocs/src-html/org/apache/hadoop/hbase/util/JVMClusterUtil.RegionServerThread.html
----------------------------------------------------------------------
diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/util/JVMClusterUtil.RegionServerThread.html b/devapidocs/src-html/org/apache/hadoop/hbase/util/JVMClusterUtil.RegionServerThread.html
index c4390b5..f9d05cb 100644
--- a/devapidocs/src-html/org/apache/hadoop/hbase/util/JVMClusterUtil.RegionServerThread.html
+++ b/devapidocs/src-html/org/apache/hadoop/hbase/util/JVMClusterUtil.RegionServerThread.html
@@ -305,46 +305,42 @@
 <span class="sourceLineNo">297</span>        for (RegionServerThread t : regionservers) {<a name="line.297"></a>
 <span class="sourceLineNo">298</span>          if (t.isAlive()) {<a name="line.298"></a>
 <span class="sourceLineNo">299</span>            LOG.warn("RegionServerThreads taking too long to stop, interrupting; thread dump "  +<a name="line.299"></a>
-<span class="sourceLineNo">300</span>              "if &gt; three attempts");<a name="line.300"></a>
+<span class="sourceLineNo">300</span>              "if &gt; 3 attempts: i=" + i);<a name="line.300"></a>
 <span class="sourceLineNo">301</span>            if (i &gt; 3) {<a name="line.301"></a>
-<span class="sourceLineNo">302</span>              try {<a name="line.302"></a>
-<span class="sourceLineNo">303</span>                Threads.threadDumpingIsAlive(t.getRegionServer().getThread());<a name="line.303"></a>
-<span class="sourceLineNo">304</span>              } catch (InterruptedException e) {<a name="line.304"></a>
-<span class="sourceLineNo">305</span>                e.printStackTrace();<a name="line.305"></a>
-<span class="sourceLineNo">306</span>              }<a name="line.306"></a>
-<span class="sourceLineNo">307</span>            }<a name="line.307"></a>
-<span class="sourceLineNo">308</span>            t.interrupt();<a name="line.308"></a>
-<span class="sourceLineNo">309</span>          }<a name="line.309"></a>
-<span class="sourceLineNo">310</span>        }<a name="line.310"></a>
-<span class="sourceLineNo">311</span>      }<a name="line.311"></a>
-<span class="sourceLineNo">312</span>    }<a name="line.312"></a>
-<span class="sourceLineNo">313</span><a name="line.313"></a>
-<span class="sourceLineNo">314</span>    if (masters != null) {<a name="line.314"></a>
-<span class="sourceLineNo">315</span>      for (JVMClusterUtil.MasterThread t : masters) {<a name="line.315"></a>
-<span class="sourceLineNo">316</span>        while (t.master.isAlive() &amp;&amp; !wasInterrupted) {<a name="line.316"></a>
-<span class="sourceLineNo">317</span>          try {<a name="line.317"></a>
-<span class="sourceLineNo">318</span>            // The below has been replaced to debug sometime hangs on end of<a name="line.318"></a>
-<span class="sourceLineNo">319</span>            // tests.<a name="line.319"></a>
-<span class="sourceLineNo">320</span>            // this.master.join():<a name="line.320"></a>
-<span class="sourceLineNo">321</span>            Threads.threadDumpingIsAlive(t.master.getThread());<a name="line.321"></a>
-<span class="sourceLineNo">322</span>          } catch(InterruptedException e) {<a name="line.322"></a>
-<span class="sourceLineNo">323</span>            LOG.info("Got InterruptedException on shutdown - " +<a name="line.323"></a>
-<span class="sourceLineNo">324</span>                "not waiting anymore on master ends", e);<a name="line.324"></a>
-<span class="sourceLineNo">325</span>            wasInterrupted = true;<a name="line.325"></a>
-<span class="sourceLineNo">326</span>          }<a name="line.326"></a>
-<span class="sourceLineNo">327</span>        }<a name="line.327"></a>
-<span class="sourceLineNo">328</span>      }<a name="line.328"></a>
-<span class="sourceLineNo">329</span>    }<a name="line.329"></a>
-<span class="sourceLineNo">330</span>    LOG.info("Shutdown of " +<a name="line.330"></a>
-<span class="sourceLineNo">331</span>      ((masters != null) ? masters.size() : "0") + " master(s) and " +<a name="line.331"></a>
-<span class="sourceLineNo">332</span>      ((regionservers != null) ? regionservers.size() : "0") +<a name="line.332"></a>
-<span class="sourceLineNo">333</span>      " regionserver(s) " + (wasInterrupted ? "interrupted" : "complete"));<a name="line.333"></a>
-<span class="sourceLineNo">334</span><a name="line.334"></a>
-<span class="sourceLineNo">335</span>    if (wasInterrupted){<a name="line.335"></a>
-<span class="sourceLineNo">336</span>      Thread.currentThread().interrupt();<a name="line.336"></a>
-<span class="sourceLineNo">337</span>    }<a name="line.337"></a>
-<span class="sourceLineNo">338</span>  }<a name="line.338"></a>
-<span class="sourceLineNo">339</span>}<a name="line.339"></a>
+<span class="sourceLineNo">302</span>              Threads.printThreadInfo(System.out, "Thread dump " + t.getName());<a name="line.302"></a>
+<span class="sourceLineNo">303</span>            }<a name="line.303"></a>
+<span class="sourceLineNo">304</span>            t.interrupt();<a name="line.304"></a>
+<span class="sourceLineNo">305</span>          }<a name="line.305"></a>
+<span class="sourceLineNo">306</span>        }<a name="line.306"></a>
+<span class="sourceLineNo">307</span>      }<a name="line.307"></a>
+<span class="sourceLineNo">308</span>    }<a name="line.308"></a>
+<span class="sourceLineNo">309</span><a name="line.309"></a>
+<span class="sourceLineNo">310</span>    if (masters != null) {<a name="line.310"></a>
+<span class="sourceLineNo">311</span>      for (JVMClusterUtil.MasterThread t : masters) {<a name="line.311"></a>
+<span class="sourceLineNo">312</span>        while (t.master.isAlive() &amp;&amp; !wasInterrupted) {<a name="line.312"></a>
+<span class="sourceLineNo">313</span>          try {<a name="line.313"></a>
+<span class="sourceLineNo">314</span>            // The below has been replaced to debug sometime hangs on end of<a name="line.314"></a>
+<span class="sourceLineNo">315</span>            // tests.<a name="line.315"></a>
+<span class="sourceLineNo">316</span>            // this.master.join():<a name="line.316"></a>
+<span class="sourceLineNo">317</span>            Threads.threadDumpingIsAlive(t.master.getThread());<a name="line.317"></a>
+<span class="sourceLineNo">318</span>          } catch(InterruptedException e) {<a name="line.318"></a>
+<span class="sourceLineNo">319</span>            LOG.info("Got InterruptedException on shutdown - " +<a name="line.319"></a>
+<span class="sourceLineNo">320</span>                "not waiting anymore on master ends", e);<a name="line.320"></a>
+<span class="sourceLineNo">321</span>            wasInterrupted = true;<a name="line.321"></a>
+<span class="sourceLineNo">322</span>          }<a name="line.322"></a>
+<span class="sourceLineNo">323</span>        }<a name="line.323"></a>
+<span class="sourceLineNo">324</span>      }<a name="line.324"></a>
+<span class="sourceLineNo">325</span>    }<a name="line.325"></a>
+<span class="sourceLineNo">326</span>    LOG.info("Shutdown of " +<a name="line.326"></a>
+<span class="sourceLineNo">327</span>      ((masters != null) ? masters.size() : "0") + " master(s) and " +<a name="line.327"></a>
+<span class="sourceLineNo">328</span>      ((regionservers != null) ? regionservers.size() : "0") +<a name="line.328"></a>
+<span class="sourceLineNo">329</span>      " regionserver(s) " + (wasInterrupted ? "interrupted" : "complete"));<a name="line.329"></a>
+<span class="sourceLineNo">330</span><a name="line.330"></a>
+<span class="sourceLineNo">331</span>    if (wasInterrupted){<a name="line.331"></a>
+<span class="sourceLineNo">332</span>      Thread.currentThread().interrupt();<a name="line.332"></a>
+<span class="sourceLineNo">333</span>    }<a name="line.333"></a>
+<span class="sourceLineNo">334</span>  }<a name="line.334"></a>
+<span class="sourceLineNo">335</span>}<a name="line.335"></a>
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/devapidocs/src-html/org/apache/hadoop/hbase/util/JVMClusterUtil.html
----------------------------------------------------------------------
diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/util/JVMClusterUtil.html b/devapidocs/src-html/org/apache/hadoop/hbase/util/JVMClusterUtil.html
index c4390b5..f9d05cb 100644
--- a/devapidocs/src-html/org/apache/hadoop/hbase/util/JVMClusterUtil.html
+++ b/devapidocs/src-html/org/apache/hadoop/hbase/util/JVMClusterUtil.html
@@ -305,46 +305,42 @@
 <span class="sourceLineNo">297</span>        for (RegionServerThread t : regionservers) {<a name="line.297"></a>
 <span class="sourceLineNo">298</span>          if (t.isAlive()) {<a name="line.298"></a>
 <span class="sourceLineNo">299</span>            LOG.warn("RegionServerThreads taking too long to stop, interrupting; thread dump "  +<a name="line.299"></a>
-<span class="sourceLineNo">300</span>              "if &gt; three attempts");<a name="line.300"></a>
+<span class="sourceLineNo">300</span>              "if &gt; 3 attempts: i=" + i);<a name="line.300"></a>
 <span class="sourceLineNo">301</span>            if (i &gt; 3) {<a name="line.301"></a>
-<span class="sourceLineNo">302</span>              try {<a name="line.302"></a>
-<span class="sourceLineNo">303</span>                Threads.threadDumpingIsAlive(t.getRegionServer().getThread());<a name="line.303"></a>
-<span class="sourceLineNo">304</span>              } catch (InterruptedException e) {<a name="line.304"></a>
-<span class="sourceLineNo">305</span>                e.printStackTrace();<a name="line.305"></a>
-<span class="sourceLineNo">306</span>              }<a name="line.306"></a>
-<span class="sourceLineNo">307</span>            }<a name="line.307"></a>
-<span class="sourceLineNo">308</span>            t.interrupt();<a name="line.308"></a>
-<span class="sourceLineNo">309</span>          }<a name="line.309"></a>
-<span class="sourceLineNo">310</span>        }<a name="line.310"></a>
-<span class="sourceLineNo">311</span>      }<a name="line.311"></a>
-<span class="sourceLineNo">312</span>    }<a name="line.312"></a>
-<span class="sourceLineNo">313</span><a name="line.313"></a>
-<span class="sourceLineNo">314</span>    if (masters != null) {<a name="line.314"></a>
-<span class="sourceLineNo">315</span>      for (JVMClusterUtil.MasterThread t : masters) {<a name="line.315"></a>
-<span class="sourceLineNo">316</span>        while (t.master.isAlive() &amp;&amp; !wasInterrupted) {<a name="line.316"></a>
-<span class="sourceLineNo">317</span>          try {<a name="line.317"></a>
-<span class="sourceLineNo">318</span>            // The below has been replaced to debug sometime hangs on end of<a name="line.318"></a>
-<span class="sourceLineNo">319</span>            // tests.<a name="line.319"></a>
-<span class="sourceLineNo">320</span>            // this.master.join():<a name="line.320"></a>
-<span class="sourceLineNo">321</span>            Threads.threadDumpingIsAlive(t.master.getThread());<a name="line.321"></a>
-<span class="sourceLineNo">322</span>          } catch(InterruptedException e) {<a name="line.322"></a>
-<span class="sourceLineNo">323</span>            LOG.info("Got InterruptedException on shutdown - " +<a name="line.323"></a>
-<span class="sourceLineNo">324</span>                "not waiting anymore on master ends", e);<a name="line.324"></a>
-<span class="sourceLineNo">325</span>            wasInterrupted = true;<a name="line.325"></a>
-<span class="sourceLineNo">326</span>          }<a name="line.326"></a>
-<span class="sourceLineNo">327</span>        }<a name="line.327"></a>
-<span class="sourceLineNo">328</span>      }<a name="line.328"></a>
-<span class="sourceLineNo">329</span>    }<a name="line.329"></a>
-<span class="sourceLineNo">330</span>    LOG.info("Shutdown of " +<a name="line.330"></a>
-<span class="sourceLineNo">331</span>      ((masters != null) ? masters.size() : "0") + " master(s) and " +<a name="line.331"></a>
-<span class="sourceLineNo">332</span>      ((regionservers != null) ? regionservers.size() : "0") +<a name="line.332"></a>
-<span class="sourceLineNo">333</span>      " regionserver(s) " + (wasInterrupted ? "interrupted" : "complete"));<a name="line.333"></a>
-<span class="sourceLineNo">334</span><a name="line.334"></a>
-<span class="sourceLineNo">335</span>    if (wasInterrupted){<a name="line.335"></a>
-<span class="sourceLineNo">336</span>      Thread.currentThread().interrupt();<a name="line.336"></a>
-<span class="sourceLineNo">337</span>    }<a name="line.337"></a>
-<span class="sourceLineNo">338</span>  }<a name="line.338"></a>
-<span class="sourceLineNo">339</span>}<a name="line.339"></a>
+<span class="sourceLineNo">302</span>              Threads.printThreadInfo(System.out, "Thread dump " + t.getName());<a name="line.302"></a>
+<span class="sourceLineNo">303</span>            }<a name="line.303"></a>
+<span class="sourceLineNo">304</span>            t.interrupt();<a name="line.304"></a>
+<span class="sourceLineNo">305</span>          }<a name="line.305"></a>
+<span class="sourceLineNo">306</span>        }<a name="line.306"></a>
+<span class="sourceLineNo">307</span>      }<a name="line.307"></a>
+<span class="sourceLineNo">308</span>    }<a name="line.308"></a>
+<span class="sourceLineNo">309</span><a name="line.309"></a>
+<span class="sourceLineNo">310</span>    if (masters != null) {<a name="line.310"></a>
+<span class="sourceLineNo">311</span>      for (JVMClusterUtil.MasterThread t : masters) {<a name="line.311"></a>
+<span class="sourceLineNo">312</span>        while (t.master.isAlive() &amp;&amp; !wasInterrupted) {<a name="line.312"></a>
+<span class="sourceLineNo">313</span>          try {<a name="line.313"></a>
+<span class="sourceLineNo">314</span>            // The below has been replaced to debug sometime hangs on end of<a name="line.314"></a>
+<span class="sourceLineNo">315</span>            // tests.<a name="line.315"></a>
+<span class="sourceLineNo">316</span>            // this.master.join():<a name="line.316"></a>
+<span class="sourceLineNo">317</span>            Threads.threadDumpingIsAlive(t.master.getThread());<a name="line.317"></a>
+<span class="sourceLineNo">318</span>          } catch(InterruptedException e) {<a name="line.318"></a>
+<span class="sourceLineNo">319</span>            LOG.info("Got InterruptedException on shutdown - " +<a name="line.319"></a>
+<span class="sourceLineNo">320</span>                "not waiting anymore on master ends", e);<a name="line.320"></a>
+<span class="sourceLineNo">321</span>            wasInterrupted = true;<a name="line.321"></a>
+<span class="sourceLineNo">322</span>          }<a name="line.322"></a>
+<span class="sourceLineNo">323</span>        }<a name="line.323"></a>
+<span class="sourceLineNo">324</span>      }<a name="line.324"></a>
+<span class="sourceLineNo">325</span>    }<a name="line.325"></a>
+<span class="sourceLineNo">326</span>    LOG.info("Shutdown of " +<a name="line.326"></a>
+<span class="sourceLineNo">327</span>      ((masters != null) ? masters.size() : "0") + " master(s) and " +<a name="line.327"></a>
+<span class="sourceLineNo">328</span>      ((regionservers != null) ? regionservers.size() : "0") +<a name="line.328"></a>
+<span class="sourceLineNo">329</span>      " regionserver(s) " + (wasInterrupted ? "interrupted" : "complete"));<a name="line.329"></a>
+<span class="sourceLineNo">330</span><a name="line.330"></a>
+<span class="sourceLineNo">331</span>    if (wasInterrupted){<a name="line.331"></a>
+<span class="sourceLineNo">332</span>      Thread.currentThread().interrupt();<a name="line.332"></a>
+<span class="sourceLineNo">333</span>    }<a name="line.333"></a>
+<span class="sourceLineNo">334</span>  }<a name="line.334"></a>
+<span class="sourceLineNo">335</span>}<a name="line.335"></a>
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/export_control.html
----------------------------------------------------------------------
diff --git a/export_control.html b/export_control.html
index 2c98457..8fb46db 100644
--- a/export_control.html
+++ b/export_control.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; 
       Export Control
@@ -336,7 +336,7 @@ for more details.</p>
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/checkstyle.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/checkstyle.html b/hbase-annotations/checkstyle.html
index 9b9e1e7..958e252 100644
--- a/hbase-annotations/checkstyle.html
+++ b/hbase-annotations/checkstyle.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; Checkstyle Results</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -150,7 +150,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/dependencies.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/dependencies.html b/hbase-annotations/dependencies.html
index 2becaa6..1b8368f 100644
--- a/hbase-annotations/dependencies.html
+++ b/hbase-annotations/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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; Project Dependencies</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -272,7 +272,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

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

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/dependency-info.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/dependency-info.html b/hbase-annotations/dependency-info.html
index 200acef..35cc5b3 100644
--- a/hbase-annotations/dependency-info.html
+++ b/hbase-annotations/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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; Dependency Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -147,7 +147,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/dependency-management.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/dependency-management.html b/hbase-annotations/dependency-management.html
index ab7e360..0611b5d 100644
--- a/hbase-annotations/dependency-management.html
+++ b/hbase-annotations/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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; Project Dependency Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -810,7 +810,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/index.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/index.html b/hbase-annotations/index.html
index 4f7c715..7374c2d 100644
--- a/hbase-annotations/index.html
+++ b/hbase-annotations/index.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; About</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -119,7 +119,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/integration.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/integration.html b/hbase-annotations/integration.html
index 4202cad..e2bea1e 100644
--- a/hbase-annotations/integration.html
+++ b/hbase-annotations/integration.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; CI Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -126,7 +126,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/issue-tracking.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/issue-tracking.html b/hbase-annotations/issue-tracking.html
index 2317ba9..9e3cc13 100644
--- a/hbase-annotations/issue-tracking.html
+++ b/hbase-annotations/issue-tracking.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; Issue Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -123,7 +123,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/license.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/license.html b/hbase-annotations/license.html
index d2ba3f2..852d3c4 100644
--- a/hbase-annotations/license.html
+++ b/hbase-annotations/license.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; Project Licenses</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -326,7 +326,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/mail-lists.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/mail-lists.html b/hbase-annotations/mail-lists.html
index cdbfff4..ae16153 100644
--- a/hbase-annotations/mail-lists.html
+++ b/hbase-annotations/mail-lists.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; Project Mailing Lists</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -176,7 +176,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/plugin-management.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/plugin-management.html b/hbase-annotations/plugin-management.html
index 8a55e5e..4882f7d 100644
--- a/hbase-annotations/plugin-management.html
+++ b/hbase-annotations/plugin-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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; Project Plugin Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -271,7 +271,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/plugins.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/plugins.html b/hbase-annotations/plugins.html
index 9c9123f..b208c94 100644
--- a/hbase-annotations/plugins.html
+++ b/hbase-annotations/plugins.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; Project Plugins</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -222,7 +222,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/project-info.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/project-info.html b/hbase-annotations/project-info.html
index 184d931..8069617 100644
--- a/hbase-annotations/project-info.html
+++ b/hbase-annotations/project-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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; Project Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -167,7 +167,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/project-reports.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/project-reports.html b/hbase-annotations/project-reports.html
index 17839cc..f2121c1 100644
--- a/hbase-annotations/project-reports.html
+++ b/hbase-annotations/project-reports.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; Generated Reports</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -128,7 +128,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/project-summary.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/project-summary.html b/hbase-annotations/project-summary.html
index cca6cfd..6151ec0 100644
--- a/hbase-annotations/project-summary.html
+++ b/hbase-annotations/project-summary.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; Project Summary</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -166,7 +166,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/source-repository.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/source-repository.html b/hbase-annotations/source-repository.html
index e95d2da..5c280f4 100644
--- a/hbase-annotations/source-repository.html
+++ b/hbase-annotations/source-repository.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; Source Code Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -134,7 +134,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-annotations/team-list.html
----------------------------------------------------------------------
diff --git a/hbase-annotations/team-list.html b/hbase-annotations/team-list.html
index d284977..9a63fb4 100644
--- a/hbase-annotations/team-list.html
+++ b/hbase-annotations/team-list.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Annotations &#x2013; Project Team</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -553,7 +553,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/dependencies.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/dependencies.html b/hbase-build-configuration/dependencies.html
index 6655e20..38e8782 100644
--- a/hbase-build-configuration/dependencies.html
+++ b/hbase-build-configuration/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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Build Configuration &#x2013; Project Dependencies</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -330,7 +330,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

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

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/dependency-info.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/dependency-info.html b/hbase-build-configuration/dependency-info.html
index 3d7260b..278e887 100644
--- a/hbase-build-configuration/dependency-info.html
+++ b/hbase-build-configuration/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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Build Configuration &#x2013; Dependency Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -148,7 +148,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/dependency-management.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/dependency-management.html b/hbase-build-configuration/dependency-management.html
index 5ce29b3..061cbdc 100644
--- a/hbase-build-configuration/dependency-management.html
+++ b/hbase-build-configuration/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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Build Configuration &#x2013; Project Dependency Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -810,7 +810,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/dependencies.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/dependencies.html b/hbase-build-configuration/hbase-archetypes/dependencies.html
index 120bfd0..c4a13dc 100644
--- a/hbase-build-configuration/hbase-archetypes/dependencies.html
+++ b/hbase-build-configuration/hbase-archetypes/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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetypes &#x2013; Project Dependencies</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -330,7 +330,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/dependency-convergence.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/dependency-convergence.html b/hbase-build-configuration/hbase-archetypes/dependency-convergence.html
index ab6aae0..633ab14 100644
--- a/hbase-build-configuration/hbase-archetypes/dependency-convergence.html
+++ b/hbase-build-configuration/hbase-archetypes/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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetypes &#x2013; Reactor Dependency Convergence</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -865,7 +865,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/dependency-info.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/dependency-info.html b/hbase-build-configuration/hbase-archetypes/dependency-info.html
index b0493ba..4ddb8f4 100644
--- a/hbase-build-configuration/hbase-archetypes/dependency-info.html
+++ b/hbase-build-configuration/hbase-archetypes/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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetypes &#x2013; Dependency Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -148,7 +148,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/dependency-management.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/dependency-management.html b/hbase-build-configuration/hbase-archetypes/dependency-management.html
index afe285a..6d9c043 100644
--- a/hbase-build-configuration/hbase-archetypes/dependency-management.html
+++ b/hbase-build-configuration/hbase-archetypes/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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetypes &#x2013; Project Dependency Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -810,7 +810,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html
index 2c53af8..d70027d 100644
--- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependencies.html
+++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetype builder &#x2013; Project Dependencies</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -330,7 +330,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html
index 1644c92..8c5914f 100644
--- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-convergence.html
+++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetype builder &#x2013; Reactor Dependency Convergence</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -865,7 +865,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html
index 0f1c43a..92d2ee7 100644
--- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-info.html
+++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetype builder &#x2013; Dependency Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -148,7 +148,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html
index a5335fb..45174d9 100644
--- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/dependency-management.html
+++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetype builder &#x2013; Project Dependency Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -810,7 +810,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html
index d7230a3..6526b0d 100644
--- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.html
+++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/index.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetype builder &#x2013; About</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -119,7 +119,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html
index 2f0f1fe..0d11022 100644
--- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.html
+++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/integration.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetype builder &#x2013; CI Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -126,7 +126,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html
index 99c92f6..e14f9d7 100644
--- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.html
+++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/issue-tracking.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetype builder &#x2013; Issue Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -123,7 +123,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html
index facbb48..b1bd6c7 100644
--- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.html
+++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/license.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetype builder &#x2013; Project Licenses</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -326,7 +326,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html
index 09751a7..deb92dd 100644
--- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.html
+++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/mail-lists.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetype builder &#x2013; Project Mailing Lists</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -176,7 +176,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html
index 54909b0..a8d9b55 100644
--- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-management.html
+++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugin-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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetype builder &#x2013; Project Plugin Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -271,7 +271,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html
index 96c2b63..8bc4b9e 100644
--- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.html
+++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/plugins.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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetype builder &#x2013; Project Plugins</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -214,7 +214,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6bdadd97/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html
----------------------------------------------------------------------
diff --git a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html
index ea7d67d..57ae022 100644
--- a/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-info.html
+++ b/hbase-build-configuration/hbase-archetypes/hbase-archetype-builder/project-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="20180206" />
+    <meta name="Date-Revision-yyyymmdd" content="20180207" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase - Archetype builder &#x2013; Project Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -167,7 +167,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-02-06</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-02-07</li>
             </p>
                 </div>