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/08/04 14:49:20 UTC

[2/4] hbase-site git commit: Published site at bd30ca62eff05195b9328aca5f33f69ad0198307.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/devapidocs/src-html/org/apache/hadoop/hbase/quotas/ThrottleSettings.html
----------------------------------------------------------------------
diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/quotas/ThrottleSettings.html b/devapidocs/src-html/org/apache/hadoop/hbase/quotas/ThrottleSettings.html
index 2fbb06f..e3974d6 100644
--- a/devapidocs/src-html/org/apache/hadoop/hbase/quotas/ThrottleSettings.html
+++ b/devapidocs/src-html/org/apache/hadoop/hbase/quotas/ThrottleSettings.html
@@ -32,135 +32,144 @@
 <span class="sourceLineNo">024</span>import org.apache.hadoop.hbase.TableName;<a name="line.24"></a>
 <span class="sourceLineNo">025</span>import org.apache.yetus.audience.InterfaceAudience;<a name="line.25"></a>
 <span class="sourceLineNo">026</span>import org.apache.yetus.audience.InterfaceStability;<a name="line.26"></a>
-<span class="sourceLineNo">027</span>import org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest;<a name="line.27"></a>
-<span class="sourceLineNo">028</span>import org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.TimedQuota;<a name="line.28"></a>
-<span class="sourceLineNo">029</span>import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;<a name="line.29"></a>
-<span class="sourceLineNo">030</span>import org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos;<a name="line.30"></a>
-<span class="sourceLineNo">031</span><a name="line.31"></a>
-<span class="sourceLineNo">032</span>@InterfaceAudience.Private<a name="line.32"></a>
-<span class="sourceLineNo">033</span>@InterfaceStability.Evolving<a name="line.33"></a>
-<span class="sourceLineNo">034</span>class ThrottleSettings extends QuotaSettings {<a name="line.34"></a>
-<span class="sourceLineNo">035</span>  final QuotaProtos.ThrottleRequest proto;<a name="line.35"></a>
-<span class="sourceLineNo">036</span><a name="line.36"></a>
-<span class="sourceLineNo">037</span>  ThrottleSettings(final String userName, final TableName tableName,<a name="line.37"></a>
-<span class="sourceLineNo">038</span>      final String namespace, final QuotaProtos.ThrottleRequest proto) {<a name="line.38"></a>
-<span class="sourceLineNo">039</span>    super(userName, tableName, namespace);<a name="line.39"></a>
-<span class="sourceLineNo">040</span>    this.proto = proto;<a name="line.40"></a>
-<span class="sourceLineNo">041</span>  }<a name="line.41"></a>
-<span class="sourceLineNo">042</span><a name="line.42"></a>
-<span class="sourceLineNo">043</span>  public ThrottleType getThrottleType() {<a name="line.43"></a>
-<span class="sourceLineNo">044</span>    return ProtobufUtil.toThrottleType(proto.getType());<a name="line.44"></a>
-<span class="sourceLineNo">045</span>  }<a name="line.45"></a>
-<span class="sourceLineNo">046</span><a name="line.46"></a>
-<span class="sourceLineNo">047</span>  public long getSoftLimit() {<a name="line.47"></a>
-<span class="sourceLineNo">048</span>    return proto.hasTimedQuota() ? proto.getTimedQuota().getSoftLimit() : -1;<a name="line.48"></a>
-<span class="sourceLineNo">049</span>  }<a name="line.49"></a>
-<span class="sourceLineNo">050</span><a name="line.50"></a>
-<span class="sourceLineNo">051</span>  public TimeUnit getTimeUnit() {<a name="line.51"></a>
-<span class="sourceLineNo">052</span>    return proto.hasTimedQuota() ?<a name="line.52"></a>
-<span class="sourceLineNo">053</span>      ProtobufUtil.toTimeUnit(proto.getTimedQuota().getTimeUnit()) : null;<a name="line.53"></a>
-<span class="sourceLineNo">054</span>  }<a name="line.54"></a>
-<span class="sourceLineNo">055</span><a name="line.55"></a>
-<span class="sourceLineNo">056</span>  @Override<a name="line.56"></a>
-<span class="sourceLineNo">057</span>  public QuotaType getQuotaType() {<a name="line.57"></a>
-<span class="sourceLineNo">058</span>    return QuotaType.THROTTLE;<a name="line.58"></a>
-<span class="sourceLineNo">059</span>  }<a name="line.59"></a>
-<span class="sourceLineNo">060</span><a name="line.60"></a>
-<span class="sourceLineNo">061</span>  @Override<a name="line.61"></a>
-<span class="sourceLineNo">062</span>  protected void setupSetQuotaRequest(SetQuotaRequest.Builder builder) {<a name="line.62"></a>
-<span class="sourceLineNo">063</span>    builder.setThrottle(proto);<a name="line.63"></a>
-<span class="sourceLineNo">064</span>  }<a name="line.64"></a>
-<span class="sourceLineNo">065</span><a name="line.65"></a>
-<span class="sourceLineNo">066</span>  @Override<a name="line.66"></a>
-<span class="sourceLineNo">067</span>  public String toString() {<a name="line.67"></a>
-<span class="sourceLineNo">068</span>    StringBuilder builder = new StringBuilder();<a name="line.68"></a>
-<span class="sourceLineNo">069</span>    builder.append("TYPE =&gt; THROTTLE");<a name="line.69"></a>
-<span class="sourceLineNo">070</span>    if (proto.hasType()) {<a name="line.70"></a>
-<span class="sourceLineNo">071</span>      builder.append(", THROTTLE_TYPE =&gt; ");<a name="line.71"></a>
-<span class="sourceLineNo">072</span>      builder.append(proto.getType().toString());<a name="line.72"></a>
-<span class="sourceLineNo">073</span>    }<a name="line.73"></a>
-<span class="sourceLineNo">074</span>    if (proto.hasTimedQuota()) {<a name="line.74"></a>
-<span class="sourceLineNo">075</span>      QuotaProtos.TimedQuota timedQuota = proto.getTimedQuota();<a name="line.75"></a>
-<span class="sourceLineNo">076</span>      builder.append(", LIMIT =&gt; ");<a name="line.76"></a>
-<span class="sourceLineNo">077</span>      if (timedQuota.hasSoftLimit()) {<a name="line.77"></a>
-<span class="sourceLineNo">078</span>        switch (getThrottleType()) {<a name="line.78"></a>
-<span class="sourceLineNo">079</span>          case REQUEST_NUMBER:<a name="line.79"></a>
-<span class="sourceLineNo">080</span>          case WRITE_NUMBER:<a name="line.80"></a>
-<span class="sourceLineNo">081</span>          case READ_NUMBER:<a name="line.81"></a>
-<span class="sourceLineNo">082</span>            builder.append(String.format("%dreq", timedQuota.getSoftLimit()));<a name="line.82"></a>
-<span class="sourceLineNo">083</span>            break;<a name="line.83"></a>
-<span class="sourceLineNo">084</span>          case REQUEST_SIZE:<a name="line.84"></a>
-<span class="sourceLineNo">085</span>          case WRITE_SIZE:<a name="line.85"></a>
-<span class="sourceLineNo">086</span>          case READ_SIZE:<a name="line.86"></a>
-<span class="sourceLineNo">087</span>            builder.append(sizeToString(timedQuota.getSoftLimit()));<a name="line.87"></a>
-<span class="sourceLineNo">088</span>            break;<a name="line.88"></a>
-<span class="sourceLineNo">089</span>        }<a name="line.89"></a>
-<span class="sourceLineNo">090</span>      } else if (timedQuota.hasShare()) {<a name="line.90"></a>
-<span class="sourceLineNo">091</span>        builder.append(String.format("%.2f%%", timedQuota.getShare()));<a name="line.91"></a>
-<span class="sourceLineNo">092</span>      }<a name="line.92"></a>
-<span class="sourceLineNo">093</span>      builder.append('/');<a name="line.93"></a>
-<span class="sourceLineNo">094</span>      builder.append(timeToString(ProtobufUtil.toTimeUnit(timedQuota.getTimeUnit())));<a name="line.94"></a>
-<span class="sourceLineNo">095</span>      if (timedQuota.hasScope()) {<a name="line.95"></a>
-<span class="sourceLineNo">096</span>        builder.append(", SCOPE =&gt; ");<a name="line.96"></a>
-<span class="sourceLineNo">097</span>        builder.append(timedQuota.getScope().toString());<a name="line.97"></a>
-<span class="sourceLineNo">098</span>      }<a name="line.98"></a>
-<span class="sourceLineNo">099</span>    } else {<a name="line.99"></a>
-<span class="sourceLineNo">100</span>      builder.append(", LIMIT =&gt; NONE");<a name="line.100"></a>
-<span class="sourceLineNo">101</span>    }<a name="line.101"></a>
-<span class="sourceLineNo">102</span>    return builder.toString();<a name="line.102"></a>
-<span class="sourceLineNo">103</span>  }<a name="line.103"></a>
-<span class="sourceLineNo">104</span><a name="line.104"></a>
-<span class="sourceLineNo">105</span>  @Override<a name="line.105"></a>
-<span class="sourceLineNo">106</span>  protected ThrottleSettings merge(QuotaSettings other) throws IOException {<a name="line.106"></a>
-<span class="sourceLineNo">107</span>    if (other instanceof ThrottleSettings) {<a name="line.107"></a>
-<span class="sourceLineNo">108</span>      ThrottleSettings otherThrottle = (ThrottleSettings) other;<a name="line.108"></a>
-<span class="sourceLineNo">109</span><a name="line.109"></a>
-<span class="sourceLineNo">110</span>      // Make sure this and the other target the same "subject"<a name="line.110"></a>
-<span class="sourceLineNo">111</span>      validateQuotaTarget(other);<a name="line.111"></a>
-<span class="sourceLineNo">112</span><a name="line.112"></a>
-<span class="sourceLineNo">113</span>      QuotaProtos.ThrottleRequest.Builder builder = proto.toBuilder();<a name="line.113"></a>
-<span class="sourceLineNo">114</span>      if (!otherThrottle.proto.hasType()) {<a name="line.114"></a>
-<span class="sourceLineNo">115</span>        return null;<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>      QuotaProtos.ThrottleRequest otherProto = otherThrottle.proto;<a name="line.118"></a>
-<span class="sourceLineNo">119</span>      if (otherProto.hasTimedQuota()) {<a name="line.119"></a>
-<span class="sourceLineNo">120</span>        if (otherProto.hasTimedQuota()) {<a name="line.120"></a>
-<span class="sourceLineNo">121</span>          validateTimedQuota(otherProto.getTimedQuota());<a name="line.121"></a>
-<span class="sourceLineNo">122</span>        }<a name="line.122"></a>
-<span class="sourceLineNo">123</span><a name="line.123"></a>
-<span class="sourceLineNo">124</span>        if (!proto.getType().equals(otherProto.getType())) {<a name="line.124"></a>
-<span class="sourceLineNo">125</span>          throw new IllegalArgumentException(<a name="line.125"></a>
-<span class="sourceLineNo">126</span>              "Cannot merge a ThrottleRequest for " + proto.getType() + " with " +<a name="line.126"></a>
-<span class="sourceLineNo">127</span>                  otherProto.getType());<a name="line.127"></a>
-<span class="sourceLineNo">128</span>        }<a name="line.128"></a>
-<span class="sourceLineNo">129</span>        QuotaProtos.TimedQuota.Builder timedQuotaBuilder = proto.getTimedQuota().toBuilder();<a name="line.129"></a>
-<span class="sourceLineNo">130</span>        timedQuotaBuilder.mergeFrom(otherProto.getTimedQuota());<a name="line.130"></a>
-<span class="sourceLineNo">131</span><a name="line.131"></a>
-<span class="sourceLineNo">132</span>        QuotaProtos.ThrottleRequest mergedReq = builder.setTimedQuota(<a name="line.132"></a>
-<span class="sourceLineNo">133</span>            timedQuotaBuilder.build()).build();<a name="line.133"></a>
-<span class="sourceLineNo">134</span>        return new ThrottleSettings(getUserName(), getTableName(), getNamespace(), mergedReq);<a name="line.134"></a>
-<span class="sourceLineNo">135</span>      }<a name="line.135"></a>
-<span class="sourceLineNo">136</span>    }<a name="line.136"></a>
-<span class="sourceLineNo">137</span>    return this;<a name="line.137"></a>
-<span class="sourceLineNo">138</span>  }<a name="line.138"></a>
-<span class="sourceLineNo">139</span><a name="line.139"></a>
-<span class="sourceLineNo">140</span>  private void validateTimedQuota(final TimedQuota timedQuota) throws IOException {<a name="line.140"></a>
-<span class="sourceLineNo">141</span>    if (timedQuota.getSoftLimit() &lt; 1) {<a name="line.141"></a>
-<span class="sourceLineNo">142</span>      throw new DoNotRetryIOException(new UnsupportedOperationException(<a name="line.142"></a>
-<span class="sourceLineNo">143</span>          "The throttle limit must be greater then 0, got " + timedQuota.getSoftLimit()));<a name="line.143"></a>
-<span class="sourceLineNo">144</span>    }<a name="line.144"></a>
-<span class="sourceLineNo">145</span>  }<a name="line.145"></a>
-<span class="sourceLineNo">146</span><a name="line.146"></a>
-<span class="sourceLineNo">147</span>  static ThrottleSettings fromTimedQuota(final String userName,<a name="line.147"></a>
-<span class="sourceLineNo">148</span>      final TableName tableName, final String namespace,<a name="line.148"></a>
-<span class="sourceLineNo">149</span>      ThrottleType type, QuotaProtos.TimedQuota timedQuota) {<a name="line.149"></a>
-<span class="sourceLineNo">150</span>    QuotaProtos.ThrottleRequest.Builder builder = QuotaProtos.ThrottleRequest.newBuilder();<a name="line.150"></a>
-<span class="sourceLineNo">151</span>    builder.setType(ProtobufUtil.toProtoThrottleType(type));<a name="line.151"></a>
-<span class="sourceLineNo">152</span>    builder.setTimedQuota(timedQuota);<a name="line.152"></a>
-<span class="sourceLineNo">153</span>    return new ThrottleSettings(userName, tableName, namespace, builder.build());<a name="line.153"></a>
+<span class="sourceLineNo">027</span>import org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;<a name="line.27"></a>
+<span class="sourceLineNo">028</span>import org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SetQuotaRequest;<a name="line.28"></a>
+<span class="sourceLineNo">029</span>import org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.TimedQuota;<a name="line.29"></a>
+<span class="sourceLineNo">030</span>import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;<a name="line.30"></a>
+<span class="sourceLineNo">031</span>import org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos;<a name="line.31"></a>
+<span class="sourceLineNo">032</span><a name="line.32"></a>
+<span class="sourceLineNo">033</span>@InterfaceAudience.Private<a name="line.33"></a>
+<span class="sourceLineNo">034</span>@InterfaceStability.Evolving<a name="line.34"></a>
+<span class="sourceLineNo">035</span>class ThrottleSettings extends QuotaSettings {<a name="line.35"></a>
+<span class="sourceLineNo">036</span>  final QuotaProtos.ThrottleRequest proto;<a name="line.36"></a>
+<span class="sourceLineNo">037</span><a name="line.37"></a>
+<span class="sourceLineNo">038</span>  ThrottleSettings(final String userName, final TableName tableName,<a name="line.38"></a>
+<span class="sourceLineNo">039</span>      final String namespace, final QuotaProtos.ThrottleRequest proto) {<a name="line.39"></a>
+<span class="sourceLineNo">040</span>    super(userName, tableName, namespace);<a name="line.40"></a>
+<span class="sourceLineNo">041</span>    this.proto = proto;<a name="line.41"></a>
+<span class="sourceLineNo">042</span>  }<a name="line.42"></a>
+<span class="sourceLineNo">043</span><a name="line.43"></a>
+<span class="sourceLineNo">044</span>  public ThrottleType getThrottleType() {<a name="line.44"></a>
+<span class="sourceLineNo">045</span>    return ProtobufUtil.toThrottleType(proto.getType());<a name="line.45"></a>
+<span class="sourceLineNo">046</span>  }<a name="line.46"></a>
+<span class="sourceLineNo">047</span><a name="line.47"></a>
+<span class="sourceLineNo">048</span>  public long getSoftLimit() {<a name="line.48"></a>
+<span class="sourceLineNo">049</span>    return proto.hasTimedQuota() ? proto.getTimedQuota().getSoftLimit() : -1;<a name="line.49"></a>
+<span class="sourceLineNo">050</span>  }<a name="line.50"></a>
+<span class="sourceLineNo">051</span><a name="line.51"></a>
+<span class="sourceLineNo">052</span>  /**<a name="line.52"></a>
+<span class="sourceLineNo">053</span>   * Returns a copy of the internal state of &lt;code&gt;this&lt;/code&gt;<a name="line.53"></a>
+<span class="sourceLineNo">054</span>   */<a name="line.54"></a>
+<span class="sourceLineNo">055</span>  @VisibleForTesting<a name="line.55"></a>
+<span class="sourceLineNo">056</span>  QuotaProtos.ThrottleRequest getProto() {<a name="line.56"></a>
+<span class="sourceLineNo">057</span>    return proto.toBuilder().build();<a name="line.57"></a>
+<span class="sourceLineNo">058</span>  }<a name="line.58"></a>
+<span class="sourceLineNo">059</span><a name="line.59"></a>
+<span class="sourceLineNo">060</span>  public TimeUnit getTimeUnit() {<a name="line.60"></a>
+<span class="sourceLineNo">061</span>    return proto.hasTimedQuota() ?<a name="line.61"></a>
+<span class="sourceLineNo">062</span>      ProtobufUtil.toTimeUnit(proto.getTimedQuota().getTimeUnit()) : null;<a name="line.62"></a>
+<span class="sourceLineNo">063</span>  }<a name="line.63"></a>
+<span class="sourceLineNo">064</span><a name="line.64"></a>
+<span class="sourceLineNo">065</span>  @Override<a name="line.65"></a>
+<span class="sourceLineNo">066</span>  public QuotaType getQuotaType() {<a name="line.66"></a>
+<span class="sourceLineNo">067</span>    return QuotaType.THROTTLE;<a name="line.67"></a>
+<span class="sourceLineNo">068</span>  }<a name="line.68"></a>
+<span class="sourceLineNo">069</span><a name="line.69"></a>
+<span class="sourceLineNo">070</span>  @Override<a name="line.70"></a>
+<span class="sourceLineNo">071</span>  protected void setupSetQuotaRequest(SetQuotaRequest.Builder builder) {<a name="line.71"></a>
+<span class="sourceLineNo">072</span>    builder.setThrottle(proto);<a name="line.72"></a>
+<span class="sourceLineNo">073</span>  }<a name="line.73"></a>
+<span class="sourceLineNo">074</span><a name="line.74"></a>
+<span class="sourceLineNo">075</span>  @Override<a name="line.75"></a>
+<span class="sourceLineNo">076</span>  public String toString() {<a name="line.76"></a>
+<span class="sourceLineNo">077</span>    StringBuilder builder = new StringBuilder();<a name="line.77"></a>
+<span class="sourceLineNo">078</span>    builder.append("TYPE =&gt; THROTTLE");<a name="line.78"></a>
+<span class="sourceLineNo">079</span>    if (proto.hasType()) {<a name="line.79"></a>
+<span class="sourceLineNo">080</span>      builder.append(", THROTTLE_TYPE =&gt; ");<a name="line.80"></a>
+<span class="sourceLineNo">081</span>      builder.append(proto.getType().toString());<a name="line.81"></a>
+<span class="sourceLineNo">082</span>    }<a name="line.82"></a>
+<span class="sourceLineNo">083</span>    if (proto.hasTimedQuota()) {<a name="line.83"></a>
+<span class="sourceLineNo">084</span>      QuotaProtos.TimedQuota timedQuota = proto.getTimedQuota();<a name="line.84"></a>
+<span class="sourceLineNo">085</span>      builder.append(", LIMIT =&gt; ");<a name="line.85"></a>
+<span class="sourceLineNo">086</span>      if (timedQuota.hasSoftLimit()) {<a name="line.86"></a>
+<span class="sourceLineNo">087</span>        switch (getThrottleType()) {<a name="line.87"></a>
+<span class="sourceLineNo">088</span>          case REQUEST_NUMBER:<a name="line.88"></a>
+<span class="sourceLineNo">089</span>          case WRITE_NUMBER:<a name="line.89"></a>
+<span class="sourceLineNo">090</span>          case READ_NUMBER:<a name="line.90"></a>
+<span class="sourceLineNo">091</span>            builder.append(String.format("%dreq", timedQuota.getSoftLimit()));<a name="line.91"></a>
+<span class="sourceLineNo">092</span>            break;<a name="line.92"></a>
+<span class="sourceLineNo">093</span>          case REQUEST_SIZE:<a name="line.93"></a>
+<span class="sourceLineNo">094</span>          case WRITE_SIZE:<a name="line.94"></a>
+<span class="sourceLineNo">095</span>          case READ_SIZE:<a name="line.95"></a>
+<span class="sourceLineNo">096</span>            builder.append(sizeToString(timedQuota.getSoftLimit()));<a name="line.96"></a>
+<span class="sourceLineNo">097</span>            break;<a name="line.97"></a>
+<span class="sourceLineNo">098</span>        }<a name="line.98"></a>
+<span class="sourceLineNo">099</span>      } else if (timedQuota.hasShare()) {<a name="line.99"></a>
+<span class="sourceLineNo">100</span>        builder.append(String.format("%.2f%%", timedQuota.getShare()));<a name="line.100"></a>
+<span class="sourceLineNo">101</span>      }<a name="line.101"></a>
+<span class="sourceLineNo">102</span>      builder.append('/');<a name="line.102"></a>
+<span class="sourceLineNo">103</span>      builder.append(timeToString(ProtobufUtil.toTimeUnit(timedQuota.getTimeUnit())));<a name="line.103"></a>
+<span class="sourceLineNo">104</span>      if (timedQuota.hasScope()) {<a name="line.104"></a>
+<span class="sourceLineNo">105</span>        builder.append(", SCOPE =&gt; ");<a name="line.105"></a>
+<span class="sourceLineNo">106</span>        builder.append(timedQuota.getScope().toString());<a name="line.106"></a>
+<span class="sourceLineNo">107</span>      }<a name="line.107"></a>
+<span class="sourceLineNo">108</span>    } else {<a name="line.108"></a>
+<span class="sourceLineNo">109</span>      builder.append(", LIMIT =&gt; NONE");<a name="line.109"></a>
+<span class="sourceLineNo">110</span>    }<a name="line.110"></a>
+<span class="sourceLineNo">111</span>    return builder.toString();<a name="line.111"></a>
+<span class="sourceLineNo">112</span>  }<a name="line.112"></a>
+<span class="sourceLineNo">113</span><a name="line.113"></a>
+<span class="sourceLineNo">114</span>  @Override<a name="line.114"></a>
+<span class="sourceLineNo">115</span>  protected ThrottleSettings merge(QuotaSettings other) throws IOException {<a name="line.115"></a>
+<span class="sourceLineNo">116</span>    if (other instanceof ThrottleSettings) {<a name="line.116"></a>
+<span class="sourceLineNo">117</span>      ThrottleSettings otherThrottle = (ThrottleSettings) other;<a name="line.117"></a>
+<span class="sourceLineNo">118</span><a name="line.118"></a>
+<span class="sourceLineNo">119</span>      // Make sure this and the other target the same "subject"<a name="line.119"></a>
+<span class="sourceLineNo">120</span>      validateQuotaTarget(other);<a name="line.120"></a>
+<span class="sourceLineNo">121</span><a name="line.121"></a>
+<span class="sourceLineNo">122</span>      QuotaProtos.ThrottleRequest.Builder builder = proto.toBuilder();<a name="line.122"></a>
+<span class="sourceLineNo">123</span>      if (!otherThrottle.proto.hasType()) {<a name="line.123"></a>
+<span class="sourceLineNo">124</span>        return null;<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>      QuotaProtos.ThrottleRequest otherProto = otherThrottle.proto;<a name="line.127"></a>
+<span class="sourceLineNo">128</span>      if (otherProto.hasTimedQuota()) {<a name="line.128"></a>
+<span class="sourceLineNo">129</span>        if (otherProto.hasTimedQuota()) {<a name="line.129"></a>
+<span class="sourceLineNo">130</span>          validateTimedQuota(otherProto.getTimedQuota());<a name="line.130"></a>
+<span class="sourceLineNo">131</span>        }<a name="line.131"></a>
+<span class="sourceLineNo">132</span><a name="line.132"></a>
+<span class="sourceLineNo">133</span>        if (!proto.getType().equals(otherProto.getType())) {<a name="line.133"></a>
+<span class="sourceLineNo">134</span>          throw new IllegalArgumentException(<a name="line.134"></a>
+<span class="sourceLineNo">135</span>              "Cannot merge a ThrottleRequest for " + proto.getType() + " with " +<a name="line.135"></a>
+<span class="sourceLineNo">136</span>                  otherProto.getType());<a name="line.136"></a>
+<span class="sourceLineNo">137</span>        }<a name="line.137"></a>
+<span class="sourceLineNo">138</span>        QuotaProtos.TimedQuota.Builder timedQuotaBuilder = proto.getTimedQuota().toBuilder();<a name="line.138"></a>
+<span class="sourceLineNo">139</span>        timedQuotaBuilder.mergeFrom(otherProto.getTimedQuota());<a name="line.139"></a>
+<span class="sourceLineNo">140</span><a name="line.140"></a>
+<span class="sourceLineNo">141</span>        QuotaProtos.ThrottleRequest mergedReq = builder.setTimedQuota(<a name="line.141"></a>
+<span class="sourceLineNo">142</span>            timedQuotaBuilder.build()).build();<a name="line.142"></a>
+<span class="sourceLineNo">143</span>        return new ThrottleSettings(getUserName(), getTableName(), getNamespace(), mergedReq);<a name="line.143"></a>
+<span class="sourceLineNo">144</span>      }<a name="line.144"></a>
+<span class="sourceLineNo">145</span>    }<a name="line.145"></a>
+<span class="sourceLineNo">146</span>    return this;<a name="line.146"></a>
+<span class="sourceLineNo">147</span>  }<a name="line.147"></a>
+<span class="sourceLineNo">148</span><a name="line.148"></a>
+<span class="sourceLineNo">149</span>  private void validateTimedQuota(final TimedQuota timedQuota) throws IOException {<a name="line.149"></a>
+<span class="sourceLineNo">150</span>    if (timedQuota.getSoftLimit() &lt; 1) {<a name="line.150"></a>
+<span class="sourceLineNo">151</span>      throw new DoNotRetryIOException(new UnsupportedOperationException(<a name="line.151"></a>
+<span class="sourceLineNo">152</span>          "The throttle limit must be greater then 0, got " + timedQuota.getSoftLimit()));<a name="line.152"></a>
+<span class="sourceLineNo">153</span>    }<a name="line.153"></a>
 <span class="sourceLineNo">154</span>  }<a name="line.154"></a>
-<span class="sourceLineNo">155</span>}<a name="line.155"></a>
+<span class="sourceLineNo">155</span><a name="line.155"></a>
+<span class="sourceLineNo">156</span>  static ThrottleSettings fromTimedQuota(final String userName,<a name="line.156"></a>
+<span class="sourceLineNo">157</span>      final TableName tableName, final String namespace,<a name="line.157"></a>
+<span class="sourceLineNo">158</span>      ThrottleType type, QuotaProtos.TimedQuota timedQuota) {<a name="line.158"></a>
+<span class="sourceLineNo">159</span>    QuotaProtos.ThrottleRequest.Builder builder = QuotaProtos.ThrottleRequest.newBuilder();<a name="line.159"></a>
+<span class="sourceLineNo">160</span>    builder.setType(ProtobufUtil.toProtoThrottleType(type));<a name="line.160"></a>
+<span class="sourceLineNo">161</span>    builder.setTimedQuota(timedQuota);<a name="line.161"></a>
+<span class="sourceLineNo">162</span>    return new ThrottleSettings(userName, tableName, namespace, builder.build());<a name="line.162"></a>
+<span class="sourceLineNo">163</span>  }<a name="line.163"></a>
+<span class="sourceLineNo">164</span>}<a name="line.164"></a>
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/downloads.html
----------------------------------------------------------------------
diff --git a/downloads.html b/downloads.html
index 3cacc07..15b47e2 100644
--- a/downloads.html
+++ b/downloads.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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Apache HBase Downloads</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -423,7 +423,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-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/export_control.html
----------------------------------------------------------------------
diff --git a/export_control.html b/export_control.html
index 04aa869..1371eb7 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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; 
       Export Control
@@ -331,7 +331,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-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/index.html
----------------------------------------------------------------------
diff --git a/index.html b/index.html
index 8e1b388..66b3e59 100644
--- a/index.html
+++ b/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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Apache HBase™ Home</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -411,7 +411,7 @@ Apache HBase is an open-source, distributed, versioned, non-relational database
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/integration.html
----------------------------------------------------------------------
diff --git a/integration.html b/integration.html
index e6bc91d..a731b33 100644
--- a/integration.html
+++ b/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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; CI Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -291,7 +291,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/issue-tracking.html
----------------------------------------------------------------------
diff --git a/issue-tracking.html b/issue-tracking.html
index 5748e0f..8ef7f0c 100644
--- a/issue-tracking.html
+++ b/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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Issue Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -288,7 +288,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/license.html
----------------------------------------------------------------------
diff --git a/license.html b/license.html
index bdfe998..f8d42e1 100644
--- a/license.html
+++ b/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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Licenses</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -491,7 +491,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/mail-lists.html
----------------------------------------------------------------------
diff --git a/mail-lists.html b/mail-lists.html
index 428a3f1..0cf9b83 100644
--- a/mail-lists.html
+++ b/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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Mailing Lists</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -341,7 +341,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/metrics.html
----------------------------------------------------------------------
diff --git a/metrics.html b/metrics.html
index afa6d18..431460e 100644
--- a/metrics.html
+++ b/metrics.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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013;  
       Apache HBase (TM) Metrics
@@ -459,7 +459,7 @@ export HBASE_REGIONSERVER_OPTS=&quot;$HBASE_JMX_OPTS -Dcom.sun.management.jmxrem
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/old_news.html
----------------------------------------------------------------------
diff --git a/old_news.html b/old_news.html
index 10c2753..3907920 100644
--- a/old_news.html
+++ b/old_news.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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; 
       Old Apache HBase (TM) News
@@ -440,7 +440,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-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/plugin-management.html
----------------------------------------------------------------------
diff --git a/plugin-management.html b/plugin-management.html
index 2e52273..baa5c87 100644
--- a/plugin-management.html
+++ b/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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Plugin Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -440,7 +440,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/plugins.html
----------------------------------------------------------------------
diff --git a/plugins.html b/plugins.html
index d889203..49c995a 100644
--- a/plugins.html
+++ b/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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Plugins</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -375,7 +375,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/poweredbyhbase.html
----------------------------------------------------------------------
diff --git a/poweredbyhbase.html b/poweredbyhbase.html
index 7a002ac..0675c35 100644
--- a/poweredbyhbase.html
+++ b/poweredbyhbase.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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Powered By Apache HBase™</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -769,7 +769,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-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/project-info.html
----------------------------------------------------------------------
diff --git a/project-info.html b/project-info.html
index c3c3dc8..73e5e74 100644
--- a/project-info.html
+++ b/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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Information</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -335,7 +335,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

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

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/project-summary.html
----------------------------------------------------------------------
diff --git a/project-summary.html b/project-summary.html
index fd407ec..599ece0 100644
--- a/project-summary.html
+++ b/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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Summary</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -331,7 +331,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/pseudo-distributed.html
----------------------------------------------------------------------
diff --git a/pseudo-distributed.html b/pseudo-distributed.html
index 66f093c..3f8768e 100644
--- a/pseudo-distributed.html
+++ b/pseudo-distributed.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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013;  
 Running Apache HBase (TM) in pseudo-distributed mode
@@ -308,7 +308,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-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/replication.html
----------------------------------------------------------------------
diff --git a/replication.html b/replication.html
index c69b6039..9b069f3 100644
--- a/replication.html
+++ b/replication.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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; 
       Apache HBase (TM) Replication
@@ -303,7 +303,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-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/resources.html
----------------------------------------------------------------------
diff --git a/resources.html b/resources.html
index 75ca753..39e271f 100644
--- a/resources.html
+++ b/resources.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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Other Apache HBase (TM) Resources</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -331,7 +331,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-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/source-repository.html
----------------------------------------------------------------------
diff --git a/source-repository.html b/source-repository.html
index 4f679d2..3a5295e 100644
--- a/source-repository.html
+++ b/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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Source Code Management</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -299,7 +299,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/sponsors.html
----------------------------------------------------------------------
diff --git a/sponsors.html b/sponsors.html
index 681219a..d4dc645 100644
--- a/sponsors.html
+++ b/sponsors.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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Apache HBase™ Sponsors</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -333,7 +333,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-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/supportingprojects.html
----------------------------------------------------------------------
diff --git a/supportingprojects.html b/supportingprojects.html
index a4764fd..ee135eb 100644
--- a/supportingprojects.html
+++ b/supportingprojects.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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Supporting Projects</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -520,7 +520,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-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/team-list.html
----------------------------------------------------------------------
diff --git a/team-list.html b/team-list.html
index d91dfd8..27ccaf9 100644
--- a/team-list.html
+++ b/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="20180802" />
+    <meta name="Date-Revision-yyyymmdd" content="20180804" />
     <meta http-equiv="Content-Language" content="en" />
     <title>Apache HBase &#x2013; Project Team</title>
     <link rel="stylesheet" href="./css/apache-maven-fluido-1.5-HBASE.min.css" />
@@ -742,7 +742,7 @@
                         <a href="https://www.apache.org/">The Apache Software Foundation</a>.
             All rights reserved.      
                     
-                  <li id="publishDate" class="pull-right">Last Published: 2018-08-02</li>
+                  <li id="publishDate" class="pull-right">Last Published: 2018-08-04</li>
             </p>
                 </div>
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/testdevapidocs/index-all.html
----------------------------------------------------------------------
diff --git a/testdevapidocs/index-all.html b/testdevapidocs/index-all.html
index 41763ca..321394b 100644
--- a/testdevapidocs/index-all.html
+++ b/testdevapidocs/index-all.html
@@ -1873,6 +1873,10 @@
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/coprocessor/TestRegionObserverForAddingMutationsFromCoprocessors.html#assertRowCount-org.apache.hadoop.hbase.client.Table-int-">assertRowCount(Table, int)</a></span> - Static method in class org.apache.hadoop.hbase.coprocessor.<a href="org/apache/hadoop/hbase/coprocessor/TestRegionObserverForAddingMutationsFromCoprocessors.html" title="class in org.apache.hadoop.hbase.coprocessor">TestRegionObserverForAddingMutationsFromCoprocessors</a></dt>
 <dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html#assertRPCQuota-org.apache.hadoop.hbase.quotas.ThrottleType-long-java.util.concurrent.TimeUnit-org.apache.hadoop.hbase.Cell-">assertRPCQuota(ThrottleType, long, TimeUnit, Cell)</a></span> - Method in class org.apache.hadoop.hbase.quotas.<a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html" title="class in org.apache.hadoop.hbase.quotas">TestQuotaAdmin</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html#assertRPCQuota-org.apache.hadoop.hbase.quotas.ThrottleType-long-java.util.concurrent.TimeUnit-org.apache.hadoop.hbase.quotas.QuotaSettings-">assertRPCQuota(ThrottleType, long, TimeUnit, QuotaSettings)</a></span> - Method in class org.apache.hadoop.hbase.quotas.<a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html" title="class in org.apache.hadoop.hbase.quotas">TestQuotaAdmin</a></dt>
+<dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/client/TestResult.html#assertSame-org.apache.hadoop.hbase.CellScanner-org.apache.hadoop.hbase.Cell:A-">assertSame(CellScanner, Cell[])</a></span> - Method in class org.apache.hadoop.hbase.client.<a href="org/apache/hadoop/hbase/client/TestResult.html" title="class in org.apache.hadoop.hbase.client">TestResult</a></dt>
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/regionserver/TestHRegion.html#assertScan-org.apache.hadoop.hbase.regionserver.HRegion-byte:A-byte:A-">assertScan(HRegion, byte[], byte[])</a></span> - Method in class org.apache.hadoop.hbase.regionserver.<a href="org/apache/hadoop/hbase/regionserver/TestHRegion.html" title="class in org.apache.hadoop.hbase.regionserver">TestHRegion</a></dt>
@@ -60843,6 +60847,8 @@
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/metrics/TestBaseSourceImpl.html#testSetGauge--">testSetGauge()</a></span> - Method in class org.apache.hadoop.hbase.metrics.<a href="org/apache/hadoop/hbase/metrics/TestBaseSourceImpl.html" title="class in org.apache.hadoop.hbase.metrics">TestBaseSourceImpl</a></dt>
 <dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html#testSetGetRemoveRPCQuota--">testSetGetRemoveRPCQuota()</a></span> - Method in class org.apache.hadoop.hbase.quotas.<a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html" title="class in org.apache.hadoop.hbase.quotas">TestQuotaAdmin</a></dt>
+<dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html#testSetGetRemoveSpaceQuota--">testSetGetRemoveSpaceQuota()</a></span> - Method in class org.apache.hadoop.hbase.quotas.<a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html" title="class in org.apache.hadoop.hbase.quotas">TestQuotaAdmin</a></dt>
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/mapreduce/TestMultiTableSnapshotInputFormatImpl.html#testSetInputCreatesRestoreDirectoriesUnderRootRestoreDir--">testSetInputCreatesRestoreDirectoriesUnderRootRestoreDir()</a></span> - Method in class org.apache.hadoop.hbase.mapreduce.<a href="org/apache/hadoop/hbase/mapreduce/TestMultiTableSnapshotInputFormatImpl.html" title="class in org.apache.hadoop.hbase.mapreduce">TestMultiTableSnapshotInputFormatImpl</a></dt>
@@ -60862,7 +60868,9 @@
 <div class="block"><span class="deprecatedLabel">Deprecated.</span></div>
 <div class="block">Test cps in the table description</div>
 </dd>
-<dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html#testSetModifyRemoveQuota--">testSetModifyRemoveQuota()</a></span> - Method in class org.apache.hadoop.hbase.quotas.<a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html" title="class in org.apache.hadoop.hbase.quotas">TestQuotaAdmin</a></dt>
+<dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html#testSetModifyRemoveRPCQuota--">testSetModifyRemoveRPCQuota()</a></span> - Method in class org.apache.hadoop.hbase.quotas.<a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html" title="class in org.apache.hadoop.hbase.quotas">TestQuotaAdmin</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html#testSetModifyRemoveSpaceQuota--">testSetModifyRemoveSpaceQuota()</a></span> - Method in class org.apache.hadoop.hbase.quotas.<a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html" title="class in org.apache.hadoop.hbase.quotas">TestQuotaAdmin</a></dt>
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/rest/model/TestTableRegionModel.html#testSetName--">testSetName()</a></span> - Method in class org.apache.hadoop.hbase.rest.model.<a href="org/apache/hadoop/hbase/rest/model/TestTableRegionModel.html" title="class in org.apache.hadoop.hbase.rest.model">TestTableRegionModel</a></dt>
 <dd>&nbsp;</dd>
@@ -67524,6 +67532,8 @@ the order they are declared.</div>
 <dd>
 <div class="block">Verify the values in the Counters against the expected number of entries written.</div>
 </dd>
+<dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html#verifyFetchableViaAPI-org.apache.hadoop.hbase.client.Admin-org.apache.hadoop.hbase.quotas.ThrottleType-long-java.util.concurrent.TimeUnit-">verifyFetchableViaAPI(Admin, ThrottleType, long, TimeUnit)</a></span> - Method in class org.apache.hadoop.hbase.quotas.<a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html" title="class in org.apache.hadoop.hbase.quotas">TestQuotaAdmin</a></dt>
+<dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/util/TestFSUtils.html#verifyFileInDirWithStoragePolicy-java.lang.String-">verifyFileInDirWithStoragePolicy(String)</a></span> - Method in class org.apache.hadoop.hbase.util.<a href="org/apache/hadoop/hbase/util/TestFSUtils.html" title="class in org.apache.hadoop.hbase.util">TestFSUtils</a></dt>
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/regionserver/compactions/TestStripeCompactionPolicy.html#verifyFlush-org.apache.hadoop.hbase.regionserver.compactions.StripeCompactionPolicy-org.apache.hadoop.hbase.regionserver.compactions.StripeCompactionPolicy.StripeInformationProvider-org.apache.hadoop.hbase.KeyValue:A-org.apache.hadoop.hbase.KeyValue:A:A-byte:A:A-">verifyFlush(StripeCompactionPolicy, StripeCompactionPolicy.StripeInformationProvider, KeyValue[], KeyValue[][], byte[][])</a></span> - Method in class org.apache.hadoop.hbase.regionserver.compactions.<a href="org/apache/hadoop/hbase/regionserver/compactions/TestStripeCompactionPolicy.html" title="class in org.apache.hadoop.hbase.regionserver.compactions">TestStripeCompactionPolicy</a></dt>
@@ -67611,6 +67621,8 @@ the order they are declared.</div>
 <div class="block">Note: currently the default policy is set to defer to HDFS and this case is to verify the
  logic, will need to remove the check if the default policy is changed</div>
 </dd>
+<dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html#verifyNotFetchableViaAPI-org.apache.hadoop.hbase.client.Admin-">verifyNotFetchableViaAPI(Admin)</a></span> - Method in class org.apache.hadoop.hbase.quotas.<a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html" title="class in org.apache.hadoop.hbase.quotas">TestQuotaAdmin</a></dt>
+<dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/replication/SyncReplicationTestBase.html#verifyNotReplicatedThroughRegion-org.apache.hadoop.hbase.HBaseTestingUtility-int-int-">verifyNotReplicatedThroughRegion(HBaseTestingUtility, int, int)</a></span> - Method in class org.apache.hadoop.hbase.replication.<a href="org/apache/hadoop/hbase/replication/SyncReplicationTestBase.html" title="class in org.apache.hadoop.hbase.replication">SyncReplicationTestBase</a></dt>
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/quotas/TestSpaceQuotas.html#verifyNoViolation-org.apache.hadoop.hbase.quotas.SpaceViolationPolicy-org.apache.hadoop.hbase.TableName-org.apache.hadoop.hbase.client.Mutation-">verifyNoViolation(SpaceViolationPolicy, TableName, Mutation)</a></span> - Method in class org.apache.hadoop.hbase.quotas.<a href="org/apache/hadoop/hbase/quotas/TestSpaceQuotas.html" title="class in org.apache.hadoop.hbase.quotas">TestSpaceQuotas</a></dt>
@@ -67645,6 +67657,10 @@ the order they are declared.</div>
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/security/access/TestAccessController.html#verifyReadWrite-org.apache.hadoop.hbase.security.access.SecureTestUtil.AccessTestAction-">verifyReadWrite(SecureTestUtil.AccessTestAction)</a></span> - Method in class org.apache.hadoop.hbase.security.access.<a href="org/apache/hadoop/hbase/security/access/TestAccessController.html" title="class in org.apache.hadoop.hbase.security.access">TestAccessController</a></dt>
 <dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html#verifyRecordNotPresentInQuotaTable--">verifyRecordNotPresentInQuotaTable()</a></span> - Method in class org.apache.hadoop.hbase.quotas.<a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html" title="class in org.apache.hadoop.hbase.quotas">TestQuotaAdmin</a></dt>
+<dd>&nbsp;</dd>
+<dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html#verifyRecordPresentInQuotaTable-org.apache.hadoop.hbase.quotas.ThrottleType-long-java.util.concurrent.TimeUnit-">verifyRecordPresentInQuotaTable(ThrottleType, long, TimeUnit)</a></span> - Method in class org.apache.hadoop.hbase.quotas.<a href="org/apache/hadoop/hbase/quotas/TestQuotaAdmin.html" title="class in org.apache.hadoop.hbase.quotas">TestQuotaAdmin</a></dt>
+<dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/test/IntegrationTestBigLinkedList.Verify.VerifyReducer.html#VerifyReducer--">VerifyReducer()</a></span> - Constructor for class org.apache.hadoop.hbase.test.<a href="org/apache/hadoop/hbase/test/IntegrationTestBigLinkedList.Verify.VerifyReducer.html" title="class in org.apache.hadoop.hbase.test">IntegrationTestBigLinkedList.Verify.VerifyReducer</a></dt>
 <dd>&nbsp;</dd>
 <dt><span class="memberNameLink"><a href="org/apache/hadoop/hbase/test/IntegrationTestLoadAndVerify.VerifyReducer.html#VerifyReducer--">VerifyReducer()</a></span> - Constructor for class org.apache.hadoop.hbase.test.<a href="org/apache/hadoop/hbase/test/IntegrationTestLoadAndVerify.VerifyReducer.html" title="class in org.apache.hadoop.hbase.test">IntegrationTestLoadAndVerify.VerifyReducer</a></dt>

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/testdevapidocs/org/apache/hadoop/hbase/backup/package-tree.html
----------------------------------------------------------------------
diff --git a/testdevapidocs/org/apache/hadoop/hbase/backup/package-tree.html b/testdevapidocs/org/apache/hadoop/hbase/backup/package-tree.html
index 2d9b60f..6af42fe 100644
--- a/testdevapidocs/org/apache/hadoop/hbase/backup/package-tree.html
+++ b/testdevapidocs/org/apache/hadoop/hbase/backup/package-tree.html
@@ -146,8 +146,8 @@
 <ul>
 <li type="circle">java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Enum</span></a>&lt;E&gt; (implements java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;T&gt;, java.io.<a href="https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>)
 <ul>
-<li type="circle">org.apache.hadoop.hbase.backup.<a href="../../../../../org/apache/hadoop/hbase/backup/TestBackupDeleteWithFailures.Failure.html" title="enum in org.apache.hadoop.hbase.backup"><span class="typeNameLink">TestBackupDeleteWithFailures.Failure</span></a></li>
 <li type="circle">org.apache.hadoop.hbase.backup.<a href="../../../../../org/apache/hadoop/hbase/backup/TestIncrementalBackupMergeWithFailures.FailurePhase.html" title="enum in org.apache.hadoop.hbase.backup"><span class="typeNameLink">TestIncrementalBackupMergeWithFailures.FailurePhase</span></a></li>
+<li type="circle">org.apache.hadoop.hbase.backup.<a href="../../../../../org/apache/hadoop/hbase/backup/TestBackupDeleteWithFailures.Failure.html" title="enum in org.apache.hadoop.hbase.backup"><span class="typeNameLink">TestBackupDeleteWithFailures.Failure</span></a></li>
 </ul>
 </li>
 </ul>

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/testdevapidocs/org/apache/hadoop/hbase/io/hfile/package-tree.html
----------------------------------------------------------------------
diff --git a/testdevapidocs/org/apache/hadoop/hbase/io/hfile/package-tree.html b/testdevapidocs/org/apache/hadoop/hbase/io/hfile/package-tree.html
index 4837d80..ec56445 100644
--- a/testdevapidocs/org/apache/hadoop/hbase/io/hfile/package-tree.html
+++ b/testdevapidocs/org/apache/hadoop/hbase/io/hfile/package-tree.html
@@ -158,8 +158,8 @@
 <ul>
 <li type="circle">java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Enum</span></a>&lt;E&gt; (implements java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;T&gt;, java.io.<a href="https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>)
 <ul>
-<li type="circle">org.apache.hadoop.hbase.io.hfile.<a href="../../../../../../org/apache/hadoop/hbase/io/hfile/TagUsage.html" title="enum in org.apache.hadoop.hbase.io.hfile"><span class="typeNameLink">TagUsage</span></a></li>
 <li type="circle">org.apache.hadoop.hbase.io.hfile.<a href="../../../../../../org/apache/hadoop/hbase/io/hfile/TestCacheOnWrite.CacheOnWriteType.html" title="enum in org.apache.hadoop.hbase.io.hfile"><span class="typeNameLink">TestCacheOnWrite.CacheOnWriteType</span></a></li>
+<li type="circle">org.apache.hadoop.hbase.io.hfile.<a href="../../../../../../org/apache/hadoop/hbase/io/hfile/TagUsage.html" title="enum in org.apache.hadoop.hbase.io.hfile"><span class="typeNameLink">TagUsage</span></a></li>
 </ul>
 </li>
 </ul>

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/testdevapidocs/org/apache/hadoop/hbase/package-tree.html
----------------------------------------------------------------------
diff --git a/testdevapidocs/org/apache/hadoop/hbase/package-tree.html b/testdevapidocs/org/apache/hadoop/hbase/package-tree.html
index eb561ae..c48d4c7 100644
--- a/testdevapidocs/org/apache/hadoop/hbase/package-tree.html
+++ b/testdevapidocs/org/apache/hadoop/hbase/package-tree.html
@@ -576,15 +576,15 @@
 <ul>
 <li type="circle">java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Enum</span></a>&lt;E&gt; (implements java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;T&gt;, java.io.<a href="https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>)
 <ul>
-<li type="circle">org.apache.hadoop.hbase.<a href="../../../../org/apache/hadoop/hbase/IntegrationTestDDLMasterFailover.ACTION.html" title="enum in org.apache.hadoop.hbase"><span class="typeNameLink">IntegrationTestDDLMasterFailover.ACTION</span></a></li>
-<li type="circle">org.apache.hadoop.hbase.<a href="../../../../org/apache/hadoop/hbase/ClusterManager.ServiceType.html" title="enum in org.apache.hadoop.hbase"><span class="typeNameLink">ClusterManager.ServiceType</span></a></li>
-<li type="circle">org.apache.hadoop.hbase.<a href="../../../../org/apache/hadoop/hbase/ResourceChecker.Phase.html" title="enum in org.apache.hadoop.hbase"><span class="typeNameLink">ResourceChecker.Phase</span></a></li>
-<li type="circle">org.apache.hadoop.hbase.<a href="../../../../org/apache/hadoop/hbase/RESTApiClusterManager.RoleCommand.html" title="enum in org.apache.hadoop.hbase"><span class="typeNameLink">RESTApiClusterManager.RoleCommand</span></a></li>
-<li type="circle">org.apache.hadoop.hbase.<a href="../../../../org/apache/hadoop/hbase/RESTApiClusterManager.Service.html" title="enum in org.apache.hadoop.hbase"><span class="typeNameLink">RESTApiClusterManager.Service</span></a></li>
-<li type="circle">org.apache.hadoop.hbase.<a href="../../../../org/apache/hadoop/hbase/ScanPerformanceEvaluation.ScanCounter.html" title="enum in org.apache.hadoop.hbase"><span class="typeNameLink">ScanPerformanceEvaluation.ScanCounter</span></a></li>
 <li type="circle">org.apache.hadoop.hbase.<a href="../../../../org/apache/hadoop/hbase/PerformanceEvaluation.Counter.html" title="enum in org.apache.hadoop.hbase"><span class="typeNameLink">PerformanceEvaluation.Counter</span></a></li>
 <li type="circle">org.apache.hadoop.hbase.<a href="../../../../org/apache/hadoop/hbase/HBaseClusterManager.CommandProvider.Operation.html" title="enum in org.apache.hadoop.hbase"><span class="typeNameLink">HBaseClusterManager.CommandProvider.Operation</span></a></li>
+<li type="circle">org.apache.hadoop.hbase.<a href="../../../../org/apache/hadoop/hbase/ClusterManager.ServiceType.html" title="enum in org.apache.hadoop.hbase"><span class="typeNameLink">ClusterManager.ServiceType</span></a></li>
+<li type="circle">org.apache.hadoop.hbase.<a href="../../../../org/apache/hadoop/hbase/RESTApiClusterManager.Service.html" title="enum in org.apache.hadoop.hbase"><span class="typeNameLink">RESTApiClusterManager.Service</span></a></li>
+<li type="circle">org.apache.hadoop.hbase.<a href="../../../../org/apache/hadoop/hbase/RESTApiClusterManager.RoleCommand.html" title="enum in org.apache.hadoop.hbase"><span class="typeNameLink">RESTApiClusterManager.RoleCommand</span></a></li>
+<li type="circle">org.apache.hadoop.hbase.<a href="../../../../org/apache/hadoop/hbase/ResourceChecker.Phase.html" title="enum in org.apache.hadoop.hbase"><span class="typeNameLink">ResourceChecker.Phase</span></a></li>
 <li type="circle">org.apache.hadoop.hbase.<a href="../../../../org/apache/hadoop/hbase/IntegrationTestRegionReplicaPerf.Stat.html" title="enum in org.apache.hadoop.hbase"><span class="typeNameLink">IntegrationTestRegionReplicaPerf.Stat</span></a></li>
+<li type="circle">org.apache.hadoop.hbase.<a href="../../../../org/apache/hadoop/hbase/IntegrationTestDDLMasterFailover.ACTION.html" title="enum in org.apache.hadoop.hbase"><span class="typeNameLink">IntegrationTestDDLMasterFailover.ACTION</span></a></li>
+<li type="circle">org.apache.hadoop.hbase.<a href="../../../../org/apache/hadoop/hbase/ScanPerformanceEvaluation.ScanCounter.html" title="enum in org.apache.hadoop.hbase"><span class="typeNameLink">ScanPerformanceEvaluation.ScanCounter</span></a></li>
 </ul>
 </li>
 </ul>

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/testdevapidocs/org/apache/hadoop/hbase/procedure/package-tree.html
----------------------------------------------------------------------
diff --git a/testdevapidocs/org/apache/hadoop/hbase/procedure/package-tree.html b/testdevapidocs/org/apache/hadoop/hbase/procedure/package-tree.html
index 28973e0..a1c9b1d 100644
--- a/testdevapidocs/org/apache/hadoop/hbase/procedure/package-tree.html
+++ b/testdevapidocs/org/apache/hadoop/hbase/procedure/package-tree.html
@@ -81,14 +81,14 @@
 <ul>
 <li type="circle">java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Object</span></a>
 <ul>
-<li type="circle">org.apache.hadoop.hbase.procedure2.Procedure&lt;TEnvironment&gt; (implements java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;T&gt;)
+<li type="circle">org.apache.hadoop.hbase.procedure.Procedure (implements java.util.concurrent.<a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Callable.html?is-external=true" title="class or interface in java.util.concurrent">Callable</a>&lt;V&gt;, org.apache.hadoop.hbase.errorhandling.ForeignExceptionListener)
 <ul>
-<li type="circle">org.apache.hadoop.hbase.procedure.<a href="../../../../../org/apache/hadoop/hbase/procedure/TestProcedureDescriber.TestProcedure.html" title="class in org.apache.hadoop.hbase.procedure"><span class="typeNameLink">TestProcedureDescriber.TestProcedure</span></a></li>
+<li type="circle">org.apache.hadoop.hbase.procedure.<a href="../../../../../org/apache/hadoop/hbase/procedure/TestProcedure.LatchedProcedure.html" title="class in org.apache.hadoop.hbase.procedure"><span class="typeNameLink">TestProcedure.LatchedProcedure</span></a></li>
 </ul>
 </li>
-<li type="circle">org.apache.hadoop.hbase.procedure.Procedure (implements java.util.concurrent.<a href="https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Callable.html?is-external=true" title="class or interface in java.util.concurrent">Callable</a>&lt;V&gt;, org.apache.hadoop.hbase.errorhandling.ForeignExceptionListener)
+<li type="circle">org.apache.hadoop.hbase.procedure2.Procedure&lt;TEnvironment&gt; (implements java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;T&gt;)
 <ul>
-<li type="circle">org.apache.hadoop.hbase.procedure.<a href="../../../../../org/apache/hadoop/hbase/procedure/TestProcedure.LatchedProcedure.html" title="class in org.apache.hadoop.hbase.procedure"><span class="typeNameLink">TestProcedure.LatchedProcedure</span></a></li>
+<li type="circle">org.apache.hadoop.hbase.procedure.<a href="../../../../../org/apache/hadoop/hbase/procedure/TestProcedureDescriber.TestProcedure.html" title="class in org.apache.hadoop.hbase.procedure"><span class="typeNameLink">TestProcedureDescriber.TestProcedure</span></a></li>
 </ul>
 </li>
 <li type="circle">org.apache.hadoop.hbase.procedure.ProcedureManager

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9623a753/testdevapidocs/org/apache/hadoop/hbase/procedure2/package-tree.html
----------------------------------------------------------------------
diff --git a/testdevapidocs/org/apache/hadoop/hbase/procedure2/package-tree.html b/testdevapidocs/org/apache/hadoop/hbase/procedure2/package-tree.html
index e9c1d93..ca2f47e 100644
--- a/testdevapidocs/org/apache/hadoop/hbase/procedure2/package-tree.html
+++ b/testdevapidocs/org/apache/hadoop/hbase/procedure2/package-tree.html
@@ -206,8 +206,8 @@
 <li type="circle">java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true" title="class or interface in java.lang"><span class="typeNameLink">Enum</span></a>&lt;E&gt; (implements java.lang.<a href="https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true" title="class or interface in java.lang">Comparable</a>&lt;T&gt;, java.io.<a href="https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a>)
 <ul>
 <li type="circle">org.apache.hadoop.hbase.procedure2.<a href="../../../../../org/apache/hadoop/hbase/procedure2/TestStateMachineProcedure.TestSMProcedureState.html" title="enum in org.apache.hadoop.hbase.procedure2"><span class="typeNameLink">TestStateMachineProcedure.TestSMProcedureState</span></a></li>
-<li type="circle">org.apache.hadoop.hbase.procedure2.<a href="../../../../../org/apache/hadoop/hbase/procedure2/TestYieldProcedures.TestStateMachineProcedure.State.html" title="enum in org.apache.hadoop.hbase.procedure2"><span class="typeNameLink">TestYieldProcedures.TestStateMachineProcedure.State</span></a></li>
 <li type="circle">org.apache.hadoop.hbase.procedure2.<a href="../../../../../org/apache/hadoop/hbase/procedure2/TestProcedureRecovery.TestStateMachineProcedure.State.html" title="enum in org.apache.hadoop.hbase.procedure2"><span class="typeNameLink">TestProcedureRecovery.TestStateMachineProcedure.State</span></a></li>
+<li type="circle">org.apache.hadoop.hbase.procedure2.<a href="../../../../../org/apache/hadoop/hbase/procedure2/TestYieldProcedures.TestStateMachineProcedure.State.html" title="enum in org.apache.hadoop.hbase.procedure2"><span class="typeNameLink">TestYieldProcedures.TestStateMachineProcedure.State</span></a></li>
 </ul>
 </li>
 </ul>