hbase git commit: HBASE-17449 Add explicit document on different timeout settings

2018-03-22 Thread appy
Repository: hbase
Updated Branches:
  refs/heads/master 9601ab227 -> 68b2f5502


HBASE-17449 Add explicit document on different timeout settings


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/68b2f550
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/68b2f550
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/68b2f550

Branch: refs/heads/master
Commit: 68b2f5502a4c23318afce70a0c709178e2e521f7
Parents: 9601ab2
Author: Peter Somogyi 
Authored: Thu Feb 22 11:16:36 2018 +0100
Committer: Apekshit Sharma 
Committed: Thu Mar 22 12:06:22 2018 +0530

--
 .../hbase/TestClientOperationTimeout.java   | 196 +++
 src/main/asciidoc/_chapters/configuration.adoc  |  10 +
 2 files changed, 206 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/68b2f550/hbase-server/src/test/java/org/apache/hadoop/hbase/TestClientOperationTimeout.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/TestClientOperationTimeout.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestClientOperationTimeout.java
new file mode 100644
index 000..61e63e8
--- /dev/null
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestClientOperationTimeout.java
@@ -0,0 +1,196 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.hadoop.hbase;
+
+import java.io.IOException;
+
+import java.net.SocketTimeoutException;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.hbase.client.Get;
+import org.apache.hadoop.hbase.client.Put;
+import org.apache.hadoop.hbase.client.ResultScanner;
+import org.apache.hadoop.hbase.client.RetriesExhaustedException;
+import org.apache.hadoop.hbase.client.Scan;
+import org.apache.hadoop.hbase.client.Table;
+import org.apache.hadoop.hbase.regionserver.HRegionServer;
+import org.apache.hadoop.hbase.regionserver.RSRpcServices;
+import org.apache.hadoop.hbase.testclassification.ClientTests;
+import org.apache.hadoop.hbase.testclassification.MediumTests;
+import org.apache.hadoop.hbase.util.Bytes;
+import org.apache.hbase.thirdparty.com.google.protobuf.RpcController;
+import org.apache.hbase.thirdparty.com.google.protobuf.ServiceException;
+import org.junit.AfterClass;
+import org.junit.Before;
+import org.junit.BeforeClass;
+import org.junit.ClassRule;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
+import org.junit.rules.TestName;
+
+import org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;
+
+/**
+ * These tests verify that the RPC timeouts ('hbase.client.operation.timeout' 
and
+ * 'hbase.client.scanner.timeout.period') work correctly using a modified 
Region Server which
+ * injects delays to get, scan and mutate operations.
+ *
+ * When 'hbase.client.operation.timeout' is set and client operation is not 
completed in time the
+ * client will retry the operation 'hbase.client.retries.number' times. After 
that
+ * {@link SocketTimeoutException} will be thrown.
+ *
+ * Using 'hbase.client.scanner.timeout.period' configuration property similar 
behavior can be
+ * specified for scan related operations such as openScanner(), next(). If 
that times out
+ * {@link RetriesExhaustedException} will be thrown.
+ */
+@Category({ClientTests.class, MediumTests.class})
+public class TestClientOperationTimeout {
+
+  @ClassRule
+  public static final HBaseClassTestRule CLASS_RULE =
+  HBaseClassTestRule.forClass(TestClientOperationTimeout.class);
+
+  private static final HBaseTestingUtility TESTING_UTIL = new 
HBaseTestingUtility();
+
+  // Activate the delays after table creation to test get/scan/put
+  private static int DELAY_GET;
+  private static int DELAY_SCAN;
+  private static int DELAY_MUTATE;
+
+  private final byte[] FAMILY = Bytes.toBytes("family");
+  private final byte[] ROW = Bytes.toBytes("row");
+  private final byte[] QUALIFIER = Bytes.toBytes("qualifier");
+  private final byte[] VALUE = Bytes.toBytes("

hbase git commit: HBASE-17449 Add explicit document on different timeout settings

2018-03-22 Thread appy
Repository: hbase
Updated Branches:
  refs/heads/branch-2 2bc99e4b5 -> 0a94c9c25


HBASE-17449 Add explicit document on different timeout settings


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/0a94c9c2
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/0a94c9c2
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/0a94c9c2

Branch: refs/heads/branch-2
Commit: 0a94c9c250bd82355ef3132795a6a1cc77fc2014
Parents: 2bc99e4
Author: Peter Somogyi 
Authored: Thu Feb 22 11:16:36 2018 +0100
Committer: Apekshit Sharma 
Committed: Thu Mar 22 12:45:06 2018 +0530

--
 .../hbase/TestClientOperationTimeout.java   | 196 +++
 src/main/asciidoc/_chapters/configuration.adoc  |  10 +
 2 files changed, 206 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/0a94c9c2/hbase-server/src/test/java/org/apache/hadoop/hbase/TestClientOperationTimeout.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/TestClientOperationTimeout.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestClientOperationTimeout.java
new file mode 100644
index 000..61e63e8
--- /dev/null
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestClientOperationTimeout.java
@@ -0,0 +1,196 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.hadoop.hbase;
+
+import java.io.IOException;
+
+import java.net.SocketTimeoutException;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.hbase.client.Get;
+import org.apache.hadoop.hbase.client.Put;
+import org.apache.hadoop.hbase.client.ResultScanner;
+import org.apache.hadoop.hbase.client.RetriesExhaustedException;
+import org.apache.hadoop.hbase.client.Scan;
+import org.apache.hadoop.hbase.client.Table;
+import org.apache.hadoop.hbase.regionserver.HRegionServer;
+import org.apache.hadoop.hbase.regionserver.RSRpcServices;
+import org.apache.hadoop.hbase.testclassification.ClientTests;
+import org.apache.hadoop.hbase.testclassification.MediumTests;
+import org.apache.hadoop.hbase.util.Bytes;
+import org.apache.hbase.thirdparty.com.google.protobuf.RpcController;
+import org.apache.hbase.thirdparty.com.google.protobuf.ServiceException;
+import org.junit.AfterClass;
+import org.junit.Before;
+import org.junit.BeforeClass;
+import org.junit.ClassRule;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
+import org.junit.rules.TestName;
+
+import org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;
+
+/**
+ * These tests verify that the RPC timeouts ('hbase.client.operation.timeout' 
and
+ * 'hbase.client.scanner.timeout.period') work correctly using a modified 
Region Server which
+ * injects delays to get, scan and mutate operations.
+ *
+ * When 'hbase.client.operation.timeout' is set and client operation is not 
completed in time the
+ * client will retry the operation 'hbase.client.retries.number' times. After 
that
+ * {@link SocketTimeoutException} will be thrown.
+ *
+ * Using 'hbase.client.scanner.timeout.period' configuration property similar 
behavior can be
+ * specified for scan related operations such as openScanner(), next(). If 
that times out
+ * {@link RetriesExhaustedException} will be thrown.
+ */
+@Category({ClientTests.class, MediumTests.class})
+public class TestClientOperationTimeout {
+
+  @ClassRule
+  public static final HBaseClassTestRule CLASS_RULE =
+  HBaseClassTestRule.forClass(TestClientOperationTimeout.class);
+
+  private static final HBaseTestingUtility TESTING_UTIL = new 
HBaseTestingUtility();
+
+  // Activate the delays after table creation to test get/scan/put
+  private static int DELAY_GET;
+  private static int DELAY_SCAN;
+  private static int DELAY_MUTATE;
+
+  private final byte[] FAMILY = Bytes.toBytes("family");
+  private final byte[] ROW = Bytes.toBytes("row");
+  private final byte[] QUALIFIER = Bytes.toBytes("qualifier");
+  private final byte[] VALUE = Bytes.toByt

hbase git commit: HBASE-17449 Add explicit document on different timeout settings

2018-03-22 Thread appy
Repository: hbase
Updated Branches:
  refs/heads/branch-2.0 e3e7569b0 -> 9802c1771


HBASE-17449 Add explicit document on different timeout settings


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/9802c177
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/9802c177
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/9802c177

Branch: refs/heads/branch-2.0
Commit: 9802c1771cfebb774c3eb5fae2f25d6141dc70f6
Parents: e3e7569
Author: Peter Somogyi 
Authored: Thu Feb 22 11:16:36 2018 +0100
Committer: Apekshit Sharma 
Committed: Thu Mar 22 12:45:24 2018 +0530

--
 .../hbase/TestClientOperationTimeout.java   | 196 +++
 src/main/asciidoc/_chapters/configuration.adoc  |  10 +
 2 files changed, 206 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/9802c177/hbase-server/src/test/java/org/apache/hadoop/hbase/TestClientOperationTimeout.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/TestClientOperationTimeout.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestClientOperationTimeout.java
new file mode 100644
index 000..61e63e8
--- /dev/null
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/TestClientOperationTimeout.java
@@ -0,0 +1,196 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.hadoop.hbase;
+
+import java.io.IOException;
+
+import java.net.SocketTimeoutException;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.hbase.client.Get;
+import org.apache.hadoop.hbase.client.Put;
+import org.apache.hadoop.hbase.client.ResultScanner;
+import org.apache.hadoop.hbase.client.RetriesExhaustedException;
+import org.apache.hadoop.hbase.client.Scan;
+import org.apache.hadoop.hbase.client.Table;
+import org.apache.hadoop.hbase.regionserver.HRegionServer;
+import org.apache.hadoop.hbase.regionserver.RSRpcServices;
+import org.apache.hadoop.hbase.testclassification.ClientTests;
+import org.apache.hadoop.hbase.testclassification.MediumTests;
+import org.apache.hadoop.hbase.util.Bytes;
+import org.apache.hbase.thirdparty.com.google.protobuf.RpcController;
+import org.apache.hbase.thirdparty.com.google.protobuf.ServiceException;
+import org.junit.AfterClass;
+import org.junit.Before;
+import org.junit.BeforeClass;
+import org.junit.ClassRule;
+import org.junit.Rule;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
+import org.junit.rules.TestName;
+
+import org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;
+
+/**
+ * These tests verify that the RPC timeouts ('hbase.client.operation.timeout' 
and
+ * 'hbase.client.scanner.timeout.period') work correctly using a modified 
Region Server which
+ * injects delays to get, scan and mutate operations.
+ *
+ * When 'hbase.client.operation.timeout' is set and client operation is not 
completed in time the
+ * client will retry the operation 'hbase.client.retries.number' times. After 
that
+ * {@link SocketTimeoutException} will be thrown.
+ *
+ * Using 'hbase.client.scanner.timeout.period' configuration property similar 
behavior can be
+ * specified for scan related operations such as openScanner(), next(). If 
that times out
+ * {@link RetriesExhaustedException} will be thrown.
+ */
+@Category({ClientTests.class, MediumTests.class})
+public class TestClientOperationTimeout {
+
+  @ClassRule
+  public static final HBaseClassTestRule CLASS_RULE =
+  HBaseClassTestRule.forClass(TestClientOperationTimeout.class);
+
+  private static final HBaseTestingUtility TESTING_UTIL = new 
HBaseTestingUtility();
+
+  // Activate the delays after table creation to test get/scan/put
+  private static int DELAY_GET;
+  private static int DELAY_SCAN;
+  private static int DELAY_MUTATE;
+
+  private final byte[] FAMILY = Bytes.toBytes("family");
+  private final byte[] ROW = Bytes.toBytes("row");
+  private final byte[] QUALIFIER = Bytes.toBytes("qualifier");
+  private final byte[] VALUE = Bytes.t

[4/4] hbase git commit: HBASE-20212 Make all Public classes have InterfaceAudience category

2018-03-22 Thread chia7712
HBASE-20212 Make all Public classes have InterfaceAudience category

Signed-off-by: tedyu 
Signed-off-by: Michael Stack 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/70c17072
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/70c17072
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/70c17072

Branch: refs/heads/branch-2.0
Commit: 70c17072708f150c22a715c3f34662db278d7185
Parents: 9802c17
Author: Chia-Ping Tsai 
Authored: Thu Mar 22 09:23:16 2018 +0800
Committer: Chia-Ping Tsai 
Committed: Thu Mar 22 18:17:16 2018 +0800

--
 hbase-annotations/pom.xml   |   4 +
 hbase-client/pom.xml|   4 +
 .../hbase/TestInterfaceAudienceAnnotations.java | 540 ---
 hbase-common/pom.xml|   4 +
 .../apache/hadoop/hbase/trace/TraceUtil.java|   2 +
 .../org/apache/hadoop/hbase/util/JSONBean.java  |  11 +-
 .../hadoop/hbase/util/JSONMetricUtil.java   |  11 +-
 hbase-endpoint/pom.xml  |   4 +
 hbase-examples/pom.xml  |   4 +
 .../client/example/AsyncClientExample.java  |   3 +-
 .../client/example/BufferedMutatorExample.java  |   3 +-
 .../client/example/ExportEndpointExample.java   |  15 +-
 .../hbase/client/example/HttpProxyExample.java  |   3 +-
 .../example/MultiThreadedClientExample.java |   3 +-
 .../client/example/RefreshHFilesClient.java |   7 +-
 .../coprocessor/example/BulkDeleteEndpoint.java |  10 +-
 .../example/DelegatingInternalScanner.java  |   3 +-
 .../ExampleMasterObserverWithMetrics.java   |   3 +-
 .../ExampleRegionObserverWithMetrics.java   |   3 +-
 .../example/RefreshHFilesEndpoint.java  |   8 +-
 .../coprocessor/example/RowCountEndpoint.java   |  10 +-
 .../example/ScanModifyingObserver.java  |   3 +-
 .../example/ValueRewritingObserver.java |   3 +-
 .../example/WriteHeavyIncrementObserver.java|   3 +-
 .../example/ZooKeeperScanPolicyObserver.java|   3 +-
 .../hadoop/hbase/mapreduce/IndexBuilder.java|   3 +-
 .../hadoop/hbase/mapreduce/SampleUploader.java  |   3 +-
 .../apache/hadoop/hbase/thrift/DemoClient.java  |   4 +-
 .../hadoop/hbase/thrift/HttpDoAsClient.java |   5 +-
 .../apache/hadoop/hbase/thrift2/DemoClient.java |   5 +-
 .../org/apache/hadoop/hbase/types/PBCell.java   |   5 +-
 hbase-external-blockcache/pom.xml   |   4 +
 hbase-hadoop-compat/pom.xml |   4 +
 .../hadoop/hbase/CompatibilityFactory.java  |   2 +
 .../hbase/CompatibilitySingletonFactory.java|   2 +
 .../apache/hadoop/hbase/io/MetricsIOSource.java |   2 +
 .../hadoop/hbase/io/MetricsIOWrapper.java   |   3 +
 .../hbase/ipc/MetricsHBaseServerSource.java |   2 +
 .../ipc/MetricsHBaseServerSourceFactory.java|   3 +
 .../hbase/ipc/MetricsHBaseServerWrapper.java|   3 +
 .../master/MetricsAssignmentManagerSource.java  |   2 +
 .../master/MetricsMasterFileSystemSource.java   |   2 +
 .../hbase/master/MetricsMasterProcSource.java   |   2 +
 .../master/MetricsMasterProcSourceFactory.java  |   3 +
 .../hbase/master/MetricsMasterQuotaSource.java  |   2 +
 .../master/MetricsMasterQuotaSourceFactory.java |   3 +
 .../hbase/master/MetricsMasterSource.java   |   2 +
 .../master/MetricsMasterSourceFactory.java  |   3 +
 .../hbase/master/MetricsMasterWrapper.java  |   2 +
 .../hbase/master/MetricsSnapshotSource.java |   2 +
 .../master/balancer/MetricsBalancerSource.java  |   2 +
 .../MetricsStochasticBalancerSource.java|   7 +-
 .../apache/hadoop/hbase/metrics/BaseSource.java |   3 +
 .../hbase/metrics/ExceptionTrackingSource.java  |   3 +
 .../hbase/metrics/JvmPauseMonitorSource.java|   3 +
 .../hadoop/hbase/metrics/MBeanSource.java   |   2 +
 .../hadoop/hbase/metrics/OperationMetrics.java  |   3 +
 .../MetricsHeapMemoryManagerSource.java |   2 +
 .../MetricsRegionAggregateSource.java   |   2 +
 .../MetricsRegionServerQuotaSource.java |   2 +
 .../regionserver/MetricsRegionServerSource.java |   2 +
 .../MetricsRegionServerSourceFactory.java   |   2 +
 .../MetricsRegionServerWrapper.java |   3 +
 .../hbase/regionserver/MetricsRegionSource.java |   2 +
 .../regionserver/MetricsRegionWrapper.java  |   3 +
 .../MetricsTableAggregateSource.java|   2 +
 .../regionserver/MetricsTableLatencies.java |   3 +
 .../hbase/regionserver/MetricsTableSource.java  |   3 +
 .../MetricsTableWrapperAggregate.java   |   2 +
 .../regionserver/wal/MetricsWALSource.java  |   2 +
 .../MetricsReplicationSinkSource.java   |   3 +
 .../regionserver/MetricsReplicationSource.java  |   2 +
 .../MetricsReplicationSourceFactory.java|   3 +
 .../MetricsReplicationSourceSource.java |   2 +
 .../hadoop/hbase/rest/MetricsRESTSource.java|  10

[2/4] hbase git commit: HBASE-20212 Make all Public classes have InterfaceAudience category

2018-03-22 Thread chia7712
http://git-wip-us.apache.org/repos/asf/hbase/blob/70c17072/hbase-server/src/main/java/org/apache/hadoop/hbase/JMXListener.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/JMXListener.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/JMXListener.java
index 6fdc77e..5008354 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/JMXListener.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/JMXListener.java
@@ -18,14 +18,6 @@
  */
 package org.apache.hadoop.hbase;
 
-import com.google.protobuf.Service;
-
-import org.apache.hadoop.conf.Configuration;
-import org.apache.hadoop.hbase.CoprocessorEnvironment;
-import org.apache.hadoop.hbase.coprocessor.*;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
 import java.io.IOException;
 import java.lang.management.ManagementFactory;
 import java.rmi.registry.LocateRegistry;
@@ -34,13 +26,20 @@ import java.rmi.server.RMIClientSocketFactory;
 import java.rmi.server.RMIServerSocketFactory;
 import java.rmi.server.UnicastRemoteObject;
 import java.util.HashMap;
-import java.util.Optional;
-
 import javax.management.MBeanServer;
 import javax.management.remote.JMXConnectorServer;
 import javax.management.remote.JMXConnectorServerFactory;
 import javax.management.remote.JMXServiceURL;
 import javax.management.remote.rmi.RMIConnectorServer;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.hbase.coprocessor.MasterCoprocessor;
+import org.apache.hadoop.hbase.coprocessor.MasterCoprocessorEnvironment;
+import org.apache.hadoop.hbase.coprocessor.RegionCoprocessorEnvironment;
+import org.apache.hadoop.hbase.coprocessor.RegionServerCoprocessor;
+import org.apache.hadoop.hbase.coprocessor.RegionServerCoprocessorEnvironment;
+import org.apache.yetus.audience.InterfaceAudience;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 /**
  * Pluggable JMX Agent for HBase(to fix the 2 random TCP ports issue
@@ -49,6 +48,7 @@ import javax.management.remote.rmi.RMIConnectorServer;
  * 2)support password authentication
  * 3)support subset of SSL (with default configuration)
  */
+@InterfaceAudience.Private
 public class JMXListener implements MasterCoprocessor, RegionServerCoprocessor 
{
   private static final Logger LOG = LoggerFactory.getLogger(JMXListener.class);
   public static final String RMI_REGISTRY_PORT_CONF_KEY = ".rmi.registry.port";

http://git-wip-us.apache.org/repos/asf/hbase/blob/70c17072/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.java
index d505d6f..5dffb73 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.java
@@ -13,14 +13,15 @@ package org.apache.hadoop.hbase;
 import java.io.IOException;
 import java.net.Socket;
 import java.util.ArrayList;
-
 import javax.net.ssl.SSLSocket;
 import javax.rmi.ssl.SslRMIClientSocketFactory;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * Avoid SSL V3.0 "Poodle" Vulnerability - CVE-2014-3566
  */
 @SuppressWarnings("serial")
+@InterfaceAudience.Private
 public class SslRMIClientSocketFactorySecure extends SslRMIClientSocketFactory 
{
   @Override
   public Socket createSocket(String host, int port) throws IOException {

http://git-wip-us.apache.org/repos/asf/hbase/blob/70c17072/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.java
index 3583afe..8a92236 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.java
@@ -14,14 +14,15 @@ import java.io.IOException;
 import java.net.ServerSocket;
 import java.net.Socket;
 import java.util.ArrayList;
-
 import javax.net.ssl.SSLSocket;
 import javax.net.ssl.SSLSocketFactory;
 import javax.rmi.ssl.SslRMIServerSocketFactory;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * Avoid SSL V3.0 "Poodle" Vulnerability - CVE-2014-3566
  */
+@InterfaceAudience.Private
 public class SslRMIServerSocketFactorySecure extends SslRMIServerSocketFactory 
{
   // If you add more constructors, you may have to change the rest of this 
implementation,
   // which assumes an empty constructor, i.e. there are no specially enabled 
protocols or

http://git-wip-us.a

[1/4] hbase git commit: HBASE-20212 Make all Public classes have InterfaceAudience category

2018-03-22 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/branch-2.0 9802c1771 -> 70c170727


http://git-wip-us.apache.org/repos/asf/hbase/blob/70c17072/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/IncrementCoalescer.java
--
diff --git 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/IncrementCoalescer.java
 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/IncrementCoalescer.java
index 3fb7254..f2abe2e 100644
--- 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/IncrementCoalescer.java
+++ 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/IncrementCoalescer.java
@@ -31,7 +31,6 @@ import java.util.concurrent.ThreadPoolExecutor;
 import java.util.concurrent.TimeUnit;
 import java.util.concurrent.atomic.AtomicInteger;
 import java.util.concurrent.atomic.LongAdder;
-
 import org.apache.hadoop.hbase.CellUtil;
 import org.apache.hadoop.hbase.client.Table;
 import org.apache.hadoop.hbase.thrift.ThriftServerRunner.HBaseHandler;
@@ -40,6 +39,7 @@ import org.apache.hadoop.hbase.util.Bytes;
 import org.apache.hadoop.hbase.util.Threads;
 import org.apache.hadoop.metrics2.util.MBeans;
 import org.apache.thrift.TException;
+import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -52,6 +52,7 @@ import org.slf4j.LoggerFactory;
  * thrift server dies or is shut down before everything in the queue is 
drained.
  *
  */
+@InterfaceAudience.Private
 public class IncrementCoalescer implements IncrementCoalescerMBean {
 
   /**

http://git-wip-us.apache.org/repos/asf/hbase/blob/70c17072/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/IncrementCoalescerMBean.java
--
diff --git 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/IncrementCoalescerMBean.java
 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/IncrementCoalescerMBean.java
index 604fa97..06cf193 100644
--- 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/IncrementCoalescerMBean.java
+++ 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/IncrementCoalescerMBean.java
@@ -18,6 +18,9 @@
 
 package org.apache.hadoop.hbase.thrift;
 
+import org.apache.yetus.audience.InterfaceAudience;
+
+@InterfaceAudience.Private
 public interface IncrementCoalescerMBean {
   int getQueueSize();
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/70c17072/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/THBaseThreadPoolExecutor.java
--
diff --git 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/THBaseThreadPoolExecutor.java
 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/THBaseThreadPoolExecutor.java
index 973cad7..c86f476 100644
--- 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/THBaseThreadPoolExecutor.java
+++ 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/THBaseThreadPoolExecutor.java
@@ -22,12 +22,14 @@ import java.util.concurrent.BlockingQueue;
 import java.util.concurrent.ThreadFactory;
 import java.util.concurrent.ThreadPoolExecutor;
 import java.util.concurrent.TimeUnit;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * A ThreadPoolExecutor customized for working with HBase thrift to update 
metrics before and
  * after the execution of a task.
  */
 
+@InterfaceAudience.Private
 public class THBaseThreadPoolExecutor extends ThreadPoolExecutor {
 
   private ThriftMetrics metrics;

http://git-wip-us.apache.org/repos/asf/hbase/blob/70c17072/hbase-zookeeper/pom.xml
--
diff --git a/hbase-zookeeper/pom.xml b/hbase-zookeeper/pom.xml
index 8c92968..a49dbe7 100644
--- a/hbase-zookeeper/pom.xml
+++ b/hbase-zookeeper/pom.xml
@@ -91,6 +91,10 @@
 org.codehaus.mojo
 findbugs-maven-plugin
   
+  
+net.revelc.code
+warbucks-maven-plugin
+  
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/70c17072/hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionNormalizerTracker.java
--
diff --git 
a/hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionNormalizerTracker.java
 
b/hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionNormalizerTracker.java
index a50ce4c..7413879 100644
--- 
a/hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionNormalizerTracker.java
+++ 
b/hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionNormalizerTracker.java
@@ -19,10 +19,10 @@
 package org.apache.hadoop.hbase.zookeeper;
 
 import java.io.IOException;
-
 import org.apache.hadoop.hbase.Abortable;
 import org.apache.hadoop.hbase.exceptions.DeserializationException;
 import org.apache.hadoop.hbase.util.Byt

[3/4] hbase git commit: HBASE-20212 Make all Public classes have InterfaceAudience category

2018-03-22 Thread chia7712
http://git-wip-us.apache.org/repos/asf/hbase/blob/70c17072/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSourceFactory.java
--
diff --git 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSourceFactory.java
 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSourceFactory.java
index b282e06..197f9f9 100644
--- 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSourceFactory.java
+++ 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSourceFactory.java
@@ -18,9 +18,12 @@
 
 package org.apache.hadoop.hbase.master;
 
+import org.apache.yetus.audience.InterfaceAudience;
+
 /**
  * Interface of a factory to create MetricsMasterSource when given a 
MetricsMasterWrapper
  */
+@InterfaceAudience.Private
 public interface MetricsMasterProcSourceFactory {
 
   MetricsMasterProcSource create(MetricsMasterWrapper masterWrapper);

http://git-wip-us.apache.org/repos/asf/hbase/blob/70c17072/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.java
--
diff --git 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.java
 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.java
index 99c5441..8450432 100644
--- 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.java
+++ 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.java
@@ -17,10 +17,12 @@
 package org.apache.hadoop.hbase.master;
 
 import org.apache.hadoop.hbase.metrics.BaseSource;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * A collection of exposed metrics for space quotas from the HBase Master.
  */
+@InterfaceAudience.Private
 public interface MetricsMasterQuotaSource extends BaseSource {
 
   String METRICS_NAME = "Quotas";

http://git-wip-us.apache.org/repos/asf/hbase/blob/70c17072/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSourceFactory.java
--
diff --git 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSourceFactory.java
 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSourceFactory.java
index 6e10746..2dcd945 100644
--- 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSourceFactory.java
+++ 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSourceFactory.java
@@ -16,9 +16,12 @@
  */
 package org.apache.hadoop.hbase.master;
 
+import org.apache.yetus.audience.InterfaceAudience;
+
 /**
  * Interface of a factory to create MetricsMasterQuotaSource when given a 
MetricsMasterWrapper.
  */
+@InterfaceAudience.Private
 public interface MetricsMasterQuotaSourceFactory {
 
   MetricsMasterQuotaSource create(MetricsMasterWrapper masterWrapper);

http://git-wip-us.apache.org/repos/asf/hbase/blob/70c17072/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSource.java
--
diff --git 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSource.java
 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSource.java
index d187bb1..dcfc600 100644
--- 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSource.java
+++ 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSource.java
@@ -20,10 +20,12 @@ package org.apache.hadoop.hbase.master;
 
 import org.apache.hadoop.hbase.metrics.BaseSource;
 import org.apache.hadoop.hbase.metrics.OperationMetrics;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * Interface that classes that expose metrics about the master will implement.
  */
+@InterfaceAudience.Private
 public interface MetricsMasterSource extends BaseSource {
 
   /**

http://git-wip-us.apache.org/repos/asf/hbase/blob/70c17072/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSourceFactory.java
--
diff --git 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSourceFactory.java
 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSourceFactory.java
index 63a85a3..fce574a 100644
--- 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSourceFactory.java
+++ 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSourceFactory.java
@@ -18,9 +18,12 @@
 
 package org.apache.hadoop.hbase.m

[3/4] hbase git commit: HBASE-20212 Make all Public classes have InterfaceAudience category

2018-03-22 Thread chia7712
http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9e46bb/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSourceFactory.java
--
diff --git 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSourceFactory.java
 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSourceFactory.java
index b282e06..197f9f9 100644
--- 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSourceFactory.java
+++ 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSourceFactory.java
@@ -18,9 +18,12 @@
 
 package org.apache.hadoop.hbase.master;
 
+import org.apache.yetus.audience.InterfaceAudience;
+
 /**
  * Interface of a factory to create MetricsMasterSource when given a 
MetricsMasterWrapper
  */
+@InterfaceAudience.Private
 public interface MetricsMasterProcSourceFactory {
 
   MetricsMasterProcSource create(MetricsMasterWrapper masterWrapper);

http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9e46bb/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.java
--
diff --git 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.java
 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.java
index 99c5441..8450432 100644
--- 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.java
+++ 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.java
@@ -17,10 +17,12 @@
 package org.apache.hadoop.hbase.master;
 
 import org.apache.hadoop.hbase.metrics.BaseSource;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * A collection of exposed metrics for space quotas from the HBase Master.
  */
+@InterfaceAudience.Private
 public interface MetricsMasterQuotaSource extends BaseSource {
 
   String METRICS_NAME = "Quotas";

http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9e46bb/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSourceFactory.java
--
diff --git 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSourceFactory.java
 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSourceFactory.java
index 6e10746..2dcd945 100644
--- 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSourceFactory.java
+++ 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSourceFactory.java
@@ -16,9 +16,12 @@
  */
 package org.apache.hadoop.hbase.master;
 
+import org.apache.yetus.audience.InterfaceAudience;
+
 /**
  * Interface of a factory to create MetricsMasterQuotaSource when given a 
MetricsMasterWrapper.
  */
+@InterfaceAudience.Private
 public interface MetricsMasterQuotaSourceFactory {
 
   MetricsMasterQuotaSource create(MetricsMasterWrapper masterWrapper);

http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9e46bb/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSource.java
--
diff --git 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSource.java
 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSource.java
index d187bb1..dcfc600 100644
--- 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSource.java
+++ 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSource.java
@@ -20,10 +20,12 @@ package org.apache.hadoop.hbase.master;
 
 import org.apache.hadoop.hbase.metrics.BaseSource;
 import org.apache.hadoop.hbase.metrics.OperationMetrics;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * Interface that classes that expose metrics about the master will implement.
  */
+@InterfaceAudience.Private
 public interface MetricsMasterSource extends BaseSource {
 
   /**

http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9e46bb/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSourceFactory.java
--
diff --git 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSourceFactory.java
 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSourceFactory.java
index 63a85a3..fce574a 100644
--- 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSourceFactory.java
+++ 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterSourceFactory.java
@@ -18,9 +18,12 @@
 
 package org.apache.hadoop.hbase.m

[4/4] hbase git commit: HBASE-20212 Make all Public classes have InterfaceAudience category

2018-03-22 Thread chia7712
HBASE-20212 Make all Public classes have InterfaceAudience category

Signed-off-by: tedyu 
Signed-off-by: Michael Stack 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/dd9e46bb
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/dd9e46bb
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/dd9e46bb

Branch: refs/heads/branch-2
Commit: dd9e46bbf5fa76b06720392d27d07855ce2d553e
Parents: 0a94c9c
Author: Chia-Ping Tsai 
Authored: Thu Mar 22 09:24:14 2018 +0800
Committer: Chia-Ping Tsai 
Committed: Thu Mar 22 18:09:54 2018 +0800

--
 hbase-annotations/pom.xml   |   4 +
 hbase-client/pom.xml|   4 +
 .../hbase/TestInterfaceAudienceAnnotations.java | 540 ---
 hbase-common/pom.xml|   4 +
 .../apache/hadoop/hbase/trace/TraceUtil.java|   2 +
 .../org/apache/hadoop/hbase/util/JSONBean.java  |  11 +-
 .../hadoop/hbase/util/JSONMetricUtil.java   |  11 +-
 hbase-endpoint/pom.xml  |   4 +
 hbase-examples/pom.xml  |   4 +
 .../client/example/AsyncClientExample.java  |   3 +-
 .../client/example/BufferedMutatorExample.java  |   3 +-
 .../client/example/ExportEndpointExample.java   |  15 +-
 .../hbase/client/example/HttpProxyExample.java  |   3 +-
 .../example/MultiThreadedClientExample.java |   3 +-
 .../client/example/RefreshHFilesClient.java |   7 +-
 .../coprocessor/example/BulkDeleteEndpoint.java |  10 +-
 .../example/DelegatingInternalScanner.java  |   3 +-
 .../ExampleMasterObserverWithMetrics.java   |   3 +-
 .../ExampleRegionObserverWithMetrics.java   |   3 +-
 .../example/RefreshHFilesEndpoint.java  |   8 +-
 .../coprocessor/example/RowCountEndpoint.java   |  10 +-
 .../example/ScanModifyingObserver.java  |   3 +-
 .../example/ValueRewritingObserver.java |   3 +-
 .../example/WriteHeavyIncrementObserver.java|   3 +-
 .../example/ZooKeeperScanPolicyObserver.java|   3 +-
 .../hadoop/hbase/mapreduce/IndexBuilder.java|   3 +-
 .../hadoop/hbase/mapreduce/SampleUploader.java  |   3 +-
 .../apache/hadoop/hbase/thrift/DemoClient.java  |   4 +-
 .../hadoop/hbase/thrift/HttpDoAsClient.java |   5 +-
 .../apache/hadoop/hbase/thrift2/DemoClient.java |   5 +-
 .../org/apache/hadoop/hbase/types/PBCell.java   |   5 +-
 hbase-external-blockcache/pom.xml   |   4 +
 hbase-hadoop-compat/pom.xml |   4 +
 .../hadoop/hbase/CompatibilityFactory.java  |   2 +
 .../hbase/CompatibilitySingletonFactory.java|   2 +
 .../apache/hadoop/hbase/io/MetricsIOSource.java |   2 +
 .../hadoop/hbase/io/MetricsIOWrapper.java   |   3 +
 .../hbase/ipc/MetricsHBaseServerSource.java |   2 +
 .../ipc/MetricsHBaseServerSourceFactory.java|   3 +
 .../hbase/ipc/MetricsHBaseServerWrapper.java|   3 +
 .../master/MetricsAssignmentManagerSource.java  |   2 +
 .../master/MetricsMasterFileSystemSource.java   |   2 +
 .../hbase/master/MetricsMasterProcSource.java   |   2 +
 .../master/MetricsMasterProcSourceFactory.java  |   3 +
 .../hbase/master/MetricsMasterQuotaSource.java  |   2 +
 .../master/MetricsMasterQuotaSourceFactory.java |   3 +
 .../hbase/master/MetricsMasterSource.java   |   2 +
 .../master/MetricsMasterSourceFactory.java  |   3 +
 .../hbase/master/MetricsMasterWrapper.java  |   2 +
 .../hbase/master/MetricsSnapshotSource.java |   2 +
 .../master/balancer/MetricsBalancerSource.java  |   2 +
 .../MetricsStochasticBalancerSource.java|   7 +-
 .../apache/hadoop/hbase/metrics/BaseSource.java |   3 +
 .../hbase/metrics/ExceptionTrackingSource.java  |   3 +
 .../hbase/metrics/JvmPauseMonitorSource.java|   3 +
 .../hadoop/hbase/metrics/MBeanSource.java   |   2 +
 .../hadoop/hbase/metrics/OperationMetrics.java  |   3 +
 .../MetricsHeapMemoryManagerSource.java |   2 +
 .../MetricsRegionAggregateSource.java   |   2 +
 .../MetricsRegionServerQuotaSource.java |   2 +
 .../regionserver/MetricsRegionServerSource.java |   2 +
 .../MetricsRegionServerSourceFactory.java   |   2 +
 .../MetricsRegionServerWrapper.java |   3 +
 .../hbase/regionserver/MetricsRegionSource.java |   2 +
 .../regionserver/MetricsRegionWrapper.java  |   3 +
 .../MetricsTableAggregateSource.java|   2 +
 .../regionserver/MetricsTableLatencies.java |   3 +
 .../hbase/regionserver/MetricsTableSource.java  |   3 +
 .../MetricsTableWrapperAggregate.java   |   2 +
 .../regionserver/wal/MetricsWALSource.java  |   2 +
 .../MetricsReplicationSinkSource.java   |   3 +
 .../regionserver/MetricsReplicationSource.java  |   2 +
 .../MetricsReplicationSourceFactory.java|   3 +
 .../MetricsReplicationSourceSource.java |   2 +
 .../hadoop/hbase/rest/MetricsRESTSource.java|  10 +

[1/4] hbase git commit: HBASE-20212 Make all Public classes have InterfaceAudience category

2018-03-22 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/branch-2 0a94c9c25 -> dd9e46bbf


http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9e46bb/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/THBaseThreadPoolExecutor.java
--
diff --git 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/THBaseThreadPoolExecutor.java
 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/THBaseThreadPoolExecutor.java
index 973cad7..c86f476 100644
--- 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/THBaseThreadPoolExecutor.java
+++ 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/THBaseThreadPoolExecutor.java
@@ -22,12 +22,14 @@ import java.util.concurrent.BlockingQueue;
 import java.util.concurrent.ThreadFactory;
 import java.util.concurrent.ThreadPoolExecutor;
 import java.util.concurrent.TimeUnit;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * A ThreadPoolExecutor customized for working with HBase thrift to update 
metrics before and
  * after the execution of a task.
  */
 
+@InterfaceAudience.Private
 public class THBaseThreadPoolExecutor extends ThreadPoolExecutor {
 
   private ThriftMetrics metrics;

http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9e46bb/hbase-zookeeper/pom.xml
--
diff --git a/hbase-zookeeper/pom.xml b/hbase-zookeeper/pom.xml
index 963476a..588afb5 100644
--- a/hbase-zookeeper/pom.xml
+++ b/hbase-zookeeper/pom.xml
@@ -91,6 +91,10 @@
 org.codehaus.mojo
 findbugs-maven-plugin
   
+  
+net.revelc.code
+warbucks-maven-plugin
+  
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9e46bb/hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionNormalizerTracker.java
--
diff --git 
a/hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionNormalizerTracker.java
 
b/hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionNormalizerTracker.java
index a50ce4c..7413879 100644
--- 
a/hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionNormalizerTracker.java
+++ 
b/hbase-zookeeper/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionNormalizerTracker.java
@@ -19,10 +19,10 @@
 package org.apache.hadoop.hbase.zookeeper;
 
 import java.io.IOException;
-
 import org.apache.hadoop.hbase.Abortable;
 import org.apache.hadoop.hbase.exceptions.DeserializationException;
 import org.apache.hadoop.hbase.util.Bytes;
+import org.apache.yetus.audience.InterfaceAudience;
 import org.apache.zookeeper.KeeperException;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -33,6 +33,7 @@ import 
org.apache.hadoop.hbase.shaded.protobuf.generated.RegionNormalizerProtos;
 /**
  * Tracks region normalizer state up in ZK
  */
+@InterfaceAudience.Private
 public class RegionNormalizerTracker extends ZKNodeTracker {
   private static final Logger LOG = 
LoggerFactory.getLogger(RegionNormalizerTracker.class);
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9e46bb/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 5ca31f8..abbe4ad 100755
--- a/pom.xml
+++ b/pom.xml
@@ -909,6 +909,34 @@
 true
   
 
+
+  net.revelc.code
+  warbucks-maven-plugin
+  ${maven.warbucks.version}
+  
+false
+
+  
+
+(?!.*(.generated.|.tmpl.|\$)).*
+false
+true
+
false
+false
+false
+
org[.]apache[.]yetus[.]audience[.]InterfaceAudience.*
+  
+
+  
+  
+
+  run-warbucks
+  
+check
+  
+
+  
+
   
 
 
@@ -1382,6 +1410,7 @@
 3.0.0
 3.4
 3.0.1
+1.1.0
 1.5.0.Final
 2.8.2
 3.2.2



[2/4] hbase git commit: HBASE-20212 Make all Public classes have InterfaceAudience category

2018-03-22 Thread chia7712
http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9e46bb/hbase-server/src/main/java/org/apache/hadoop/hbase/JMXListener.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/JMXListener.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/JMXListener.java
index 6fdc77e..5008354 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/JMXListener.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/JMXListener.java
@@ -18,14 +18,6 @@
  */
 package org.apache.hadoop.hbase;
 
-import com.google.protobuf.Service;
-
-import org.apache.hadoop.conf.Configuration;
-import org.apache.hadoop.hbase.CoprocessorEnvironment;
-import org.apache.hadoop.hbase.coprocessor.*;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
 import java.io.IOException;
 import java.lang.management.ManagementFactory;
 import java.rmi.registry.LocateRegistry;
@@ -34,13 +26,20 @@ import java.rmi.server.RMIClientSocketFactory;
 import java.rmi.server.RMIServerSocketFactory;
 import java.rmi.server.UnicastRemoteObject;
 import java.util.HashMap;
-import java.util.Optional;
-
 import javax.management.MBeanServer;
 import javax.management.remote.JMXConnectorServer;
 import javax.management.remote.JMXConnectorServerFactory;
 import javax.management.remote.JMXServiceURL;
 import javax.management.remote.rmi.RMIConnectorServer;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.hbase.coprocessor.MasterCoprocessor;
+import org.apache.hadoop.hbase.coprocessor.MasterCoprocessorEnvironment;
+import org.apache.hadoop.hbase.coprocessor.RegionCoprocessorEnvironment;
+import org.apache.hadoop.hbase.coprocessor.RegionServerCoprocessor;
+import org.apache.hadoop.hbase.coprocessor.RegionServerCoprocessorEnvironment;
+import org.apache.yetus.audience.InterfaceAudience;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 /**
  * Pluggable JMX Agent for HBase(to fix the 2 random TCP ports issue
@@ -49,6 +48,7 @@ import javax.management.remote.rmi.RMIConnectorServer;
  * 2)support password authentication
  * 3)support subset of SSL (with default configuration)
  */
+@InterfaceAudience.Private
 public class JMXListener implements MasterCoprocessor, RegionServerCoprocessor 
{
   private static final Logger LOG = LoggerFactory.getLogger(JMXListener.class);
   public static final String RMI_REGISTRY_PORT_CONF_KEY = ".rmi.registry.port";

http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9e46bb/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.java
index d505d6f..5dffb73 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.java
@@ -13,14 +13,15 @@ package org.apache.hadoop.hbase;
 import java.io.IOException;
 import java.net.Socket;
 import java.util.ArrayList;
-
 import javax.net.ssl.SSLSocket;
 import javax.rmi.ssl.SslRMIClientSocketFactory;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * Avoid SSL V3.0 "Poodle" Vulnerability - CVE-2014-3566
  */
 @SuppressWarnings("serial")
+@InterfaceAudience.Private
 public class SslRMIClientSocketFactorySecure extends SslRMIClientSocketFactory 
{
   @Override
   public Socket createSocket(String host, int port) throws IOException {

http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9e46bb/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.java
index 3583afe..8a92236 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.java
@@ -14,14 +14,15 @@ import java.io.IOException;
 import java.net.ServerSocket;
 import java.net.Socket;
 import java.util.ArrayList;
-
 import javax.net.ssl.SSLSocket;
 import javax.net.ssl.SSLSocketFactory;
 import javax.rmi.ssl.SslRMIServerSocketFactory;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * Avoid SSL V3.0 "Poodle" Vulnerability - CVE-2014-3566
  */
+@InterfaceAudience.Private
 public class SslRMIServerSocketFactorySecure extends SslRMIServerSocketFactory 
{
   // If you add more constructors, you may have to change the rest of this 
implementation,
   // which assumes an empty constructor, i.e. there are no specially enabled 
protocols or

http://git-wip-us.a

[1/4] hbase git commit: HBASE-20212 Make all Public classes have InterfaceAudience category

2018-03-22 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/master 68b2f5502 -> a6eeb26cc


http://git-wip-us.apache.org/repos/asf/hbase/blob/a6eeb26c/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseBulkGetExample.java
--
diff --git 
a/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseBulkGetExample.java
 
b/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseBulkGetExample.java
index cb9e0c7..b5143de 100644
--- 
a/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseBulkGetExample.java
+++ 
b/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseBulkGetExample.java
@@ -19,7 +19,6 @@ package org.apache.hadoop.hbase.spark.example.hbasecontext;
 import java.util.ArrayList;
 import java.util.Iterator;
 import java.util.List;
-
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.hbase.Cell;
 import org.apache.hadoop.hbase.HBaseConfiguration;
@@ -32,11 +31,13 @@ import org.apache.spark.SparkConf;
 import org.apache.spark.api.java.JavaRDD;
 import org.apache.spark.api.java.JavaSparkContext;
 import org.apache.spark.api.java.function.Function;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * This is a simple example of getting records in HBase
  * with the bulkGet function.
  */
+@InterfaceAudience.Private
 final public class JavaHBaseBulkGetExample {
 
   private JavaHBaseBulkGetExample() {}

http://git-wip-us.apache.org/repos/asf/hbase/blob/a6eeb26c/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseBulkLoadExample.java
--
diff --git 
a/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseBulkLoadExample.java
 
b/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseBulkLoadExample.java
index f0f3e79..6738059 100644
--- 
a/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseBulkLoadExample.java
+++ 
b/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseBulkLoadExample.java
@@ -19,7 +19,6 @@ package org.apache.hadoop.hbase.spark.example.hbasecontext;
 import java.util.ArrayList;
 import java.util.HashMap;
 import java.util.List;
-
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.hbase.HBaseConfiguration;
 import org.apache.hadoop.hbase.HConstants;
@@ -33,6 +32,7 @@ import org.apache.spark.SparkConf;
 import org.apache.spark.api.java.JavaRDD;
 import org.apache.spark.api.java.JavaSparkContext;
 import org.apache.spark.api.java.function.Function;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * Run this example using command below:
@@ -45,6 +45,7 @@ import org.apache.spark.api.java.function.Function;
  * 'hbase org.apache.hadoop.hbase.tool.LoadIncrementalHFiles' to load the 
HFiles into table to
  * verify this example.
  */
+@InterfaceAudience.Private
 final public class JavaHBaseBulkLoadExample {
   private JavaHBaseBulkLoadExample() {}
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/a6eeb26c/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseBulkPutExample.java
--
diff --git 
a/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseBulkPutExample.java
 
b/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseBulkPutExample.java
index 5821c19..4a80b96 100644
--- 
a/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseBulkPutExample.java
+++ 
b/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseBulkPutExample.java
@@ -18,7 +18,6 @@ package org.apache.hadoop.hbase.spark.example.hbasecontext;
 
 import java.util.ArrayList;
 import java.util.List;
-
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.hbase.HBaseConfiguration;
 import org.apache.hadoop.hbase.TableName;
@@ -29,11 +28,13 @@ import org.apache.spark.SparkConf;
 import org.apache.spark.api.java.JavaRDD;
 import org.apache.spark.api.java.JavaSparkContext;
 import org.apache.spark.api.java.function.Function;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * This is a simple example of putting records in HBase
  * with the bulkPut function.
  */
+@InterfaceAudience.Private
 final public class JavaHBaseBulkPutExample {
 
   private JavaHBaseBulkPutExample() {}

http://git-wip-us.apache.org/repos/asf/hbase/blob/a6eeb26c/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/example/hbasecontext/JavaHBaseDistributedScan.java
--
diff --git 
a/hbase-spark/src/main/java/org/apache/hadoop/hbase/spark/

[3/4] hbase git commit: HBASE-20212 Make all Public classes have InterfaceAudience category

2018-03-22 Thread chia7712
http://git-wip-us.apache.org/repos/asf/hbase/blob/a6eeb26c/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterFileSystemSource.java
--
diff --git 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterFileSystemSource.java
 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterFileSystemSource.java
index 6cf942b..91dc71a 100644
--- 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterFileSystemSource.java
+++ 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterFileSystemSource.java
@@ -19,7 +19,9 @@
 package org.apache.hadoop.hbase.master;
 
 import org.apache.hadoop.hbase.metrics.BaseSource;
+import org.apache.yetus.audience.InterfaceAudience;
 
+@InterfaceAudience.Private
 public interface MetricsMasterFileSystemSource extends BaseSource {
 
   /**

http://git-wip-us.apache.org/repos/asf/hbase/blob/a6eeb26c/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSource.java
--
diff --git 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSource.java
 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSource.java
index 51a17a8..db4f25e 100644
--- 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSource.java
+++ 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSource.java
@@ -19,10 +19,12 @@
 package org.apache.hadoop.hbase.master;
 
 import org.apache.hadoop.hbase.metrics.BaseSource;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * Interface that classes that expose metrics about the master will implement.
  */
+@InterfaceAudience.Private
 public interface MetricsMasterProcSource extends BaseSource {
 
   /**

http://git-wip-us.apache.org/repos/asf/hbase/blob/a6eeb26c/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSourceFactory.java
--
diff --git 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSourceFactory.java
 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSourceFactory.java
index b282e06..197f9f9 100644
--- 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSourceFactory.java
+++ 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterProcSourceFactory.java
@@ -18,9 +18,12 @@
 
 package org.apache.hadoop.hbase.master;
 
+import org.apache.yetus.audience.InterfaceAudience;
+
 /**
  * Interface of a factory to create MetricsMasterSource when given a 
MetricsMasterWrapper
  */
+@InterfaceAudience.Private
 public interface MetricsMasterProcSourceFactory {
 
   MetricsMasterProcSource create(MetricsMasterWrapper masterWrapper);

http://git-wip-us.apache.org/repos/asf/hbase/blob/a6eeb26c/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.java
--
diff --git 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.java
 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.java
index 99c5441..8450432 100644
--- 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.java
+++ 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.java
@@ -17,10 +17,12 @@
 package org.apache.hadoop.hbase.master;
 
 import org.apache.hadoop.hbase.metrics.BaseSource;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * A collection of exposed metrics for space quotas from the HBase Master.
  */
+@InterfaceAudience.Private
 public interface MetricsMasterQuotaSource extends BaseSource {
 
   String METRICS_NAME = "Quotas";

http://git-wip-us.apache.org/repos/asf/hbase/blob/a6eeb26c/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSourceFactory.java
--
diff --git 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSourceFactory.java
 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSourceFactory.java
index 6e10746..2dcd945 100644
--- 
a/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSourceFactory.java
+++ 
b/hbase-hadoop-compat/src/main/java/org/apache/hadoop/hbase/master/MetricsMasterQuotaSourceFactory.java
@@ -16,9 +16,12 @@
  */
 package org.apache.hadoop.hbase.master;
 
+import org.apache.yetus.audience.InterfaceAudience;
+
 /**
  * Interface of a factory to create MetricsMasterQuotaS

[4/4] hbase git commit: HBASE-20212 Make all Public classes have InterfaceAudience category

2018-03-22 Thread chia7712
HBASE-20212 Make all Public classes have InterfaceAudience category

Signed-off-by: tedyu 
Signed-off-by: Michael Stack 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/a6eeb26c
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/a6eeb26c
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/a6eeb26c

Branch: refs/heads/master
Commit: a6eeb26cc0b4d0af3fff50b5b931b6847df1f9d2
Parents: 68b2f55
Author: Chia-Ping Tsai 
Authored: Tue Mar 20 15:46:51 2018 +0800
Committer: Chia-Ping Tsai 
Committed: Thu Mar 22 18:10:23 2018 +0800

--
 hbase-annotations/pom.xml   |   4 +
 hbase-backup/pom.xml|   4 +
 hbase-client/pom.xml|   4 +
 .../hbase/TestInterfaceAudienceAnnotations.java | 540 ---
 hbase-common/pom.xml|   4 +
 .../apache/hadoop/hbase/trace/TraceUtil.java|   2 +
 .../org/apache/hadoop/hbase/util/JSONBean.java  |  11 +-
 .../hadoop/hbase/util/JSONMetricUtil.java   |  11 +-
 hbase-endpoint/pom.xml  |   4 +
 hbase-examples/pom.xml  |   4 +
 .../client/example/AsyncClientExample.java  |   3 +-
 .../client/example/BufferedMutatorExample.java  |   3 +-
 .../client/example/ExportEndpointExample.java   |  15 +-
 .../hbase/client/example/HttpProxyExample.java  |   3 +-
 .../example/MultiThreadedClientExample.java |   3 +-
 .../client/example/RefreshHFilesClient.java |   7 +-
 .../coprocessor/example/BulkDeleteEndpoint.java |  10 +-
 .../example/DelegatingInternalScanner.java  |   3 +-
 .../ExampleMasterObserverWithMetrics.java   |   3 +-
 .../ExampleRegionObserverWithMetrics.java   |   3 +-
 .../example/RefreshHFilesEndpoint.java  |   8 +-
 .../coprocessor/example/RowCountEndpoint.java   |  10 +-
 .../example/ScanModifyingObserver.java  |   3 +-
 .../example/ValueRewritingObserver.java |   3 +-
 .../example/WriteHeavyIncrementObserver.java|   3 +-
 .../example/ZooKeeperScanPolicyObserver.java|   3 +-
 .../hadoop/hbase/mapreduce/IndexBuilder.java|   3 +-
 .../hadoop/hbase/mapreduce/SampleUploader.java  |   3 +-
 .../apache/hadoop/hbase/thrift/DemoClient.java  |   4 +-
 .../hadoop/hbase/thrift/HttpDoAsClient.java |   5 +-
 .../apache/hadoop/hbase/thrift2/DemoClient.java |   5 +-
 .../org/apache/hadoop/hbase/types/PBCell.java   |   5 +-
 hbase-external-blockcache/pom.xml   |   4 +
 hbase-hadoop-compat/pom.xml |   4 +
 .../hadoop/hbase/CompatibilityFactory.java  |   2 +
 .../hbase/CompatibilitySingletonFactory.java|   2 +
 .../apache/hadoop/hbase/io/MetricsIOSource.java |   2 +
 .../hadoop/hbase/io/MetricsIOWrapper.java   |   3 +
 .../hbase/ipc/MetricsHBaseServerSource.java |   2 +
 .../ipc/MetricsHBaseServerSourceFactory.java|   3 +
 .../hbase/ipc/MetricsHBaseServerWrapper.java|   3 +
 .../master/MetricsAssignmentManagerSource.java  |   2 +
 .../master/MetricsMasterFileSystemSource.java   |   2 +
 .../hbase/master/MetricsMasterProcSource.java   |   2 +
 .../master/MetricsMasterProcSourceFactory.java  |   3 +
 .../hbase/master/MetricsMasterQuotaSource.java  |   2 +
 .../master/MetricsMasterQuotaSourceFactory.java |   3 +
 .../hbase/master/MetricsMasterSource.java   |   2 +
 .../master/MetricsMasterSourceFactory.java  |   3 +
 .../hbase/master/MetricsMasterWrapper.java  |   2 +
 .../hbase/master/MetricsSnapshotSource.java |   2 +
 .../master/balancer/MetricsBalancerSource.java  |   2 +
 .../MetricsStochasticBalancerSource.java|   7 +-
 .../apache/hadoop/hbase/metrics/BaseSource.java |   3 +
 .../hbase/metrics/ExceptionTrackingSource.java  |   3 +
 .../hbase/metrics/JvmPauseMonitorSource.java|   3 +
 .../hadoop/hbase/metrics/MBeanSource.java   |   2 +
 .../hadoop/hbase/metrics/OperationMetrics.java  |   3 +
 .../MetricsHeapMemoryManagerSource.java |   2 +
 .../MetricsRegionAggregateSource.java   |   2 +
 .../MetricsRegionServerQuotaSource.java |   2 +
 .../regionserver/MetricsRegionServerSource.java |   2 +
 .../MetricsRegionServerSourceFactory.java   |   2 +
 .../MetricsRegionServerWrapper.java |   3 +
 .../hbase/regionserver/MetricsRegionSource.java |   2 +
 .../regionserver/MetricsRegionWrapper.java  |   3 +
 .../MetricsTableAggregateSource.java|   2 +
 .../regionserver/MetricsTableLatencies.java |   3 +
 .../hbase/regionserver/MetricsTableSource.java  |   3 +
 .../MetricsTableWrapperAggregate.java   |   2 +
 .../regionserver/wal/MetricsWALSource.java  |   2 +
 .../MetricsReplicationSinkSource.java   |   3 +
 .../regionserver/MetricsReplicationSource.java  |   2 +
 .../MetricsReplicationSourceFactory.java|   3 +
 .../MetricsReplicationSourceSource.java |   2 +
 

[2/4] hbase git commit: HBASE-20212 Make all Public classes have InterfaceAudience category

2018-03-22 Thread chia7712
http://git-wip-us.apache.org/repos/asf/hbase/blob/a6eeb26c/hbase-server/src/main/java/org/apache/hadoop/hbase/JMXListener.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/JMXListener.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/JMXListener.java
index 6fdc77e..5008354 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/JMXListener.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/JMXListener.java
@@ -18,14 +18,6 @@
  */
 package org.apache.hadoop.hbase;
 
-import com.google.protobuf.Service;
-
-import org.apache.hadoop.conf.Configuration;
-import org.apache.hadoop.hbase.CoprocessorEnvironment;
-import org.apache.hadoop.hbase.coprocessor.*;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
 import java.io.IOException;
 import java.lang.management.ManagementFactory;
 import java.rmi.registry.LocateRegistry;
@@ -34,13 +26,20 @@ import java.rmi.server.RMIClientSocketFactory;
 import java.rmi.server.RMIServerSocketFactory;
 import java.rmi.server.UnicastRemoteObject;
 import java.util.HashMap;
-import java.util.Optional;
-
 import javax.management.MBeanServer;
 import javax.management.remote.JMXConnectorServer;
 import javax.management.remote.JMXConnectorServerFactory;
 import javax.management.remote.JMXServiceURL;
 import javax.management.remote.rmi.RMIConnectorServer;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.hbase.coprocessor.MasterCoprocessor;
+import org.apache.hadoop.hbase.coprocessor.MasterCoprocessorEnvironment;
+import org.apache.hadoop.hbase.coprocessor.RegionCoprocessorEnvironment;
+import org.apache.hadoop.hbase.coprocessor.RegionServerCoprocessor;
+import org.apache.hadoop.hbase.coprocessor.RegionServerCoprocessorEnvironment;
+import org.apache.yetus.audience.InterfaceAudience;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
 
 /**
  * Pluggable JMX Agent for HBase(to fix the 2 random TCP ports issue
@@ -49,6 +48,7 @@ import javax.management.remote.rmi.RMIConnectorServer;
  * 2)support password authentication
  * 3)support subset of SSL (with default configuration)
  */
+@InterfaceAudience.Private
 public class JMXListener implements MasterCoprocessor, RegionServerCoprocessor 
{
   private static final Logger LOG = LoggerFactory.getLogger(JMXListener.class);
   public static final String RMI_REGISTRY_PORT_CONF_KEY = ".rmi.registry.port";

http://git-wip-us.apache.org/repos/asf/hbase/blob/a6eeb26c/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.java
index d505d6f..5dffb73 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.java
@@ -13,14 +13,15 @@ package org.apache.hadoop.hbase;
 import java.io.IOException;
 import java.net.Socket;
 import java.util.ArrayList;
-
 import javax.net.ssl.SSLSocket;
 import javax.rmi.ssl.SslRMIClientSocketFactory;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * Avoid SSL V3.0 "Poodle" Vulnerability - CVE-2014-3566
  */
 @SuppressWarnings("serial")
+@InterfaceAudience.Private
 public class SslRMIClientSocketFactorySecure extends SslRMIClientSocketFactory 
{
   @Override
   public Socket createSocket(String host, int port) throws IOException {

http://git-wip-us.apache.org/repos/asf/hbase/blob/a6eeb26c/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.java
index 3583afe..8a92236 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/SslRMIServerSocketFactorySecure.java
@@ -14,14 +14,15 @@ import java.io.IOException;
 import java.net.ServerSocket;
 import java.net.Socket;
 import java.util.ArrayList;
-
 import javax.net.ssl.SSLSocket;
 import javax.net.ssl.SSLSocketFactory;
 import javax.rmi.ssl.SslRMIServerSocketFactory;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * Avoid SSL V3.0 "Poodle" Vulnerability - CVE-2014-3566
  */
+@InterfaceAudience.Private
 public class SslRMIServerSocketFactorySecure extends SslRMIServerSocketFactory 
{
   // If you add more constructors, you may have to change the rest of this 
implementation,
   // which assumes an empty constructor, i.e. there are no specially enabled 
protocols or

http://git-wip-us.a

hbase git commit: HBASE-20241 splitormerge_enabled does not work

2018-03-22 Thread psomogyi
Repository: hbase
Updated Branches:
  refs/heads/master a6eeb26cc -> e2fc21e4a


HBASE-20241 splitormerge_enabled does not work

Signed-off-by: Ted Yu 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/e2fc21e4
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/e2fc21e4
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/e2fc21e4

Branch: refs/heads/master
Commit: e2fc21e4a1b0b854a49b94ff2c1627da3be4fbc4
Parents: a6eeb26
Author: Peter Somogyi 
Authored: Wed Mar 21 14:20:27 2018 +0100
Committer: Peter Somogyi 
Committed: Thu Mar 22 11:58:35 2018 +0100

--
 hbase-shell/src/main/ruby/hbase/admin.rb | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/e2fc21e4/hbase-shell/src/main/ruby/hbase/admin.rb
--
diff --git a/hbase-shell/src/main/ruby/hbase/admin.rb 
b/hbase-shell/src/main/ruby/hbase/admin.rb
index 078477f..f35dcb0 100644
--- a/hbase-shell/src/main/ruby/hbase/admin.rb
+++ b/hbase-shell/src/main/ruby/hbase/admin.rb
@@ -142,9 +142,9 @@ module Hbase
 def splitormerge_switch(type, enabled)
   switch_type = nil
   if type == 'SPLIT'
-switch_type = 
org.apache.hadoop.hbase.client.Admin::MasterSwitchType::SPLIT
+switch_type = org.apache.hadoop.hbase.client::MasterSwitchType::SPLIT
   elsif type == 'MERGE'
-switch_type = 
org.apache.hadoop.hbase.client.Admin::MasterSwitchType::MERGE
+switch_type = org.apache.hadoop.hbase.client::MasterSwitchType::MERGE
   else
 raise ArgumentError, 'only SPLIT or MERGE accepted for type!'
   end
@@ -160,9 +160,9 @@ module Hbase
 def splitormerge_enabled(type)
   switch_type = nil
   if type == 'SPLIT'
-switch_type = 
org.apache.hadoop.hbase.client.Admin::MasterSwitchType::SPLIT
+switch_type = org.apache.hadoop.hbase.client::MasterSwitchType::SPLIT
   elsif type == 'MERGE'
-switch_type = 
org.apache.hadoop.hbase.client.Admin::MasterSwitchType::MERGE
+switch_type = org.apache.hadoop.hbase.client::MasterSwitchType::MERGE
   else
 raise ArgumentError, 'only SPLIT or MERGE accepted for type!'
   end



hbase git commit: HBASE-20241 splitormerge_enabled does not work

2018-03-22 Thread psomogyi
Repository: hbase
Updated Branches:
  refs/heads/branch-2 dd9e46bbf -> c20a2a467


HBASE-20241 splitormerge_enabled does not work

Signed-off-by: Ted Yu 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/c20a2a46
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/c20a2a46
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/c20a2a46

Branch: refs/heads/branch-2
Commit: c20a2a4673cef9c107c594e9eca7bb86ea96ae14
Parents: dd9e46b
Author: Peter Somogyi 
Authored: Wed Mar 21 14:20:27 2018 +0100
Committer: Peter Somogyi 
Committed: Thu Mar 22 11:59:23 2018 +0100

--
 hbase-shell/src/main/ruby/hbase/admin.rb | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/c20a2a46/hbase-shell/src/main/ruby/hbase/admin.rb
--
diff --git a/hbase-shell/src/main/ruby/hbase/admin.rb 
b/hbase-shell/src/main/ruby/hbase/admin.rb
index 078477f..f35dcb0 100644
--- a/hbase-shell/src/main/ruby/hbase/admin.rb
+++ b/hbase-shell/src/main/ruby/hbase/admin.rb
@@ -142,9 +142,9 @@ module Hbase
 def splitormerge_switch(type, enabled)
   switch_type = nil
   if type == 'SPLIT'
-switch_type = 
org.apache.hadoop.hbase.client.Admin::MasterSwitchType::SPLIT
+switch_type = org.apache.hadoop.hbase.client::MasterSwitchType::SPLIT
   elsif type == 'MERGE'
-switch_type = 
org.apache.hadoop.hbase.client.Admin::MasterSwitchType::MERGE
+switch_type = org.apache.hadoop.hbase.client::MasterSwitchType::MERGE
   else
 raise ArgumentError, 'only SPLIT or MERGE accepted for type!'
   end
@@ -160,9 +160,9 @@ module Hbase
 def splitormerge_enabled(type)
   switch_type = nil
   if type == 'SPLIT'
-switch_type = 
org.apache.hadoop.hbase.client.Admin::MasterSwitchType::SPLIT
+switch_type = org.apache.hadoop.hbase.client::MasterSwitchType::SPLIT
   elsif type == 'MERGE'
-switch_type = 
org.apache.hadoop.hbase.client.Admin::MasterSwitchType::MERGE
+switch_type = org.apache.hadoop.hbase.client::MasterSwitchType::MERGE
   else
 raise ArgumentError, 'only SPLIT or MERGE accepted for type!'
   end



hbase git commit: HBASE-20241 splitormerge_enabled does not work

2018-03-22 Thread psomogyi
Repository: hbase
Updated Branches:
  refs/heads/branch-2.0 70c170727 -> 05889089d


HBASE-20241 splitormerge_enabled does not work

Signed-off-by: Ted Yu 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/05889089
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/05889089
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/05889089

Branch: refs/heads/branch-2.0
Commit: 05889089dc5d83f3b695aa882898ced6a3f9fdbe
Parents: 70c1707
Author: Peter Somogyi 
Authored: Wed Mar 21 14:20:27 2018 +0100
Committer: Peter Somogyi 
Committed: Thu Mar 22 12:03:27 2018 +0100

--
 hbase-shell/src/main/ruby/hbase/admin.rb | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/05889089/hbase-shell/src/main/ruby/hbase/admin.rb
--
diff --git a/hbase-shell/src/main/ruby/hbase/admin.rb 
b/hbase-shell/src/main/ruby/hbase/admin.rb
index 078477f..f35dcb0 100644
--- a/hbase-shell/src/main/ruby/hbase/admin.rb
+++ b/hbase-shell/src/main/ruby/hbase/admin.rb
@@ -142,9 +142,9 @@ module Hbase
 def splitormerge_switch(type, enabled)
   switch_type = nil
   if type == 'SPLIT'
-switch_type = 
org.apache.hadoop.hbase.client.Admin::MasterSwitchType::SPLIT
+switch_type = org.apache.hadoop.hbase.client::MasterSwitchType::SPLIT
   elsif type == 'MERGE'
-switch_type = 
org.apache.hadoop.hbase.client.Admin::MasterSwitchType::MERGE
+switch_type = org.apache.hadoop.hbase.client::MasterSwitchType::MERGE
   else
 raise ArgumentError, 'only SPLIT or MERGE accepted for type!'
   end
@@ -160,9 +160,9 @@ module Hbase
 def splitormerge_enabled(type)
   switch_type = nil
   if type == 'SPLIT'
-switch_type = 
org.apache.hadoop.hbase.client.Admin::MasterSwitchType::SPLIT
+switch_type = org.apache.hadoop.hbase.client::MasterSwitchType::SPLIT
   elsif type == 'MERGE'
-switch_type = 
org.apache.hadoop.hbase.client.Admin::MasterSwitchType::MERGE
+switch_type = org.apache.hadoop.hbase.client::MasterSwitchType::MERGE
   else
 raise ArgumentError, 'only SPLIT or MERGE accepted for type!'
   end



hbase git commit: HBASE-20116 addendum fix javadoc and also a simple optimization

2018-03-22 Thread zhangduo
Repository: hbase
Updated Branches:
  refs/heads/master e2fc21e4a -> f346a144b


HBASE-20116 addendum fix javadoc and also a simple optimization


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/f346a144
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/f346a144
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/f346a144

Branch: refs/heads/master
Commit: f346a144b970bc51d28ada5eb6fb4568b0151529
Parents: e2fc21e
Author: zhangduo 
Authored: Thu Mar 22 08:31:20 2018 +0800
Committer: zhangduo 
Committed: Thu Mar 22 21:01:45 2018 +0800

--
 .../replication/ZKReplicationQueueStorage.java  | 22 
 .../TestZKReplicationQueueStorage.java  |  2 +-
 2 files changed, 14 insertions(+), 10 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/f346a144/hbase-replication/src/main/java/org/apache/hadoop/hbase/replication/ZKReplicationQueueStorage.java
--
diff --git 
a/hbase-replication/src/main/java/org/apache/hadoop/hbase/replication/ZKReplicationQueueStorage.java
 
b/hbase-replication/src/main/java/org/apache/hadoop/hbase/replication/ZKReplicationQueueStorage.java
index 499ee0a..d4363db 100644
--- 
a/hbase-replication/src/main/java/org/apache/hadoop/hbase/replication/ZKReplicationQueueStorage.java
+++ 
b/hbase-replication/src/main/java/org/apache/hadoop/hbase/replication/ZKReplicationQueueStorage.java
@@ -134,26 +134,30 @@ class ZKReplicationQueueStorage extends 
ZKReplicationStorageBase
   }
 
   /**
+   * 
* Put all regions under /hbase/replication/regions znode will lead to too 
many children because
-   * of the huge number of regions in real production environment. So here we 
use hash of encoded
-   * region name to distribute the znode into multiple znodes. 
+   * of the huge number of regions in real production environment. So here we 
will distribute the
+   * znodes to multiple directories.
+   * 
+   * 
* So the final znode path will be format like this:
*
* 
-   * /hbase/replication/regions/e1/ff/dd04e76a6966d4ffa908ed0586764767-100
+   * /hbase/replication/regions/dd/04/e76a6966d4ffa908ed0586764767-100
* 
*
-   * The e1 indicate the first level hash of encoded region name, and the ff 
indicate the second
-   * level hash of encoded region name, the 100 indicate the peer id. 
-   * Note that here we use two-level hash because if only one-level hash (such 
as mod 65535), it
-   * will still lead to too many children under the /hbase/replication/regions 
znode.
+   * Here the full encoded region name is dd04e76a6966d4ffa908ed0586764767, 
and we use the first two
+   * characters 'dd' as the first level directory name, and use the next two 
characters '04' as the
+   * second level directory name, and the rest part as the prefix of the 
znode, and the suffix '100'
+   * is the peer id.
+   * 
* @param encodedRegionName the encoded region name.
* @param peerId peer id for replication.
* @return ZNode path to persist the max sequence id that we've pushed for 
the given region and
* peer.
*/
   @VisibleForTesting
-  public String getSerialReplicationRegionPeerNode(String encodedRegionName, 
String peerId) {
+  String getSerialReplicationRegionPeerNode(String encodedRegionName, String 
peerId) {
 if (encodedRegionName == null || encodedRegionName.length() != 
RegionInfo.MD5_HEX_LENGTH) {
   throw new IllegalArgumentException(
   "Invalid encoded region name: " + encodedRegionName + ", length 
should be 32.");
@@ -161,7 +165,7 @@ class ZKReplicationQueueStorage extends 
ZKReplicationStorageBase
 return new 
StringBuilder(regionsZNode).append(ZNodePaths.ZNODE_PATH_SEPARATOR)
 .append(encodedRegionName.substring(0, 
2)).append(ZNodePaths.ZNODE_PATH_SEPARATOR)
 .append(encodedRegionName.substring(2, 
4)).append(ZNodePaths.ZNODE_PATH_SEPARATOR)
-.append(encodedRegionName).append("-").append(peerId).toString();
+
.append(encodedRegionName.substring(4)).append("-").append(peerId).toString();
   }
 
   @Override

http://git-wip-us.apache.org/repos/asf/hbase/blob/f346a144/hbase-replication/src/test/java/org/apache/hadoop/hbase/replication/TestZKReplicationQueueStorage.java
--
diff --git 
a/hbase-replication/src/test/java/org/apache/hadoop/hbase/replication/TestZKReplicationQueueStorage.java
 
b/hbase-replication/src/test/java/org/apache/hadoop/hbase/replication/TestZKReplicationQueueStorage.java
index 28cdff1..ca86a05 100644
--- 
a/hbase-replication/src/test/java/org/apache/hadoop/hbase/replication/TestZKReplicationQueueStorage.java
+++ 
b/hbase-replication/src/test/java/org/apache/hadoop/hbase/replication/TestZKReplicationQueueStorag

hbase git commit: HBASE-20224 Web UI is broken in standalone mode

2018-03-22 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/master f346a144b -> 4cb40e6d8


HBASE-20224 Web UI is broken in standalone mode

Changes for HBASE-20027 seem to cause UI not showing up on default port in 
standalone mode. For concurrent
unit test execution, individual tests can set 
hbase.localcluster.assign.random.ports to true or modify
test/resources/hbase-site.xml.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/4cb40e6d
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/4cb40e6d
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/4cb40e6d

Branch: refs/heads/master
Commit: 4cb40e6d846ce1f28ffb40d388c9efb753197813
Parents: f346a14
Author: Umesh Agashe 
Authored: Wed Mar 21 12:48:18 2018 -0700
Committer: Michael Stack 
Committed: Thu Mar 22 06:52:20 2018 -0700

--
 hbase-client/src/test/resources/hbase-site.xml| 7 +++
 hbase-mapreduce/src/test/resources/hbase-site.xml | 7 +++
 hbase-procedure/src/test/resources/hbase-site.xml | 7 +++
 hbase-rest/src/test/resources/hbase-site.xml  | 7 +++
 .../main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java  | 2 +-
 .../test/java/org/apache/hadoop/hbase/MiniHBaseCluster.java   | 2 +-
 hbase-server/src/test/resources/hbase-site.xml| 7 +++
 hbase-thrift/src/test/resources/hbase-site.xml| 7 +++
 8 files changed, 44 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/4cb40e6d/hbase-client/src/test/resources/hbase-site.xml
--
diff --git a/hbase-client/src/test/resources/hbase-site.xml 
b/hbase-client/src/test/resources/hbase-site.xml
index 99d2ab8..858d428 100644
--- a/hbase-client/src/test/resources/hbase-site.xml
+++ b/hbase-client/src/test/resources/hbase-site.xml
@@ -29,4 +29,11 @@
 hbase.hconnection.threads.keepalivetime
 3
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/4cb40e6d/hbase-mapreduce/src/test/resources/hbase-site.xml
--
diff --git a/hbase-mapreduce/src/test/resources/hbase-site.xml 
b/hbase-mapreduce/src/test/resources/hbase-site.xml
index 64a1964..34802d0 100644
--- a/hbase-mapreduce/src/test/resources/hbase-site.xml
+++ b/hbase-mapreduce/src/test/resources/hbase-site.xml
@@ -158,4 +158,11 @@
 hbase.hconnection.threads.keepalivetime
 3
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/4cb40e6d/hbase-procedure/src/test/resources/hbase-site.xml
--
diff --git a/hbase-procedure/src/test/resources/hbase-site.xml 
b/hbase-procedure/src/test/resources/hbase-site.xml
index 114ee8a..a1cc27e 100644
--- a/hbase-procedure/src/test/resources/hbase-site.xml
+++ b/hbase-procedure/src/test/resources/hbase-site.xml
@@ -41,4 +41,11 @@
   WARNING: Doing so may expose you to additional risk of data loss!
 
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/4cb40e6d/hbase-rest/src/test/resources/hbase-site.xml
--
diff --git a/hbase-rest/src/test/resources/hbase-site.xml 
b/hbase-rest/src/test/resources/hbase-site.xml
index 2bd3ee4..be7b492 100644
--- a/hbase-rest/src/test/resources/hbase-site.xml
+++ b/hbase-rest/src/test/resources/hbase-site.xml
@@ -139,4 +139,11 @@
 Skip sanity checks in tests
 
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/4cb40e6d/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
index e19e53b..5c8ddd9 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
@@ -141,7 +141,7 @@ public class LocalHBaseCluster {
 
 // Always have masters and regionservers come up on port '0' so we don't
 // clash over default ports.
-if (conf.getBoolean(ASSIGN_RANDOM_PORTS

hbase git commit: HBASE-20224 Web UI is broken in standalone mode

2018-03-22 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-2 c20a2a467 -> dd9fe813e


HBASE-20224 Web UI is broken in standalone mode

Changes for HBASE-20027 seem to cause UI not showing up on default port in 
standalone mode. For concurrent
unit test execution, individual tests can set 
hbase.localcluster.assign.random.ports to true or modify
test/resources/hbase-site.xml.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/dd9fe813
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/dd9fe813
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/dd9fe813

Branch: refs/heads/branch-2
Commit: dd9fe813ecc605f5e8b3c8598824f4e9a0a1eed6
Parents: c20a2a4
Author: Umesh Agashe 
Authored: Wed Mar 21 12:48:18 2018 -0700
Committer: Michael Stack 
Committed: Thu Mar 22 06:52:51 2018 -0700

--
 hbase-client/src/test/resources/hbase-site.xml| 7 +++
 hbase-mapreduce/src/test/resources/hbase-site.xml | 7 +++
 hbase-procedure/src/test/resources/hbase-site.xml | 7 +++
 hbase-rest/src/test/resources/hbase-site.xml  | 7 +++
 .../main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java  | 2 +-
 .../test/java/org/apache/hadoop/hbase/MiniHBaseCluster.java   | 2 +-
 hbase-server/src/test/resources/hbase-site.xml| 7 +++
 hbase-thrift/src/test/resources/hbase-site.xml| 7 +++
 8 files changed, 44 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9fe813/hbase-client/src/test/resources/hbase-site.xml
--
diff --git a/hbase-client/src/test/resources/hbase-site.xml 
b/hbase-client/src/test/resources/hbase-site.xml
index 99d2ab8..858d428 100644
--- a/hbase-client/src/test/resources/hbase-site.xml
+++ b/hbase-client/src/test/resources/hbase-site.xml
@@ -29,4 +29,11 @@
 hbase.hconnection.threads.keepalivetime
 3
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9fe813/hbase-mapreduce/src/test/resources/hbase-site.xml
--
diff --git a/hbase-mapreduce/src/test/resources/hbase-site.xml 
b/hbase-mapreduce/src/test/resources/hbase-site.xml
index 64a1964..34802d0 100644
--- a/hbase-mapreduce/src/test/resources/hbase-site.xml
+++ b/hbase-mapreduce/src/test/resources/hbase-site.xml
@@ -158,4 +158,11 @@
 hbase.hconnection.threads.keepalivetime
 3
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9fe813/hbase-procedure/src/test/resources/hbase-site.xml
--
diff --git a/hbase-procedure/src/test/resources/hbase-site.xml 
b/hbase-procedure/src/test/resources/hbase-site.xml
index 114ee8a..a1cc27e 100644
--- a/hbase-procedure/src/test/resources/hbase-site.xml
+++ b/hbase-procedure/src/test/resources/hbase-site.xml
@@ -41,4 +41,11 @@
   WARNING: Doing so may expose you to additional risk of data loss!
 
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9fe813/hbase-rest/src/test/resources/hbase-site.xml
--
diff --git a/hbase-rest/src/test/resources/hbase-site.xml 
b/hbase-rest/src/test/resources/hbase-site.xml
index 2bd3ee4..be7b492 100644
--- a/hbase-rest/src/test/resources/hbase-site.xml
+++ b/hbase-rest/src/test/resources/hbase-site.xml
@@ -139,4 +139,11 @@
 Skip sanity checks in tests
 
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/dd9fe813/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
index e19e53b..5c8ddd9 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
@@ -141,7 +141,7 @@ public class LocalHBaseCluster {
 
 // Always have masters and regionservers come up on port '0' so we don't
 // clash over default ports.
-if (conf.getBoolean(ASSIGN_RANDOM_P

hbase git commit: HBASE-20224 Web UI is broken in standalone mode

2018-03-22 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-2.0 05889089d -> 009c86ed7


HBASE-20224 Web UI is broken in standalone mode

Changes for HBASE-20027 seem to cause UI not showing up on default port in 
standalone mode. For concurrent
unit test execution, individual tests can set 
hbase.localcluster.assign.random.ports to true or modify
test/resources/hbase-site.xml.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/009c86ed
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/009c86ed
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/009c86ed

Branch: refs/heads/branch-2.0
Commit: 009c86ed7880ef77d2fb708d9b9cbf3bfefb51fc
Parents: 0588908
Author: Umesh Agashe 
Authored: Wed Mar 21 12:48:18 2018 -0700
Committer: Michael Stack 
Committed: Thu Mar 22 06:53:14 2018 -0700

--
 hbase-client/src/test/resources/hbase-site.xml| 7 +++
 hbase-mapreduce/src/test/resources/hbase-site.xml | 7 +++
 hbase-procedure/src/test/resources/hbase-site.xml | 7 +++
 hbase-rest/src/test/resources/hbase-site.xml  | 7 +++
 .../main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java  | 2 +-
 .../test/java/org/apache/hadoop/hbase/MiniHBaseCluster.java   | 2 +-
 hbase-server/src/test/resources/hbase-site.xml| 7 +++
 hbase-thrift/src/test/resources/hbase-site.xml| 7 +++
 8 files changed, 44 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/009c86ed/hbase-client/src/test/resources/hbase-site.xml
--
diff --git a/hbase-client/src/test/resources/hbase-site.xml 
b/hbase-client/src/test/resources/hbase-site.xml
index 99d2ab8..858d428 100644
--- a/hbase-client/src/test/resources/hbase-site.xml
+++ b/hbase-client/src/test/resources/hbase-site.xml
@@ -29,4 +29,11 @@
 hbase.hconnection.threads.keepalivetime
 3
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/009c86ed/hbase-mapreduce/src/test/resources/hbase-site.xml
--
diff --git a/hbase-mapreduce/src/test/resources/hbase-site.xml 
b/hbase-mapreduce/src/test/resources/hbase-site.xml
index 64a1964..34802d0 100644
--- a/hbase-mapreduce/src/test/resources/hbase-site.xml
+++ b/hbase-mapreduce/src/test/resources/hbase-site.xml
@@ -158,4 +158,11 @@
 hbase.hconnection.threads.keepalivetime
 3
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/009c86ed/hbase-procedure/src/test/resources/hbase-site.xml
--
diff --git a/hbase-procedure/src/test/resources/hbase-site.xml 
b/hbase-procedure/src/test/resources/hbase-site.xml
index 114ee8a..a1cc27e 100644
--- a/hbase-procedure/src/test/resources/hbase-site.xml
+++ b/hbase-procedure/src/test/resources/hbase-site.xml
@@ -41,4 +41,11 @@
   WARNING: Doing so may expose you to additional risk of data loss!
 
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/009c86ed/hbase-rest/src/test/resources/hbase-site.xml
--
diff --git a/hbase-rest/src/test/resources/hbase-site.xml 
b/hbase-rest/src/test/resources/hbase-site.xml
index 2bd3ee4..be7b492 100644
--- a/hbase-rest/src/test/resources/hbase-site.xml
+++ b/hbase-rest/src/test/resources/hbase-site.xml
@@ -139,4 +139,11 @@
 Skip sanity checks in tests
 
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/009c86ed/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
index e19e53b..5c8ddd9 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
@@ -141,7 +141,7 @@ public class LocalHBaseCluster {
 
 // Always have masters and regionservers come up on port '0' so we don't
 // clash over default ports.
-if (conf.getBoolean(ASSIGN_RAND

[32/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

2018-03-22 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/class-use/CellComparator.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/CellComparator.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/CellComparator.html
index 8fcef9c..24b3c9b 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/CellComparator.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/CellComparator.html
@@ -172,27 +172,27 @@
 
 
 static int
-CellUtil.compare(CellComparator comparator,
+PrivateCellUtil.compare(CellComparator comparator,
Cell left,
byte[] key,
int offset,
int length)
-Deprecated. 
-As of HBase-2.0. Will be 
removed in HBase-3.0
-
+Used when a cell needs to be compared with a key byte[] 
such as cases of finding the index from
+ the index block, bloom keys from the bloom blocks This byte[] is expected to 
be serialized in
+ the KeyValue serialization format If the KeyValue (Cell's) serialization 
format changes this
+ method cannot be used.
 
 
 
 static int
-PrivateCellUtil.compare(CellComparator comparator,
+CellUtil.compare(CellComparator comparator,
Cell left,
byte[] key,
int offset,
int length)
-Used when a cell needs to be compared with a key byte[] 
such as cases of finding the index from
- the index block, bloom keys from the bloom blocks This byte[] is expected to 
be serialized in
- the KeyValue serialization format If the KeyValue (Cell's) serialization 
format changes this
- method cannot be used.
+Deprecated. 
+As of HBase-2.0. Will be 
removed in HBase-3.0
+
 
 
 
@@ -265,12 +265,12 @@
 
 
 int
-BufferedDataBlockEncoder.BufferedEncodedSeeker.compareKey(CellComparator comparator,
+RowIndexSeekerV1.compareKey(CellComparator comparator,
   Cell key) 
 
 
 int
-RowIndexSeekerV1.compareKey(CellComparator comparator,
+BufferedDataBlockEncoder.BufferedEncodedSeeker.compareKey(CellComparator comparator,
   Cell key) 
 
 
@@ -282,27 +282,27 @@
 
 
 DataBlockEncoder.EncodedSeeker
-CopyKeyDataBlockEncoder.createSeeker(CellComparator comparator,
+RowIndexCodecV1.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 
 DataBlockEncoder.EncodedSeeker
-PrefixKeyDeltaEncoder.createSeeker(CellComparator comparator,
+CopyKeyDataBlockEncoder.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 
 DataBlockEncoder.EncodedSeeker
-FastDiffDeltaEncoder.createSeeker(CellComparator comparator,
+DiffKeyDeltaEncoder.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 
 DataBlockEncoder.EncodedSeeker
-DiffKeyDeltaEncoder.createSeeker(CellComparator comparator,
+FastDiffDeltaEncoder.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 
 DataBlockEncoder.EncodedSeeker
-RowIndexCodecV1.createSeeker(CellComparator comparator,
+PrefixKeyDeltaEncoder.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 
@@ -340,9 +340,9 @@
 
 
 
-private CellComparator
-HFileBlockIndex.CellBasedKeyBlockIndexReader.comparator
-Needed doing lookup on blocks.
+protected CellComparator
+HFileWriterImpl.comparator
+Key comparator.
 
 
 
@@ -356,9 +356,9 @@
 
 
 
-protected CellComparator
-HFileWriterImpl.comparator
-Key comparator.
+private CellComparator
+HFileBlockIndex.CellBasedKeyBlockIndexReader.comparator
+Needed doing lookup on blocks.
 
 
 
@@ -539,15 +539,15 @@
 
 
 private CellComparator
-DefaultStoreFileManager.cellComparator 
+StripeStoreFileManager.cellComparator 
 
 
 private CellComparator
-StripeStoreFileManager.cellComparator 
+DefaultStoreFileManager.cellComparator 
 
 
-private CellComparator
-StoreFileWriter.Builder.comparator 
+protected CellComparator
+StripeMultiFileWriter.comparator 
 
 
 protected CellComparator
@@ -555,31 +555,31 @@
 
 
 private CellComparator
-StoreScanner.comparator 
+Segment.comparator 
 
 
 private CellComparator
-AbstractMemStore.comparator 
+ScanInfo.comparator 
 
 
 private CellComparator
-HStoreFile.comparator 
+StoreFileWriter.Builder.comparator 
 
 
 private CellComparator
-Segment.comparator 
+HStoreFile.comparator 
 
 
 protected CellComparator
 HRegion.RegionScannerImpl.comparator 
 
 
-protected CellComparator
-StripeMultiFileWriter.comparator 
+private CellComparator
+AbstractMemStore.comparator 
 
 
 private CellComparator
-ScanInfo.comparator 
+StoreScanner.comparator 
 
 
 protected CellComparator
@@ -609,48 +609,48 @@
 HRegion.getCellComparator() 
 
 
-(package private) CellComparator
-StoreFileScanner.getComparator() 
+CellComparator
+StoreFileReader.getComparator() 
 
 
 protected CellComparator
-AbstractMemStore.getComparator() 
+Segment.getComparator()
+Returns the Cell comparator used by this segment
+
 
 
 CellComparator
-StoreFileReader.getComparator() 
+ScanInfo.getCom

[26/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

2018-03-22 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
index f0cb8c2..5360e0a 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
@@ -2052,119 +2052,119 @@ service.
 
 
 private TableName
-RegionCoprocessorRpcChannel.table 
+SnapshotDescription.table 
 
 
 private TableName
-SnapshotDescription.table 
+RegionCoprocessorRpcChannel.table 
 
 
 private TableName
-HRegionLocator.tableName 
+RawAsyncTableImpl.tableName 
 
 
 private TableName
-ScannerCallableWithReplicas.tableName 
+RegionServerCallable.tableName 
 
 
 protected TableName
-ClientScanner.tableName 
+RegionAdminServiceCallable.tableName 
 
 
 private TableName
-AsyncClientScanner.tableName 
+BufferedMutatorImpl.tableName 
 
 
 private TableName
-AsyncRpcRetryingCallerFactory.SingleRequestCallerBuilder.tableName 
+AsyncProcessTask.tableName 
 
 
 private TableName
-AsyncRpcRetryingCallerFactory.BatchCallerBuilder.tableName 
+AsyncProcessTask.Builder.tableName 
 
 
 private TableName
-RegionInfoBuilder.tableName 
+AsyncRequestFutureImpl.tableName 
 
 
-private TableName
-RegionInfoBuilder.MutableRegionInfo.tableName 
+protected TableName
+TableBuilderBase.tableName 
 
 
 private TableName
-RawAsyncTableImpl.tableName 
+AsyncBatchRpcRetryingCaller.tableName 
 
 
 private TableName
-RegionCoprocessorRpcChannelImpl.tableName 
+RegionInfoBuilder.tableName 
 
 
 private TableName
-AsyncTableRegionLocatorImpl.tableName 
+RegionInfoBuilder.MutableRegionInfo.tableName 
 
 
-protected TableName
-RegionAdminServiceCallable.tableName 
+private TableName
+HTable.tableName 
 
 
 private TableName
-HTable.tableName 
+TableState.tableName 
 
 
-private TableName
-BufferedMutatorImpl.tableName 
+protected TableName
+RpcRetryingCallerWithReadReplicas.tableName 
 
 
-private TableName
-AsyncBatchRpcRetryingCaller.tableName 
+protected TableName
+AsyncTableBuilderBase.tableName 
 
 
 private TableName
-BufferedMutatorParams.tableName 
+AsyncSingleRequestRpcRetryingCaller.tableName 
 
 
 private TableName
-HBaseAdmin.TableFuture.tableName 
+ScannerCallableWithReplicas.tableName 
 
 
-private TableName
-AsyncRequestFutureImpl.tableName 
+protected TableName
+RawAsyncHBaseAdmin.TableProcedureBiConsumer.tableName 
 
 
 private TableName
-AsyncProcessTask.tableName 
+AsyncTableRegionLocatorImpl.tableName 
 
 
 private TableName
-AsyncProcessTask.Builder.tableName 
+HBaseAdmin.TableFuture.tableName 
 
 
-protected TableName
-RawAsyncHBaseAdmin.TableProcedureBiConsumer.tableName 
+private TableName
+RegionCoprocessorRpcChannelImpl.tableName 
 
 
-private TableName
-RegionServerCallable.tableName 
+protected TableName
+ClientScanner.tableName 
 
 
 private TableName
-AsyncSingleRequestRpcRetryingCaller.tableName 
+BufferedMutatorParams.tableName 
 
 
-protected TableName
-TableBuilderBase.tableName 
+private TableName
+AsyncClientScanner.tableName 
 
 
-protected TableName
-RpcRetryingCallerWithReadReplicas.tableName 
+private TableName
+AsyncRpcRetryingCallerFactory.SingleRequestCallerBuilder.tableName 
 
 
-protected TableName
-AsyncTableBuilderBase.tableName 
+private TableName
+AsyncRpcRetryingCallerFactory.BatchCallerBuilder.tableName 
 
 
 private TableName
-TableState.tableName 
+HRegionLocator.tableName 
 
 
 
@@ -2206,83 +2206,83 @@ service.
 
 
 TableName
-AsyncTable.getName()
-Gets the fully qualified table name instance of this 
table.
-
+RawAsyncTableImpl.getName() 
 
 
 TableName
-Table.getName()
+RegionLocator.getName()
 Gets the fully qualified table name instance of this 
table.
 
 
 
 TableName
-HRegionLocator.getName() 
+BufferedMutatorImpl.getName() 
 
 
 TableName
-AsyncTableRegionLocator.getName()
-Gets the fully qualified table name instance of the table 
whose region we want to locate.
+BufferedMutator.getName()
+Gets the fully qualified table name instance of the table 
that this BufferedMutator writes to.
 
 
 
 TableName
-AsyncTableImpl.getName() 
+HTable.getName() 
 
 
 TableName
-RawAsyncTableImpl.getName() 
+AsyncBufferedMutator.getName()
+Gets the fully qualified table name instance of the table 
that this
+ AsyncBufferedMutator writes to.
+
 
 
 TableName
-AsyncTableRegionLocatorImpl.getName() 
+Table.getName()
+Gets the fully qualified table name instance of this 
table.
+
 
 
 TableName
-BufferedMutator.getName()
-Gets the fully qualified table name instance of the table 
that this BufferedMutator writes to.
-
+AsyncTableImpl.getName() 
 
 
 TableName
-RegionLocator.getName()
+AsyncTable.getName()
 Gets the fully qualified table name instance of this 
table.
 
 
 
 TableName
-AsyncBufferedMutatorImpl.getName() 
+AsyncTableRegionLocatorImpl.getName() 
 
 
 TableName
-HTable.getName() 
+

[23/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

2018-03-22 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/ColumnFamilyDescriptor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ColumnFamilyDescriptor.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ColumnFamilyDescriptor.html
index d5a3666..d3a9f2d 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ColumnFamilyDescriptor.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ColumnFamilyDescriptor.html
@@ -320,8 +320,10 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-AsyncHBaseAdmin.addColumnFamily(TableName tableName,
-   ColumnFamilyDescriptor columnFamily) 
+AsyncAdmin.addColumnFamily(TableName tableName,
+   ColumnFamilyDescriptor columnFamily)
+Add a column family to an existing table.
+
 
 
 void
@@ -331,20 +333,18 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-void
-HBaseAdmin.addColumnFamily(TableName tableName,
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
+RawAsyncHBaseAdmin.addColumnFamily(TableName tableName,
ColumnFamilyDescriptor columnFamily) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-AsyncAdmin.addColumnFamily(TableName tableName,
-   ColumnFamilyDescriptor columnFamily)
-Add a column family to an existing table.
-
+void
+HBaseAdmin.addColumnFamily(TableName tableName,
+   ColumnFamilyDescriptor columnFamily) 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-RawAsyncHBaseAdmin.addColumnFamily(TableName tableName,
+AsyncHBaseAdmin.addColumnFamily(TableName tableName,
ColumnFamilyDescriptor columnFamily) 
 
 
@@ -386,8 +386,10 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-AsyncHBaseAdmin.modifyColumnFamily(TableName tableName,
-  ColumnFamilyDescriptor columnFamily) 
+AsyncAdmin.modifyColumnFamily(TableName tableName,
+  ColumnFamilyDescriptor columnFamily)
+Modify an existing column family on a table.
+
 
 
 void
@@ -397,20 +399,18 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-void
-HBaseAdmin.modifyColumnFamily(TableName tableName,
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
+RawAsyncHBaseAdmin.modifyColumnFamily(TableName tableName,
   ColumnFamilyDescriptor columnFamily) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-AsyncAdmin.modifyColumnFamily(TableName tableName,
-  ColumnFamilyDescriptor columnFamily)
-Modify an existing column family on a table.
-
+void
+HBaseAdmin.modifyColumnFamily(TableName tableName,
+  ColumnFamilyDescriptor columnFamily) 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture[16/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
index 6209920..3616545 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
@@ -208,9 +208,9 @@ service.
 
 
 
-default ResultScanner
-AsyncTable.getScanner(byte[] family)
-Gets a scanner on the current table for the given 
family.
+ResultScanner
+HTable.getScanner(byte[] family)
+The underlying HTable must 
not be closed.
 
 
 
@@ -220,16 +220,16 @@ service.
 
 
 
-ResultScanner
-HTable.getScanner(byte[] family)
-The underlying HTable must 
not be closed.
+default ResultScanner
+AsyncTable.getScanner(byte[] family)
+Gets a scanner on the current table for the given 
family.
 
 
 
-default ResultScanner
-AsyncTable.getScanner(byte[] family,
+ResultScanner
+HTable.getScanner(byte[] family,
   byte[] qualifier)
-Gets a scanner on the current table for the given family 
and qualifier.
+The underlying HTable must 
not be closed.
 
 
 
@@ -240,37 +240,37 @@ service.
 
 
 
-ResultScanner
-HTable.getScanner(byte[] family,
+default ResultScanner
+AsyncTable.getScanner(byte[] family,
   byte[] qualifier)
-The underlying HTable must 
not be closed.
+Gets a scanner on the current table for the given family 
and qualifier.
 
 
 
 ResultScanner
-AsyncTable.getScanner(Scan scan)
-Returns a scanner on the current table as specified by the 
Scan 
object.
-
+RawAsyncTableImpl.getScanner(Scan scan) 
 
 
 ResultScanner
-Table.getScanner(Scan scan)
-Returns a scanner on the current table as specified by the 
Scan
- object.
+HTable.getScanner(Scan scan)
+The underlying HTable must 
not be closed.
 
 
 
 ResultScanner
-AsyncTableImpl.getScanner(Scan scan) 
+Table.getScanner(Scan scan)
+Returns a scanner on the current table as specified by the 
Scan
+ object.
+
 
 
 ResultScanner
-RawAsyncTableImpl.getScanner(Scan scan) 
+AsyncTableImpl.getScanner(Scan scan) 
 
 
 ResultScanner
-HTable.getScanner(Scan scan)
-The underlying HTable must 
not be closed.
+AsyncTable.getScanner(Scan scan)
+Returns a scanner on the current table as specified by the 
Scan 
object.
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
index 8fa3f76..62cfd60 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
@@ -106,11 +106,11 @@
 
 
 RetriesExhaustedWithDetailsException
-AsyncRequestFuture.getErrors() 
+AsyncRequestFutureImpl.getErrors() 
 
 
 RetriesExhaustedWithDetailsException
-AsyncRequestFutureImpl.getErrors() 
+AsyncRequestFuture.getErrors() 
 
 
 (package private) RetriesExhaustedWithDetailsException

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
index 5b32e1b..eec52bf 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
@@ -234,28 +234,36 @@
 
 
 
+T
+RpcRetryingCallerImpl.callWithoutRetries(RetryingCallable callable,
+  int callTimeout) 
+
+
 T
 RpcRetryingCaller.callWithoutRetries(RetryingCallable callable,
   int callTimeout)
 Call the server once only.
 
 
-
+
 T
-RpcRetryingCallerImpl.callWithoutRetries(RetryingCallable callable,
-  int callTimeout) 
+RpcRetryingCallerImpl.callWithRetries(RetryingCallable callable,
+   int callTimeout) 
 
-
+
 T
 RpcRetryingCaller.callWithRetries(RetryingCallable callable,
int callTimeout)
 Retries if invocation fails.
 
 
+
+RetryingCallerInterceptorContext
+NoOpRetryingInterceptorContext.prepare(RetryingCallable callable) 
+
 
-T
-RpcRetryingCallerImpl.callWithRetries(RetryingCallable callable,
-   int callTimeout) 
+FastFailInterceptorContext
+FastFailInterceptorContext.prepare(RetryingCallable callable) 
 
 
 abstract RetryingCallerInterceptorC

[48/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/Cell.html 
b/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
index 531711f..3c76c85 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
@@ -1105,17 +1105,17 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 
-Append
-Append.add(Cell cell)
-Add column and value to this Append operation.
-
-
-
 Increment
 Increment.add(Cell cell)
 Add the specified KeyValue to this operation.
 
 
+
+Delete
+Delete.add(Cell cell)
+Add an existing delete marker to this Delete object.
+
+
 
 Put
 Put.add(Cell cell)
@@ -1123,9 +1123,9 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-Delete
-Delete.add(Cell cell)
-Add an existing delete marker to this Delete object.
+Append
+Append.add(Cell cell)
+Add column and value to this Append operation.
 
 
 
@@ -1208,20 +1208,20 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
   boolean mayHaveMoreCellsInRow) 
 
 
-Append
-Append.setFamilyCellMap(https://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map)
+Increment
+Increment.setFamilyCellMap(https://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map)
 Deprecated. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
- Use Append.Append(byte[],
 long, NavigableMap) instead
+ Use Increment.Increment(byte[],
 long, NavigableMap) instead
 
 
 
 
-Increment
-Increment.setFamilyCellMap(https://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map)
+Delete
+Delete.setFamilyCellMap(https://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map)
 Deprecated. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
- Use Increment.Increment(byte[],
 long, NavigableMap) instead
+ Use Delete.Delete(byte[],
 long, NavigableMap) instead
 
 
 
@@ -1244,11 +1244,11 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 
-Delete
-Delete.setFamilyCellMap(https://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map)
+Append
+Append.setFamilyCellMap(https://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map)
 Deprecated. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
- Use Delete.Delete(byte[],
 long, NavigableMap) instead
+ Use Append.Append(byte[],
 long, NavigableMap) instead
 
 
 
@@ -1311,67 +1311,67 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 Cell
-FilterList.getNextCellHint(Cell currentCell) 
+ColumnPrefixFilter.getNextCellHint(Cell cell) 
 
 
 Cell
-MultipleColumnPrefixFilter.getNextCellHint(Cell cell) 
+TimestampsFilter.getNextCellHint(Cell currentCell)
+Pick the next cell that the scanner should seek to.
+
 
 
 Cell
-ColumnRangeFilter.getNextCellHint(Cell cell) 
+MultiRowRangeFilter.getNextCellHint(Cell currentKV) 
 
 
-abstract Cell
-Filter.getNextCellHint(Cell currentCell)
-If the filter returns the match code SEEK_NEXT_USING_HINT, 
then it should also tell which is
- the next key it must seek to.
-
+Cell
+ColumnPaginationFilter.getNextCellHint(Cell cell) 
 
 
 Cell
-ColumnPaginationFilter.getNextCellHint(Cell cell) 
+ColumnRangeFilter.getNextCellHint(Cell cell) 
 
 
 Cell
-FuzzyRowFilter.getNextCellHint(Cell currentCell) 
+FilterList.getNextCellHint(Cell currentCell) 
 
 
 Cell
-TimestampsFilter.getNextCellHint(Cell currentCell)
-Pi

[30/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/class-use/HBaseIOException.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/HBaseIOException.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/HBaseIOException.html
index 1db7ad2..313a472 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/HBaseIOException.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/HBaseIOException.html
@@ -816,25 +816,30 @@
 
 
 void
-BaseLoadBalancer.initialize() 
+FavoredStochasticBalancer.initialize() 
 
 
 void
-FavoredStochasticBalancer.initialize() 
+BaseLoadBalancer.initialize() 
 
 
 ServerName
+FavoredStochasticBalancer.randomAssignment(RegionInfo regionInfo,
+https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List servers) 
+
+
+ServerName
 BaseLoadBalancer.randomAssignment(RegionInfo regionInfo,
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List servers)
 Used to assign a single region to a random server.
 
 
-
-ServerName
-FavoredStochasticBalancer.randomAssignment(RegionInfo regionInfo,
+
+https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList>
+FavoredStochasticBalancer.retainAssignment(https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map regions,
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List servers) 
 
-
+
 https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList>
 BaseLoadBalancer.retainAssignment(https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map regions,
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List servers)
@@ -843,12 +848,12 @@
  available/online servers available for assignment.
 
 
-
+
 https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList>
-FavoredStochasticBalancer.retainAssignment(https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map regions,
-https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List servers) 
+FavoredStochasticBalancer.roundRobinAssignment(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List regions,
+https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List servers) 
 
-
+
 https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList>
 BaseLoadBalancer.roundRobinAssignment(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List regions,
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List servers)
@@ -856,11 +861,6 @@
  simple round-robin assignment.
 
 
-
-https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList>
-FavoredStochasticBalancer.roundRobinAssignment(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List regions,
-https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 titl

[11/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/example/MultiThreadedClientExample.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/example/MultiThreadedClientExample.html
 
b/devapidocs/org/apache/hadoop/hbase/client/example/MultiThreadedClientExample.html
index ad762f2..73580f6 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/example/MultiThreadedClientExample.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/example/MultiThreadedClientExample.html
@@ -118,7 +118,8 @@ var activeTableTab = "activeTableTab";
 
 
 
-public class MultiThreadedClientExample
+@InterfaceAudience.Private
+public class MultiThreadedClientExample
 extends org.apache.hadoop.conf.Configured
 implements org.apache.hadoop.util.Tool
 Example on how to use HBase's Connection 
and Table in a
@@ -321,7 +322,7 @@ implements org.apache.hadoop.util.Tool
 
 
 LOG
-private static final org.slf4j.Logger LOG
+private static final org.slf4j.Logger LOG
 
 
 
@@ -330,7 +331,7 @@ implements org.apache.hadoop.util.Tool
 
 
 DEFAULT_NUM_OPERATIONS
-private static final int DEFAULT_NUM_OPERATIONS
+private static final int DEFAULT_NUM_OPERATIONS
 
 See Also:
 Constant
 Field Values
@@ -343,7 +344,7 @@ implements org.apache.hadoop.util.Tool
 
 
 FAMILY
-private static final byte[] FAMILY
+private static final byte[] FAMILY
 The name of the column family.
 
  d for default.
@@ -355,7 +356,7 @@ implements org.apache.hadoop.util.Tool
 
 
 QUAL
-private static final byte[] QUAL
+private static final byte[] QUAL
 For the example we're just using one qualifier.
 
 
@@ -365,7 +366,7 @@ implements org.apache.hadoop.util.Tool
 
 
 internalPool
-private final https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html?is-external=true";
 title="class or interface in java.util.concurrent">ExecutorService internalPool
+private final https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html?is-external=true";
 title="class or interface in java.util.concurrent">ExecutorService internalPool
 
 
 
@@ -374,7 +375,7 @@ implements org.apache.hadoop.util.Tool
 
 
 threads
-private final int threads
+private final int threads
 
 
 
@@ -391,7 +392,7 @@ implements org.apache.hadoop.util.Tool
 
 
 MultiThreadedClientExample
-public MultiThreadedClientExample()
+public MultiThreadedClientExample()
throws https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 
 Throws:
@@ -413,7 +414,7 @@ implements org.apache.hadoop.util.Tool
 
 
 run
-public int run(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String[] args)
+public int run(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String[] args)
 throws https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">Exception
 
 Specified by:
@@ -429,7 +430,7 @@ implements org.apache.hadoop.util.Tool
 
 
 warmUpConnectionCache
-private void warmUpConnectionCache(Connection connection,
+private void warmUpConnectionCache(Connection connection,
TableName tn)
 throws https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 
@@ -444,7 +445,7 @@ implements org.apache.hadoop.util.Tool
 
 
 main
-public static void main(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String[] args)
+public static void main(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String[] args)
  throws https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">Exception
 
 Throws:

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/example/RefreshHFilesClient.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/example/RefreshHFilesClient.html 
b/devapidocs/org/apache/hadoop/hbase/client/example/RefreshHFilesClient.html
index f4b8bbd..ef59d1e 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/example/RefreshHFilesClient.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/example/RefreshHFilesClient.html
@@ -113,7 +113,8 @@ var activeTableTab = "activeTableTab";
 
 
 
-public class RefreshHFilesClient
+@InterfaceAudience.Private
+public class RefreshHFilesClient
 extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.htm

[29/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/class-use/MasterNotRunningException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/MasterNotRunningException.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/MasterNotRunningException.html
index e959408..cabc286 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/class-use/MasterNotRunningException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/class-use/MasterNotRunningException.html
@@ -128,7 +128,7 @@
 
 
 boolean
-ConnectionImplementation.isMasterRunning()
+ClusterConnection.isMasterRunning()
 Deprecated. 
 this has been deprecated 
without a replacement
 
@@ -136,7 +136,7 @@
 
 
 boolean
-ClusterConnection.isMasterRunning()
+ConnectionImplementation.isMasterRunning()
 Deprecated. 
 this has been deprecated 
without a replacement
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html
index bba209a..26611ed 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html
@@ -270,32 +270,32 @@
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-AsyncHBaseAdmin.getNamespaceDescriptor(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name) 
-
-
-https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
 AsyncAdmin.getNamespaceDescriptor(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
 Get a namespace descriptor by name
 
 
-
+
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
 RawAsyncHBaseAdmin.getNamespaceDescriptor(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name) 
 
-
-https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-AsyncHBaseAdmin.listNamespaceDescriptors() 
-
 
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
+AsyncHBaseAdmin.getNamespaceDescriptor(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name) 
+
+
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
 AsyncAdmin.listNamespaceDescriptors()
 List available namespace descriptors
 
 
-
+
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
 RawAsyncHBaseAdmin.listNamespaceDescriptors() 
 
+
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
+AsyncHBaseAdmin.listNamespaceDescriptors() 
+
 
 
 
@@ -307,7 +307,9 @@
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-AsyncHBaseAdmin.createNamespace(NamespaceDescriptor descriptor) 
+AsyncAd

[14/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/SnapshotDescription.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/SnapshotDescription.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/SnapshotDescription.html
index 08add92..7edabda 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/SnapshotDescription.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/SnapshotDescription.html
@@ -137,7 +137,9 @@
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-AsyncHBaseAdmin.listSnapshots() 
+AsyncAdmin.listSnapshots()
+List completed snapshots.
+
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
@@ -146,22 +148,22 @@
 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-HBaseAdmin.listSnapshots() 
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
+RawAsyncHBaseAdmin.listSnapshots() 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-AsyncAdmin.listSnapshots()
-List completed snapshots.
-
+https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+HBaseAdmin.listSnapshots() 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-RawAsyncHBaseAdmin.listSnapshots() 
+AsyncHBaseAdmin.listSnapshots() 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-AsyncHBaseAdmin.listSnapshots(https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in 
java.util.regex">Pattern pattern) 
+AsyncAdmin.listSnapshots(https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in java.util.regex">Pattern pattern)
+List all the completed snapshots matching the given 
pattern.
+
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
@@ -170,18 +172,16 @@
 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-HBaseAdmin.listSnapshots(https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in 
java.util.regex">Pattern pattern) 
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
+RawAsyncHBaseAdmin.listSnapshots(https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in 
java.util.regex">Pattern pattern) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-AsyncAdmin.listSnapshots(https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in java.util.regex">Pattern patte

[20/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/Put.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Put.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Put.html
index 882bef5..2f94372 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Put.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Put.html
@@ -611,72 +611,72 @@ service.
 
 
 boolean
-Table.checkAndPut(byte[] row,
+HTable.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
Put put)
-Deprecated. 
-Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
-
+Deprecated. 
 
 
 
 boolean
-HTable.checkAndPut(byte[] row,
+Table.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
Put put)
-Deprecated. 
+Deprecated. 
+Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
+
 
 
 
 boolean
-Table.checkAndPut(byte[] row,
+HTable.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
CompareFilter.CompareOp compareOp,
byte[] value,
Put put)
-Deprecated. 
-Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
-
+Deprecated. 
 
 
 
 boolean
-HTable.checkAndPut(byte[] row,
+Table.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
CompareFilter.CompareOp compareOp,
byte[] value,
Put put)
-Deprecated. 
+Deprecated. 
+Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
+
 
 
 
 boolean
-Table.checkAndPut(byte[] row,
+HTable.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
CompareOperator op,
byte[] value,
Put put)
-Deprecated. 
-Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
-
+Deprecated. 
 
 
 
 boolean
-HTable.checkAndPut(byte[] row,
+Table.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
CompareOperator op,
byte[] value,
Put put)
-Deprecated. 
+Deprecated. 
+Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
+
 
 
 
@@ -709,27 +709,27 @@ service.
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-AsyncTable.put(Put put)
-Puts some data to the table.
-
+RawAsyncTableImpl.put(Put put) 
 
 
 void
+HTable.put(Put put) 
+
+
+void
 Table.put(Put put)
 Puts some data in the table.
 
 
-
-https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-AsyncTableImpl.put(Put put) 
-
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-RawAsyncTableImpl.put(Put put) 
+AsyncTableImpl.put(Put put) 
 
 
-void
-HTable.put(Put put) 
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
+AsyncTable.put(Put put)
+Puts some data to the table.
+
 
 
 boolean
@@ -748,19 +748,19 @@ service.
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureBoolean>
-AsyncTable.CheckAndMutateBuilder.thenPut(Put put) 
+RawAsyncTableImpl.CheckAndMutateBuilderImpl.thenPut(Put put) 
 
 
 boolean
-Table.CheckAndMutateBuilder.thenPut(Put put) 
+HTable.CheckAndMutateBuilderImpl.thenPut(Put put) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureBoolean>
-RawAsyncTable

[24/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncBufferedMutatorBuilder.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncBufferedMutatorBuilder.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncBufferedMutatorBuilder.html
index 5d5fd7a..c93e9c2 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncBufferedMutatorBuilder.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncBufferedMutatorBuilder.html
@@ -121,26 +121,26 @@
 
 
 AsyncBufferedMutatorBuilder
+AsyncConnectionImpl.getBufferedMutatorBuilder(TableName tableName) 
+
+
+AsyncBufferedMutatorBuilder
 AsyncConnection.getBufferedMutatorBuilder(TableName tableName)
 Returns an AsyncBufferedMutatorBuilder 
for creating AsyncBufferedMutator.
 
 
-
+
 AsyncBufferedMutatorBuilder
-AsyncConnectionImpl.getBufferedMutatorBuilder(TableName tableName) 
+AsyncConnectionImpl.getBufferedMutatorBuilder(TableName tableName,
+ https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ExecutorService pool) 
 
-
+
 AsyncBufferedMutatorBuilder
 AsyncConnection.getBufferedMutatorBuilder(TableName tableName,
  https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ExecutorService pool)
 Returns an AsyncBufferedMutatorBuilder 
for creating AsyncBufferedMutator.
 
 
-
-AsyncBufferedMutatorBuilder
-AsyncConnectionImpl.getBufferedMutatorBuilder(TableName tableName,
- https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ExecutorService pool) 
-
 
 AsyncBufferedMutatorBuilder
 AsyncBufferedMutatorBuilderImpl.setMaxAttempts(int maxAttempts) 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncConnectionImpl.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncConnectionImpl.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncConnectionImpl.html
index 7ac76dd..71b940f 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncConnectionImpl.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncConnectionImpl.html
@@ -106,11 +106,11 @@
 
 
 private AsyncConnectionImpl
-AsyncClientScanner.conn 
+RawAsyncTableImpl.conn 
 
 
 private AsyncConnectionImpl
-AsyncRpcRetryingCallerFactory.conn 
+AsyncBatchRpcRetryingCaller.conn 
 
 
 private AsyncConnectionImpl
@@ -118,19 +118,19 @@
 
 
 private AsyncConnectionImpl
-RawAsyncTableImpl.conn 
+RegionCoprocessorRpcChannelImpl.conn 
 
 
-private AsyncConnectionImpl
-RegionCoprocessorRpcChannelImpl.conn 
+protected AsyncConnectionImpl
+AsyncRpcRetryingCaller.conn 
 
 
 private AsyncConnectionImpl
-AsyncBatchRpcRetryingCaller.conn 
+AsyncClientScanner.conn 
 
 
-protected AsyncConnectionImpl
-AsyncRpcRetryingCaller.conn 
+private AsyncConnectionImpl
+AsyncRpcRetryingCallerFactory.conn 
 
 
 private AsyncConnectionImpl

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncMasterRequestRpcRetryingCaller.Callable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncMasterRequestRpcRetryingCaller.Callable.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncMasterRequestRpcRetryingCaller.Callable.html
index d6b1759..e71ca45 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncMasterRequestRpcRetryingCaller.Callable.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncMasterRequestRpcRetryingCaller.Callable.html
@@ -105,13 +105,13 @@
 
 
 
-private AsyncMasterRequestRpcRetryingCaller.Callable
-AsyncRpcRetryingCallerFactory.MasterRequestCallerBuilder.callable 
-
-
 private AsyncMasterRequestRpcRetryingCaller.Callable
 AsyncMasterRequestRpcRetryingCaller.callable 
 
+
+private AsyncMasterRequestRpcRetryingCaller.Callable
+AsyncRpcRetryingCallerFactory.MasterRequestCallerBuilder.callable 
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncProcess.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncProcess.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncProcess.html
index f2374f5..5f86673 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncProcess.html
+++ 

[03/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDecodingContext.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDecodingContext.html
 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDecodingContext.html
index d30ee5e..b58c054 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDecodingContext.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDecodingContext.html
@@ -166,27 +166,27 @@
 
 
 DataBlockEncoder.EncodedSeeker
-CopyKeyDataBlockEncoder.createSeeker(CellComparator comparator,
+RowIndexCodecV1.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 
 DataBlockEncoder.EncodedSeeker
-PrefixKeyDeltaEncoder.createSeeker(CellComparator comparator,
+CopyKeyDataBlockEncoder.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 
 DataBlockEncoder.EncodedSeeker
-FastDiffDeltaEncoder.createSeeker(CellComparator comparator,
+DiffKeyDeltaEncoder.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 
 DataBlockEncoder.EncodedSeeker
-DiffKeyDeltaEncoder.createSeeker(CellComparator comparator,
+FastDiffDeltaEncoder.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 
 DataBlockEncoder.EncodedSeeker
-RowIndexCodecV1.createSeeker(CellComparator comparator,
+PrefixKeyDeltaEncoder.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 
@@ -198,13 +198,13 @@
 
 
 https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-BufferedDataBlockEncoder.decodeKeyValues(https://docs.oracle.com/javase/8/docs/api/java/io/DataInputStream.html?is-external=true";
 title="class or interface in java.io">DataInputStream source,
-   HFileBlockDecodingContext blkDecodingCtx) 
+RowIndexCodecV1.decodeKeyValues(https://docs.oracle.com/javase/8/docs/api/java/io/DataInputStream.html?is-external=true";
 title="class or interface in java.io">DataInputStream source,
+   HFileBlockDecodingContext decodingCtx) 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-RowIndexCodecV1.decodeKeyValues(https://docs.oracle.com/javase/8/docs/api/java/io/DataInputStream.html?is-external=true";
 title="class or interface in java.io">DataInputStream source,
-   HFileBlockDecodingContext decodingCtx) 
+BufferedDataBlockEncoder.decodeKeyValues(https://docs.oracle.com/javase/8/docs/api/java/io/DataInputStream.html?is-external=true";
 title="class or interface in java.io">DataInputStream source,
+   HFileBlockDecodingContext blkDecodingCtx) 
 
 
 
@@ -279,17 +279,17 @@
 
 
 HFileBlockDecodingContext
-NoOpDataBlockEncoder.newDataBlockDecodingContext(HFileContext meta) 
+HFileDataBlockEncoderImpl.newDataBlockDecodingContext(HFileContext fileContext) 
 
 
 HFileBlockDecodingContext
-HFileDataBlockEncoder.newDataBlockDecodingContext(HFileContext fileContext)
-create a encoder specific decoding context for 
reading.
-
+NoOpDataBlockEncoder.newDataBlockDecodingContext(HFileContext meta) 
 
 
 HFileBlockDecodingContext
-HFileDataBlockEncoderImpl.newDataBlockDecodingContext(HFileContext fileContext) 
+HFileDataBlockEncoder.newDataBlockDecodingContext(HFileContext fileContext)
+create a encoder specific decoding context for 
reading.
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDefaultDecodingContext.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDefaultDecodingContext.html
 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDefaultDecodingContext.html
index cbdb3c8..468913a 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDefaultDecodingContext.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDefaultDecodingContext.html
@@ -116,36 +116,36 @@
  HFileBlockDefaultDecodingContext decodingCtx) 
 
 
-protected abstract https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-BufferedDataBlockEncoder.internalDecodeKeyValues(https://docs.oracle.com/javase/8/docs/api/java/io/DataInputStream.html?is-external=true";
 title="class or interface in java.io">DataInputStream source,
+protected https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuf

[13/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/TableDescriptor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/TableDescriptor.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/TableDescriptor.html
index 17b9d95..d3eae32 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/TableDescriptor.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/TableDescriptor.html
@@ -443,13 +443,13 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 TableDescriptor
-Table.getDescriptor()
-Gets the table 
descriptor for this table.
-
+HTable.getDescriptor() 
 
 
 TableDescriptor
-HTable.getDescriptor() 
+Table.getDescriptor()
+Gets the table 
descriptor for this table.
+
 
 
 TableDescriptor
@@ -503,52 +503,52 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-AsyncHBaseAdmin.getDescriptor(TableName tableName) 
-
-
-https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
 AsyncAdmin.getDescriptor(TableName tableName)
 Method for getting the tableDescriptor
 
 
-
+
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
 RawAsyncHBaseAdmin.getDescriptor(TableName tableName) 
 
+
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
+AsyncHBaseAdmin.getDescriptor(TableName tableName) 
+
 
 private https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
 RawAsyncHBaseAdmin.getTableDescriptors(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetTableDescriptorsRequest request) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-Admin.listTableDescriptors()
+default https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
+AsyncAdmin.listTableDescriptors()
 List all the userspace tables.
 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-HBaseAdmin.listTableDescriptors() 
-
-
-default https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-AsyncAdmin.listTableDescriptors()
+Admin.listTableDescriptors()
 List all the userspace tables.
 
 
-
-https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-AsyncHBaseAdmin.listTableDescriptors(boolean includeSysTables) 
-
 
+https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+HBaseAdmin.listTableDescriptors() 
+
+
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
 AsyncAdmin.listTableDescriptors(boolean includeSysTables)
 List all the tables.
 
 
-
+
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture

[07/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
index 3b7627b..5f975db 100644
--- a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
+++ b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
@@ -151,119 +151,119 @@
 
 
 Filter.ReturnCode
-FilterListWithAND.filterCell(Cell c) 
+ColumnPrefixFilter.filterCell(Cell cell) 
 
 
 Filter.ReturnCode
-ValueFilter.filterCell(Cell c) 
+ColumnCountGetFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-SkipFilter.filterCell(Cell c) 
+RowFilter.filterCell(Cell v) 
 
 
 Filter.ReturnCode
-FamilyFilter.filterCell(Cell c) 
+FuzzyRowFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-ColumnPrefixFilter.filterCell(Cell cell) 
+Filter.filterCell(Cell c)
+A way to filter based on the column family, column 
qualifier and/or the column value.
+
 
 
 Filter.ReturnCode
-PageFilter.filterCell(Cell ignored) 
+RandomRowFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-RowFilter.filterCell(Cell v) 
+FirstKeyOnlyFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-ColumnRangeFilter.filterCell(Cell c) 
+SkipFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-ColumnCountGetFilter.filterCell(Cell c) 
+TimestampsFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-MultipleColumnPrefixFilter.filterCell(Cell c) 
+ValueFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-ColumnPaginationFilter.filterCell(Cell c) 
+KeyOnlyFilter.filterCell(Cell ignored) 
 
 
 Filter.ReturnCode
-DependentColumnFilter.filterCell(Cell c) 
+FamilyFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-FilterListWithOR.filterCell(Cell c) 
+QualifierFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-InclusiveStopFilter.filterCell(Cell c) 
+FilterList.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-KeyOnlyFilter.filterCell(Cell ignored) 
+ColumnRangeFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-MultiRowRangeFilter.filterCell(Cell ignored) 
+ColumnPaginationFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-Filter.filterCell(Cell c)
-A way to filter based on the column family, column 
qualifier and/or the column value.
-
+FilterListWithAND.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-FirstKeyOnlyFilter.filterCell(Cell c) 
+WhileMatchFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-WhileMatchFilter.filterCell(Cell c) 
+ColumnValueFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-FirstKeyValueMatchingQualifiersFilter.filterCell(Cell c)
-Deprecated. 
- 
+MultiRowRangeFilter.filterCell(Cell ignored) 
 
 
 Filter.ReturnCode
-TimestampsFilter.filterCell(Cell c) 
+PrefixFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-FuzzyRowFilter.filterCell(Cell c) 
+DependentColumnFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-FilterList.filterCell(Cell c) 
+FirstKeyValueMatchingQualifiersFilter.filterCell(Cell c)
+Deprecated. 
+ 
 
 
 Filter.ReturnCode
-RandomRowFilter.filterCell(Cell c) 
+PageFilter.filterCell(Cell ignored) 
 
 
 Filter.ReturnCode
-PrefixFilter.filterCell(Cell c) 
+FilterListWithOR.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-SingleColumnValueFilter.filterCell(Cell c) 
+InclusiveStopFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-ColumnValueFilter.filterCell(Cell c) 
+MultipleColumnPrefixFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-QualifierFilter.filterCell(Cell c) 
+SingleColumnValueFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
@@ -279,158 +279,158 @@
 
 
 Filter.ReturnCode
-ValueFilter.filterKeyValue(Cell c)
+ColumnPrefixFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-SkipFilter.filterKeyValue(Cell c)
+ColumnCountGetFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-FilterListBase.filterKeyValue(Cell c) 
+RowFilter.filterKeyValue(Cell c)
+Deprecated. 
+
 
 
 Filter.ReturnCode
-FamilyFilter.filterKeyValue(Cell c)
+FuzzyRowFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-ColumnPrefixFilter.filterKeyValue(Cell c)
-Deprecated. 
+Filter.filterKeyValue(Cell c)
+Deprecated. 
+As of release 2.0.0, this 
will be removed in HBase 3.0.0.
+ Instead use filterCell(Cell)
+
 
 
 
 Filter.ReturnCode
-PageFilter.filterKeyValue(Cell c)
+RandomRowFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-RowFilter.filterKeyValue(Cell c)
+FirstKeyOnlyFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-ColumnRangeFilter.filterKeyValue(Cell c)
+SkipFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-ColumnCountGetFilter.filterKeyValue(Cell c)
+TimestampsFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-MultipleColumnPrefixFilter.filterKeyValue(Cell c)
+ValueFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnC

[22/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/Connection.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/Connection.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Connection.html
index f1ed9d4..c15c700 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Connection.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Connection.html
@@ -802,23 +802,23 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 private Connection
-RestoreTablesClient.conn 
+BackupAdminImpl.conn 
 
 
-protected Connection
-TableBackupClient.conn 
-
-
 (package private) Connection
 BackupCommands.Command.conn 
 
+
+private Connection
+RestoreTablesClient.conn 
+
 
 protected Connection
-BackupManager.conn 
+TableBackupClient.conn 
 
 
-private Connection
-BackupAdminImpl.conn 
+protected Connection
+BackupManager.conn 
 
 
 private Connection
@@ -1132,13 +1132,13 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 
-(package private) Connection
-ConnectionImplementation.MasterServiceState.connection 
-
-
 private Connection
 RegionServerCallable.connection 
 
+
+(package private) Connection
+ConnectionImplementation.MasterServiceState.connection 
+
 
 
 
@@ -1183,20 +1183,20 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 
-Connection
-Admin.getConnection() 
-
-
 (package private) Connection
 RegionAdminServiceCallable.getConnection() 
 
-
+
 protected Connection
 HTable.getConnection()
 INTERNAL Used by unit tests and tools to do 
low-level
  manipulations.
 
 
+
+Connection
+Admin.getConnection() 
+
 
 Connection
 HBaseAdmin.getConnection() 
@@ -1510,11 +1510,11 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 private Connection
-TableInputFormatBase.connection 
+HRegionPartitioner.connection 
 
 
 private Connection
-HRegionPartitioner.connection 
+TableInputFormatBase.connection 
 
 
 
@@ -1547,22 +1547,22 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 
-private Connection
-TableOutputFormat.TableRecordWriter.connection 
-
-
 (package private) Connection
 MultiTableOutputFormat.MultiTableRecordWriter.connection 
 
+
+private Connection
+HRegionPartitioner.connection 
+
 
 private Connection
-TableInputFormatBase.connection
-The underlying Connection 
of the table.
-
+TableOutputFormat.TableRecordWriter.connection 
 
 
 private Connection
-HRegionPartitioner.connection 
+TableInputFormatBase.connection
+The underlying Connection 
of the table.
+
 
 
 (package private) Connection
@@ -1647,15 +1647,15 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 private Connection
-CatalogJanitor.connection 
+RegionPlacementMaintainer.connection 
 
 
 private Connection
-SnapshotOfRegionAssignmentFromMeta.connection 
+CatalogJanitor.connection 
 
 
 private Connection
-RegionPlacementMaintainer.connection 
+SnapshotOfRegionAssignmentFromMeta.connection 
 
 
 
@@ -1823,16 +1823,16 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 
-private Connection
-TableQuotaSnapshotStore.conn 
+(package private) Connection
+FileArchiverNotifierFactoryImpl.CacheKey.conn 
 
 
 private Connection
-SpaceQuotaRefresherChore.conn 
+QuotaObserverChore.conn 
 
 
 private Connection
-NamespaceQuotaSnapshotStore.conn 
+QuotaObserverChore.TablesWithQuotas.conn 
 
 
 private Connection
@@ -1840,11 +1840,11 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 private Connection
-QuotaObserverChore.conn 
+NamespaceQuotaSnapshotStore.conn 
 
 
 private Connection
-QuotaObserverChore.TablesWithQuotas.conn 
+TableQuotaSnapshotStore.conn 
 
 
 private Connection
@@ -1855,8 +1855,8 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 FileArchiverNotifierImpl.conn 
 
 
-(package private) Connection
-FileArchiverNotifierFactoryImpl.CacheKey.conn 
+private Connection
+SpaceQuotaRefresherChore.conn 
 
 
 private Connection
@@ -2017,20 +2017,20 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 FileArchiverNotifier
-FileArchiverNotifierFactory.get(Connection conn,
+FileArchiverNotifierFactoryImpl.get(Connection conn,
org.apache.hadoop.conf.Configuration conf,
org.apache.hadoop.fs.FileSystem fs,
TableName tn)
-Creates or obtains a FileArchiverNotifier instance 
for the given args.
+Returns the FileArchiverNotifier instance 
for the given TableName.
 
 
 
 FileArchiverNotifier
-FileArchiverNotifierFactoryImpl.get(Connection conn,
+FileArchiverNotifierFactory.get(Connection conn,
org.apache.hadoop.conf.Configuration conf,
org.apache.hadoop.fs.FileSystem fs,
TableName tn)
-Returns the FileArchiverNotifier instance 
for the given TableName.
+Creates or 

[28/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html
index c36dd6e..d4d6c7f 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html
@@ -239,15 +239,15 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 private ServerName
-ServerMetricsBuilder.serverName 
+HRegionLocation.serverName 
 
 
 private ServerName
-ServerMetricsBuilder.ServerMetricsImpl.serverName 
+ServerMetricsBuilder.serverName 
 
 
 private ServerName
-HRegionLocation.serverName 
+ServerMetricsBuilder.ServerMetricsImpl.serverName 
 
 
 
@@ -306,7 +306,9 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 ServerName
-ClusterMetricsBuilder.ClusterMetricsImpl.getMasterName() 
+ClusterMetrics.getMasterName()
+Returns detailed information about the current master ServerName.
+
 
 
 ServerName
@@ -316,15 +318,11 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 ServerName
-ClusterMetrics.getMasterName()
-Returns detailed information about the current master ServerName.
-
+ClusterMetricsBuilder.ClusterMetricsImpl.getMasterName() 
 
 
 ServerName
-ServerLoad.getServerName()
-Deprecated. 
- 
+HRegionLocation.getServerName() 
 
 
 ServerName
@@ -332,11 +330,13 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 ServerName
-ServerMetricsBuilder.ServerMetricsImpl.getServerName() 
+ServerLoad.getServerName()
+Deprecated. 
+ 
 
 
 ServerName
-HRegionLocation.getServerName() 
+ServerMetricsBuilder.ServerMetricsImpl.getServerName() 
 
 
 ServerName
@@ -405,7 +405,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-ClusterMetricsBuilder.ClusterMetricsImpl.getBackupMasterNames() 
+ClusterMetrics.getBackupMasterNames() 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
@@ -415,7 +415,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-ClusterMetrics.getBackupMasterNames() 
+ClusterMetricsBuilder.ClusterMetricsImpl.getBackupMasterNames() 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
@@ -428,7 +428,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-ClusterMetricsBuilder.ClusterMetricsImpl.getDeadServerNames() 
+ClusterMetrics.getDeadServerNames() 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
@@ -438,7 +438,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-ClusterMetrics.getDeadServerNames() 
+ClusterMetricsBuilder.ClusterMetricsImpl.getDeadServerNames() 
 
 
 private https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
@@ -448,7 +448,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
-ClusterMetricsBuilder.ClusterMetricsImpl.getLiveServerMetrics() 
+ClusterMetrics.getLiveServerMetrics() 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
@@ -458,7 +458,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
-ClusterMetrics.getLiveServerMetrics() 
+ClusterMetricsBuilder.ClusterMetricsImpl.getLiveServerMetrics() 
 
 
 static Pair
@@ -857,31 +857,31 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 private ServerName
-FastFailInterceptorContext.server 
+AsyncRequestFutureImpl.SingleServerRequestRunnable.ser

[01/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

Repository: hbase-site
Updated Branches:
  refs/heads/asf-site c30ef1dd2 -> 4dc2a2e85


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/Cacheable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/Cacheable.html 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/Cacheable.html
index 23465a9..adce144 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/Cacheable.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/Cacheable.html
@@ -176,35 +176,35 @@
 
 
 Cacheable
-BlockCache.getBlock(BlockCacheKey cacheKey,
+CombinedBlockCache.getBlock(BlockCacheKey cacheKey,
 boolean caching,
 boolean repeat,
-boolean updateCacheMetrics)
-Fetch block from cache.
-
+boolean updateCacheMetrics) 
 
 
 Cacheable
-LruBlockCache.getBlock(BlockCacheKey cacheKey,
+InclusiveCombinedBlockCache.getBlock(BlockCacheKey cacheKey,
 boolean caching,
 boolean repeat,
-boolean updateCacheMetrics)
-Get the buffer of the block with the specified name.
-
+boolean updateCacheMetrics) 
 
 
 Cacheable
-CombinedBlockCache.getBlock(BlockCacheKey cacheKey,
+BlockCache.getBlock(BlockCacheKey cacheKey,
 boolean caching,
 boolean repeat,
-boolean updateCacheMetrics) 
+boolean updateCacheMetrics)
+Fetch block from cache.
+
 
 
 Cacheable
-InclusiveCombinedBlockCache.getBlock(BlockCacheKey cacheKey,
+LruBlockCache.getBlock(BlockCacheKey cacheKey,
 boolean caching,
 boolean repeat,
-boolean updateCacheMetrics) 
+boolean updateCacheMetrics)
+Get the buffer of the block with the specified name.
+
 
 
 Cacheable
@@ -253,27 +253,39 @@
 
 
 void
+CombinedBlockCache.cacheBlock(BlockCacheKey cacheKey,
+  Cacheable buf) 
+
+
+void
 BlockCache.cacheBlock(BlockCacheKey cacheKey,
   Cacheable buf)
 Add block to cache (defaults to not in-memory).
 
 
-
+
 void
 LruBlockCache.cacheBlock(BlockCacheKey cacheKey,
   Cacheable buf)
 Cache the block with the specified name and buffer.
 
 
-
+
 void
-CombinedBlockCache.cacheBlock(BlockCacheKey cacheKey,
+MemcachedBlockCache.cacheBlock(BlockCacheKey cacheKey,
   Cacheable buf) 
 
+
+void
+CombinedBlockCache.cacheBlock(BlockCacheKey cacheKey,
+  Cacheable buf,
+  boolean inMemory) 
+
 
 void
-MemcachedBlockCache.cacheBlock(BlockCacheKey cacheKey,
-  Cacheable buf) 
+InclusiveCombinedBlockCache.cacheBlock(BlockCacheKey cacheKey,
+  Cacheable buf,
+  boolean inMemory) 
 
 
 void
@@ -293,18 +305,6 @@
 
 
 void
-CombinedBlockCache.cacheBlock(BlockCacheKey cacheKey,
-  Cacheable buf,
-  boolean inMemory) 
-
-
-void
-InclusiveCombinedBlockCache.cacheBlock(BlockCacheKey cacheKey,
-  Cacheable buf,
-  boolean inMemory) 
-
-
-void
 MemcachedBlockCache.cacheBlock(BlockCacheKey cacheKey,
   Cacheable buf,
   boolean inMemory) 
@@ -315,6 +315,11 @@
  Cacheable right) 
 
 
+void
+CombinedBlockCache.returnBlock(BlockCacheKey cacheKey,
+   Cacheable block) 
+
+
 default void
 BlockCache.returnBlock(BlockCacheKey cacheKey,
Cacheable block)
@@ -322,11 +327,6 @@
  is over.
 
 
-
-void
-CombinedBlockCache.returnBlock(BlockCacheKey cacheKey,
-   Cacheable block) 
-
 
 
 
@@ -404,13 +404,19 @@
 
 
 Cacheable
+ByteBufferIOEngine.read(long offset,
+int length,
+CacheableDeserializer deserializer) 
+
+
+Cacheable
 FileIOEngine.read(long offset,
 int length,
 CacheableDeserializer deserializer)
 Transfers data from file to the given byte buffer
 
 
-
+
 Cacheable
 IOEngine.read(long offset,
 int length,
@@ -418,12 +424,6 @@
 Transfers data from IOEngine to a Cacheable object.
 
 
-
-Cacheable
-ByteBufferIOEngine.read(long offset,
-int length,
-CacheableDeserializer deserializer) 
-
 
 Cacheable
 FileMmapEngine.read(long offset,
@@ -492,13 +492,19 @@
 
 
 Cacheable
+ByteBufferIOEngine.read(long offset,
+int length,
+CacheableDeserializer deserializer) 
+
+
+Cacheable
 FileIOEngine.read(long offset,
 int length,
 CacheableDeserializer deserializer)
 Transfers data from file to the given byte buffer
 
 
-
+
 Cacheable
 IOEngine.read(long offset,
 int length,
@@ -506,12 +512,6 @@
 Transfers data from IOEngine to a Cacheable object.
 
 
-
-Cacheable
-ByteBufferIOEngine.read(long offset,
-int length,
-CacheableDeserializer deserializer) 
-
 
 Cacheable
 FileMmapEngine.read(long offset,



[04/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html 
b/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
index abeccf1..ef30022 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
@@ -162,11 +162,11 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 ImmutableBytesWritable
-TableRecordReader.createKey() 
+TableSnapshotInputFormat.TableSnapshotRecordReader.createKey() 
 
 
 ImmutableBytesWritable
-TableSnapshotInputFormat.TableSnapshotRecordReader.createKey() 
+TableRecordReader.createKey() 
 
 
 ImmutableBytesWritable
@@ -183,11 +183,9 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapred.RecordReader
-TableInputFormatBase.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
+TableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
org.apache.hadoop.mapred.JobConf job,
-   org.apache.hadoop.mapred.Reporter reporter)
-Builds a TableRecordReader.
-
+   
org.apache.hadoop.mapred.Reporter reporter) 
 
 
 org.apache.hadoop.mapred.RecordReader
@@ -197,9 +195,11 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapred.RecordReader
-TableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
+TableInputFormatBase.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
org.apache.hadoop.mapred.JobConf job,
-   
org.apache.hadoop.mapred.Reporter reporter) 
+   org.apache.hadoop.mapred.Reporter reporter)
+Builds a TableRecordReader.
+
 
 
 
@@ -218,12 +218,10 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-IdentityTableMap.map(ImmutableBytesWritable key,
-   Result value,
+RowCounter.RowCounterMapper.map(ImmutableBytesWritable row,
+   Result values,
org.apache.hadoop.mapred.OutputCollector output,
-   org.apache.hadoop.mapred.Reporter reporter)
-Pass the key, value to reduce
-
+   org.apache.hadoop.mapred.Reporter reporter) 
 
 
 void
@@ -236,19 +234,21 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-RowCounter.RowCounterMapper.map(ImmutableBytesWritable row,
-   Result values,
+IdentityTableMap.map(ImmutableBytesWritable key,
+   Result value,
org.apache.hadoop.mapred.OutputCollector output,
-   org.apache.hadoop.mapred.Reporter reporter) 
+   org.apache.hadoop.mapred.Reporter reporter)
+Pass the key, value to reduce
+
 
 
 boolean
-TableRecordReader.next(ImmutableBytesWritable key,
+TableSnapshotInputFormat.TableSnapshotRecordReader.next(ImmutableBytesWritable key,
 Result value) 
 
 
 boolean
-TableSnapshotInputFormat.TableSnapshotRecordReader.next(ImmutableBytesWritable key,
+TableRecordReader.next(ImmutableBytesWritable key,
 Result value) 
 
 
@@ -281,12 +281,10 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-IdentityTableMap.map(ImmutableBytesWritable key,
-   Result value,
+RowCounter.RowCounterMapper.map(ImmutableBytesWritable row,
+   Result values,
org.apache.hadoop.mapred.OutputCollector output,
-   org.apache.hadoop.mapred.Reporter reporter)
-Pass the key, value to reduce
-
+   org.apache.hadoop.mapred.Reporter reporter) 
 
 
 void
@@ -299,10 +297,12 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-RowCounter.RowCounterMapper.map(ImmutableBytesWritable row,
-   Result values,
+IdentityTableMap.map(ImmutableBytesWritable key,
+   Result value,
org.apache.hadoop.mapred.OutputCollector output,
-   org.apache.hadoop.mapred.Reporter reporter) 
+   org.apache.hadoop.mapred.Reporter reporter)
+Pass the key, value to reduce
+
 
 
 void
@@ -349,7 +349,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 private ImmutableBytesWritable
-MultithreadedTableMapper.SubMapRecordReader.key 
+TableRecordReaderImpl.key 
 
 
 private ImmutableBytesWritable
@@ -357,7 +357,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 private ImmutableBytesWritable
-TableRecordReaderImpl.key 
+MultithreadedTableMapper.SubMapRecordReader.key 
 
 
 (package private) ImmutableBytesWritable
@@ -427,33 +427,33 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 ImmutableBytesWritable
-Multit

[25/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/class-use/TableNotDisabledException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/TableNotDisabledException.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/TableNotDisabledException.html
index 1d50582..7eb7661 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/class-use/TableNotDisabledException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/class-use/TableNotDisabledException.html
@@ -104,14 +104,14 @@
 
 
 void
-HMaster.checkTableModifiable(TableName tableName) 
-
-
-void
 MasterServices.checkTableModifiable(TableName tableName)
 Check table is modifiable; i.e.
 
 
+
+void
+HMaster.checkTableModifiable(TableName tableName) 
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/class-use/TableNotFoundException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/TableNotFoundException.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/TableNotFoundException.html
index 6194cbc..25d874c 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/TableNotFoundException.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/TableNotFoundException.html
@@ -170,14 +170,14 @@
 
 
 void
-HMaster.checkTableModifiable(TableName tableName) 
-
-
-void
 MasterServices.checkTableModifiable(TableName tableName)
 Check table is modifiable; i.e.
 
 
+
+void
+HMaster.checkTableModifiable(TableName tableName) 
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/class-use/Tag.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/Tag.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/Tag.html
index 067aa54..22b3482 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/Tag.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/Tag.html
@@ -243,6 +243,10 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 static https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+PrivateCellUtil.getTags(Cell cell) 
+
+
+static https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 CellUtil.getTags(Cell cell)
 Deprecated. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
@@ -250,10 +254,6 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-
-static https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-PrivateCellUtil.getTags(Cell cell) 
-
 
 static https://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator
 CellUtil.tagsIterator(byte[] tags,
@@ -395,6 +395,11 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 static Cell
+PrivateCellUtil.createCell(Cell cell,
+  https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tags) 
+
+
+static Cell
 CellUtil.createCell(Cell cell,
   https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tags)
 Deprecated. 
@@ -402,11 +407,6 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-
-static Cell
-PrivateCellUtil.createCell(Cell cell,
-  https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tags) 
-
 
 static byte[]
 TagUtil.fromList(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tags)
@@ -415,16 +415,16 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-RawCellBuilder
-RawCellBuilder.setTags(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tags) 
+ExtendedCellBuilder
+ExtendedCellBuilderImpl.setTags(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tags) 
 
 
-ExtendedCellBuilder
-ExtendedCellBuilder.setTags(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tags) 
+RawCellBuilder
+RawCellBuilder.setTags(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tags) 
 
 
 ExtendedCellBuilder
-ExtendedCellBuilderImpl.

[42/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/apidocs/org/apache/hadoop/hbase/util/class-use/PositionedByteRange.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/util/class-use/PositionedByteRange.html 
b/apidocs/org/apache/hadoop/hbase/util/class-use/PositionedByteRange.html
index af38a25..9a3fd42 100644
--- a/apidocs/org/apache/hadoop/hbase/util/class-use/PositionedByteRange.html
+++ b/apidocs/org/apache/hadoop/hbase/util/class-use/PositionedByteRange.html
@@ -125,104 +125,104 @@
 
 
 byte[]
-OrderedBlobVar.decode(PositionedByteRange src) 
+RawBytes.decode(PositionedByteRange src) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true";
 title="class or interface in java.lang">Number
-OrderedNumeric.decode(PositionedByteRange src) 
+T
+FixedLengthWrapper.decode(PositionedByteRange src) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true";
 title="class or interface in java.lang">Byte
-RawByte.decode(PositionedByteRange src) 
+https://docs.oracle.com/javase/8/docs/api/java/lang/Short.html?is-external=true";
 title="class or interface in java.lang">Short
+RawShort.decode(PositionedByteRange src) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true";
 title="class or interface in java.lang">Integer
-OrderedInt32.decode(PositionedByteRange src) 
+T
+TerminatedWrapper.decode(PositionedByteRange src) 
 
 
-T
-FixedLengthWrapper.decode(PositionedByteRange src) 
+https://docs.oracle.com/javase/8/docs/api/java/lang/Float.html?is-external=true";
 title="class or interface in java.lang">Float
+OrderedFloat32.decode(PositionedByteRange src) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
-OrderedString.decode(PositionedByteRange src) 
+https://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true";
 title="class or interface in java.lang">Double
+OrderedFloat64.decode(PositionedByteRange src) 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/lang/Float.html?is-external=true";
 title="class or interface in java.lang">Float
 RawFloat.decode(PositionedByteRange src) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true";
 title="class or interface in java.lang">Integer
-RawInteger.decode(PositionedByteRange src) 
+https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true";
 title="class or interface in java.lang">Byte
+OrderedInt8.decode(PositionedByteRange src) 
 
 
-T
-DataType.decode(PositionedByteRange src)
-Read an instance of T from the buffer 
src.
-
+https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object[]
+Struct.decode(PositionedByteRange src) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true";
 title="class or interface in java.lang">Long
-RawLong.decode(PositionedByteRange src) 
+byte[]
+OrderedBlob.decode(PositionedByteRange src) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/lang/Short.html?is-external=true";
 title="class or interface in java.lang">Short
-RawShort.decode(PositionedByteRange src) 
+https://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true";
 title="class or interface in java.lang">Integer
+RawInteger.decode(PositionedByteRange src) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
-RawString.decode(PositionedByteRange src) 
+https://docs.oracle.com/javase/8/docs/api/java/lang/Short.html?is-external=true";
 title="class or interface in java.lang">Short
+OrderedInt16.decode(PositionedByteRange src) 
 
 
-byte[]
-RawBytes.decode(PositionedByteRange src) 
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+RawString.decode(PositionedByteRange src) 
 
 
 byte[]
-OrderedBlob.decode(PositionedByteRange src) 
+OrderedBlobVar.decode(PositionedByteRange src) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object[]
-Struct.decode(PositionedByteRange src) 
+https://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true";
 title="class or interface in java.lang">Byte
+RawByte.decode(PositionedByteRange src) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true";
 title="class or interface in java.lang">Double
-RawDouble.decode(PositionedByteRange src) 
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+OrderedString.decode(PositionedByteRange src) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/lang/Short.html?is-external=true";
 titl

[45/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/apidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html 
b/apidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
index 548a18c..75b512a 100644
--- a/apidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
+++ b/apidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
@@ -107,53 +107,51 @@
 
 
 Filter.ReturnCode
-FilterList.filterCell(Cell c) 
+ValueFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-WhileMatchFilter.filterCell(Cell c) 
+FirstKeyOnlyFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-PageFilter.filterCell(Cell ignored) 
+ColumnPrefixFilter.filterCell(Cell cell) 
 
 
 Filter.ReturnCode
-MultipleColumnPrefixFilter.filterCell(Cell c) 
+TimestampsFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-InclusiveStopFilter.filterCell(Cell c) 
+ColumnValueFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-KeyOnlyFilter.filterCell(Cell ignored) 
+ColumnCountGetFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-RowFilter.filterCell(Cell v) 
+WhileMatchFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-ColumnRangeFilter.filterCell(Cell c) 
+RowFilter.filterCell(Cell v) 
 
 
 Filter.ReturnCode
-FamilyFilter.filterCell(Cell c) 
+RandomRowFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-RandomRowFilter.filterCell(Cell c) 
+MultiRowRangeFilter.filterCell(Cell ignored) 
 
 
 Filter.ReturnCode
-FirstKeyValueMatchingQualifiersFilter.filterCell(Cell c)
-Deprecated. 
- 
+InclusiveStopFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-SkipFilter.filterCell(Cell c) 
+SingleColumnValueFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
@@ -161,99 +159,101 @@
 
 
 Filter.ReturnCode
-Filter.filterCell(Cell c)
-A way to filter based on the column family, column 
qualifier and/or the column value.
-
+QualifierFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-ColumnPaginationFilter.filterCell(Cell c) 
+FirstKeyValueMatchingQualifiersFilter.filterCell(Cell c)
+Deprecated. 
+ 
 
 
 Filter.ReturnCode
-ValueFilter.filterCell(Cell c) 
+ColumnPaginationFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-ColumnCountGetFilter.filterCell(Cell c) 
+ColumnRangeFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-QualifierFilter.filterCell(Cell c) 
+FilterList.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-PrefixFilter.filterCell(Cell c) 
+MultipleColumnPrefixFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-FuzzyRowFilter.filterCell(Cell c) 
+SkipFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-ColumnValueFilter.filterCell(Cell c) 
+PageFilter.filterCell(Cell ignored) 
 
 
 Filter.ReturnCode
-TimestampsFilter.filterCell(Cell c) 
+PrefixFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-ColumnPrefixFilter.filterCell(Cell cell) 
+FamilyFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-MultiRowRangeFilter.filterCell(Cell ignored) 
+Filter.filterCell(Cell c)
+A way to filter based on the column family, column 
qualifier and/or the column value.
+
 
 
 Filter.ReturnCode
-SingleColumnValueFilter.filterCell(Cell c) 
+FuzzyRowFilter.filterCell(Cell c) 
 
 
 Filter.ReturnCode
-FirstKeyOnlyFilter.filterCell(Cell c) 
+KeyOnlyFilter.filterCell(Cell ignored) 
 
 
 Filter.ReturnCode
-MultipleColumnPrefixFilter.filterColumn(Cell cell) 
+ColumnPrefixFilter.filterColumn(Cell cell) 
 
 
 Filter.ReturnCode
-ColumnPrefixFilter.filterColumn(Cell cell) 
+MultipleColumnPrefixFilter.filterColumn(Cell cell) 
 
 
 Filter.ReturnCode
-FilterList.filterKeyValue(Cell c)
+ValueFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-WhileMatchFilter.filterKeyValue(Cell c)
+FirstKeyOnlyFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-PageFilter.filterKeyValue(Cell c)
+ColumnPrefixFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-MultipleColumnPrefixFilter.filterKeyValue(Cell c)
+TimestampsFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-InclusiveStopFilter.filterKeyValue(Cell c)
+ColumnCountGetFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-KeyOnlyFilter.filterKeyValue(Cell ignored)
+WhileMatchFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
@@ -265,47 +265,44 @@
 
 
 Filter.ReturnCode
-ColumnRangeFilter.filterKeyValue(Cell c)
+RandomRowFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-FamilyFilter.filterKeyValue(Cell c)
+MultiRowRangeFilter.filterKeyValue(Cell ignored)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-RandomRowFilter.filterKeyValue(Cell c)
+InclusiveStopFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-FirstKeyValueMatchingQualifiersFilter.filterKeyValue(Cell c)
+SingleColumnValueFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 
 
 Filter.ReturnCode
-SkipFilter.filterKeyValue(Cell c)
+DependentColumnFilter.filterKeyValue(Cell c)
 Deprecated. 
 
 

[12/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Callback.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Callback.html
 
b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Callback.html
index a6c6bcc..65d4b29 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Callback.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Callback.html
@@ -113,17 +113,17 @@
 
 
 
-private Batch.Callback
-AsyncRequestFutureImpl.callback 
-
-
 private Batch.Callback
 AsyncProcessTask.callback 
 
-
+
 private Batch.Callback
 AsyncProcessTask.Builder.callback 
 
+
+private Batch.Callback
+AsyncRequestFutureImpl.callback 
+
 
 
 
@@ -148,42 +148,50 @@
 
 
  void
-Table.batchCallback(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List actions,
+HTable.batchCallback(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List actions,
  https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object[] results,
- Batch.Callback callback)
-Same as Table.batch(List,
 Object[]), but with a callback.
-
+ Batch.Callback callback) 
 
 
  void
-HTable.batchCallback(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List actions,
+Table.batchCallback(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List actions,
  https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object[] results,
- Batch.Callback callback) 
+ Batch.Callback callback)
+Same as Table.batch(List,
 Object[]), but with a callback.
+
 
 
 void
-Table.batchCoprocessorService(com.google.protobuf.Descriptors.MethodDescriptor methodDescriptor,
+HTable.batchCoprocessorService(com.google.protobuf.Descriptors.MethodDescriptor methodDescriptor,
com.google.protobuf.Message request,
byte[] startKey,
byte[] endKey,
R responsePrototype,
-   Batch.Callback callback)
-Creates an instance of the given Service 
subclass for each table
- region spanning the range from the startKey row to 
endKey row (inclusive), all
- the invocations to the same region server will be batched into one call.
-
+   Batch.Callback callback) 
 
 
 void
-HTable.batchCoprocessorService(com.google.protobuf.Descriptors.MethodDescriptor methodDescriptor,
+Table.batchCoprocessorService(com.google.protobuf.Descriptors.MethodDescriptor methodDescriptor,
com.google.protobuf.Message request,
byte[] startKey,
byte[] endKey,
R responsePrototype,
-   Batch.Callback callback) 
+   Batch.Callback callback)
+Creates an instance of the given Service 
subclass for each table
+ region spanning the range from the startKey row to 
endKey row (inclusive), all
+ the invocations to the same region server will be batched into one call.
+
 
 
 void
+HTable.coprocessorService(https://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang">Class service,
+  byte[] startKey,
+  byte[] endKey,
+  Batch.Call callable,
+  Batch.Callback callback) 
+
+
+void
 Table.coprocessorService(https://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang">Class service,
   byte[] startKey,
   byte[] endKey,
@@ -195,14 +203,6 @@
  with each Service instance.
 
 
-
-void
-HTable.coprocessorService(https://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang">Class service,
-  byte[] startKey,
-  byte[] endKey,
-  Batch.Call callable,
-  Batch.Callback callback) 
-
 
 static  void
 HTable.doBatchWithCallback(https://docs.oracle.com/javase/8/docs/api/java/ut

[05/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/http/HttpRequestLogAppender.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/http/HttpRequestLogAppender.html 
b/devapidocs/org/apache/hadoop/hbase/http/HttpRequestLogAppender.html
index ee9b433..02c9bdd 100644
--- a/devapidocs/org/apache/hadoop/hbase/http/HttpRequestLogAppender.html
+++ b/devapidocs/org/apache/hadoop/hbase/http/HttpRequestLogAppender.html
@@ -118,7 +118,8 @@ var activeTableTab = "activeTableTab";
 
 
 
-public class HttpRequestLogAppender
+@InterfaceAudience.Private
+public class HttpRequestLogAppender
 extends org.apache.log4j.AppenderSkeleton
 Log4j Appender adapter for HttpRequestLog
 
@@ -249,7 +250,7 @@ extends org.apache.log4j.AppenderSkeleton
 
 
 filename
-private https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String filename
+private https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String filename
 
 
 
@@ -258,7 +259,7 @@ extends org.apache.log4j.AppenderSkeleton
 
 
 retainDays
-private int retainDays
+private int retainDays
 
 
 
@@ -275,7 +276,7 @@ extends org.apache.log4j.AppenderSkeleton
 
 
 HttpRequestLogAppender
-public HttpRequestLogAppender()
+public HttpRequestLogAppender()
 
 
 
@@ -292,7 +293,7 @@ extends org.apache.log4j.AppenderSkeleton
 
 
 setRetainDays
-public void setRetainDays(int retainDays)
+public void setRetainDays(int retainDays)
 
 
 
@@ -301,7 +302,7 @@ extends org.apache.log4j.AppenderSkeleton
 
 
 getRetainDays
-public int getRetainDays()
+public int getRetainDays()
 
 
 
@@ -310,7 +311,7 @@ extends org.apache.log4j.AppenderSkeleton
 
 
 setFilename
-public void setFilename(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String filename)
+public void setFilename(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String filename)
 
 
 
@@ -319,7 +320,7 @@ extends org.apache.log4j.AppenderSkeleton
 
 
 getFilename
-public https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String getFilename()
+public https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String getFilename()
 
 
 
@@ -328,7 +329,7 @@ extends org.apache.log4j.AppenderSkeleton
 
 
 append
-public void append(org.apache.log4j.spi.LoggingEvent event)
+public void append(org.apache.log4j.spi.LoggingEvent event)
 
 Specified by:
 append in 
class org.apache.log4j.AppenderSkeleton
@@ -341,7 +342,7 @@ extends org.apache.log4j.AppenderSkeleton
 
 
 close
-public void close()
+public void close()
 
 
 
@@ -350,7 +351,7 @@ extends org.apache.log4j.AppenderSkeleton
 
 
 requiresLayout
-public boolean requiresLayout()
+public boolean requiresLayout()
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/http/HttpServerUtil.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/http/HttpServerUtil.html 
b/devapidocs/org/apache/hadoop/hbase/http/HttpServerUtil.html
index 401d81c..2a9216a 100644
--- a/devapidocs/org/apache/hadoop/hbase/http/HttpServerUtil.html
+++ b/devapidocs/org/apache/hadoop/hbase/http/HttpServerUtil.html
@@ -109,7 +109,8 @@ var activeTableTab = "activeTableTab";
 
 
 
-public class HttpServerUtil
+@InterfaceAudience.Private
+public final class HttpServerUtil
 extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 HttpServer utility.
 
@@ -127,10 +128,12 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 Constructors 
 
-Constructor and Description
+Modifier
+Constructor and Description
 
 
-HttpServerUtil() 
+private 
+HttpServerUtil() 
 
 
 
@@ -181,7 +184,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 HttpServerUtil
-public HttpServerUtil()
+private HttpServerUtil()
 
 
 
@@ -198,7 +201,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 constrainHttpMethods
-public static void constrainHttpMethods(org.eclipse.jetty.servlet.ServletContextHandler ctxHandler)
+public static void constrainHttpMethods(org.eclipse.jetty.servlet.ServletContextHandler ctxHandler)
 Add constraints to a Jetty Context to disallow undesirable 
Http methods.
 
 Parameters:

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/http/jmx/JMXJsonServlet.html
--
diff --git a/devapidocs/org/apache/hadoo

[18/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionLocateType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionLocateType.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionLocateType.html
index 21dd94d..f794fc9 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionLocateType.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionLocateType.html
@@ -106,7 +106,7 @@
 
 
 private RegionLocateType
-AsyncRpcRetryingCallerFactory.SingleRequestCallerBuilder.locateType 
+AsyncSingleRequestRpcRetryingCaller.locateType 
 
 
 RegionLocateType
@@ -114,7 +114,7 @@
 
 
 private RegionLocateType
-AsyncSingleRequestRpcRetryingCaller.locateType 
+AsyncRpcRetryingCallerFactory.SingleRequestCallerBuilder.locateType 
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionLocator.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionLocator.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionLocator.html
index 195c3ee..f6e7bf3 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionLocator.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionLocator.html
@@ -230,13 +230,13 @@ service.
 
 
 private RegionLocator
-TableInputFormatBase.regionLocator
-The RegionLocator of the 
table.
-
+HFileOutputFormat2.TableInfo.regionLocator 
 
 
 private RegionLocator
-HFileOutputFormat2.TableInfo.regionLocator 
+TableInputFormatBase.regionLocator
+The RegionLocator of the 
table.
+
 
 
 
@@ -248,15 +248,15 @@ service.
 
 
 
+RegionLocator
+HFileOutputFormat2.TableInfo.getRegionLocator() 
+
+
 protected RegionLocator
 TableInputFormatBase.getRegionLocator()
 Allows subclasses to get the RegionLocator.
 
 
-
-RegionLocator
-HFileOutputFormat2.TableInfo.getRegionLocator() 
-
 
 
 



[33/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
index 22280e4..94a6549 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
@@ -539,6 +539,11 @@ service.
 
 
 static Cell
+PrivateCellUtil.createCell(Cell cell,
+  byte[] tags) 
+
+
+static Cell
 CellUtil.createCell(Cell cell,
   byte[] tags)
 Deprecated. 
@@ -546,12 +551,13 @@ service.
 
 
 
-
+
 static Cell
-PrivateCellUtil.createCell(Cell cell,
+PrivateCellUtil.createCell(Cell cell,
+  byte[] value,
   byte[] tags) 
 
-
+
 static Cell
 CellUtil.createCell(Cell cell,
   byte[] value,
@@ -561,13 +567,12 @@ service.
 
 
 
-
+
 static Cell
-PrivateCellUtil.createCell(Cell cell,
-  byte[] value,
-  byte[] tags) 
+PrivateCellUtil.createCell(Cell cell,
+  https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tags) 
 
-
+
 static Cell
 CellUtil.createCell(Cell cell,
   https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tags)
@@ -576,11 +581,6 @@ service.
 
 
 
-
-static Cell
-PrivateCellUtil.createCell(Cell cell,
-  https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tags) 
-
 
 static Cell
 PrivateCellUtil.createFirstDeleteFamilyCellOnRow(byte[] row,
@@ -761,6 +761,10 @@ service.
 
 
 static byte[]
+PrivateCellUtil.cloneTags(Cell cell) 
+
+
+static byte[]
 CellUtil.cloneTags(Cell cell)
 Deprecated. 
 As of HBase-2.0. Will be 
removed in HBase-3.0.
@@ -768,10 +772,6 @@ service.
 
 
 
-
-static byte[]
-PrivateCellUtil.cloneTags(Cell cell) 
-
 
 static byte[]
 CellUtil.cloneValue(Cell cell) 
@@ -785,6 +785,11 @@ service.
 
 
 int
+CellComparatorImpl.compare(Cell a,
+   Cell b) 
+
+
+int
 KeyValue.MetaComparator.compare(Cell left,
Cell right)
 Deprecated. 
@@ -792,7 +797,7 @@ service.
  table.
 
 
-
+
 int
 KeyValue.KVComparator.compare(Cell left,
Cell right)
@@ -801,11 +806,6 @@ service.
  rowkey, colfam/qual, timestamp, type, mvcc
 
 
-
-int
-CellComparatorImpl.compare(Cell a,
-   Cell b) 
-
 
 int
 CellComparatorImpl.compare(Cell a,
@@ -816,27 +816,27 @@ service.
 
 
 static int
-CellUtil.compare(CellComparator comparator,
+PrivateCellUtil.compare(CellComparator comparator,
Cell left,
byte[] key,
int offset,
int length)
-Deprecated. 
-As of HBase-2.0. Will be 
removed in HBase-3.0
-
+Used when a cell needs to be compared with a key byte[] 
such as cases of finding the index from
+ the index block, bloom keys from the bloom blocks This byte[] is expected to 
be serialized in
+ the KeyValue serialization format If the KeyValue (Cell's) serialization 
format changes this
+ method cannot be used.
 
 
 
 static int
-PrivateCellUtil.compare(CellComparator comparator,
+CellUtil.compare(CellComparator comparator,
Cell left,
byte[] key,
int offset,
int length)
-Used when a cell needs to be compared with a key byte[] 
such as cases of finding the index from
- the index block, bloom keys from the bloom blocks This byte[] is expected to 
be serialized in
- the KeyValue serialization format If the KeyValue (Cell's) serialization 
format changes this
- method cannot be used.
+Deprecated. 
+As of HBase-2.0. Will be 
removed in HBase-3.0
+
 
 
 
@@ -1039,23 +1039,23 @@ service.
 
 
 int
-KeyValue.KVComparator.compareRows(Cell left,
-   Cell right)
-Deprecated. 
- 
-
-
-int
 CellComparatorImpl.compareRows(Cell left,
Cell right)
 Compares the rows of the left and right cell.
 
 
-
+
 int
 CellComparatorImpl.MetaCellComparator.compareRows(Cell left,
Cell right) 
 
+
+int
+KeyValue.KVComparator.compareRows(Cell left,
+   Cell right)
+Deprecated. 
+ 
+
 
 int
 CellComparator.compareTimestamps(Cell leftCell,
@@ -1065,17 +1065,17 @@ service.
 
 
 int
-KeyValue.KVComparator.compareTimestamps(Cell left,
+CellComparatorImpl.compareTimestamps(Cell left,
  Cell right)
-Deprecated. 
- 
+Compares cell's timestamps in DESCENDING order.
+
 
 
 int
-CellComparatorImpl.compareTimestamps(Cell left,
+KeyValue.KVComparator.compareTimestamps(Cell left,
  Cell right)
-Compares cell's timestamps in DESCENDING order.
-
+Deprecated. 
+ 
 
 
 static int
@@ -1262,6 +1262,11 @@ service.
 
 
 static Cell
+PrivateCellUtil.createCell(Cell cell,
+  byte[] tags) 
+
+
+static Cell
 CellUtil.createCell(Cell cell,
   byte[] tags)
 Deprecated. 
@@ -1269,12 +1274,13 @@ service.
 
 
 
-
+
 stati

[44/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/apidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html 
b/apidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
index 7231aff..dbca4a8 100644
--- a/apidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
+++ b/apidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
@@ -175,23 +175,23 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapred.RecordReader
-TableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
+TableInputFormatBase.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
org.apache.hadoop.mapred.JobConf job,
-   
org.apache.hadoop.mapred.Reporter reporter) 
+   org.apache.hadoop.mapred.Reporter reporter)
+Builds a TableRecordReader.
+
 
 
 org.apache.hadoop.mapred.RecordReader
-MultiTableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
+TableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
org.apache.hadoop.mapred.JobConf job,

org.apache.hadoop.mapred.Reporter reporter) 
 
 
 org.apache.hadoop.mapred.RecordReader
-TableInputFormatBase.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
+MultiTableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
org.apache.hadoop.mapred.JobConf job,
-   org.apache.hadoop.mapred.Reporter reporter)
-Builds a TableRecordReader.
-
+   
org.apache.hadoop.mapred.Reporter reporter) 
 
 
 
@@ -324,9 +324,9 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapreduce.RecordReader
-MultiTableInputFormatBase.createRecordReader(org.apache.hadoop.mapreduce.InputSplit split,
+TableInputFormatBase.createRecordReader(org.apache.hadoop.mapreduce.InputSplit split,
   
org.apache.hadoop.mapreduce.TaskAttemptContext context)
-Builds a TableRecordReader.
+Builds a TableRecordReader.
 
 
 
@@ -336,19 +336,19 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapreduce.RecordReader
-TableInputFormatBase.createRecordReader(org.apache.hadoop.mapreduce.InputSplit split,
+MultiTableInputFormatBase.createRecordReader(org.apache.hadoop.mapreduce.InputSplit split,
   
org.apache.hadoop.mapreduce.TaskAttemptContext context)
-Builds a TableRecordReader.
+Builds a TableRecordReader.
 
 
 
-org.apache.hadoop.mapreduce.RecordWriter
-MultiTableOutputFormat.getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext context) 
-
-
 org.apache.hadoop.mapreduce.RecordWriter
 HFileOutputFormat2.getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext context) 
 
+
+org.apache.hadoop.mapreduce.RecordWriter
+MultiTableOutputFormat.getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext context) 
+
 
 
 
@@ -375,12 +375,6 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 int
-SimpleTotalOrderPartitioner.getPartition(ImmutableBytesWritable key,
-VALUE value,
-int reduces) 
-
-
-int
 HRegionPartitioner.getPartition(ImmutableBytesWritable key,
 VALUE value,
 int numPartitions)
@@ -388,6 +382,12 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
  number of partitions i.e.
 
 
+
+int
+SimpleTotalOrderPartitioner.getPartition(ImmutableBytesWritable key,
+VALUE value,
+int reduces) 
+
 
 void
 IdentityTableMapper.map(ImmutableBytesWritable key,

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/apidocs/org/apache/hadoop/hbase/io/class-use/TimeRange.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/io/class-use/TimeRange.html 
b/apidocs/org/apache/hadoop/hbase/io/class-use/TimeRange.html
index 50a2d9e..ff8c04d 100644
--- a/apidocs/org/apache/hadoop/hbase/io/class-use/TimeRange.html
+++ b/apidocs/org/apache/hadoop/hbase/io/class-use/TimeRange.html
@@ -123,25 +123,25 @@
 
 
 TimeRange
-Get.getTimeRange()
-Method for retrieving the get's TimeRange
+Increment.getTimeRange()
+Gets the TimeRange used for this increment.
 
 
 
 TimeRange
-Append.getTimeRange()
-Gets the TimeRange used for this append.
-
+Scan.getTimeRange() 
 
 
 TimeRange
-Increment.getTimeRange()
-Gets the TimeRange used for this increment.
+Append.getTimeRange()
+Gets th

[40/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/checkstyle-aggregate.html
--
diff --git a/checkstyle-aggregate.html b/checkstyle-aggregate.html
index 69a323c..30a26a4 100644
--- a/checkstyle-aggregate.html
+++ b/checkstyle-aggregate.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – Checkstyle Results
 
@@ -274,10 +274,10 @@
  Warnings
  Errors
 
-3587
+3590
 0
 0
-16088
+16045
 
 Files
 
@@ -542,210 +542,210 @@
 0
 5
 
-org/apache/hadoop/hbase/JMXListener.java
-0
-0
-5
-
 org/apache/hadoop/hbase/KeyValue.java
 0
 0
 117
-
+
 org/apache/hadoop/hbase/KeyValueTestUtil.java
 0
 0
 8
-
+
 org/apache/hadoop/hbase/KeyValueUtil.java
 0
 0
 29
-
+
 org/apache/hadoop/hbase/LocalHBaseCluster.java
 0
 0
 24
-
+
 org/apache/hadoop/hbase/MetaMockingUtil.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/MetaMutationAnnotation.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/MetaTableAccessor.java
 0
 0
 66
-
+
 org/apache/hadoop/hbase/MiniHBaseCluster.java
 0
 0
 21
-
+
 org/apache/hadoop/hbase/MockRegionServerServices.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/MultithreadedTestUtil.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/NamespaceDescriptor.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/NotAllMetaRegionsOnlineException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/NotServingRegionException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/PerformanceEvaluation.java
 0
 0
 30
-
+
 org/apache/hadoop/hbase/PerformanceEvaluationCommons.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/PrivateCellUtil.java
 0
 0
 67
-
+
 org/apache/hadoop/hbase/QosTestHelper.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/RESTApiClusterManager.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/RegionLoad.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/RegionLocations.java
 0
 0
 11
-
+
 org/apache/hadoop/hbase/RegionStateListener.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/ResourceChecker.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/ScanPerformanceEvaluation.java
 0
 0
 12
-
+
 org/apache/hadoop/hbase/ScheduledChore.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/Server.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/ServerLoad.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/ServerName.java
 0
 0
 24
-
+
 org/apache/hadoop/hbase/SplitLogCounters.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/SplitLogTask.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/StripeCompactionsPerformanceEvaluation.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/TableDescriptors.java
 0
 0
 8
-
+
 org/apache/hadoop/hbase/TableInfoMissingException.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/TableName.java
 0
 0
 17
-
+
 org/apache/hadoop/hbase/TableNotDisabledException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/TableNotEnabledException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/TableNotFoundException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/TagType.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/TestCheckTestClasses.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/TestClassFinder.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/TestClientClusterStatus.java
 0
 0
 2
+
+org/apache/hadoop/hbase/TestClientOperationTimeout.java
+0
+0
+1
 
 org/apache/hadoop/hbase/TestClusterPortAssignment.java
 0
@@ -910,7 +910,7 @@
 org/apache/hadoop/hbase/ZNodeClearer.java
 0
 0
-3
+2
 
 org/apache/hadoop/hbase/backup/FailedArchiveException.java
 0
@@ -957,6 +957,16 @@
 0
 2
 
+org/apache/hadoop/hbase/backup/impl/BackupManager.java
+0
+0
+1
+
+org/apache/hadoop/hbase/backup/impl/BackupSystemTable.java
+0
+0
+1
+
 org/apache/hadoop/hbase/chaos/actions/Action.java
 0
 0
@@ -2077,472 +2087,462 @@
 0
 8
 
-org/apache/hadoop/hbase/client/example/ExportEndpointExample.java
-0
-0
-3
-
 org/apache/hadoop/hbase/client/example/RefreshHFilesClient.java
 0
 0
-16
-
+15
+
 org/apache/hadoop/hbase/client/locking/EntityLock.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/client/locking/TestEntityLocks.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/metrics/ScanMetrics.java
 0
 0
 12
-
+
 org/apache/hadoop/hbase/client/metrics/ServerSideScanMetrics.java
 0
 0
 10
-
+
 org/apache/hadoop/hbase/client/replication/ReplicationAdmin.java
 0
 0
 33
-
+
 org/apache/hadoop/hbase/client/replication/ReplicationPeerConfigUtil.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/replication/TableCFs.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/replication/TestReplicationAdmin.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/codec/BaseDecoder.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/codec/BaseEncoder.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/codec/CellCodec.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/codec/CellCodecWithTags.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/codec/CodecPerformance.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/codec/MessageCodec.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/codec/TestCellCodecWithTags.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/codec/TestCellMessageCodec.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/codec/TestKeyValueCodecWithTags.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/co

[35/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.html 
b/devapidocs/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.html
index c84d3ba..5bd669a 100644
--- a/devapidocs/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.html
+++ b/devapidocs/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.html
@@ -114,22 +114,23 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Private
-public final class BackupSystemTable
+public final class BackupSystemTable
 extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 implements https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html?is-external=true";
 title="class or interface in java.io">Closeable
 This class provides API to access backup system table
-
  Backup system table schema:
- 
+ 
+ 
  1. Backup sessions rowkey= "session:"+backupId; value =serialized 
BackupInfo
  2. Backup start code rowkey = "startcode:"+backupRoot; value = 
startcode
  3. Incremental backup set rowkey="incrbackupset:"+backupRoot; value=[list 
of tables]
- 4. Table-RS-timestamp map rowkey="trslm:"+backupRoot+table_name;
- value = map[RS-> last WAL timestamp]
+ 4. Table-RS-timestamp map rowkey="trslm:"+backupRoot+table_name; value = 
map[RS-> last WAL
+ timestamp]
  5. RS - WAL ts map rowkey="rslogts:"+backupRoot +server; value = last WAL 
timestamp
- 6. WALs recorded rowkey="wals:"+WAL unique file name;
- value = backupId and full WAL file name
- 
+ 6. WALs recorded rowkey="wals:"+WAL unique file name; value = backupId 
and full WAL file
+ name
+ 
+ 
 
 
 
@@ -866,8 +867,7 @@ implements https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.
 
 void
 startBackupExclusiveOperation()
-Exclusive operations are:
- create, delete, merge
+Exclusive operations are: create, delete, merge
 
 
 
@@ -973,7 +973,7 @@ implements https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.
 
 
 LOG
-private static final org.slf4j.Logger LOG
+private static final org.slf4j.Logger LOG
 
 
 
@@ -982,7 +982,7 @@ implements https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.
 
 
 tableName
-private TableName tableName
+private TableName tableName
 Backup system table (main) name
 
 
@@ -992,11 +992,10 @@ implements https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.
 
 
 bulkLoadTableName
-private TableName bulkLoadTableName
-Backup System table name for bulk loaded files.
- We keep all bulk loaded file references in a separate table
- because we have to isolate general backup operations: create, merge etc
- from activity of RegionObserver, which controls process of a bulk loading
+private TableName bulkLoadTableName
+Backup System table name for bulk loaded files. We keep all 
bulk loaded file references in a
+ separate table because we have to isolate general backup operations: create, 
merge etc from
+ activity of RegionObserver, which controls process of a bulk loading
  BackupObserver
 
 
@@ -1006,7 +1005,7 @@ implements https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.
 
 
 SESSIONS_FAMILY
-static final byte[] SESSIONS_FAMILY
+static final byte[] SESSIONS_FAMILY
 Stores backup sessions (contexts)
 
 
@@ -1016,7 +1015,7 @@ implements https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.
 
 
 META_FAMILY
-static final byte[] META_FAMILY
+static final byte[] META_FAMILY
 Stores other meta
 
 
@@ -1026,7 +1025,7 @@ implements https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.
 
 
 BULK_LOAD_FAMILY
-static final byte[] BULK_LOAD_FAMILY
+static final byte[] BULK_LOAD_FAMILY
 
 
 
@@ -1035,7 +1034,7 @@ implements https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.
 
 
 connection
-private final Connection connection
+private final Connection connection
 Connection to HBase cluster, shared among all 
instances
 
 
@@ -1045,7 +1044,7 @@ implements https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.
 
 
 BACKUP_INFO_PREFIX
-private static final https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String BACKUP_INFO_PREFIX
+private static final https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String BACKUP_INFO_PREFIX
 
 See Also:
 Constant
 Field Values
@@ -1058,7 +1057,7 @@ implements https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.
 
 
 START_CODE_ROW
-private static final https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String START_CODE_ROW
+private static final https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interf

[09/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/coprocessor/example/WriteHeavyIncrementObserver.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/example/WriteHeavyIncrementObserver.html
 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/example/WriteHeavyIncrementObserver.html
index 09c0b9c..0e0fe7d 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/example/WriteHeavyIncrementObserver.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/example/WriteHeavyIncrementObserver.html
@@ -113,7 +113,8 @@ var activeTableTab = "activeTableTab";
 
 
 
-public class WriteHeavyIncrementObserver
+@InterfaceAudience.Private
+public class WriteHeavyIncrementObserver
 extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 implements RegionCoprocessor, RegionObserver
 An example for implementing a counter that reads is much 
less than writes, i.e, write heavy.
@@ -360,7 +361,7 @@ implements 
 
 mask
-private final int mask
+private final int mask
 
 
 
@@ -369,7 +370,7 @@ implements 
 
 lastTimestamps
-private final org.apache.commons.lang3.mutable.MutableLong[] lastTimestamps
+private final org.apache.commons.lang3.mutable.MutableLong[] lastTimestamps
 
 
 
@@ -386,7 +387,7 @@ implements 
 
 WriteHeavyIncrementObserver
-public WriteHeavyIncrementObserver()
+public WriteHeavyIncrementObserver()
 
 
 
@@ -403,7 +404,7 @@ implements 
 
 getRegionObserver
-public https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional getRegionObserver()
+public https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional getRegionObserver()
 
 Specified by:
 getRegionObserver in
 interface RegionCoprocessor
@@ -416,7 +417,7 @@ implements 
 
 preFlushScannerOpen
-public void preFlushScannerOpen(ObserverContext c,
+public void preFlushScannerOpen(ObserverContext c,
 Store store,
 ScanOptions options,
 FlushLifeCycleTracker tracker)
@@ -442,7 +443,7 @@ implements 
 
 createCell
-private Cell createCell(byte[] row,
+private Cell createCell(byte[] row,
 byte[] family,
 byte[] qualifier,
 long ts,
@@ -455,7 +456,7 @@ implements 
 
 wrap
-private InternalScanner wrap(byte[] family,
+private InternalScanner wrap(byte[] family,
  InternalScanner scanner)
 
 
@@ -465,7 +466,7 @@ implements 
 
 preFlush
-public InternalScanner preFlush(ObserverContext c,
+public InternalScanner preFlush(ObserverContext c,
 Store store,
 InternalScanner scanner,
 FlushLifeCycleTracker tracker)
@@ -494,7 +495,7 @@ implements 
 
 preCompactScannerOpen
-public void preCompactScannerOpen(ObserverContext c,
+public void preCompactScannerOpen(ObserverContext c,
   Store store,
   ScanType scanType,
   ScanOptions options,
@@ -525,7 +526,7 @@ implements 
 
 preCompact
-public InternalScanner preCompact(ObserverContext c,
+public InternalScanner preCompact(ObserverContext c,
   Store store,
   InternalScanner scanner,
   ScanType scanType,
@@ -564,7 +565,7 @@ implements 
 
 preMemStoreCompactionCompactScannerOpen
-public void preMemStoreCompactionCompactScannerOpen(ObserverContext c,
+public void preMemStoreCompactionCompactScannerOpen(ObserverContext c,
 Store store,
 ScanOptions options)
  throws https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
@@ -591,7 +592,7 @@ implements 
 
 preMemStoreCompactionCompact
-public InternalScanner preMemStoreCompactionCompact(ObserverContext c,
+public InternalScanner preMemStoreCompactionCompact(ObserverContext c,
 Store store,
 InternalScanner scanner)
   

hbase-site git commit: INFRA-10751 Empty commit

Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 4dc2a2e85 -> 3ed18e352


INFRA-10751 Empty commit


Project: http://git-wip-us.apache.org/repos/asf/hbase-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase-site/commit/3ed18e35
Tree: http://git-wip-us.apache.org/repos/asf/hbase-site/tree/3ed18e35
Diff: http://git-wip-us.apache.org/repos/asf/hbase-site/diff/3ed18e35

Branch: refs/heads/asf-site
Commit: 3ed18e3527051559bf24b3525851a8f7c5d84379
Parents: 4dc2a2e
Author: jenkins 
Authored: Thu Mar 22 14:54:09 2018 +
Committer: jenkins 
Committed: Thu Mar 22 14:54:09 2018 +

--

--




[08/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/DeserializationException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/DeserializationException.html
 
b/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/DeserializationException.html
index 338b7a4..49b5557 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/DeserializationException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/DeserializationException.html
@@ -144,14 +144,16 @@
 
 
 
-static HTableDescriptor
-HTableDescriptor.parseFrom(byte[] bytes)
+static HColumnDescriptor
+HColumnDescriptor.parseFrom(byte[] bytes)
 Deprecated. 
  
 
 
-static ClusterId
-ClusterId.parseFrom(byte[] bytes) 
+static HTableDescriptor
+HTableDescriptor.parseFrom(byte[] bytes)
+Deprecated. 
+ 
 
 
 static HRegionInfo
@@ -163,10 +165,8 @@
 
 
 
-static HColumnDescriptor
-HColumnDescriptor.parseFrom(byte[] bytes)
-Deprecated. 
- 
+static ClusterId
+ClusterId.parseFrom(byte[] bytes) 
 
 
 static SplitLogTask
@@ -220,17 +220,17 @@
 TableDescriptorBuilder.ModifyableTableDescriptor.parseFrom(byte[] bytes) 
 
 
-static RegionInfo
-RegionInfo.parseFrom(byte[] bytes) 
-
-
 static ColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.parseFrom(byte[] pbBytes) 
 
-
+
 private static ColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.parseFrom(byte[] bytes) 
 
+
+static RegionInfo
+RegionInfo.parseFrom(byte[] bytes) 
+
 
 static RegionInfo
 RegionInfo.parseFrom(byte[] bytes,
@@ -305,151 +305,151 @@
 ByteArrayComparable.parseFrom(byte[] pbBytes) 
 
 
-static SingleColumnValueExcludeFilter
-SingleColumnValueExcludeFilter.parseFrom(byte[] pbBytes) 
+static ColumnPrefixFilter
+ColumnPrefixFilter.parseFrom(byte[] pbBytes) 
 
 
-static ValueFilter
-ValueFilter.parseFrom(byte[] pbBytes) 
+static ColumnCountGetFilter
+ColumnCountGetFilter.parseFrom(byte[] pbBytes) 
 
 
-static SkipFilter
-SkipFilter.parseFrom(byte[] pbBytes) 
+static RowFilter
+RowFilter.parseFrom(byte[] pbBytes) 
 
 
-static FamilyFilter
-FamilyFilter.parseFrom(byte[] pbBytes) 
+static FuzzyRowFilter
+FuzzyRowFilter.parseFrom(byte[] pbBytes) 
 
 
-static BinaryPrefixComparator
-BinaryPrefixComparator.parseFrom(byte[] pbBytes) 
+static BinaryComparator
+BinaryComparator.parseFrom(byte[] pbBytes) 
 
 
-static NullComparator
-NullComparator.parseFrom(byte[] pbBytes) 
+static RegexStringComparator
+RegexStringComparator.parseFrom(byte[] pbBytes) 
 
 
-static BigDecimalComparator
-BigDecimalComparator.parseFrom(byte[] pbBytes) 
+static Filter
+Filter.parseFrom(byte[] pbBytes)
+Concrete implementers can signal a failure condition in 
their code by throwing an
+ https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException.
+
 
 
-static ColumnPrefixFilter
-ColumnPrefixFilter.parseFrom(byte[] pbBytes) 
+static RandomRowFilter
+RandomRowFilter.parseFrom(byte[] pbBytes) 
 
 
-static PageFilter
-PageFilter.parseFrom(byte[] pbBytes) 
+static FirstKeyOnlyFilter
+FirstKeyOnlyFilter.parseFrom(byte[] pbBytes) 
 
 
-static BitComparator
-BitComparator.parseFrom(byte[] pbBytes) 
+static SkipFilter
+SkipFilter.parseFrom(byte[] pbBytes) 
 
 
-static RowFilter
-RowFilter.parseFrom(byte[] pbBytes) 
+static BinaryPrefixComparator
+BinaryPrefixComparator.parseFrom(byte[] pbBytes) 
 
 
-static ColumnRangeFilter
-ColumnRangeFilter.parseFrom(byte[] pbBytes) 
+static TimestampsFilter
+TimestampsFilter.parseFrom(byte[] pbBytes) 
 
 
-static ColumnCountGetFilter
-ColumnCountGetFilter.parseFrom(byte[] pbBytes) 
+static ValueFilter
+ValueFilter.parseFrom(byte[] pbBytes) 
 
 
-static SubstringComparator
-SubstringComparator.parseFrom(byte[] pbBytes) 
+static KeyOnlyFilter
+KeyOnlyFilter.parseFrom(byte[] pbBytes) 
 
 
-static MultipleColumnPrefixFilter
-MultipleColumnPrefixFilter.parseFrom(byte[] pbBytes) 
+static FamilyFilter
+FamilyFilter.parseFrom(byte[] pbBytes) 
 
 
-static ColumnPaginationFilter
-ColumnPaginationFilter.parseFrom(byte[] pbBytes) 
+static QualifierFilter
+QualifierFilter.parseFrom(byte[] pbBytes) 
 
 
-static DependentColumnFilter
-DependentColumnFilter.parseFrom(byte[] pbBytes) 
+static FilterList
+FilterList.parseFrom(byte[] pbBytes) 
 
 
-static BinaryComparator
-BinaryComparator.parseFrom(byte[] pbBytes) 
+static BigDecimalComparator
+BigDecimalComparator.parseFrom(byte[] pbBytes) 
 
 
-static InclusiveStopFilter
-InclusiveStopFilter.parseFrom(byte[] pbBytes) 
+static ColumnRangeFilter
+ColumnRangeFilter.parseFrom(byte[] pbBytes) 
 
 
-static KeyOnlyFilter
-KeyOnlyFilter.parseFrom(byte[] pbBytes) 
+static ColumnPaginationFilter
+ColumnPaginationFilter.parseFrom(byte[] pbBytes) 
 
 
-static MultiRowRangeFilter
-MultiRowRangeFilter.parseFrom(byte[] pbBytes) 
+static SubstringComparator
+SubstringComparator.parseFrom(

[43/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/apidocs/org/apache/hadoop/hbase/util/class-use/Order.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/util/class-use/Order.html 
b/apidocs/org/apache/hadoop/hbase/util/class-use/Order.html
index 5ade176..565b46c 100644
--- a/apidocs/org/apache/hadoop/hbase/util/class-use/Order.html
+++ b/apidocs/org/apache/hadoop/hbase/util/class-use/Order.html
@@ -112,15 +112,15 @@
 
 
 protected Order
-RawString.order 
+RawBytes.order 
 
 
 protected Order
-RawBytes.order 
+OrderedBytesBase.order 
 
 
 protected Order
-OrderedBytesBase.order 
+RawString.order 
 
 
 
@@ -133,7 +133,7 @@
 
 
 Order
-RawByte.getOrder() 
+RawBytes.getOrder() 
 
 
 Order
@@ -141,66 +141,66 @@
 
 
 Order
-RawFloat.getOrder() 
+RawShort.getOrder() 
 
 
 Order
-PBType.getOrder() 
+TerminatedWrapper.getOrder() 
 
 
 Order
-RawInteger.getOrder() 
+OrderedBytesBase.getOrder() 
 
 
 Order
-DataType.getOrder()
-Retrieve the sort Order imposed by this data type, 
or null when
- natural ordering is not preserved.
-
+RawFloat.getOrder() 
 
 
 Order
-RawLong.getOrder() 
+Union2.getOrder() 
 
 
 Order
-RawShort.getOrder() 
+Struct.getOrder() 
 
 
 Order
-RawString.getOrder() 
+RawInteger.getOrder() 
 
 
 Order
-RawBytes.getOrder() 
+PBType.getOrder() 
 
 
 Order
-Struct.getOrder() 
+Union3.getOrder() 
 
 
 Order
-Union3.getOrder() 
+RawString.getOrder() 
 
 
 Order
-RawDouble.getOrder() 
+RawByte.getOrder() 
 
 
 Order
-Union2.getOrder() 
+Union4.getOrder() 
 
 
 Order
-Union4.getOrder() 
+DataType.getOrder()
+Retrieve the sort Order imposed by this data type, 
or null when
+ natural ordering is not preserved.
+
 
 
 Order
-OrderedBytesBase.getOrder() 
+RawLong.getOrder() 
 
 
 Order
-TerminatedWrapper.getOrder() 
+RawDouble.getOrder() 
 
 
 



[36/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.WALItem.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.WALItem.html 
b/devapidocs/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.WALItem.html
index c7575a9..c7daf0a 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.WALItem.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.WALItem.html
@@ -50,7 +50,7 @@ var activeTableTab = "activeTableTab";
 
 
 Prev Class
-Next Class
+Next Class
 
 
 Frames
@@ -113,7 +113,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-static class BackupSystemTable.WALItem
+static class BackupSystemTable.WALItem
 extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 
 
@@ -223,7 +223,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 backupId
-https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String backupId
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String backupId
 
 
 
@@ -232,7 +232,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 walFile
-https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String walFile
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String walFile
 
 
 
@@ -241,7 +241,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 backupRoot
-https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String backupRoot
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String backupRoot
 
 
 
@@ -258,7 +258,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 WALItem
-WALItem(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String backupId,
+WALItem(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String backupId,
 https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String walFile,
 https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String backupRoot)
 
@@ -277,7 +277,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 getBackupId
-public https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String getBackupId()
+public https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String getBackupId()
 
 
 
@@ -286,7 +286,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 getWalFile
-public https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String getWalFile()
+public https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String getWalFile()
 
 
 
@@ -295,7 +295,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 getBackupRoot
-public https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String getBackupRoot()
+public https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String getBackupRoot()
 
 
 
@@ -304,7 +304,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 toString
-public https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String toString()
+public https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String toString()
 
 Overrides:
 https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--";
 title="class or interface in java.lang">toString in 
class https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
@@ -340,7 +340,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 Prev Class
-Next Class
+Next Class
 
 
 Frames



[17/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
index a85184f..12b5bec 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
@@ -292,7 +292,7 @@ service.
 
 
 private static HRegionLocation
-AsyncMetaTableAccessor.getRegionLocation(Result r,
+MetaTableAccessor.getRegionLocation(Result r,
  RegionInfo regionInfo,
  int replicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -301,7 +301,7 @@ service.
 
 
 private static HRegionLocation
-MetaTableAccessor.getRegionLocation(Result r,
+AsyncMetaTableAccessor.getRegionLocation(Result r,
  RegionInfo regionInfo,
  int replicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -309,14 +309,14 @@ service.
 
 
 
-private static https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
-AsyncMetaTableAccessor.getRegionLocations(Result r)
+static RegionLocations
+MetaTableAccessor.getRegionLocations(Result r)
 Returns an HRegionLocationList extracted from the 
result.
 
 
 
-static RegionLocations
-MetaTableAccessor.getRegionLocations(Result r)
+private static https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getRegionLocations(Result r)
 Returns an HRegionLocationList extracted from the 
result.
 
 
@@ -334,42 +334,42 @@ service.
 
 
 private static long
-AsyncMetaTableAccessor.getSeqNumDuringOpen(Result r,
+MetaTableAccessor.getSeqNumDuringOpen(Result r,
int replicaId)
 The latest seqnum that the server writing to meta observed 
when opening the region.
 
 
 
 private static long
-MetaTableAccessor.getSeqNumDuringOpen(Result r,
+AsyncMetaTableAccessor.getSeqNumDuringOpen(Result r,
int replicaId)
 The latest seqnum that the server writing to meta observed 
when opening the region.
 
 
 
-private static https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
-AsyncMetaTableAccessor.getServerName(Result r,
+static ServerName
+MetaTableAccessor.getServerName(Result r,
  int replicaId)
 Returns a ServerName from catalog table Result.
 
 
 
-static ServerName
-MetaTableAccessor.getServerName(Result r,
+private static https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getServerName(Result r,
  int replicaId)
 Returns a ServerName from catalog table Result.
 
 
 
-private static https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
-AsyncMetaTableAccessor.getTableState(Result r) 
-
-
 static TableState
 MetaTableAccessor.getTableState(Result r)
 Decode table state from META Result.
 
 
+
+private static https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getTableState(Result r) 
+
 
 void
 AsyncMetaTableAccessor.MetaTableScanResultConsumer.onNext(Result[] results,
@@ -465,13 +465,13 @@ service.
 ClientScanner.cache 
 
 
-private https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-CompleteScanResultCache.partialResults 
-
-
 private https://docs.oracle.com/javase/8/docs/api/java/util/Deque.html?is-external=true";
 title="class or interface in java.util">Deque
 BatchScanResultCache.partialResults 
 
+
+private https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+CompleteScanResultCache.partialResults 
+
 
 private https://docs.oracle.com/javase/8/docs/api/java/util/Queue.html?is-external=true";
 title="class or interface in java.util">Queue
 AsyncTableResultScanner.queue 
@@ -494,7 +494,7 @@ service.
 
 
 Result[]
-AllowPartialScanResultCache.addAndGet(Result[] results,
+BatchScanResultCache.addAndGet(Result[] results,
  boolean isHeartbeatMessage) 
 
 
@@ -504,24 +504,20 @@ service.
 
 
 Result[]
-BatchScanResultCache.addAndGet(Result[] results,
+AllowPartialScanResultCache.addAndGet(Result[] results,
  boolean isHeartbeatMessage) 
 
 
 Result
-Table.append(Append append)
-Appends values to one 

[46/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html
index 8a78f04..a53ac71 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html
@@ -257,26 +257,26 @@
 
 
 
-default https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureBoolean>
-AsyncTable.exists(Get get)
+boolean
+Table.exists(Get get)
 Test for the existence of columns in the table, as 
specified by the Get.
 
 
 
-boolean
-Table.exists(Get get)
+default https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureBoolean>
+AsyncTable.exists(Get get)
 Test for the existence of columns in the table, as 
specified by the Get.
 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-AsyncTable.get(Get get)
+Result
+Table.get(Get get)
 Extracts certain cells from a given row.
 
 
 
-Result
-Table.get(Get get)
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
+AsyncTable.get(Get get)
 Extracts certain cells from a given row.
 
 
@@ -290,24 +290,18 @@
 
 
 
-default https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">ListCompletableFutureBoolean>>
-AsyncTable.exists(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List gets)
+boolean[]
+Table.exists(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List gets)
 Test for the existence of columns in the table, as 
specified by the Gets.
 
 
 
-boolean[]
-Table.exists(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List gets)
+default https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">ListCompletableFutureBoolean>>
+AsyncTable.exists(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List gets)
 Test for the existence of columns in the table, as 
specified by the Gets.
 
 
 
-default https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureListBoolean>>
-AsyncTable.existsAll(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List gets)
-A simple version for batch exists.
-
-
-
 default boolean[]
 Table.existsAll(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List gets)
 Deprecated. 
@@ -316,18 +310,24 @@
 
 
 
-
-https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">ListCompletableFuture>
-AsyncTable.get(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 ti

[27/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/class-use/Size.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/Size.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/Size.html
index 3f1b032..e8d1010 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/Size.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/Size.html
@@ -189,130 +189,130 @@
 
 
 Size
-RegionLoad.getBloomFilterSize()
-Deprecated. 
- 
-
-
-Size
 RegionMetrics.getBloomFilterSize() 
 
-
-Size
-RegionMetricsBuilder.RegionMetricsImpl.getBloomFilterSize() 
-
 
 Size
-ServerLoad.getMaxHeapSize()
+RegionLoad.getBloomFilterSize()
 Deprecated. 
  
 
 
 Size
-ServerMetrics.getMaxHeapSize() 
+RegionMetricsBuilder.RegionMetricsImpl.getBloomFilterSize() 
 
 
 Size
-ServerMetricsBuilder.ServerMetricsImpl.getMaxHeapSize() 
+ServerMetrics.getMaxHeapSize() 
 
 
 Size
-RegionLoad.getMemStoreSize()
+ServerLoad.getMaxHeapSize()
 Deprecated. 
  
 
 
 Size
-RegionMetrics.getMemStoreSize() 
+ServerMetricsBuilder.ServerMetricsImpl.getMaxHeapSize() 
 
 
 Size
-RegionMetricsBuilder.RegionMetricsImpl.getMemStoreSize() 
+RegionMetrics.getMemStoreSize() 
 
 
 Size
-RegionLoad.getStoreFileIndexSize()
+RegionLoad.getMemStoreSize()
 Deprecated. 
  
 
 
 Size
+RegionMetricsBuilder.RegionMetricsImpl.getMemStoreSize() 
+
+
+Size
 RegionMetrics.getStoreFileIndexSize()
 TODO: why we pass the same value to different counters? 
Currently, the value from
  getStoreFileIndexSize() is same with getStoreFileRootLevelIndexSize()
  see HRegionServer#createRegionLoad.
 
 
-
-Size
-RegionMetricsBuilder.RegionMetricsImpl.getStoreFileIndexSize() 
-
 
 Size
-RegionLoad.getStoreFileRootLevelIndexSize()
+RegionLoad.getStoreFileIndexSize()
 Deprecated. 
  
 
 
 Size
-RegionMetrics.getStoreFileRootLevelIndexSize() 
+RegionMetricsBuilder.RegionMetricsImpl.getStoreFileIndexSize() 
 
 
 Size
-RegionMetricsBuilder.RegionMetricsImpl.getStoreFileRootLevelIndexSize() 
+RegionMetrics.getStoreFileRootLevelIndexSize() 
 
 
 Size
-RegionLoad.getStoreFileSize()
+RegionLoad.getStoreFileRootLevelIndexSize()
 Deprecated. 
  
 
 
 Size
-RegionMetrics.getStoreFileSize() 
+RegionMetricsBuilder.RegionMetricsImpl.getStoreFileRootLevelIndexSize() 
 
 
 Size
-RegionMetricsBuilder.RegionMetricsImpl.getStoreFileSize() 
+RegionMetrics.getStoreFileSize() 
 
 
 Size
-RegionLoad.getStoreFileUncompressedDataIndexSize()
+RegionLoad.getStoreFileSize()
 Deprecated. 
  
 
 
 Size
-RegionMetrics.getStoreFileUncompressedDataIndexSize() 
+RegionMetricsBuilder.RegionMetricsImpl.getStoreFileSize() 
 
 
 Size
-RegionMetricsBuilder.RegionMetricsImpl.getStoreFileUncompressedDataIndexSize() 
+RegionMetrics.getStoreFileUncompressedDataIndexSize() 
 
 
 Size
-RegionLoad.getUncompressedStoreFileSize()
+RegionLoad.getStoreFileUncompressedDataIndexSize()
 Deprecated. 
  
 
 
 Size
-RegionMetrics.getUncompressedStoreFileSize() 
+RegionMetricsBuilder.RegionMetricsImpl.getStoreFileUncompressedDataIndexSize() 
 
 
 Size
-RegionMetricsBuilder.RegionMetricsImpl.getUncompressedStoreFileSize() 
+RegionMetrics.getUncompressedStoreFileSize() 
 
 
 Size
-ServerLoad.getUsedHeapSize()
+RegionLoad.getUncompressedStoreFileSize()
 Deprecated. 
  
 
 
 Size
+RegionMetricsBuilder.RegionMetricsImpl.getUncompressedStoreFileSize() 
+
+
+Size
 ServerMetrics.getUsedHeapSize() 
 
+
+Size
+ServerLoad.getUsedHeapSize()
+Deprecated. 
+ 
+
 
 Size
 ServerMetricsBuilder.ServerMetricsImpl.getUsedHeapSize() 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/class-use/TableDescriptors.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/TableDescriptors.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/TableDescriptors.html
index 63833f7..72d579d 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/TableDescriptors.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/TableDescriptors.html
@@ -122,11 +122,11 @@
 
 
 TableDescriptors
-HMaster.getTableDescriptors() 
+MasterServices.getTableDescriptors() 
 
 
 TableDescriptors
-MasterServices.getTableDescriptors() 
+HMaster.getTableDescriptors() 
 
 
 



[31/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/class-use/ClusterMetrics.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/ClusterMetrics.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/ClusterMetrics.html
index 1621237..11d7754 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/ClusterMetrics.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/ClusterMetrics.html
@@ -242,27 +242,27 @@
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-AsyncHBaseAdmin.getClusterMetrics() 
+AsyncAdmin.getClusterMetrics() 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-AsyncAdmin.getClusterMetrics() 
+RawAsyncHBaseAdmin.getClusterMetrics() 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-RawAsyncHBaseAdmin.getClusterMetrics() 
+AsyncHBaseAdmin.getClusterMetrics() 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-AsyncHBaseAdmin.getClusterMetrics(https://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true";
 title="class or interface in java.util">EnumSet options) 
+AsyncAdmin.getClusterMetrics(https://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true";
 title="class or interface in java.util">EnumSet options) 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-AsyncAdmin.getClusterMetrics(https://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true";
 title="class or interface in java.util">EnumSet options) 
+RawAsyncHBaseAdmin.getClusterMetrics(https://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true";
 title="class or interface in java.util">EnumSet options) 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-RawAsyncHBaseAdmin.getClusterMetrics(https://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true";
 title="class or interface in java.util">EnumSet options) 
+AsyncHBaseAdmin.getClusterMetrics(https://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true";
 title="class or interface in java.util">EnumSet options) 
 
 
 
@@ -408,11 +408,11 @@
 
 
 void
-BaseLoadBalancer.setClusterMetrics(ClusterMetrics st) 
+RegionLocationFinder.setClusterMetrics(ClusterMetrics status) 
 
 
 void
-RegionLocationFinder.setClusterMetrics(ClusterMetrics status) 
+BaseLoadBalancer.setClusterMetrics(ClusterMetrics st) 
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
index 804b5df..a8beae7 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
@@ -186,94 +186,94 @@ the order they are declared.
 
 
 boolean
-Table.checkAndDelete(byte[] row,
+HTable.checkAndDelete(byte[] row,
   byte[] family,
   byte[] qualifier,
   CompareOperator op,
   byte[] value,
   Delete delete)
-Deprecated. 
-Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
-
+Deprecated. 
 
 
 
 boolean
-HTable.checkAndDelete(byte[] row,
+Table.checkAndDelete(byte[] row,
   byte[] family,
   byte[] qualifier,
   CompareOperator op,
   byte[] value,
   Delete delete)
-Deprecated. 
+Deprecated. 
+Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
+
 
 
 
 boolean
-Table.checkAndMutate(byte[] row,
+HTable.checkAndMutate(byte[] row,
   byte[] family,
   byte[] qualifier,
   CompareOperator op,
   byte[] value,
-  RowMutations mutation)
-Deprecated. 
-Since 2.0.0. Will 

[34/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/backup/impl/ExclusiveOperationException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/backup/impl/ExclusiveOperationException.html
 
b/devapidocs/org/apache/hadoop/hbase/backup/impl/ExclusiveOperationException.html
new file mode 100644
index 000..78e2edf
--- /dev/null
+++ 
b/devapidocs/org/apache/hadoop/hbase/backup/impl/ExclusiveOperationException.html
@@ -0,0 +1,269 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+ExclusiveOperationException (Apache HBase 3.0.0-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase.backup.impl
+Class 
ExclusiveOperationException
+
+
+
+https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">java.lang.Throwable
+
+
+https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">java.lang.Exception
+
+
+https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">java.io.IOException
+
+
+org.apache.hadoop.hbase.backup.impl.ExclusiveOperationException
+
+
+
+
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
+
+
+
+@InterfaceAudience.Private
+public class ExclusiveOperationException
+extends https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
+
+See Also:
+Serialized
 Form
+
+
+
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+ExclusiveOperationException() 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+
+
+
+Methods inherited from class java.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">Throwable
+https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#addSuppressed-java.lang.Throwable-";
 title="class or interface in java.lang">addSuppressed, https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace--";
 title="class or interface in java.lang">fillInStackTrace, https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getCause--";
 title="class or interface in java.lang">getCause, https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage--";
 title="class or interface in java.lang">getLocalizedMessage, https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getMessage--";
 title="class or interface in java.lang">getMessage, https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace--";
 title="class or
  interface in java.lang">getStackTrace, https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed--";
 title="class or interface in java.lang">getSuppressed, https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#initCause-java.lang.Throwable-";
 title="class or interface in java.lang">initCause, https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace--";
 title="class or interface in java.lang">printStackTrace, https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace-java.io.PrintStream-";
 title="class or interface in java.lang">printStackTrace, https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace-java.io.PrintWriter-";
 title="class or interface in java.lang">printStackTrace, https://docs.oracle.com/javase/8/docs/
 
api/java/lang/Throwable.html?is-external=true#setStackTrace-java.lang.StackTraceElement:A-"
 title="class or interface in java.l

[19/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionInfo.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionInfo.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionInfo.html
index 40bbdbf..e4177f7 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionInfo.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionInfo.html
@@ -495,7 +495,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 private static HRegionLocation
-AsyncMetaTableAccessor.getRegionLocation(Result r,
+MetaTableAccessor.getRegionLocation(Result r,
  RegionInfo regionInfo,
  int replicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -504,7 +504,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 private static HRegionLocation
-MetaTableAccessor.getRegionLocation(Result r,
+AsyncMetaTableAccessor.getRegionLocation(Result r,
  RegionInfo regionInfo,
  int replicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -941,7 +941,9 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-AsyncHBaseAdmin.getRegions(ServerName serverName) 
+AsyncAdmin.getRegions(ServerName serverName)
+Get all the online regions on a region server.
+
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
@@ -950,22 +952,22 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-HBaseAdmin.getRegions(ServerName sn) 
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
+RawAsyncHBaseAdmin.getRegions(ServerName serverName) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-AsyncAdmin.getRegions(ServerName serverName)
-Get all the online regions on a region server.
-
+https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+HBaseAdmin.getRegions(ServerName sn) 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-RawAsyncHBaseAdmin.getRegions(ServerName serverName) 
+AsyncHBaseAdmin.getRegions(ServerName serverName) 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-AsyncHBaseAdmin.getRegions(TableName tableName) 
+AsyncAdmin.getRegions(TableName tableName)
+Get the regions of a given table.
+
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
@@ -974,18 +976,16 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-HBaseAdmin.getRegions(TableName tableName) 
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
+RawAsyncHBaseAdmin.getRegions(TableName tableName) 
 
 
-https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.h

[50/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/apache_hbase_reference_guide.pdf
--
diff --git a/apache_hbase_reference_guide.pdf b/apache_hbase_reference_guide.pdf
index bbe2fbb..3ea3c3a 100644
--- a/apache_hbase_reference_guide.pdf
+++ b/apache_hbase_reference_guide.pdf
@@ -5,16 +5,16 @@
 /Author (Apache HBase Team)
 /Creator (Asciidoctor PDF 1.5.0.alpha.15, based on Prawn 2.2.2)
 /Producer (Apache HBase Team)
-/ModDate (D:20180321144703+00'00')
-/CreationDate (D:20180321144703+00'00')
+/ModDate (D:20180322144644+00'00')
+/CreationDate (D:20180322144644+00'00')
 >>
 endobj
 2 0 obj
 << /Type /Catalog
 /Pages 3 0 R
 /Names 26 0 R
-/Outlines 4541 0 R
-/PageLabels 4766 0 R
+/Outlines 4542 0 R
+/PageLabels 4767 0 R
 /PageMode /UseOutlines
 /OpenAction [7 0 R /FitH 842.89]
 /ViewerPreferences << /DisplayDocTitle true
@@ -24,7 +24,7 @@ endobj
 3 0 obj
 << /Type /Pages
 /Count 707
-/Kids [7 0 R 12 0 R 14 0 R 16 0 R 18 0 R 20 0 R 22 0 R 24 0 R 44 0 R 47 0 R 50 
0 R 54 0 R 63 0 R 66 0 R 69 0 R 71 0 R 76 0 R 80 0 R 83 0 R 89 0 R 91 0 R 94 0 
R 96 0 R 103 0 R 109 0 R 114 0 R 116 0 R 130 0 R 133 0 R 142 0 R 151 0 R 161 0 
R 170 0 R 181 0 R 185 0 R 187 0 R 191 0 R 200 0 R 209 0 R 218 0 R 226 0 R 231 0 
R 240 0 R 248 0 R 257 0 R 270 0 R 277 0 R 287 0 R 295 0 R 303 0 R 310 0 R 318 0 
R 324 0 R 330 0 R 337 0 R 345 0 R 355 0 R 364 0 R 376 0 R 385 0 R 393 0 R 400 0 
R 408 0 R 416 0 R 427 0 R 435 0 R 442 0 R 450 0 R 461 0 R 471 0 R 478 0 R 486 0 
R 494 0 R 503 0 R 511 0 R 516 0 R 519 0 R 524 0 R 528 0 R 544 0 R 554 0 R 559 0 
R 573 0 R 579 0 R 584 0 R 586 0 R 588 0 R 591 0 R 593 0 R 595 0 R 603 0 R 609 0 
R 614 0 R 619 0 R 630 0 R 641 0 R 646 0 R 654 0 R 658 0 R 662 0 R 664 0 R 679 0 
R 693 0 R 703 0 R 705 0 R 707 0 R 716 0 R 728 0 R 738 0 R 746 0 R 752 0 R 755 0 
R 759 0 R 763 0 R 766 0 R 769 0 R 771 0 R 774 0 R 778 0 R 780 0 R 785 0 R 789 0 
R 794 0 R 798 0 R 802 0 R 808 0 R 810 0 
 R 814 0 R 823 0 R 825 0 R 828 0 R 832 0 R 835 0 R 838 0 R 852 0 R 859 0 R 867 
0 R 878 0 R 884 0 R 894 0 R 905 0 R 908 0 R 912 0 R 915 0 R 920 0 R 929 0 R 937 
0 R 941 0 R 945 0 R 950 0 R 954 0 R 956 0 R 971 0 R 982 0 R 987 0 R 994 0 R 997 
0 R 1006 0 R 1015 0 R 1019 0 R 1024 0 R 1029 0 R 1031 0 R 1033 0 R 1035 0 R 
1045 0 R 1053 0 R 1057 0 R 1064 0 R 1071 0 R 1079 0 R 1084 0 R 1089 0 R 1094 0 
R 1102 0 R 1106 0 R  0 R 1113 0 R 1120 0 R 1126 0 R 1128 0 R 1135 0 R 1145 
0 R 1149 0 R 1151 0 R 1153 0 R 1157 0 R 1160 0 R 1165 0 R 1168 0 R 1180 0 R 
1184 0 R 1190 0 R 1198 0 R 1203 0 R 1207 0 R 1211 0 R 1213 0 R 1216 0 R 1219 0 
R 1222 0 R 1227 0 R 1231 0 R 1235 0 R 1240 0 R 1244 0 R 1247 0 R 1249 0 R 1260 
0 R 1263 0 R 1271 0 R 1280 0 R 1286 0 R 1290 0 R 1292 0 R 1303 0 R 1306 0 R 
1312 0 R 1321 0 R 1324 0 R 1331 0 R 1339 0 R 1341 0 R 1343 0 R 1352 0 R 1354 0 
R 1356 0 R 1359 0 R 1361 0 R 1363 0 R 1365 0 R 1367 0 R 1370 0 R 1374 0 R 1379 
0 R 1381 0 R 1383 0 R 1385 0 R 1390 0 R 1397 0 R 1403 0 R
  1406 0 R 1408 0 R 1411 0 R 1415 0 R 1419 0 R 1422 0 R 1424 0 R 1426 0 R 1429 
0 R 1434 0 R 1440 0 R 1448 0 R 1462 0 R 1476 0 R 1479 0 R 1484 0 R 1497 0 R 
1502 0 R 1517 0 R 1525 0 R 1529 0 R 1538 0 R 1553 0 R 1567 0 R 1579 0 R 1584 0 
R 1590 0 R 1600 0 R 1606 0 R 1611 0 R 1619 0 R 1622 0 R 1631 0 R 1638 0 R 1641 
0 R 1654 0 R 1656 0 R 1662 0 R 1666 0 R 1668 0 R 1676 0 R 1684 0 R 1688 0 R 
1690 0 R 1692 0 R 1704 0 R 1710 0 R 1719 0 R 1725 0 R 1739 0 R 1744 0 R 1753 0 
R 1761 0 R 1767 0 R 1774 0 R 1778 0 R 1781 0 R 1783 0 R 1790 0 R 1794 0 R 1800 
0 R 1804 0 R 1812 0 R 1818 0 R 1823 0 R 1828 0 R 1830 0 R 1840 0 R 1847 0 R 
1853 0 R 1858 0 R 1862 0 R 1865 0 R 1870 0 R 1876 0 R 1883 0 R 1885 0 R 1887 0 
R 1890 0 R 1898 0 R 1901 0 R 1908 0 R 1917 0 R 1920 0 R 1925 0 R 1927 0 R 1930 
0 R 1933 0 R 1936 0 R 1943 0 R 1949 0 R 1951 0 R 1959 0 R 1966 0 R 1973 0 R 
1979 0 R 1984 0 R 1986 0 R 1995 0 R 2005 0 R 2015 0 R 2021 0 R 2029 0 R 2031 0 
R 2034 0 R 2036 0 R 2039 0 R 2042 0 R 2045 0 R 2050 0 R 2054 0
  R 2065 0 R 2068 0 R 2073 0 R 2076 0 R 2078 0 R 2083 0 R 2093 0 R 2095 0 R 
2097 0 R 2099 0 R 2101 0 R 2104 0 R 2106 0 R 2108 0 R 2111 0 R 2113 0 R 2115 0 
R 2119 0 R 2124 0 R 2133 0 R 2135 0 R 2137 0 R 2144 0 R 2146 0 R 2151 0 R 2153 
0 R 2155 0 R 2162 0 R 2167 0 R 2171 0 R 2175 0 R 2179 0 R 2181 0 R 2183 0 R 
2187 0 R 2190 0 R 2192 0 R 2194 0 R 2198 0 R 2200 0 R 2203 0 R 2205 0 R 2207 0 
R 2209 0 R 2216 0 R 2219 0 R 2224 0 R 2226 0 R 2228 0 R 2230 0 R 2232 0 R 2240 
0 R 2251 0 R 2265 0 R 2276 0 R 2280 0 R 2286 0 R 2290 0 R 2293 0 R 2298 0 R 
2304 0 R 2306 0 R 2309 0 R 2311 0 R 2313 0 R 2315 0 R 2319 0 R 2321 0 R 2334 0 
R 2337 0 R 2345 0 R 2351 0 R 2363 0 R 2377 0 R 2391 0 R 2408 0 R 2412 0 R 2414 
0 R 2418 0 R 2436 0 R 2442 0 R 2454 0 R 2458 0 R 2462 0 R 2471 0 R 2481 0 R 
2486 0 R 2497 0 R 2510 0 R 2528 0 R 2537 0 R 2540 0 R 2549 0 R 2567 0 R 2574 0 
R 2577 0 R 2582 0 R 2586 0 R 2589 0 R 2598 0 R 2607 0 R 2610 0 R 2612 0 R 2616 
0 R 2631 0 R 2639 0 R 2644 0 R 2649 0 R 2652 

[51/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.


Project: http://git-wip-us.apache.org/repos/asf/hbase-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase-site/commit/4dc2a2e8
Tree: http://git-wip-us.apache.org/repos/asf/hbase-site/tree/4dc2a2e8
Diff: http://git-wip-us.apache.org/repos/asf/hbase-site/diff/4dc2a2e8

Branch: refs/heads/asf-site
Commit: 4dc2a2e859fbf1a212e1d434bf7af6ff42368718
Parents: c30ef1d
Author: jenkins 
Authored: Thu Mar 22 14:53:23 2018 +
Committer: jenkins 
Committed: Thu Mar 22 14:53:23 2018 +

--
 acid-semantics.html | 4 +-
 apache_hbase_reference_guide.pdf| 24110 +
 apidocs/deprecated-list.html|94 +-
 .../apache/hadoop/hbase/CompareOperator.html| 4 +-
 .../apache/hadoop/hbase/KeepDeletedCells.html   | 4 +-
 .../hadoop/hbase/MemoryCompactionPolicy.html| 4 +-
 .../org/apache/hadoop/hbase/class-use/Cell.html |   310 +-
 .../hadoop/hbase/class-use/CompareOperator.html |10 +-
 .../hadoop/hbase/class-use/ServerMetrics.html   | 8 +-
 .../hadoop/hbase/class-use/ServerName.html  |40 +-
 .../hadoop/hbase/class-use/TableName.html   |80 +-
 .../apache/hadoop/hbase/client/Consistency.html | 4 +-
 .../apache/hadoop/hbase/client/Durability.html  | 4 +-
 .../hadoop/hbase/client/IsolationLevel.html | 4 +-
 .../hadoop/hbase/client/MasterSwitchType.html   | 4 +-
 .../hbase/client/MobCompactPartitionPolicy.html | 4 +-
 .../client/RequestController.ReturnCode.html| 4 +-
 .../hadoop/hbase/client/Scan.ReadType.html  | 4 +-
 .../hadoop/hbase/client/class-use/Append.html   | 8 +-
 .../hbase/client/class-use/Consistency.html | 8 +-
 .../hadoop/hbase/client/class-use/Delete.html   |20 +-
 .../hbase/client/class-use/Durability.html  |20 +-
 .../hadoop/hbase/client/class-use/Get.html  |46 +-
 .../hbase/client/class-use/Increment.html   | 8 +-
 .../hbase/client/class-use/IsolationLevel.html  | 8 +-
 .../hadoop/hbase/client/class-use/Mutation.html | 8 +-
 .../hadoop/hbase/client/class-use/Put.html  |24 +-
 .../hadoop/hbase/client/class-use/Result.html   |22 +-
 .../hbase/client/class-use/ResultScanner.html   |26 +-
 .../hadoop/hbase/client/class-use/Row.html  |14 +-
 .../hbase/client/class-use/RowMutations.html| 8 +-
 .../hadoop/hbase/client/class-use/Scan.html |22 +-
 .../hadoop/hbase/client/package-tree.html   |12 +-
 .../client/security/SecurityCapability.html | 4 +-
 .../hbase/filter/CompareFilter.CompareOp.html   | 4 +-
 .../filter/class-use/ByteArrayComparable.html   |10 +-
 .../class-use/CompareFilter.CompareOp.html  | 8 +-
 .../filter/class-use/Filter.ReturnCode.html |   118 +-
 .../hadoop/hbase/filter/class-use/Filter.html   |62 +-
 .../hadoop/hbase/filter/package-tree.html   | 4 +-
 .../io/class-use/ImmutableBytesWritable.html|42 +-
 .../hadoop/hbase/io/class-use/TimeRange.html|16 +-
 .../hbase/io/crypto/class-use/Cipher.html   |18 +-
 .../hbase/io/encoding/DataBlockEncoding.html| 4 +-
 .../mapreduce/class-use/TableRecordReader.html  | 4 +-
 .../org/apache/hadoop/hbase/package-tree.html   | 2 +-
 .../hbase/quotas/SpaceViolationPolicy.html  | 4 +-
 .../hadoop/hbase/quotas/ThrottleType.html   | 4 +-
 .../hbase/quotas/ThrottlingException.Type.html  | 4 +-
 .../hadoop/hbase/quotas/package-tree.html   | 4 +-
 .../hadoop/hbase/regionserver/BloomType.html| 4 +-
 apidocs/org/apache/hadoop/hbase/util/Order.html | 4 +-
 .../hadoop/hbase/util/class-use/ByteRange.html  |   124 +-
 .../hadoop/hbase/util/class-use/Bytes.html  |48 +-
 .../hadoop/hbase/util/class-use/Order.html  |44 +-
 .../util/class-use/PositionedByteRange.html |   356 +-
 apidocs/overview-tree.html  |22 +-
 .../apache/hadoop/hbase/LocalHBaseCluster.html  | 2 +-
 book.html   |14 +-
 bulk-loads.html | 4 +-
 checkstyle-aggregate.html   | 14798 +-
 checkstyle.rss  |   410 +-
 coc.html| 4 +-
 cygwin.html | 4 +-
 dependencies.html   | 4 +-
 dependency-convergence.html | 4 +-
 dependency-info.html| 4 +-
 dependency-management.html  | 4 +-
 devapidocs/allclasses-frame.html| 1 +
 devapidocs/allclasses-noframe.html  | 1 +
 devapidocs/constant-values.html |34 +-
 devapidocs/deprecated-list.html |   212 +-
 devapidocs/index-all.html 

[06/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
index 41b2105..dc4b7bd 100644
--- a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
+++ b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
@@ -495,15 +495,15 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 static Filter
-SingleColumnValueExcludeFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+ColumnPrefixFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-ValueFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+ColumnCountGetFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-FamilyFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+RowFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
@@ -513,69 +513,69 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 static Filter
-ColumnPrefixFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+FirstKeyOnlyFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-PageFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+TimestampsFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-RowFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+ValueFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-ColumnRangeFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+KeyOnlyFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-ColumnCountGetFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+FamilyFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-MultipleColumnPrefixFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+QualifierFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-ColumnPaginationFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+ColumnRangeFilter.createFilterFromArguments(https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true

[38/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/deprecated-list.html
--
diff --git a/devapidocs/deprecated-list.html b/devapidocs/deprecated-list.html
index 3876dcf..ccd2d69 100644
--- a/devapidocs/deprecated-list.html
+++ b/devapidocs/deprecated-list.html
@@ -580,87 +580,87 @@
 
 
 
+org.apache.hadoop.hbase.client.HTable.checkAndDelete(byte[],
 byte[], byte[], byte[], Delete)
+
+
 org.apache.hadoop.hbase.client.Table.checkAndDelete(byte[],
 byte[], byte[], byte[], Delete)
 Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
 
 
-
-org.apache.hadoop.hbase.client.HTable.checkAndDelete(byte[],
 byte[], byte[], byte[], Delete)
-
 
+org.apache.hadoop.hbase.client.HTable.checkAndDelete(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], Delete)
+
+
 org.apache.hadoop.hbase.client.Table.checkAndDelete(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], Delete)
 Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
 
 
-
-org.apache.hadoop.hbase.client.HTable.checkAndDelete(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], Delete)
-
 
 org.apache.hadoop.hbase.rest.client.RemoteHTable.checkAndDelete(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], Delete)
 
 
+org.apache.hadoop.hbase.client.HTable.checkAndDelete(byte[],
 byte[], byte[], CompareOperator, byte[], Delete)
+
+
 org.apache.hadoop.hbase.client.Table.checkAndDelete(byte[],
 byte[], byte[], CompareOperator, byte[], Delete)
 Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
 
 
-
-org.apache.hadoop.hbase.client.HTable.checkAndDelete(byte[],
 byte[], byte[], CompareOperator, byte[], Delete)
-
 
 org.apache.hadoop.hbase.rest.client.RemoteHTable.checkAndDelete(byte[],
 byte[], byte[], CompareOperator, byte[], Delete)
 
 
+org.apache.hadoop.hbase.client.HTable.checkAndMutate(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], RowMutations)
+
+
 org.apache.hadoop.hbase.client.Table.checkAndMutate(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], RowMutations)
 Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
 
 
-
-org.apache.hadoop.hbase.client.HTable.checkAndMutate(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], RowMutations)
-
 
 org.apache.hadoop.hbase.rest.client.RemoteHTable.checkAndMutate(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], RowMutations)
 
 
+org.apache.hadoop.hbase.client.HTable.checkAndMutate(byte[],
 byte[], byte[], CompareOperator, byte[], RowMutations)
+
+
 org.apache.hadoop.hbase.client.Table.checkAndMutate(byte[],
 byte[], byte[], CompareOperator, byte[], RowMutations)
 Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
 
 
-
-org.apache.hadoop.hbase.client.HTable.checkAndMutate(byte[],
 byte[], byte[], CompareOperator, byte[], RowMutations)
-
 
 org.apache.hadoop.hbase.rest.client.RemoteHTable.checkAndMutate(byte[],
 byte[], byte[], CompareOperator, byte[], RowMutations)
 
 
+org.apache.hadoop.hbase.client.HTable.checkAndPut(byte[],
 byte[], byte[], byte[], Put)
+
+
 org.apache.hadoop.hbase.client.Table.checkAndPut(byte[],
 byte[], byte[], byte[], Put)
 Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
 
 
-
-org.apache.hadoop.hbase.client.HTable.checkAndPut(byte[],
 byte[], byte[], byte[], Put)
-
 
 org.apache.hadoop.hbase.rest.client.RemoteHTable.checkAndPut(byte[],
 byte[], byte[], byte[], Put)
 
 
+org.apache.hadoop.hbase.client.HTable.checkAndPut(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], Put)
+
+
 org.apache.hadoop.hbase.client.Table.checkAndPut(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], Put)
 Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
 
 
-
-org.apache.hadoop.hbase.client.HTable.checkAndPut(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], Put)
-
 
 org.apache.hadoop.hbase.rest.client.RemoteHTable.checkAndPut(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], Put)
 
 
+org.apache.hadoop.hbase.client.HTable.checkAndPut(byte[],
 byte[], byte[], CompareOperator, byte[], Put)
+
+
 org.apache.hadoop.hbase.client.Table.checkAndPut(byte[],
 byte[], byte[], CompareOperator, byte[], Put)
 Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
 
 
-
-org.apache.hadoop.hbase.client.HTable.checkAndPut(byte[],
 byte[], byte[], CompareOperator, byte[], Put)
-
 
 org.apache.hadoop.hbase.rest.client.RemoteHTable.checkAndPut(byte[],
 byte[], byte[], CompareOperator, byte[], Put)
 
@@ -743,13 +743,13 @@
 
 
 
-org.apache.hadoop.hbase.client.Mutation.compareTo(Row)
+org.apache.hadoop.hbase.client.RowMutations.compareTo(Row)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
  Use Row.COMPARATOR
 instead
 
 
 
-org.apache.hadoop.hbase.client.RowMutations.compareTo(Row)
+org.apache

[10/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/coprocessor/example/DelegatingInternalScanner.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/example/DelegatingInternalScanner.html
 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/example/DelegatingInternalScanner.html
index 8e95a5a..d656137 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/example/DelegatingInternalScanner.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/example/DelegatingInternalScanner.html
@@ -113,7 +113,8 @@ var activeTableTab = "activeTableTab";
 
 
 
-public class DelegatingInternalScanner
+@InterfaceAudience.Private
+public class DelegatingInternalScanner
 extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 implements InternalScanner
 A simple delegation for doing filtering on InternalScanner.
@@ -219,7 +220,7 @@ implements 
 
 scanner
-protected final InternalScanner 
scanner
+protected final InternalScanner 
scanner
 
 
 
@@ -236,7 +237,7 @@ implements 
 
 DelegatingInternalScanner
-public DelegatingInternalScanner(InternalScanner scanner)
+public DelegatingInternalScanner(InternalScanner scanner)
 
 
 
@@ -253,7 +254,7 @@ implements 
 
 next
-public boolean next(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List result,
+public boolean next(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List result,
 ScannerContext scannerContext)
  throws https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Description copied from 
interface: InternalScanner
@@ -276,7 +277,7 @@ implements 
 
 close
-public void close()
+public void close()
throws https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Description copied from 
interface: InternalScanner
 Closes the scanner and releases any resources it has 
allocated

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/coprocessor/example/ExampleMasterObserverWithMetrics.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/example/ExampleMasterObserverWithMetrics.html
 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/example/ExampleMasterObserverWithMetrics.html
index 0bcd0a5..1cef255 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/example/ExampleMasterObserverWithMetrics.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/example/ExampleMasterObserverWithMetrics.html
@@ -113,7 +113,8 @@ var activeTableTab = "activeTableTab";
 
 
 
-public class ExampleMasterObserverWithMetrics
+@InterfaceAudience.Private
+public class ExampleMasterObserverWithMetrics
 extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 implements MasterCoprocessor, MasterObserver
 An example coprocessor that collects some metrics to 
demonstrate the usage of exporting custom
@@ -309,7 +310,7 @@ implements 
 
 LOG
-private static final org.slf4j.Logger LOG
+private static final org.slf4j.Logger LOG
 
 
 
@@ -318,7 +319,7 @@ implements 
 
 createTableTimer
-private Timer createTableTimer
+private Timer createTableTimer
 This is the Timer metric object to keep track of the 
current count across invocations
 
 
@@ -328,7 +329,7 @@ implements 
 
 createTableStartTime
-private long createTableStartTime
+private long createTableStartTime
 
 
 
@@ -337,7 +338,7 @@ implements 
 
 disableTableCounter
-private Counter disableTableCounter
+private Counter disableTableCounter
 This is a Counter object to keep track of disableTable 
operations
 
 
@@ -355,7 +356,7 @@ implements 
 
 ExampleMasterObserverWithMetrics
-public ExampleMasterObserverWithMetrics()
+public ExampleMasterObserverWithMetrics()
 
 
 
@@ -372,7 +373,7 @@ implements 
 
 getMasterObserver
-public https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional getMasterObserver()
+public https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional getMasterObserver()
 
 Specified by:
 getMasterObserver in
 interface MasterCoprocessor
@@ -385,7 +386,7 @@ implements 
 
 getTotalMemory
-private long getTotalMemory()
+private long getTotalMemory()
 Returns the total memory of the process. We will use this 
to define a gauge metric
 
 
@@ -395,7 +396,7 @@ imp

[47/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/apidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html 
b/apidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
index dc7059c..73dbba9 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
@@ -201,11 +201,11 @@ the order they are declared.
 
 
 protected CompareOperator
-CompareFilter.op 
+SingleColumnValueFilter.op 
 
 
 protected CompareOperator
-SingleColumnValueFilter.op 
+CompareFilter.op 
 
 
 
@@ -224,15 +224,15 @@ the order they are declared.
 
 
 CompareOperator
-CompareFilter.getCompareOperator() 
+ColumnValueFilter.getCompareOperator() 
 
 
 CompareOperator
-ColumnValueFilter.getCompareOperator() 
+SingleColumnValueFilter.getCompareOperator() 
 
 
 CompareOperator
-SingleColumnValueFilter.getCompareOperator() 
+CompareFilter.getCompareOperator() 
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/apidocs/org/apache/hadoop/hbase/class-use/ServerMetrics.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/ServerMetrics.html 
b/apidocs/org/apache/hadoop/hbase/class-use/ServerMetrics.html
index 36b2d94..39c96ab 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/ServerMetrics.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/ServerMetrics.html
@@ -122,14 +122,14 @@
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
-ClusterMetrics.getLiveServerMetrics() 
-
-
-https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
 ClusterStatus.getLiveServerMetrics()
 Deprecated. 
  
 
+
+https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+ClusterMetrics.getLiveServerMetrics() 
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/apidocs/org/apache/hadoop/hbase/class-use/ServerName.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/ServerName.html 
b/apidocs/org/apache/hadoop/hbase/class-use/ServerName.html
index 1900827..7bf422b 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/ServerName.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/ServerName.html
@@ -140,23 +140,23 @@
 
 
 ServerName
-ClusterMetrics.getMasterName()
-Returns detailed information about the current master ServerName.
-
-
-
-ServerName
 ClusterStatus.getMasterName()
 Deprecated. 
  
 
+
+ServerName
+ClusterMetrics.getMasterName()
+Returns detailed information about the current master ServerName.
+
+
 
 ServerName
-HRegionLocation.getServerName() 
+ServerMetrics.getServerName() 
 
 
 ServerName
-ServerMetrics.getServerName() 
+HRegionLocation.getServerName() 
 
 
 ServerName
@@ -207,14 +207,14 @@
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-ClusterMetrics.getBackupMasterNames() 
-
-
-https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 ClusterStatus.getBackupMasterNames()
 Deprecated. 
  
 
+
+https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+ClusterMetrics.getBackupMasterNames() 
+
 
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 ClusterStatus.getBackupMasters()
@@ -226,24 +226,24 @@
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-ClusterMetrics.getDeadServerNames() 
-
-
-https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 ClusterStatus.getDeadServerNames()
 Deprecated. 
  
 
-
-https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
-ClusterMetrics.getLiveServerMetrics() 
-
 
+https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+ClusterMetrics.getDeadServerNames() 
+
+
 https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
 ClusterStatus.getLiveServerMetrics()
 Deprecated. 
  
 
+
+https://docs.oracle.com/java

[02/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/io/hfile/PrefetchExecutor.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/io/hfile/PrefetchExecutor.html 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/PrefetchExecutor.html
index 3272079..8fb8812 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/hfile/PrefetchExecutor.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/PrefetchExecutor.html
@@ -109,7 +109,8 @@ var activeTableTab = "activeTableTab";
 
 
 
-public class PrefetchExecutor
+@InterfaceAudience.Private
+public final class PrefetchExecutor
 extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 
 
@@ -177,10 +178,12 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 Constructors 
 
-Constructor and Description
+Modifier
+Constructor and Description
 
 
-PrefetchExecutor() 
+private 
+PrefetchExecutor() 
 
 
 
@@ -242,7 +245,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 LOG
-private static final org.slf4j.Logger LOG
+private static final org.slf4j.Logger LOG
 
 
 
@@ -251,7 +254,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 prefetchFutures
-private static final https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in 
java.util">MapFuture> prefetchFutures
+private static final https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in 
java.util">MapFuture> prefetchFutures
 Futures for tracking block prefetch activity
 
 
@@ -261,7 +264,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 prefetchExecutorPool
-private static final https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ScheduledExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ScheduledExecutorService prefetchExecutorPool
+private static final https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ScheduledExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ScheduledExecutorService prefetchExecutorPool
 Executor pool shared among all HFiles for block 
prefetch
 
 
@@ -271,7 +274,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 prefetchDelayMillis
-private static final int prefetchDelayMillis
+private static final int prefetchDelayMillis
 Delay before beginning prefetch
 
 
@@ -281,7 +284,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 prefetchDelayVariation
-private static final float prefetchDelayVariation
+private static final float prefetchDelayVariation
 Variation in prefetch delay times, to mitigate 
stampedes
 
 
@@ -291,7 +294,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 RNG
-private static final https://docs.oracle.com/javase/8/docs/api/java/util/Random.html?is-external=true";
 title="class or interface in java.util">Random RNG
+private static final https://docs.oracle.com/javase/8/docs/api/java/util/Random.html?is-external=true";
 title="class or interface in java.util">Random RNG
 
 
 
@@ -300,7 +303,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 prefetchPathExclude
-private static final https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in java.util.regex">Pattern prefetchPathExclude
+private static final https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in java.util.regex">Pattern prefetchPathExclude
 
 
 
@@ -317,7 +320,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 PrefetchExecutor
-public PrefetchExecutor()
+private PrefetchExecutor()
 
 
 
@@ -334,7 +337,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 request
-public static void request(org.apache.hadoop.fs.Path path,
+public static void request(org.apache.hadoop.fs.Path path,
https://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.html?is-external=true";
 title="class or interface in java.lang">Runnable runnable)
 
 
@@ -344,7 +347,7 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
 
 
 complete
-public static void complete(org.apache.hadoop.fs.Path path)
+public static void complete(org.apach

[39/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/checkstyle.rss
--
diff --git a/checkstyle.rss b/checkstyle.rss
index e8b235f..a602ed5 100644
--- a/checkstyle.rss
+++ b/checkstyle.rss
@@ -25,8 +25,8 @@ under the License.
 en-us
 ©2007 - 2018 The Apache Software Foundation
 
-  File: 3587,
- Errors: 16088,
+  File: 3590,
+ Errors: 16045,
  Warnings: 0,
  Infos: 0
   
@@ -1880,7 +1880,7 @@ under the License.
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.mob.MobUtils.java";>org/apache/hadoop/hbase/mob/MobUtils.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.regionserver.DateTieredStoreEngine.java";>org/apache/hadoop/hbase/regionserver/DateTieredStoreEngine.java
 
 
   0
@@ -1889,12 +1889,12 @@ under the License.
   0
 
 
-  15
+  1
 
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.regionserver.DateTieredStoreEngine.java";>org/apache/hadoop/hbase/regionserver/DateTieredStoreEngine.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.mob.MobUtils.java";>org/apache/hadoop/hbase/mob/MobUtils.java
 
 
   0
@@ -1903,7 +1903,7 @@ under the License.
   0
 
 
-  1
+  15
 
   
   
@@ -3770,7 +3770,7 @@ under the License.
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.quotas.TestQuotaObserverChore.java";>org/apache/hadoop/hbase/quotas/TestQuotaObserverChore.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.util.HFileArchiveTestingUtil.java";>org/apache/hadoop/hbase/util/HFileArchiveTestingUtil.java
 
 
   0
@@ -3779,12 +3779,12 @@ under the License.
   0
 
 
-  0
+  9
 
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.util.HFileArchiveTestingUtil.java";>org/apache/hadoop/hbase/util/HFileArchiveTestingUtil.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.quotas.TestQuotaObserverChore.java";>org/apache/hadoop/hbase/quotas/TestQuotaObserverChore.java
 
 
   0
@@ -3793,7 +3793,7 @@ under the License.
   0
 
 
-  9
+  0
 
   
   
@@ -5081,7 +5081,7 @@ under the License.
   0
 
 
-  12
+  11
 
   
   
@@ -5366,7 +5366,7 @@ under the License.
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.snapshot.TestRegionSnapshotTask.java";>org/apache/hadoop/hbase/snapshot/TestRegionSnapshotTask.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.regionserver.TestSwitchToStreamRead.java";>org/apache/hadoop/hbase/regionserver/TestSwitchToStreamRead.java
 
 
   0
@@ -5380,7 +5380,7 @@ under the License.
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.snapshot.TestRestoreSnapshotHelper.java";>org/apache/hadoop/hbase/snapshot/TestRestoreSnapshotHelper.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.snapshot.TestRegionSnapshotTask.java";>org/apache/hadoop/hbase/snapshot/TestRegionSnapshotTask.java
 
 
   0
@@ -5389,12 +5389,12 @@ under the License.
   0
 
 
-  2
+  0
 
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.regionserver.TestSwitchToStreamRead.java";>org/apache/hadoop/hbase/regionserver/TestSwitchToStreamRead.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.snapshot.TestRestoreSnapshotHelper.java";>org

[15/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/RpcRetryingCallerFactory.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RpcRetryingCallerFactory.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RpcRetryingCallerFactory.html
index 4d6f99a..00622a7 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RpcRetryingCallerFactory.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RpcRetryingCallerFactory.html
@@ -126,15 +126,15 @@
 
 
 private RpcRetryingCallerFactory
-RegionCoprocessorRpcChannel.rpcCallerFactory 
+ConnectionImplementation.rpcCallerFactory 
 
 
 private RpcRetryingCallerFactory
-ConnectionImplementation.rpcCallerFactory 
+HTable.rpcCallerFactory 
 
 
 private RpcRetryingCallerFactory
-HTable.rpcCallerFactory 
+RegionCoprocessorRpcChannel.rpcCallerFactory 
 
 
 private RpcRetryingCallerFactory
@@ -155,21 +155,21 @@
 
 
 RpcRetryingCallerFactory
-ConnectionImplementation.getNewRpcRetryingCallerFactory(org.apache.hadoop.conf.Configuration conf) 
-
-
-RpcRetryingCallerFactory
 ClusterConnection.getNewRpcRetryingCallerFactory(org.apache.hadoop.conf.Configuration conf)
 Returns a new RpcRetryingCallerFactory from the given 
Configuration.
 
 
+
+RpcRetryingCallerFactory
+ConnectionImplementation.getNewRpcRetryingCallerFactory(org.apache.hadoop.conf.Configuration conf) 
+
 
 RpcRetryingCallerFactory
-ConnectionImplementation.getRpcRetryingCallerFactory() 
+ClusterConnection.getRpcRetryingCallerFactory() 
 
 
 RpcRetryingCallerFactory
-ClusterConnection.getRpcRetryingCallerFactory() 
+ConnectionImplementation.getRpcRetryingCallerFactory() 
 
 
 static RpcRetryingCallerFactory

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Scan.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
index f5a73bc..d833faa 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
@@ -283,27 +283,27 @@ service.
 
 
 private Scan
-ScannerCallableWithReplicas.scan 
+AsyncScanSingleRegionRpcRetryingCaller.scan 
 
 
 protected Scan
-ClientScanner.scan 
+ScannerCallable.scan 
 
 
 private Scan
-AsyncClientScanner.scan 
+ScannerCallableWithReplicas.scan 
 
 
-private Scan
-AsyncRpcRetryingCallerFactory.ScanSingleRegionCallerBuilder.scan 
+protected Scan
+ClientScanner.scan 
 
 
 private Scan
-AsyncScanSingleRegionRpcRetryingCaller.scan 
+AsyncClientScanner.scan 
 
 
-protected Scan
-ScannerCallable.scan 
+private Scan
+AsyncRpcRetryingCallerFactory.ScanSingleRegionCallerBuilder.scan 
 
 
 private Scan
@@ -339,11 +339,11 @@ service.
 
 
 protected Scan
-ClientScanner.getScan() 
+ScannerCallable.getScan() 
 
 
 protected Scan
-ScannerCallable.getScan() 
+ClientScanner.getScan() 
 
 
 Scan
@@ -638,29 +638,29 @@ service.
 
 
 ResultScanner
-AsyncTable.getScanner(Scan scan)
-Returns a scanner on the current table as specified by the 
Scan 
object.
-
+RawAsyncTableImpl.getScanner(Scan scan) 
 
 
 ResultScanner
-Table.getScanner(Scan scan)
-Returns a scanner on the current table as specified by the 
Scan
- object.
+HTable.getScanner(Scan scan)
+The underlying HTable must 
not be closed.
 
 
 
 ResultScanner
-AsyncTableImpl.getScanner(Scan scan) 
+Table.getScanner(Scan scan)
+Returns a scanner on the current table as specified by the 
Scan
+ object.
+
 
 
 ResultScanner
-RawAsyncTableImpl.getScanner(Scan scan) 
+AsyncTableImpl.getScanner(Scan scan) 
 
 
 ResultScanner
-HTable.getScanner(Scan scan)
-The underlying HTable must 
not be closed.
+AsyncTable.getScanner(Scan scan)
+Returns a scanner on the current table as specified by the 
Scan 
object.
 
 
 
@@ -703,9 +703,7 @@ service.
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-AsyncTable.scanAll(Scan scan)
-Return all the results that match the given scan 
object.
-
+RawAsyncTableImpl.scanAll(Scan scan) 
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
@@ -713,7 +711,9 @@ service.
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFut

[41/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/apidocs/overview-tree.html
--
diff --git a/apidocs/overview-tree.html b/apidocs/overview-tree.html
index d331c6f..72a723d 100644
--- a/apidocs/overview-tree.html
+++ b/apidocs/overview-tree.html
@@ -891,32 +891,32 @@
 java.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
 org.apache.hadoop.hbase.util.Order
-org.apache.hadoop.hbase.MemoryCompactionPolicy
 org.apache.hadoop.hbase.KeepDeletedCells
+org.apache.hadoop.hbase.MemoryCompactionPolicy
 org.apache.hadoop.hbase.CompareOperator
 org.apache.hadoop.hbase.CellBuilderType
+org.apache.hadoop.hbase.filter.BitComparator.BitwiseOp
 org.apache.hadoop.hbase.filter.FilterList.Operator
 org.apache.hadoop.hbase.filter.CompareFilter.CompareOp
-org.apache.hadoop.hbase.filter.BitComparator.BitwiseOp
-org.apache.hadoop.hbase.filter.RegexStringComparator.EngineType
 org.apache.hadoop.hbase.filter.Filter.ReturnCode
+org.apache.hadoop.hbase.filter.RegexStringComparator.EngineType
 org.apache.hadoop.hbase.io.encoding.DataBlockEncoding
 org.apache.hadoop.hbase.regionserver.BloomType
-org.apache.hadoop.hbase.quotas.SpaceViolationPolicy
 org.apache.hadoop.hbase.quotas.ThrottlingException.Type
 org.apache.hadoop.hbase.quotas.QuotaScope
-org.apache.hadoop.hbase.quotas.QuotaType
 org.apache.hadoop.hbase.quotas.ThrottleType
-org.apache.hadoop.hbase.client.SnapshotType
+org.apache.hadoop.hbase.quotas.QuotaType
+org.apache.hadoop.hbase.quotas.SpaceViolationPolicy
 org.apache.hadoop.hbase.client.Durability
+org.apache.hadoop.hbase.client.SnapshotType
+org.apache.hadoop.hbase.client.MasterSwitchType
+org.apache.hadoop.hbase.client.CompactType
 org.apache.hadoop.hbase.client.MobCompactPartitionPolicy
-org.apache.hadoop.hbase.client.IsolationLevel
-org.apache.hadoop.hbase.client.RequestController.ReturnCode
-org.apache.hadoop.hbase.client.Scan.ReadType
 org.apache.hadoop.hbase.client.CompactionState
-org.apache.hadoop.hbase.client.MasterSwitchType
+org.apache.hadoop.hbase.client.Scan.ReadType
+org.apache.hadoop.hbase.client.RequestController.ReturnCode
+org.apache.hadoop.hbase.client.IsolationLevel
 org.apache.hadoop.hbase.client.Consistency
-org.apache.hadoop.hbase.client.CompactType
 org.apache.hadoop.hbase.client.security.SecurityCapability
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/apidocs/src-html/org/apache/hadoop/hbase/LocalHBaseCluster.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/LocalHBaseCluster.html 
b/apidocs/src-html/org/apache/hadoop/hbase/LocalHBaseCluster.html
index a0ae102..1d2d704 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/LocalHBaseCluster.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/LocalHBaseCluster.html
@@ -149,7 +149,7 @@
 141
 142// Always have masters and 
regionservers come up on port '0' so we don't
 143// clash over default ports.
-144if 
(conf.getBoolean(ASSIGN_RANDOM_PORTS, true)) {
+144if 
(conf.getBoolean(ASSIGN_RANDOM_PORTS, false)) {
 145  conf.set(HConstants.MASTER_PORT, 
"0");
 146  
conf.set(HConstants.REGIONSERVER_PORT, "0");
 147  if 
(conf.getInt(HConstants.REGIONSERVER_INFO_PORT, 0) != -1) {

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/book.html
--
diff --git a/book.html b/book.html
index 27131f0..79cba7d 100644
--- a/book.html
+++ b/book.html
@@ -5203,6 +5203,18 @@ config.set("
 
 
+
+7.6. 
Timeout settings
+
+HBase provides many timeout settings to limit the execution time of 
different remote operations.
+
+
+The hbase.rpc.timeout property limits how long an RPC call can 
run before it times out.
+You can also specify a timeout for read and write operations using 
hbase.rpc.read.timeout and hbase.rpc.write.timeout 
configuration properties. In the absence of these properties 
hbase.rpc.timeout will be used.
+A higher-level timeout is hbase.client.operation.timeout which is 
valid for each client call.
+Timeout for scan operations is controlled differently. To set it you can use 
hbase.client.scanner.timeout.period property.
+
+
 
 
 
@@ -37288,7 +37300,7 @@ The server will return cellblocks compressed using this 
same compressor as long
 
 
 Version 3.0.0-SNAPSHOT
-Last updated 2018-03-21 14:29:53 UTC
+Last updated 2018-03-22 14:29:40 UTC
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/bulk-loads.html

[37/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/HealthCheckChore.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/HealthCheckChore.html 
b/devapidocs/org/apache/hadoop/hbase/HealthCheckChore.html
index b1e5c73..2e4ddc3 100644
--- a/devapidocs/org/apache/hadoop/hbase/HealthCheckChore.html
+++ b/devapidocs/org/apache/hadoop/hbase/HealthCheckChore.html
@@ -118,7 +118,8 @@ var activeTableTab = "activeTableTab";
 
 
 
-public class HealthCheckChore
+@InterfaceAudience.Private
+public class HealthCheckChore
 extends ScheduledChore
 The Class HealthCheckChore for running health checker 
regularly.
 
@@ -261,7 +262,7 @@ extends 
 
 LOG
-private static final org.slf4j.Logger LOG
+private static final org.slf4j.Logger LOG
 
 
 
@@ -270,7 +271,7 @@ extends 
 
 healthChecker
-private HealthChecker healthChecker
+private HealthChecker healthChecker
 
 
 
@@ -279,7 +280,7 @@ extends 
 
 config
-private org.apache.hadoop.conf.Configuration config
+private org.apache.hadoop.conf.Configuration config
 
 
 
@@ -288,7 +289,7 @@ extends 
 
 threshold
-private int threshold
+private int threshold
 
 
 
@@ -297,7 +298,7 @@ extends 
 
 numTimesUnhealthy
-private int numTimesUnhealthy
+private int numTimesUnhealthy
 
 
 
@@ -306,7 +307,7 @@ extends 
 
 failureWindow
-private long failureWindow
+private long failureWindow
 
 
 
@@ -315,7 +316,7 @@ extends 
 
 startWindow
-private long startWindow
+private long startWindow
 
 
 
@@ -332,7 +333,7 @@ extends 
 
 HealthCheckChore
-public HealthCheckChore(int sleepTime,
+public HealthCheckChore(int sleepTime,
 Stoppable stopper,
 org.apache.hadoop.conf.Configuration conf)
 
@@ -351,7 +352,7 @@ extends 
 
 chore
-protected void chore()
+protected void chore()
 Description copied from 
class: ScheduledChore
 The task to execute on each scheduled execution of the 
Chore
 
@@ -366,7 +367,7 @@ extends 
 
 decideToStop
-private boolean decideToStop()
+private boolean decideToStop()
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/JMXListener.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/JMXListener.html 
b/devapidocs/org/apache/hadoop/hbase/JMXListener.html
index b9df477..edd5f2d 100644
--- a/devapidocs/org/apache/hadoop/hbase/JMXListener.html
+++ b/devapidocs/org/apache/hadoop/hbase/JMXListener.html
@@ -113,7 +113,8 @@ var activeTableTab = "activeTableTab";
 
 
 
-public class JMXListener
+@InterfaceAudience.Private
+public class JMXListener
 extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 implements MasterCoprocessor, 
RegionServerCoprocessor
 Pluggable JMX Agent for HBase(to fix the 2 random TCP ports 
issue

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/MetaTableAccessor.QueryType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/MetaTableAccessor.QueryType.html 
b/devapidocs/org/apache/hadoop/hbase/MetaTableAccessor.QueryType.html
index c89f05c..28e84b2 100644
--- a/devapidocs/org/apache/hadoop/hbase/MetaTableAccessor.QueryType.html
+++ b/devapidocs/org/apache/hadoop/hbase/MetaTableAccessor.QueryType.html
@@ -289,7 +289,7 @@ the order they are declared.
 
 
 values
-public static MetaTableAccessor.QueryType[] values()
+public static MetaTableAccessor.QueryType[] values()
 Returns an array containing the constants of this enum 
type, in
 the order they are declared.  This method may be used to iterate
 over the constants as follows:
@@ -309,7 +309,7 @@ for (MetaTableAccessor.QueryType c : 
MetaTableAccessor.QueryType.values())
 
 
 valueOf
-public static MetaTableAccessor.QueryType valueOf(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
+public static MetaTableAccessor.QueryType valueOf(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
 Returns the enum constant of this type with the specified 
name.
 The string must match exactly an identifier used to declare an
 enum constant in this type.  (Extraneous whitespace characters are 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.html 
b/devapidocs/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.html
index 0c585ca..15cd1cf 100644
--- a/devapidocs/org/apache/hadoop/hbase/SslRMIClientSocketFactorySecure.ht

[21/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/devapidocs/org/apache/hadoop/hbase/client/class-use/Get.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Get.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Get.html
index d8c0033..14acfc0 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Get.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Get.html
@@ -399,10 +399,8 @@ service.
 
 
 
-default https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureBoolean>
-AsyncTable.exists(Get get)
-Test for the existence of columns in the table, as 
specified by the Get.
-
+boolean
+HTable.exists(Get get) 
 
 
 boolean
@@ -411,32 +409,34 @@ service.
 
 
 
-boolean
-HTable.exists(Get get) 
+default https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureBoolean>
+AsyncTable.exists(Get get)
+Test for the existence of columns in the table, as 
specified by the Get.
+
 
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-AsyncTable.get(Get get)
-Extracts certain cells from a given row.
-
+RawAsyncTableImpl.get(Get get) 
 
 
 Result
+HTable.get(Get get) 
+
+
+Result
 Table.get(Get get)
 Extracts certain cells from a given row.
 
 
-
-https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-AsyncTableImpl.get(Get get) 
-
 
 https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-RawAsyncTableImpl.get(Get get) 
+AsyncTableImpl.get(Get get) 
 
 
-Result
-HTable.get(Get get) 
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
+AsyncTable.get(Get get)
+Extracts certain cells from a given row.
+
 
 
 private Result
@@ -457,10 +457,8 @@ service.
 
 
 
-default https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">ListCompletableFutureBoolean>>
-AsyncTable.exists(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List gets)
-Test for the existence of columns in the table, as 
specified by the Gets.
-
+boolean[]
+HTable.exists(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List gets) 
 
 
 boolean[]
@@ -469,16 +467,12 @@ service.
 
 
 
-boolean[]
-HTable.exists(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List gets) 
-
-
-default https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureListBoolean>>
-AsyncTable.existsAll(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List gets)
-A simple version for batch exists.
+default https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">ListCompletableFutureBoolean>>
+AsyncTable.exists(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java

[49/51] [partial] hbase-site git commit: Published site at 4cb40e6d846ce1f28ffb40d388c9efb753197813.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/4dc2a2e8/apidocs/deprecated-list.html
--
diff --git a/apidocs/deprecated-list.html b/apidocs/deprecated-list.html
index fb294b7..34a59f3 100644
--- a/apidocs/deprecated-list.html
+++ b/apidocs/deprecated-list.html
@@ -510,19 +510,19 @@
 
 
 
-org.apache.hadoop.hbase.client.Mutation.compareTo(Row)
+org.apache.hadoop.hbase.client.Row.compareTo(Row)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
  Use Row.COMPARATOR
 instead
 
 
 
-org.apache.hadoop.hbase.client.RowMutations.compareTo(Row)
+org.apache.hadoop.hbase.client.Mutation.compareTo(Row)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
  Use Row.COMPARATOR
 instead
 
 
 
-org.apache.hadoop.hbase.client.Row.compareTo(Row)
+org.apache.hadoop.hbase.client.RowMutations.compareTo(Row)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
  Use Row.COMPARATOR
 instead
 
@@ -832,82 +832,82 @@
 
 
 
-org.apache.hadoop.hbase.filter.FilterList.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.ValueFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.WhileMatchFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.FirstKeyOnlyFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.PageFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.ColumnPrefixFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.MultipleColumnPrefixFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.TimestampsFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.InclusiveStopFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.ColumnCountGetFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.KeyOnlyFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.WhileMatchFilter.filterKeyValue(Cell)
 
 
 org.apache.hadoop.hbase.filter.RowFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.ColumnRangeFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.RandomRowFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.FamilyFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.MultiRowRangeFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.RandomRowFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.InclusiveStopFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.FirstKeyValueMatchingQualifiersFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.SingleColumnValueFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.SkipFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.DependentColumnFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.DependentColumnFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.QualifierFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.Filter.filterKeyValue(Cell)
-As of release 2.0.0, this 
will be removed in HBase 3.0.0.
- Instead use filterCell(Cell)
-
+org.apache.hadoop.hbase.filter.FirstKeyValueMatchingQualifiersFilter.filterKeyValue(Cell)
 
 
 org.apache.hadoop.hbase.filter.ColumnPaginationFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.ValueFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.ColumnRangeFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.ColumnCountGetFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.FilterList.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.QualifierFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.MultipleColumnPrefixFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.PrefixFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.SkipFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.FuzzyRowFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.PageFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.TimestampsFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.PrefixFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.ColumnPrefixFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.FamilyFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.MultiRowRangeFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.Filter.filterKeyValue(Cell)
+As of release 2.0.0, this 
will be removed in HBase 3.0.0.
+ Instead use filterCell(Cell)
+
 
 
-org.apache.hadoop.hbase.filter.SingleColumnValueFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.FuzzyRowFilter.filterKeyValue(Cell)
 
 
-org.apache.hadoop.hbase.filter.FirstKeyOnlyFilter.filterKeyValue(Cell)
+org.apache.hadoop.hbase.filter.KeyOnlyFilter.filterKeyValue(Cell)
 
 
 org.apache.hadoop.hbase.filter.Filter.filterRowKey(byte[],
 int, int)
@@ -1169,13 +1169,13 @@
 org.apache.hadoop.hbase.rest.client.RemoteHTable.getOperationTimeout()
 
 
-org.apache.hadoop.hbase.filter.CompareFilter.getOperator()
-since 2.0.0. Will be 
removed i

hbase git commit: HBASE-20047 AuthenticationTokenIdentifier should provide a toString

Repository: hbase
Updated Branches:
  refs/heads/branch-1 f976b3a8a -> 2a8e62f8e


HBASE-20047 AuthenticationTokenIdentifier should provide a toString

Signed-off-by: Chia-Ping Tsai 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/2a8e62f8
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/2a8e62f8
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/2a8e62f8

Branch: refs/heads/branch-1
Commit: 2a8e62f8eeb2950300cae10c62f658fe140da854
Parents: f976b3a
Author: maoling 
Authored: Mon Mar 12 22:01:16 2018 +0800
Committer: Sean Busbey 
Committed: Thu Mar 22 09:56:43 2018 -0500

--
 .../hbase/security/token/AuthenticationTokenIdentifier.java   | 7 +++
 1 file changed, 7 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/2a8e62f8/hbase-client/src/main/java/org/apache/hadoop/hbase/security/token/AuthenticationTokenIdentifier.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/security/token/AuthenticationTokenIdentifier.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/security/token/AuthenticationTokenIdentifier.java
index 4299003..568ace7 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/security/token/AuthenticationTokenIdentifier.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/security/token/AuthenticationTokenIdentifier.java
@@ -186,4 +186,11 @@ public class AuthenticationTokenIdentifier extends 
TokenIdentifier {
   public int hashCode() {
 return (int)sequenceNumber;
   }
+
+  @Override
+  public String toString() {
+return "(username=" + username + ", keyId="
++ keyId + ", issueDate=" + issueDate
++ ", expirationDate=" + expirationDate + ", sequenceNumber=" + 
sequenceNumber + ")";
+  }
 }



hbase git commit: Revert "HBASE-20224 Web UI is broken in standalone mode"

Repository: hbase
Updated Branches:
  refs/heads/branch-2 dd9fe813e -> 79e4c9d92


Revert "HBASE-20224 Web UI is broken in standalone mode"

Broke shell tests.

This reverts commit dd9fe813ecc605f5e8b3c8598824f4e9a0a1eed6.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/79e4c9d9
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/79e4c9d9
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/79e4c9d9

Branch: refs/heads/branch-2
Commit: 79e4c9d925a368b5f4baec4f2fa201bf19af49f6
Parents: dd9fe81
Author: Michael Stack 
Authored: Thu Mar 22 10:47:47 2018 -0700
Committer: Michael Stack 
Committed: Thu Mar 22 10:47:47 2018 -0700

--
 hbase-client/src/test/resources/hbase-site.xml| 7 ---
 hbase-mapreduce/src/test/resources/hbase-site.xml | 7 ---
 hbase-procedure/src/test/resources/hbase-site.xml | 7 ---
 hbase-rest/src/test/resources/hbase-site.xml  | 7 ---
 .../main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java  | 2 +-
 .../test/java/org/apache/hadoop/hbase/MiniHBaseCluster.java   | 2 +-
 hbase-server/src/test/resources/hbase-site.xml| 7 ---
 hbase-thrift/src/test/resources/hbase-site.xml| 7 ---
 8 files changed, 2 insertions(+), 44 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/79e4c9d9/hbase-client/src/test/resources/hbase-site.xml
--
diff --git a/hbase-client/src/test/resources/hbase-site.xml 
b/hbase-client/src/test/resources/hbase-site.xml
index 858d428..99d2ab8 100644
--- a/hbase-client/src/test/resources/hbase-site.xml
+++ b/hbase-client/src/test/resources/hbase-site.xml
@@ -29,11 +29,4 @@
 hbase.hconnection.threads.keepalivetime
 3
   
-  
-hbase.localcluster.assign.random.ports
-true
-
-  Assign random ports to master and RS info server (UI).
-
-  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/79e4c9d9/hbase-mapreduce/src/test/resources/hbase-site.xml
--
diff --git a/hbase-mapreduce/src/test/resources/hbase-site.xml 
b/hbase-mapreduce/src/test/resources/hbase-site.xml
index 34802d0..64a1964 100644
--- a/hbase-mapreduce/src/test/resources/hbase-site.xml
+++ b/hbase-mapreduce/src/test/resources/hbase-site.xml
@@ -158,11 +158,4 @@
 hbase.hconnection.threads.keepalivetime
 3
   
-  
-hbase.localcluster.assign.random.ports
-true
-
-  Assign random ports to master and RS info server (UI).
-
-  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/79e4c9d9/hbase-procedure/src/test/resources/hbase-site.xml
--
diff --git a/hbase-procedure/src/test/resources/hbase-site.xml 
b/hbase-procedure/src/test/resources/hbase-site.xml
index a1cc27e..114ee8a 100644
--- a/hbase-procedure/src/test/resources/hbase-site.xml
+++ b/hbase-procedure/src/test/resources/hbase-site.xml
@@ -41,11 +41,4 @@
   WARNING: Doing so may expose you to additional risk of data loss!
 
   
-  
-hbase.localcluster.assign.random.ports
-true
-
-  Assign random ports to master and RS info server (UI).
-
-  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/79e4c9d9/hbase-rest/src/test/resources/hbase-site.xml
--
diff --git a/hbase-rest/src/test/resources/hbase-site.xml 
b/hbase-rest/src/test/resources/hbase-site.xml
index be7b492..2bd3ee4 100644
--- a/hbase-rest/src/test/resources/hbase-site.xml
+++ b/hbase-rest/src/test/resources/hbase-site.xml
@@ -139,11 +139,4 @@
 Skip sanity checks in tests
 
   
-  
-hbase.localcluster.assign.random.ports
-true
-
-  Assign random ports to master and RS info server (UI).
-
-  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/79e4c9d9/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
index 5c8ddd9..e19e53b 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
@@ -141,7 +141,7 @@ public class LocalHBaseCluster {
 
 // Always have masters and regionservers come up on port '0' so we don't
 // clash over default ports.
-if (conf.getBoolean(ASSIGN_RANDOM_PORTS, false)) {
+if (conf.getBoolean(ASSIGN_RANDOM_PORTS, true)) {
   conf.set(HConstants.MASTER_PORT, "0");
   conf.set(HConstants.REGIONS

hbase git commit: Revert "HBASE-20224 Web UI is broken in standalone mode"

Repository: hbase
Updated Branches:
  refs/heads/branch-2.0 009c86ed7 -> 996963eb9


Revert "HBASE-20224 Web UI is broken in standalone mode"

Broke shell tests.

This reverts commit dd9fe813ecc605f5e8b3c8598824f4e9a0a1eed6.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/996963eb
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/996963eb
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/996963eb

Branch: refs/heads/branch-2.0
Commit: 996963eb9766ff90caafa3b2a8a8547fad0a09e4
Parents: 009c86e
Author: Michael Stack 
Authored: Thu Mar 22 10:47:47 2018 -0700
Committer: Michael Stack 
Committed: Thu Mar 22 10:48:48 2018 -0700

--
 hbase-client/src/test/resources/hbase-site.xml| 7 ---
 hbase-mapreduce/src/test/resources/hbase-site.xml | 7 ---
 hbase-procedure/src/test/resources/hbase-site.xml | 7 ---
 hbase-rest/src/test/resources/hbase-site.xml  | 7 ---
 .../main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java  | 2 +-
 .../test/java/org/apache/hadoop/hbase/MiniHBaseCluster.java   | 2 +-
 hbase-server/src/test/resources/hbase-site.xml| 7 ---
 hbase-thrift/src/test/resources/hbase-site.xml| 7 ---
 8 files changed, 2 insertions(+), 44 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/996963eb/hbase-client/src/test/resources/hbase-site.xml
--
diff --git a/hbase-client/src/test/resources/hbase-site.xml 
b/hbase-client/src/test/resources/hbase-site.xml
index 858d428..99d2ab8 100644
--- a/hbase-client/src/test/resources/hbase-site.xml
+++ b/hbase-client/src/test/resources/hbase-site.xml
@@ -29,11 +29,4 @@
 hbase.hconnection.threads.keepalivetime
 3
   
-  
-hbase.localcluster.assign.random.ports
-true
-
-  Assign random ports to master and RS info server (UI).
-
-  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/996963eb/hbase-mapreduce/src/test/resources/hbase-site.xml
--
diff --git a/hbase-mapreduce/src/test/resources/hbase-site.xml 
b/hbase-mapreduce/src/test/resources/hbase-site.xml
index 34802d0..64a1964 100644
--- a/hbase-mapreduce/src/test/resources/hbase-site.xml
+++ b/hbase-mapreduce/src/test/resources/hbase-site.xml
@@ -158,11 +158,4 @@
 hbase.hconnection.threads.keepalivetime
 3
   
-  
-hbase.localcluster.assign.random.ports
-true
-
-  Assign random ports to master and RS info server (UI).
-
-  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/996963eb/hbase-procedure/src/test/resources/hbase-site.xml
--
diff --git a/hbase-procedure/src/test/resources/hbase-site.xml 
b/hbase-procedure/src/test/resources/hbase-site.xml
index a1cc27e..114ee8a 100644
--- a/hbase-procedure/src/test/resources/hbase-site.xml
+++ b/hbase-procedure/src/test/resources/hbase-site.xml
@@ -41,11 +41,4 @@
   WARNING: Doing so may expose you to additional risk of data loss!
 
   
-  
-hbase.localcluster.assign.random.ports
-true
-
-  Assign random ports to master and RS info server (UI).
-
-  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/996963eb/hbase-rest/src/test/resources/hbase-site.xml
--
diff --git a/hbase-rest/src/test/resources/hbase-site.xml 
b/hbase-rest/src/test/resources/hbase-site.xml
index be7b492..2bd3ee4 100644
--- a/hbase-rest/src/test/resources/hbase-site.xml
+++ b/hbase-rest/src/test/resources/hbase-site.xml
@@ -139,11 +139,4 @@
 Skip sanity checks in tests
 
   
-  
-hbase.localcluster.assign.random.ports
-true
-
-  Assign random ports to master and RS info server (UI).
-
-  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/996963eb/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
index 5c8ddd9..e19e53b 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
@@ -141,7 +141,7 @@ public class LocalHBaseCluster {
 
 // Always have masters and regionservers come up on port '0' so we don't
 // clash over default ports.
-if (conf.getBoolean(ASSIGN_RANDOM_PORTS, false)) {
+if (conf.getBoolean(ASSIGN_RANDOM_PORTS, true)) {
   conf.set(HConstants.MASTER_PORT, "0");
   conf.set(HConstants.REG

hbase git commit: Revert "HBASE-20224 Web UI is broken in standalone mode"

Repository: hbase
Updated Branches:
  refs/heads/master 4cb40e6d8 -> 5d1b2110d


Revert "HBASE-20224 Web UI is broken in standalone mode"

Broke shell tests.

This reverts commit dd9fe813ecc605f5e8b3c8598824f4e9a0a1eed6.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/5d1b2110
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/5d1b2110
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/5d1b2110

Branch: refs/heads/master
Commit: 5d1b2110d1bac600d81d8bf04d3a97e5a9bd1268
Parents: 4cb40e6
Author: Michael Stack 
Authored: Thu Mar 22 10:47:47 2018 -0700
Committer: Michael Stack 
Committed: Thu Mar 22 10:57:42 2018 -0700

--
 hbase-client/src/test/resources/hbase-site.xml| 7 ---
 hbase-mapreduce/src/test/resources/hbase-site.xml | 7 ---
 hbase-procedure/src/test/resources/hbase-site.xml | 7 ---
 hbase-rest/src/test/resources/hbase-site.xml  | 7 ---
 .../main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java  | 2 +-
 .../test/java/org/apache/hadoop/hbase/MiniHBaseCluster.java   | 2 +-
 hbase-server/src/test/resources/hbase-site.xml| 7 ---
 hbase-thrift/src/test/resources/hbase-site.xml| 7 ---
 8 files changed, 2 insertions(+), 44 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/5d1b2110/hbase-client/src/test/resources/hbase-site.xml
--
diff --git a/hbase-client/src/test/resources/hbase-site.xml 
b/hbase-client/src/test/resources/hbase-site.xml
index 858d428..99d2ab8 100644
--- a/hbase-client/src/test/resources/hbase-site.xml
+++ b/hbase-client/src/test/resources/hbase-site.xml
@@ -29,11 +29,4 @@
 hbase.hconnection.threads.keepalivetime
 3
   
-  
-hbase.localcluster.assign.random.ports
-true
-
-  Assign random ports to master and RS info server (UI).
-
-  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/5d1b2110/hbase-mapreduce/src/test/resources/hbase-site.xml
--
diff --git a/hbase-mapreduce/src/test/resources/hbase-site.xml 
b/hbase-mapreduce/src/test/resources/hbase-site.xml
index 34802d0..64a1964 100644
--- a/hbase-mapreduce/src/test/resources/hbase-site.xml
+++ b/hbase-mapreduce/src/test/resources/hbase-site.xml
@@ -158,11 +158,4 @@
 hbase.hconnection.threads.keepalivetime
 3
   
-  
-hbase.localcluster.assign.random.ports
-true
-
-  Assign random ports to master and RS info server (UI).
-
-  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/5d1b2110/hbase-procedure/src/test/resources/hbase-site.xml
--
diff --git a/hbase-procedure/src/test/resources/hbase-site.xml 
b/hbase-procedure/src/test/resources/hbase-site.xml
index a1cc27e..114ee8a 100644
--- a/hbase-procedure/src/test/resources/hbase-site.xml
+++ b/hbase-procedure/src/test/resources/hbase-site.xml
@@ -41,11 +41,4 @@
   WARNING: Doing so may expose you to additional risk of data loss!
 
   
-  
-hbase.localcluster.assign.random.ports
-true
-
-  Assign random ports to master and RS info server (UI).
-
-  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/5d1b2110/hbase-rest/src/test/resources/hbase-site.xml
--
diff --git a/hbase-rest/src/test/resources/hbase-site.xml 
b/hbase-rest/src/test/resources/hbase-site.xml
index be7b492..2bd3ee4 100644
--- a/hbase-rest/src/test/resources/hbase-site.xml
+++ b/hbase-rest/src/test/resources/hbase-site.xml
@@ -139,11 +139,4 @@
 Skip sanity checks in tests
 
   
-  
-hbase.localcluster.assign.random.ports
-true
-
-  Assign random ports to master and RS info server (UI).
-
-  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/5d1b2110/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
index 5c8ddd9..e19e53b 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
@@ -141,7 +141,7 @@ public class LocalHBaseCluster {
 
 // Always have masters and regionservers come up on port '0' so we don't
 // clash over default ports.
-if (conf.getBoolean(ASSIGN_RANDOM_PORTS, false)) {
+if (conf.getBoolean(ASSIGN_RANDOM_PORTS, true)) {
   conf.set(HConstants.MASTER_PORT, "0");
   conf.set(HConstants.REGIONSERVE

[10/16] hbase-site git commit: Further separate hbasecon and phoenixcon

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-2018/js/jquery.easing.min.js
--
diff --git a/hbasecon-2018/js/jquery.easing.min.js 
b/hbasecon-2018/js/jquery.easing.min.js
new file mode 100644
index 000..4a54fcd
--- /dev/null
+++ b/hbasecon-2018/js/jquery.easing.min.js
@@ -0,0 +1,44 @@
+/*
+ * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
+ *
+ * Uses the built in easing capabilities added In jQuery 1.1
+ * to offer multiple easing options
+ *
+ * TERMS OF USE - EASING EQUATIONS
+ *
+ * Open source under the BSD License.
+ *
+ * Copyright © 2001 Robert Penner
+ * All rights reserved.
+ *
+ * TERMS OF USE - jQuery Easing
+ *
+ * Open source under the BSD License.
+ *
+ * Copyright © 2008 George McGinley Smith
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without 
modification,
+ * are permitted provided that the following conditions are met:
+ *
+ * Redistributions of source code must retain the above copyright notice, this 
list of
+ * conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright notice, 
this list
+ * of conditions and the following disclaimer in the documentation and/or 
other materials
+ * provided with the distribution.
+ *
+ * Neither the name of the author nor the names of contributors may be used to 
endorse
+ * or promote products derived from this software without specific prior 
written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 
EVENT SHALL THE
+ *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
INCIDENTAL, SPECIAL,
+ *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
PROCUREMENT OF SUBSTITUTE
+ *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
INTERRUPTION) HOWEVER CAUSED
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 
TORT (INCLUDING
+ *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
SOFTWARE, EVEN IF ADVISED
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+*/
+jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return
 
jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return
 h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return 
-h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return 
h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return 
h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return 
h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return 
h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return 
h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return 
-h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return
 h/2*f*f*f*f+a}return 
-h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return 
h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return 
h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return
  h/2*f*f*f*f*f+a}return 
h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return 
-h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return 
h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return 
-h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return
 a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return 
h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return 
-h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return 
h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return
 -h/2*(Math.sqrt(1-f*f)-1)+a}return 
h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var 
i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return 
e+l}if(!j){j=k*0.3}if(g

[05/16] hbase-site git commit: Further separate hbasecon and phoenixcon

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-phoenixcon-2018/js/bootstrap.js
--
diff --git a/hbasecon-phoenixcon-2018/js/bootstrap.js 
b/hbasecon-phoenixcon-2018/js/bootstrap.js
deleted file mode 100755
index 53da1c7..000
--- a/hbasecon-phoenixcon-2018/js/bootstrap.js
+++ /dev/null
@@ -1,2114 +0,0 @@
-/*!
- * Bootstrap v3.2.0 (http://getbootstrap.com)
- * Copyright 2011-2014 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-
-if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript 
requires jQuery') }
-
-/* 
- * Bootstrap: transition.js v3.2.0
- * http://getbootstrap.com/javascript/#transitions
- * 
- * Copyright 2011-2014 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *  */
-
-
-+function ($) {
-  'use strict';
-
-  // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
-  // 
-
-  function transitionEnd() {
-var el = document.createElement('bootstrap')
-
-var transEndEventNames = {
-  WebkitTransition : 'webkitTransitionEnd',
-  MozTransition: 'transitionend',
-  OTransition  : 'oTransitionEnd otransitionend',
-  transition   : 'transitionend'
-}
-
-for (var name in transEndEventNames) {
-  if (el.style[name] !== undefined) {
-return { end: transEndEventNames[name] }
-  }
-}
-
-return false // explicit for ie8 (  ._.)
-  }
-
-  // http://blog.alexmaccaw.com/css-transitions
-  $.fn.emulateTransitionEnd = function (duration) {
-var called = false
-var $el = this
-$(this).one('bsTransitionEnd', function () { called = true })
-var callback = function () { if (!called) 
$($el).trigger($.support.transition.end) }
-setTimeout(callback, duration)
-return this
-  }
-
-  $(function () {
-$.support.transition = transitionEnd()
-
-if (!$.support.transition) return
-
-$.event.special.bsTransitionEnd = {
-  bindType: $.support.transition.end,
-  delegateType: $.support.transition.end,
-  handle: function (e) {
-if ($(e.target).is(this)) return e.handleObj.handler.apply(this, 
arguments)
-  }
-}
-  })
-
-}(jQuery);
-
-/* 
- * Bootstrap: alert.js v3.2.0
- * http://getbootstrap.com/javascript/#alerts
- * 
- * Copyright 2011-2014 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *  */
-
-
-+function ($) {
-  'use strict';
-
-  // ALERT CLASS DEFINITION
-  // ==
-
-  var dismiss = '[data-dismiss="alert"]'
-  var Alert   = function (el) {
-$(el).on('click', dismiss, this.close)
-  }
-
-  Alert.VERSION = '3.2.0'
-
-  Alert.prototype.close = function (e) {
-var $this= $(this)
-var selector = $this.attr('data-target')
-
-if (!selector) {
-  selector = $this.attr('href')
-  selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip 
for ie7
-}
-
-var $parent = $(selector)
-
-if (e) e.preventDefault()
-
-if (!$parent.length) {
-  $parent = $this.hasClass('alert') ? $this : $this.parent()
-}
-
-$parent.trigger(e = $.Event('close.bs.alert'))
-
-if (e.isDefaultPrevented()) return
-
-$parent.removeClass('in')
-
-function removeElement() {
-  // detach from parent, fire event then clean up data
-  $parent.detach().trigger('closed.bs.alert').remove()
-}
-
-$.support.transition && $parent.hasClass('fade') ?
-  $parent
-.one('bsTransitionEnd', removeElement)
-.emulateTransitionEnd(150) :
-  removeElement()
-  }
-
-
-  // ALERT PLUGIN DEFINITION
-  // ===
-
-  function Plugin(option) {
-return this.each(function () {
-  var $this = $(this)
-  var data  = $this.data('bs.alert')
-
-  if (!data) $this.data('bs.alert', (data = new Alert(this)))
-  if (typeof option == 'string') data[option].call($this)
-})
-  }
-
-  var old = $.fn.alert
-
-  $.fn.alert = Plugin
-  $.fn.alert.Constructor = Alert
-
-
-  // ALERT NO CONFLICT
-  // =
-
-  $.fn.alert.noConflict = function () {
-$.fn.alert = old
-return this
-  }
-
-
-  // ALERT DATA-API
-  // ==
-
-  $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
-
-}(jQuery);
-
-/* 
- * Bootstrap: button.js 

[06/16] hbase-site git commit: Further separate hbasecon and phoenixcon

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-phoenixcon-2018/css/font-awesome/fonts/fontawesome-webfont.ttf
--
diff --git 
a/hbasecon-phoenixcon-2018/css/font-awesome/fonts/fontawesome-webfont.ttf 
b/hbasecon-phoenixcon-2018/css/font-awesome/fonts/fontawesome-webfont.ttf
deleted file mode 100755
index 5cd6cff..000
Binary files 
a/hbasecon-phoenixcon-2018/css/font-awesome/fonts/fontawesome-webfont.ttf and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-phoenixcon-2018/css/font-awesome/fonts/fontawesome-webfont.woff
--
diff --git 
a/hbasecon-phoenixcon-2018/css/font-awesome/fonts/fontawesome-webfont.woff 
b/hbasecon-phoenixcon-2018/css/font-awesome/fonts/fontawesome-webfont.woff
deleted file mode 100755
index 9eaecb3..000
Binary files 
a/hbasecon-phoenixcon-2018/css/font-awesome/fonts/fontawesome-webfont.woff and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-phoenixcon-2018/feed.xml
--
diff --git a/hbasecon-phoenixcon-2018/feed.xml 
b/hbasecon-phoenixcon-2018/feed.xml
deleted file mode 100644
index 48d490f..000
--- a/hbasecon-phoenixcon-2018/feed.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-http://www.w3.org/2005/Atom"; >
-  https://jekyllrb.com/"; version="3.7.3">Jekyll
-  https://hbase.apache.org/hbasecon-phoenixcon//hbasecon-phoenixcon-2018/feed.xml";
 rel="self" type="application/atom+xml" />
-  https://hbase.apache.org/hbasecon-phoenixcon//hbasecon-phoenixcon-2018/"; 
rel="alternate" type="text/html" />
-  2018-03-21T14:40:41-04:00
-  
https://hbase.apache.org/hbasecon-phoenixcon//hbasecon-phoenixcon-2018/
-
-  
-HBaseCon+PhoenixCon
-  
-
-  
-HBaseCon+PhoenixCon 2018
-  
-
-  
-
-  
-  
-

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-phoenixcon-2018/img/profile.png
--
diff --git a/hbasecon-phoenixcon-2018/img/profile.png 
b/hbasecon-phoenixcon-2018/img/profile.png
deleted file mode 100755
index e91eb8d..000
Binary files a/hbasecon-phoenixcon-2018/img/profile.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-phoenixcon-2018/img/profile2.png
--
diff --git a/hbasecon-phoenixcon-2018/img/profile2.png 
b/hbasecon-phoenixcon-2018/img/profile2.png
deleted file mode 100644
index d5f32ec..000
Binary files a/hbasecon-phoenixcon-2018/img/profile2.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-phoenixcon-2018/img/sponsors/asf.png
--
diff --git a/hbasecon-phoenixcon-2018/img/sponsors/asf.png 
b/hbasecon-phoenixcon-2018/img/sponsors/asf.png
deleted file mode 100644
index b20bb7f..000
Binary files a/hbasecon-phoenixcon-2018/img/sponsors/asf.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-phoenixcon-2018/img/sponsors/hortonworks.svg
--
diff --git a/hbasecon-phoenixcon-2018/img/sponsors/hortonworks.svg 
b/hbasecon-phoenixcon-2018/img/sponsors/hortonworks.svg
deleted file mode 100644
index c5888b0..000
--- a/hbasecon-phoenixcon-2018/img/sponsors/hortonworks.svg
+++ /dev/null
@@ -1 +0,0 @@
-http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink"; viewBox="0 0 429.67 
149.28">ui_logo
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-phoenixcon-2018/index.html
--
diff --git a/hbasecon-phoenixcon-2018/index.html 
b/hbasecon-phoenixcon-2018/index.html
deleted file mode 100644
index 7f9ae50..000
--- a/hbasecon-phoenixcon-2018/index.html
+++ /dev/null
@@ -1,315 +0,0 @@
-
-
-
-
-
-HBaseCon+PhoenixCon
-
-
-
-
-https://hbase.apache.org/hbasecon-phoenixcon//";>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-   
-
-
-
-
-
-Toggle navigation
-
-
-
-
-HBaseCon+PhoenixCon
-
-
-
-
-
-
-
-
-
-About
-
-
-  CFP
-
-
-  Registration
-
-
-
- 

[04/16] hbase-site git commit: Further separate hbasecon and phoenixcon

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-phoenixcon-2018/js/bootstrap.min.js
--
diff --git a/hbasecon-phoenixcon-2018/js/bootstrap.min.js 
b/hbasecon-phoenixcon-2018/js/bootstrap.min.js
deleted file mode 100755
index 7c1561a..000
--- a/hbasecon-phoenixcon-2018/js/bootstrap.min.js
+++ /dev/null
@@ -1,6 +0,0 @@
-/*!
- * Bootstrap v3.2.0 (http://getbootstrap.com)
- * Copyright 2011-2014 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires 
jQuery");+function(a){"use strict";function b(){var 
a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd
 otransitionend",transition:"transitionend"};for(var c in b)if(void 
0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var
 c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var 
e=function(){c||a(d).trigger(a.support.transition.end)};return 
setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return
 a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 
0}})})}(jQuery),+function(a){"use strict";function b(b){return 
this.each(function(){var 
c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new 
d(this)),"string"==type
 of b&&e[b].call(c)})}var 
c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.2.0",d.prototype.close=function(b){function
 c(){f.detach().trigger("closed.bs.alert").remove()}var 
d=a(this),e=d.attr("data-target");e||(e=d.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,""));var
 
f=a(e);b&&b.preventDefault(),f.length||(f=d.hasClass("alert")?d:d.parent()),f.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",c).emulateTransitionEnd(150):c())};var
 
e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return
 
a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use
 strict";function b(b){return this.each(function(){var 
d=a(this),e=d.data("bs.button"),f="object"==typeof 
b&&b;e||d.data("bs.button",e=new 
c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var 
c=function(b,d){this.$element=a(b)
 
,this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.2.0",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var
 
c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),d[e](null==f[b]?this.options[b]:f[b]),setTimeout(a.proxy(function(){"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var
 a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var 
c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}a&&this.$element.toggleClass("active")};var
 
d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return
 a.fn.button=d,this},a(document).on("clic
 k.bs.button.data-api",'[data-toggle^="button"]',function(c){var 
d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()})}(jQuery),+function(a){"use
 strict";function b(b){return this.each(function(){var 
d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof
 b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new 
c(this,f)),"number"==typeof 
b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var 
c=function(b,c){this.$element=a(b).on("keydown.bs.carousel",a.proxy(this.keydown,this)),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.2.0",c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0},c.prototype.keydown=function(a){switch(a.which){case
 37:this.prev();brea
 k;case 
39:this.next();break;default:return}a.preventDefault()},c.prototype.cycle=function(b){return
 
b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return
 
this.$items=a.parent().children(".item")

[11/16] hbase-site git commit: Further separate hbasecon and phoenixcon

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-2018/js/jquery-1.11.0.js
--
diff --git a/hbasecon-2018/js/jquery-1.11.0.js 
b/hbasecon-2018/js/jquery-1.11.0.js
new file mode 100755
index 000..046e93a
--- /dev/null
+++ b/hbasecon-2018/js/jquery-1.11.0.js
@@ -0,0 +1,4 @@
+/*! jQuery v1.11.0 | (c) 2005, 2014 jQuery Foundation, Inc. | 
jquery.org/license */
+!function(a,b){"object"==typeof module&&"object"==typeof 
module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw
 new Error("jQuery requires a window with a document");return 
b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var 
c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k="".trim,l={},m="1.11.0",n=function(a,b){return
 new 
n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return
 
b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return
 d.call(this)},get:function(a){return 
null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var 
b=n.merge(this.constructor(),a);return 
b.prevObject=this,b.context=this.context,b},each:function(a,b){return 
n.each(this,a,b)},map:function(a){return 
this.pushStack(n.map(this,function(b,c){return 
a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(th
 is,arguments))},first:function(){return this.eq(0)},last:function(){return 
this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return 
this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return 
this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var
 
a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof
 g&&(j=g,g=arguments[h]||{},h++),"object"==typeof 
g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d
 in 
e)a=g[d],c=e[d],g!==c&&(j&&c&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&&n.isArray(a)?a:[]):f=a&&n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void
 0!==c&&(g[d]=c));return 
g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw
 new 
Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray||function(a){return"array"===n.type(a)},isWindow:function(a){return
 n
 ull!=a&&a==a.window},isNumeric:function(a){return 
a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in 
a)return!1;return!0},isPlainObject:function(a){var 
b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(l.ownLast)for(b
 in a)return j.call(a,b);for(b in a);return void 
0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof 
a||"function"==typeof a?h[i.call(a)]||"object":typeof 
a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return
 a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return 
a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var
 
d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else
 for(e in a)if(d=b.apply(a[e],c),d===!1)break}else 
if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!
 1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return 
a},trim:k&&!k.call("\ufeff\xa0")?function(a){return 
null==a?"":k.call(a)}:function(a){return 
null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return 
null!=a&&(s(Object(a))?n.merge(c,"string"==typeof 
a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return 
g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in 
b&&b[c]===a)return c}return-1},merge:function(a,b){var 
c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 
0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var 
d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return 
e},map:function(a,b,c){var 
d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else
 for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return 
e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof 
b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=d.call(argum
 ents,2),e=function(){return 
a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||n.guid++,e):void
 0},now:function(){return+new Date},support:l}),n.each("Boolean Number String 
Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object 
"+b+"]"]=b.toLowerCase()});function s(a){var 
b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof
 b&&b>0&&b-1 in a}var t=function(a){var 
b,c,d,e,f,g,h,

[13/16] hbase-site git commit: Further separate hbasecon and phoenixcon

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-2018/js/bootstrap.js
--
diff --git a/hbasecon-2018/js/bootstrap.js b/hbasecon-2018/js/bootstrap.js
new file mode 100755
index 000..53da1c7
--- /dev/null
+++ b/hbasecon-2018/js/bootstrap.js
@@ -0,0 +1,2114 @@
+/*!
+ * Bootstrap v3.2.0 (http://getbootstrap.com)
+ * Copyright 2011-2014 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+
+if (typeof jQuery === 'undefined') { throw new Error('Bootstrap\'s JavaScript 
requires jQuery') }
+
+/* 
+ * Bootstrap: transition.js v3.2.0
+ * http://getbootstrap.com/javascript/#transitions
+ * 
+ * Copyright 2011-2014 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *  */
+
+
++function ($) {
+  'use strict';
+
+  // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
+  // 
+
+  function transitionEnd() {
+var el = document.createElement('bootstrap')
+
+var transEndEventNames = {
+  WebkitTransition : 'webkitTransitionEnd',
+  MozTransition: 'transitionend',
+  OTransition  : 'oTransitionEnd otransitionend',
+  transition   : 'transitionend'
+}
+
+for (var name in transEndEventNames) {
+  if (el.style[name] !== undefined) {
+return { end: transEndEventNames[name] }
+  }
+}
+
+return false // explicit for ie8 (  ._.)
+  }
+
+  // http://blog.alexmaccaw.com/css-transitions
+  $.fn.emulateTransitionEnd = function (duration) {
+var called = false
+var $el = this
+$(this).one('bsTransitionEnd', function () { called = true })
+var callback = function () { if (!called) 
$($el).trigger($.support.transition.end) }
+setTimeout(callback, duration)
+return this
+  }
+
+  $(function () {
+$.support.transition = transitionEnd()
+
+if (!$.support.transition) return
+
+$.event.special.bsTransitionEnd = {
+  bindType: $.support.transition.end,
+  delegateType: $.support.transition.end,
+  handle: function (e) {
+if ($(e.target).is(this)) return e.handleObj.handler.apply(this, 
arguments)
+  }
+}
+  })
+
+}(jQuery);
+
+/* 
+ * Bootstrap: alert.js v3.2.0
+ * http://getbootstrap.com/javascript/#alerts
+ * 
+ * Copyright 2011-2014 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *  */
+
+
++function ($) {
+  'use strict';
+
+  // ALERT CLASS DEFINITION
+  // ==
+
+  var dismiss = '[data-dismiss="alert"]'
+  var Alert   = function (el) {
+$(el).on('click', dismiss, this.close)
+  }
+
+  Alert.VERSION = '3.2.0'
+
+  Alert.prototype.close = function (e) {
+var $this= $(this)
+var selector = $this.attr('data-target')
+
+if (!selector) {
+  selector = $this.attr('href')
+  selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip 
for ie7
+}
+
+var $parent = $(selector)
+
+if (e) e.preventDefault()
+
+if (!$parent.length) {
+  $parent = $this.hasClass('alert') ? $this : $this.parent()
+}
+
+$parent.trigger(e = $.Event('close.bs.alert'))
+
+if (e.isDefaultPrevented()) return
+
+$parent.removeClass('in')
+
+function removeElement() {
+  // detach from parent, fire event then clean up data
+  $parent.detach().trigger('closed.bs.alert').remove()
+}
+
+$.support.transition && $parent.hasClass('fade') ?
+  $parent
+.one('bsTransitionEnd', removeElement)
+.emulateTransitionEnd(150) :
+  removeElement()
+  }
+
+
+  // ALERT PLUGIN DEFINITION
+  // ===
+
+  function Plugin(option) {
+return this.each(function () {
+  var $this = $(this)
+  var data  = $this.data('bs.alert')
+
+  if (!data) $this.data('bs.alert', (data = new Alert(this)))
+  if (typeof option == 'string') data[option].call($this)
+})
+  }
+
+  var old = $.fn.alert
+
+  $.fn.alert = Plugin
+  $.fn.alert.Constructor = Alert
+
+
+  // ALERT NO CONFLICT
+  // =
+
+  $.fn.alert.noConflict = function () {
+$.fn.alert = old
+return this
+  }
+
+
+  // ALERT DATA-API
+  // ==
+
+  $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close)
+
+}(jQuery);
+
+/* 
+ * Bootstrap: button.js v3.2.0
+ * http://getbootstrap.com/javascript/#bu

[03/16] hbase-site git commit: Further separate hbasecon and phoenixcon

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-phoenixcon-2018/js/jquery-1.11.0.js
--
diff --git a/hbasecon-phoenixcon-2018/js/jquery-1.11.0.js 
b/hbasecon-phoenixcon-2018/js/jquery-1.11.0.js
deleted file mode 100755
index 046e93a..000
--- a/hbasecon-phoenixcon-2018/js/jquery-1.11.0.js
+++ /dev/null
@@ -1,4 +0,0 @@
-/*! jQuery v1.11.0 | (c) 2005, 2014 jQuery Foundation, Inc. | 
jquery.org/license */
-!function(a,b){"object"==typeof module&&"object"==typeof 
module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw
 new Error("jQuery requires a window with a document");return 
b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var 
c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k="".trim,l={},m="1.11.0",n=function(a,b){return
 new 
n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return
 
b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return
 d.call(this)},get:function(a){return 
null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var 
b=n.merge(this.constructor(),a);return 
b.prevObject=this,b.context=this.context,b},each:function(a,b){return 
n.each(this,a,b)},map:function(a){return 
this.pushStack(n.map(this,function(b,c){return 
a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(th
 is,arguments))},first:function(){return this.eq(0)},last:function(){return 
this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return 
this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return 
this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var
 
a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof
 g&&(j=g,g=arguments[h]||{},h++),"object"==typeof 
g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d
 in 
e)a=g[d],c=e[d],g!==c&&(j&&c&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&&n.isArray(a)?a:[]):f=a&&n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void
 0!==c&&(g[d]=c));return 
g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw
 new 
Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray||function(a){return"array"===n.type(a)},isWindow:function(a){return
 n
 ull!=a&&a==a.window},isNumeric:function(a){return 
a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in 
a)return!1;return!0},isPlainObject:function(a){var 
b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(l.ownLast)for(b
 in a)return j.call(a,b);for(b in a);return void 
0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof 
a||"function"==typeof a?h[i.call(a)]||"object":typeof 
a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return
 a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return 
a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var
 
d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else
 for(e in a)if(d=b.apply(a[e],c),d===!1)break}else 
if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!
 1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return 
a},trim:k&&!k.call("\ufeff\xa0")?function(a){return 
null==a?"":k.call(a)}:function(a){return 
null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return 
null!=a&&(s(Object(a))?n.merge(c,"string"==typeof 
a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return 
g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in 
b&&b[c]===a)return c}return-1},merge:function(a,b){var 
c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 
0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var 
d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return 
e},map:function(a,b,c){var 
d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else
 for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return 
e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof 
b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=d.call(argum
 ents,2),e=function(){return 
a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||n.guid++,e):void
 0},now:function(){return+new Date},support:l}),n.each("Boolean Number String 
Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object 
"+b+"]"]=b.toLowerCase()});function s(a){var 
b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof
 b&&b>0

[12/16] hbase-site git commit: Further separate hbasecon and phoenixcon

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-2018/js/bootstrap.min.js
--
diff --git a/hbasecon-2018/js/bootstrap.min.js 
b/hbasecon-2018/js/bootstrap.min.js
new file mode 100755
index 000..7c1561a
--- /dev/null
+++ b/hbasecon-2018/js/bootstrap.min.js
@@ -0,0 +1,6 @@
+/*!
+ * Bootstrap v3.2.0 (http://getbootstrap.com)
+ * Copyright 2011-2014 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires 
jQuery");+function(a){"use strict";function b(){var 
a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd
 otransitionend",transition:"transitionend"};for(var c in b)if(void 
0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var
 c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var 
e=function(){c||a(d).trigger(a.support.transition.end)};return 
setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return
 a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 
0}})})}(jQuery),+function(a){"use strict";function b(b){return 
this.each(function(){var 
c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new 
d(this)),"string"==type
 of b&&e[b].call(c)})}var 
c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.2.0",d.prototype.close=function(b){function
 c(){f.detach().trigger("closed.bs.alert").remove()}var 
d=a(this),e=d.attr("data-target");e||(e=d.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,""));var
 
f=a(e);b&&b.preventDefault(),f.length||(f=d.hasClass("alert")?d:d.parent()),f.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",c).emulateTransitionEnd(150):c())};var
 
e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return
 
a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use
 strict";function b(b){return this.each(function(){var 
d=a(this),e=d.data("bs.button"),f="object"==typeof 
b&&b;e||d.data("bs.button",e=new 
c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var 
c=function(b,d){this.$element=a(b)
 
,this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.2.0",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var
 
c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),d[e](null==f[b]?this.options[b]:f[b]),setTimeout(a.proxy(function(){"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var
 a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var 
c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}a&&this.$element.toggleClass("active")};var
 
d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return
 a.fn.button=d,this},a(document).on("clic
 k.bs.button.data-api",'[data-toggle^="button"]',function(c){var 
d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),c.preventDefault()})}(jQuery),+function(a){"use
 strict";function b(b){return this.each(function(){var 
d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof
 b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new 
c(this,f)),"number"==typeof 
b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var 
c=function(b,c){this.$element=a(b).on("keydown.bs.carousel",a.proxy(this.keydown,this)),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.2.0",c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0},c.prototype.keydown=function(a){switch(a.which){case
 37:this.prev();brea
 k;case 
39:this.next();break;default:return}a.preventDefault()},c.prototype.cycle=function(b){return
 
b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return
 
this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype

[02/16] hbase-site git commit: Further separate hbasecon and phoenixcon

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-phoenixcon-2018/js/jquery.easing.min.js
--
diff --git a/hbasecon-phoenixcon-2018/js/jquery.easing.min.js 
b/hbasecon-phoenixcon-2018/js/jquery.easing.min.js
deleted file mode 100644
index 4a54fcd..000
--- a/hbasecon-phoenixcon-2018/js/jquery.easing.min.js
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
- *
- * Uses the built in easing capabilities added In jQuery 1.1
- * to offer multiple easing options
- *
- * TERMS OF USE - EASING EQUATIONS
- *
- * Open source under the BSD License.
- *
- * Copyright © 2001 Robert Penner
- * All rights reserved.
- *
- * TERMS OF USE - jQuery Easing
- *
- * Open source under the BSD License.
- *
- * Copyright © 2008 George McGinley Smith
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without 
modification,
- * are permitted provided that the following conditions are met:
- *
- * Redistributions of source code must retain the above copyright notice, this 
list of
- * conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright notice, 
this list
- * of conditions and the following disclaimer in the documentation and/or 
other materials
- * provided with the distribution.
- *
- * Neither the name of the author nor the names of contributors may be used to 
endorse
- * or promote products derived from this software without specific prior 
written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
WARRANTIES OF
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 
EVENT SHALL THE
- *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 
INCIDENTAL, SPECIAL,
- *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
PROCUREMENT OF SUBSTITUTE
- *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
INTERRUPTION) HOWEVER CAUSED
- * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR 
TORT (INCLUDING
- *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
SOFTWARE, EVEN IF ADVISED
- * OF THE POSSIBILITY OF SUCH DAMAGE.
- *
-*/
-jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,f,a,h,g){return
 
jQuery.easing[jQuery.easing.def](e,f,a,h,g)},easeInQuad:function(e,f,a,h,g){return
 h*(f/=g)*f+a},easeOutQuad:function(e,f,a,h,g){return 
-h*(f/=g)*(f-2)+a},easeInOutQuad:function(e,f,a,h,g){if((f/=g/2)<1){return 
h/2*f*f+a}return -h/2*((--f)*(f-2)-1)+a},easeInCubic:function(e,f,a,h,g){return 
h*(f/=g)*f*f+a},easeOutCubic:function(e,f,a,h,g){return 
h*((f=f/g-1)*f*f+1)+a},easeInOutCubic:function(e,f,a,h,g){if((f/=g/2)<1){return 
h/2*f*f*f+a}return h/2*((f-=2)*f*f+2)+a},easeInQuart:function(e,f,a,h,g){return 
h*(f/=g)*f*f*f+a},easeOutQuart:function(e,f,a,h,g){return 
-h*((f=f/g-1)*f*f*f-1)+a},easeInOutQuart:function(e,f,a,h,g){if((f/=g/2)<1){return
 h/2*f*f*f*f+a}return 
-h/2*((f-=2)*f*f*f-2)+a},easeInQuint:function(e,f,a,h,g){return 
h*(f/=g)*f*f*f*f+a},easeOutQuint:function(e,f,a,h,g){return 
h*((f=f/g-1)*f*f*f*f+1)+a},easeInOutQuint:function(e,f,a,h,g){if((f/=g/2)<1){return
  h/2*f*f*f*f*f+a}return 
h/2*((f-=2)*f*f*f*f+2)+a},easeInSine:function(e,f,a,h,g){return 
-h*Math.cos(f/g*(Math.PI/2))+h+a},easeOutSine:function(e,f,a,h,g){return 
h*Math.sin(f/g*(Math.PI/2))+a},easeInOutSine:function(e,f,a,h,g){return 
-h/2*(Math.cos(Math.PI*f/g)-1)+a},easeInExpo:function(e,f,a,h,g){return(f==0)?a:h*Math.pow(2,10*(f/g-1))+a},easeOutExpo:function(e,f,a,h,g){return(f==g)?a+h:h*(-Math.pow(2,-10*f/g)+1)+a},easeInOutExpo:function(e,f,a,h,g){if(f==0){return
 a}if(f==g){return a+h}if((f/=g/2)<1){return h/2*Math.pow(2,10*(f-1))+a}return 
h/2*(-Math.pow(2,-10*--f)+2)+a},easeInCirc:function(e,f,a,h,g){return 
-h*(Math.sqrt(1-(f/=g)*f)-1)+a},easeOutCirc:function(e,f,a,h,g){return 
h*Math.sqrt(1-(f=f/g-1)*f)+a},easeInOutCirc:function(e,f,a,h,g){if((f/=g/2)<1){return
 -h/2*(Math.sqrt(1-f*f)-1)+a}return 
h/2*(Math.sqrt(1-(f-=2)*f)+1)+a},easeInElastic:function(f,h,e,l,k){var 
i=1.70158;var j=0;var g=l;if(h==0){return e}if((h/=k)==1){return 
e+l}if(!j){j=k*0.3}if(g

[15/16] hbase-site git commit: Further separate hbasecon and phoenixcon

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-2018/css/font-awesome/fonts/fontawesome-webfont.svg
--
diff --git a/hbasecon-2018/css/font-awesome/fonts/fontawesome-webfont.svg 
b/hbasecon-2018/css/font-awesome/fonts/fontawesome-webfont.svg
new file mode 100755
index 000..a9f8469
--- /dev/null
+++ b/hbasecon-2018/css/font-awesome/fonts/fontawesome-webfont.svg
@@ -0,0 +1,504 @@
+
+http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"; >
+http://www.w3.org/2000/svg";>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-2018/css/font-awesome/fonts/fontawesome-webfont.ttf
--
diff --git a/hbasecon-2018/css/font-awesome/fonts/fontawesome-webfont.ttf 
b/hbasecon-2018/css/font-awesome/fonts/fontawesome-webfont.ttf
new file mode 100755
index 000..5cd6cff
Binary files /dev/null and 
b/hbasecon-2018/css/font-awesome/fonts/fontawesome-webfont.ttf differ



[09/16] hbase-site git commit: Further separate hbasecon and phoenixcon

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-2018/style.css
--
diff --git a/hbasecon-2018/style.css b/hbasecon-2018/style.css
new file mode 100644
index 000..e0514ef
--- /dev/null
+++ b/hbasecon-2018/style.css
@@ -0,0 +1,484 @@
+/*!
+ * Bootswatch v3.2.0
+ * Homepage: http://bootswatch.com
+ * Copyright 2012-2014 Thomas Park
+ * Licensed under MIT
+ * Based on Bootstrap
+*//*! normalize.css v3.0.1 | MIT License | git.io/normalize 
*/html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px
 
dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em
 
0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em
 
40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,
 monospace;font-size:1em}button,input,optgroup,select,textarea{colo
 
r:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html
 
input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html
 
input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px
 solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 
0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{pa
 dding:0}@media print{*{text-shadow:none !important;color:#000 
!important;background:transparent !important;box-shadow:none 
!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" 
attr(href) ")"}abbr[title]:after{content:" (" attr(title) 
")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px
 solid 
#999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%
 
!important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff
 !important}.navbar{display:none}.table td,.table th{background-color:#fff 
!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 
!important}.label{border:1px solid #000}.table{border-collapse:collapse 
!important}.table-bordered th,.table-bordered td{border:1px solid #ddd 
!important}}@font-face{font-family:'Glyphicons 
Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot
 ?#iefix') 
format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') 
format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') 
format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular')
 
format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons
 
Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e0
 
07"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphic

[16/16] hbase-site git commit: Further separate hbasecon and phoenixcon

Further separate hbasecon and phoenixcon


Project: http://git-wip-us.apache.org/repos/asf/hbase-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase-site/commit/d6af018f
Tree: http://git-wip-us.apache.org/repos/asf/hbase-site/tree/d6af018f
Diff: http://git-wip-us.apache.org/repos/asf/hbase-site/diff/d6af018f

Branch: refs/heads/asf-site
Commit: d6af018fe92c38cc6bf12468258ed592ecdaec8e
Parents: 3ed18e3
Author: Josh Elser 
Authored: Thu Mar 22 14:29:18 2018 -0400
Committer: Josh Elser 
Committed: Thu Mar 22 14:29:18 2018 -0400

--
 hbasecon-2018/LICENCE   |  201 ++
 hbasecon-2018/README.md |   13 +
 .../css/font-awesome/css/font-awesome.css   | 1566 +
 .../css/font-awesome/css/font-awesome.min.css   |4 +
 .../css/font-awesome/fonts/FontAwesome.otf  |  Bin 0 -> 75188 bytes
 .../font-awesome/fonts/fontawesome-webfont.eot  |  Bin 0 -> 72449 bytes
 .../font-awesome/fonts/fontawesome-webfont.svg  |  504 +
 .../font-awesome/fonts/fontawesome-webfont.ttf  |  Bin 0 -> 141564 bytes
 .../font-awesome/fonts/fontawesome-webfont.woff |  Bin 0 -> 83760 bytes
 hbasecon-2018/feed.xml  |   22 +
 hbasecon-2018/img/hbase.png |  Bin 0 -> 21196 bytes
 hbasecon-2018/img/phoenix.png   |  Bin 0 -> 9552 bytes
 hbasecon-2018/img/sponsors/asf.png  |  Bin 0 -> 21243 bytes
 hbasecon-2018/img/sponsors/hortonworks.svg  |1 +
 hbasecon-2018/index.html|  310 +++
 hbasecon-2018/js/bootstrap.js   | 2114 ++
 hbasecon-2018/js/bootstrap.min.js   |6 +
 hbasecon-2018/js/cbpAnimatedHeader.js   |   44 +
 hbasecon-2018/js/cbpAnimatedHeader.min.js   |   11 +
 hbasecon-2018/js/classie.js |   80 +
 hbasecon-2018/js/freelancer.js  |   37 +
 hbasecon-2018/js/jqBootstrapValidation.js   |  912 
 hbasecon-2018/js/jquery-1.11.0.js   |4 +
 hbasecon-2018/js/jquery.easing.min.js   |   44 +
 hbasecon-2018/style.css |  484 
 hbasecon-phoenixcon-2018/LICENCE|  201 --
 hbasecon-phoenixcon-2018/README.md  |   13 -
 .../css/font-awesome/css/font-awesome.css   | 1566 -
 .../css/font-awesome/css/font-awesome.min.css   |4 -
 .../css/font-awesome/fonts/FontAwesome.otf  |  Bin 75188 -> 0 bytes
 .../font-awesome/fonts/fontawesome-webfont.eot  |  Bin 72449 -> 0 bytes
 .../font-awesome/fonts/fontawesome-webfont.svg  |  504 -
 .../font-awesome/fonts/fontawesome-webfont.ttf  |  Bin 141564 -> 0 bytes
 .../font-awesome/fonts/fontawesome-webfont.woff |  Bin 83760 -> 0 bytes
 hbasecon-phoenixcon-2018/feed.xml   |   22 -
 hbasecon-phoenixcon-2018/img/profile.png|  Bin 21196 -> 0 bytes
 hbasecon-phoenixcon-2018/img/profile2.png   |  Bin 9552 -> 0 bytes
 hbasecon-phoenixcon-2018/img/sponsors/asf.png   |  Bin 21243 -> 0 bytes
 .../img/sponsors/hortonworks.svg|1 -
 hbasecon-phoenixcon-2018/index.html |  315 ---
 hbasecon-phoenixcon-2018/js/bootstrap.js| 2114 --
 hbasecon-phoenixcon-2018/js/bootstrap.min.js|6 -
 .../js/cbpAnimatedHeader.js |   44 -
 .../js/cbpAnimatedHeader.min.js |   11 -
 hbasecon-phoenixcon-2018/js/classie.js  |   80 -
 hbasecon-phoenixcon-2018/js/freelancer.js   |   37 -
 .../js/jqBootstrapValidation.js |  912 
 hbasecon-phoenixcon-2018/js/jquery-1.11.0.js|4 -
 .../js/jquery.easing.min.js |   44 -
 hbasecon-phoenixcon-2018/style.css  |  484 
 50 files changed, 6357 insertions(+), 6362 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-2018/LICENCE
--
diff --git a/hbasecon-2018/LICENCE b/hbasecon-2018/LICENCE
new file mode 100644
index 000..8dada3e
--- /dev/null
+++ b/hbasecon-2018/LICENCE
@@ -0,0 +1,201 @@
+ Apache License
+   Version 2.0, January 2004
+http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+  "License" shall mean the terms and conditions for use, reproduction,
+  and distribution as defined by Sections 1 through 9 of this document.
+
+  "Licensor" shall mean the copyright owner or entity authorized by
+  the copyright owner that is granting the License.
+
+  "Legal Entity" shall mean the union of the acting entity and all
+  other entities that control, are controlled by, or are under common
+  control with that entity. For the purpose

[01/16] hbase-site git commit: Further separate hbasecon and phoenixcon

Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 3ed18e352 -> d6af018fe


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-phoenixcon-2018/style.css
--
diff --git a/hbasecon-phoenixcon-2018/style.css 
b/hbasecon-phoenixcon-2018/style.css
deleted file mode 100644
index e0514ef..000
--- a/hbasecon-phoenixcon-2018/style.css
+++ /dev/null
@@ -1,484 +0,0 @@
-/*!
- * Bootswatch v3.2.0
- * Homepage: http://bootswatch.com
- * Copyright 2012-2014 Thomas Park
- * Licensed under MIT
- * Based on Bootstrap
-*//*! normalize.css v3.0.1 | MIT License | git.io/normalize 
*/html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px
 
dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em
 
0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em
 
40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,
 monospace;font-size:1em}button,input,optgroup,select,textarea{colo
 
r:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html
 
input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html
 
input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px
 solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 
0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{pa
 dding:0}@media print{*{text-shadow:none !important;color:#000 
!important;background:transparent !important;box-shadow:none 
!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" 
attr(href) ")"}abbr[title]:after{content:" (" attr(title) 
")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px
 solid 
#999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%
 
!important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff
 !important}.navbar{display:none}.table td,.table th{background-color:#fff 
!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 
!important}.label{border:1px solid #000}.table{border-collapse:collapse 
!important}.table-bordered th,.table-bordered td{border:1px solid #ddd 
!important}}@font-face{font-family:'Glyphicons 
Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot
 ?#iefix') 
format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') 
format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') 
format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular')
 
format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons
 
Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e0
 
07"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{cont

[14/16] hbase-site git commit: Further separate hbasecon and phoenixcon

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-2018/css/font-awesome/fonts/fontawesome-webfont.woff
--
diff --git a/hbasecon-2018/css/font-awesome/fonts/fontawesome-webfont.woff 
b/hbasecon-2018/css/font-awesome/fonts/fontawesome-webfont.woff
new file mode 100755
index 000..9eaecb3
Binary files /dev/null and 
b/hbasecon-2018/css/font-awesome/fonts/fontawesome-webfont.woff differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-2018/feed.xml
--
diff --git a/hbasecon-2018/feed.xml b/hbasecon-2018/feed.xml
new file mode 100644
index 000..de189f8
--- /dev/null
+++ b/hbasecon-2018/feed.xml
@@ -0,0 +1,22 @@
+
+
+http://www.w3.org/2005/Atom"; >
+  https://jekyllrb.com/"; version="3.7.3">Jekyll
+  https://hbase.apache.org/hbasecon-2018//hbasecon-2018/feed.xml"; 
rel="self" type="application/atom+xml" />
+  https://hbase.apache.org/hbasecon-2018//hbasecon-2018/"; 
rel="alternate" type="text/html" />
+  2018-03-22T14:26:15-04:00
+  https://hbase.apache.org/hbasecon-2018//hbasecon-2018/
+
+  
+HBaseCon
+  
+
+  
+HBaseCon 2018
+  
+
+  
+
+  
+  
+

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-2018/img/hbase.png
--
diff --git a/hbasecon-2018/img/hbase.png b/hbasecon-2018/img/hbase.png
new file mode 100755
index 000..e91eb8d
Binary files /dev/null and b/hbasecon-2018/img/hbase.png differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-2018/img/phoenix.png
--
diff --git a/hbasecon-2018/img/phoenix.png b/hbasecon-2018/img/phoenix.png
new file mode 100644
index 000..d5f32ec
Binary files /dev/null and b/hbasecon-2018/img/phoenix.png differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-2018/img/sponsors/asf.png
--
diff --git a/hbasecon-2018/img/sponsors/asf.png 
b/hbasecon-2018/img/sponsors/asf.png
new file mode 100644
index 000..b20bb7f
Binary files /dev/null and b/hbasecon-2018/img/sponsors/asf.png differ

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-2018/img/sponsors/hortonworks.svg
--
diff --git a/hbasecon-2018/img/sponsors/hortonworks.svg 
b/hbasecon-2018/img/sponsors/hortonworks.svg
new file mode 100644
index 000..c5888b0
--- /dev/null
+++ b/hbasecon-2018/img/sponsors/hortonworks.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg"; 
xmlns:xlink="http://www.w3.org/1999/xlink"; viewBox="0 0 429.67 
149.28">ui_logo
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-2018/index.html
--
diff --git a/hbasecon-2018/index.html b/hbasecon-2018/index.html
new file mode 100644
index 000..9e41cf2
--- /dev/null
+++ b/hbasecon-2018/index.html
@@ -0,0 +1,310 @@
+
+
+
+
+
+HBaseCon
+
+
+
+
+https://hbase.apache.org/hbasecon-2018//";>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+
+
+
+
+Toggle navigation
+
+
+
+
+HBaseCon
+
+
+
+
+
+
+
+
+
+About
+
+
+  CFP
+
+
+  Registration
+
+
+
+Sponsors
+
+
+Contact
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+HBaseCon
+June 18th, 2018 - Joseph McEnery 
Convention Center, San Jose, CA
+
+
+
+
+
+
+
+ 
+
+
+
+
+About
+
+
+
+
+HBaseCon (founded in 2012) is the premier conference 
for the https://hbase.apache.org";>Apache HBase
+ community—including committers/contributors, 
developers, operators, learners, and users (including some of those
+  

[07/16] hbase-site git commit: Further separate hbasecon and phoenixcon

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-phoenixcon-2018/css/font-awesome/fonts/fontawesome-webfont.svg
--
diff --git 
a/hbasecon-phoenixcon-2018/css/font-awesome/fonts/fontawesome-webfont.svg 
b/hbasecon-phoenixcon-2018/css/font-awesome/fonts/fontawesome-webfont.svg
deleted file mode 100755
index a9f8469..000
--- a/hbasecon-phoenixcon-2018/css/font-awesome/fonts/fontawesome-webfont.svg
+++ /dev/null
@@ -1,504 +0,0 @@
-
-http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"; >
-http://www.w3.org/2000/svg";>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

[08/16] hbase-site git commit: Further separate hbasecon and phoenixcon

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6af018f/hbasecon-phoenixcon-2018/LICENCE
--
diff --git a/hbasecon-phoenixcon-2018/LICENCE b/hbasecon-phoenixcon-2018/LICENCE
deleted file mode 100644
index 8dada3e..000
--- a/hbasecon-phoenixcon-2018/LICENCE
+++ /dev/null
@@ -1,201 +0,0 @@
- Apache License
-   Version 2.0, January 2004
-http://www.apache.org/licenses/
-
-   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
-   1. Definitions.
-
-  "License" shall mean the terms and conditions for use, reproduction,
-  and distribution as defined by Sections 1 through 9 of this document.
-
-  "Licensor" shall mean the copyright owner or entity authorized by
-  the copyright owner that is granting the License.
-
-  "Legal Entity" shall mean the union of the acting entity and all
-  other entities that control, are controlled by, or are under common
-  control with that entity. For the purposes of this definition,
-  "control" means (i) the power, direct or indirect, to cause the
-  direction or management of such entity, whether by contract or
-  otherwise, or (ii) ownership of fifty percent (50%) or more of the
-  outstanding shares, or (iii) beneficial ownership of such entity.
-
-  "You" (or "Your") shall mean an individual or Legal Entity
-  exercising permissions granted by this License.
-
-  "Source" form shall mean the preferred form for making modifications,
-  including but not limited to software source code, documentation
-  source, and configuration files.
-
-  "Object" form shall mean any form resulting from mechanical
-  transformation or translation of a Source form, including but
-  not limited to compiled object code, generated documentation,
-  and conversions to other media types.
-
-  "Work" shall mean the work of authorship, whether in Source or
-  Object form, made available under the License, as indicated by a
-  copyright notice that is included in or attached to the work
-  (an example is provided in the Appendix below).
-
-  "Derivative Works" shall mean any work, whether in Source or Object
-  form, that is based on (or derived from) the Work and for which the
-  editorial revisions, annotations, elaborations, or other modifications
-  represent, as a whole, an original work of authorship. For the purposes
-  of this License, Derivative Works shall not include works that remain
-  separable from, or merely link (or bind by name) to the interfaces of,
-  the Work and Derivative Works thereof.
-
-  "Contribution" shall mean any work of authorship, including
-  the original version of the Work and any modifications or additions
-  to that Work or Derivative Works thereof, that is intentionally
-  submitted to Licensor for inclusion in the Work by the copyright owner
-  or by an individual or Legal Entity authorized to submit on behalf of
-  the copyright owner. For the purposes of this definition, "submitted"
-  means any form of electronic, verbal, or written communication sent
-  to the Licensor or its representatives, including but not limited to
-  communication on electronic mailing lists, source code control systems,
-  and issue tracking systems that are managed by, or on behalf of, the
-  Licensor for the purpose of discussing and improving the Work, but
-  excluding communication that is conspicuously marked or otherwise
-  designated in writing by the copyright owner as "Not a Contribution."
-
-  "Contributor" shall mean Licensor and any individual or Legal Entity
-  on behalf of whom a Contribution has been received by Licensor and
-  subsequently incorporated within the Work.
-
-   2. Grant of Copyright License. Subject to the terms and conditions of
-  this License, each Contributor hereby grants to You a perpetual,
-  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-  copyright license to reproduce, prepare Derivative Works of,
-  publicly display, publicly perform, sublicense, and distribute the
-  Work and such Derivative Works in Source or Object form.
-
-   3. Grant of Patent License. Subject to the terms and conditions of
-  this License, each Contributor hereby grants to You a perpetual,
-  worldwide, non-exclusive, no-charge, royalty-free, irrevocable
-  (except as stated in this section) patent license to make, have made,
-  use, offer to sell, sell, import, and otherwise transfer the Work,
-  where such license applies only to those patent claims licensable
-  by such Contributor that are necessarily infringed by their
-  Contribution(s) alone or by combination of their Contribution(s)
-  with the Work to which such Contribution(s) was submitted

hbase git commit: HBASE-16412 Warnings from asciidoc

Repository: hbase
Updated Branches:
  refs/heads/master 5d1b2110d -> 0ef41f895


HBASE-16412 Warnings from asciidoc


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/0ef41f89
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/0ef41f89
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/0ef41f89

Branch: refs/heads/master
Commit: 0ef41f895572f0f839782e4c87249e0f2a2af6f1
Parents: 5d1b211
Author: Michael Stack 
Authored: Thu Mar 22 05:40:37 2018 -0700
Committer: Michael Stack 
Committed: Thu Mar 22 12:22:29 2018 -0700

--
 src/main/asciidoc/_chapters/backup_restore.adoc |  52 +++
 src/main/asciidoc/_chapters/developer.adoc  |  12 +++--
 .../resources/images/backup-app-components.png  | Bin 24366 -> 0 bytes
 .../resources/images/backup-cloud-appliance.png | Bin 30114 -> 0 bytes
 .../images/backup-dedicated-cluster.png | Bin 24950 -> 0 bytes
 .../resources/images/backup-intra-cluster.png   | Bin 19348 -> 0 bytes
 .../resources/images/backup-app-components.png  | Bin 0 -> 24366 bytes
 .../resources/images/backup-cloud-appliance.png | Bin 0 -> 30114 bytes
 .../images/backup-dedicated-cluster.png | Bin 0 -> 24950 bytes
 .../resources/images/backup-intra-cluster.png   | Bin 0 -> 19348 bytes
 10 files changed, 28 insertions(+), 36 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/0ef41f89/src/main/asciidoc/_chapters/backup_restore.adoc
--
diff --git a/src/main/asciidoc/_chapters/backup_restore.adoc 
b/src/main/asciidoc/_chapters/backup_restore.adoc
index a9dbcf5..4e6c506 100644
--- a/src/main/asciidoc/_chapters/backup_restore.adoc
+++ b/src/main/asciidoc/_chapters/backup_restore.adoc
@@ -710,66 +710,54 @@ image::backup-app-components.png[]
 The following is an outline of the steps and examples of commands that are 
used to backup the data for the _green_ application and
 to recover the data later. All commands are run when logged in as HBase 
superuser.
 
-1. A backup set called _green_set_ is created as an alias for both the 
transactions table and the customer table. The backup set can
+* A backup set called _green_set_ is created as an alias for both the 
transactions table and the customer table. The backup set can
 be used for all operations to avoid typing each table name. The backup set 
name is case-sensitive and should be formed with only
 printable characters and without spaces.
 
-[source]
-
-$ hbase backup set add green_set transactions
-$ hbase backup set add green_set customer
-
+ $ hbase backup set add green_set transactions
+ $ hbase backup set add green_set customer
 
-2. The first backup of green_set data must be a full backup. The following 
command example shows how credentials are passed to Amazon
+* The first backup of green_set data must be a full backup. The following 
command example shows how credentials are passed to Amazon
 S3 and specifies the file system with the s3a: prefix.
 
-[source]
-
-$ ACCESS_KEY=ABCDEFGHIJKLMNOPQRST
-$ SECRET_KEY=123456789abcdefghijklmnopqrstuvwxyzABCD
-$ sudo -u hbase hbase backup create full\
-  s3a://$ACCESS_KEY:SECRET_KEY@prodhbasebackups/backups -s green_set
-
+ $ ACCESS_KEY=ABCDEFGHIJKLMNOPQRST
+ $ SECRET_KEY=123456789abcdefghijklmnopqrstuvwxyzABCD
+ $ sudo -u hbase hbase backup create full\
+   s3a://$ACCESS_KEY:SECRET_KEY@prodhbasebackups/backups -s green_set
 
-3. Incremental backups should be run according to a schedule that ensures 
essential data recovery in the event of a catastrophe. At
+* Incremental backups should be run according to a schedule that ensures 
essential data recovery in the event of a catastrophe. At
 this retail company, the HBase admin team decides that automated daily backups 
secures the data sufficiently. The team decides that
 they can implement this by modifying an existing Cron job that is defined in 
`/etc/crontab`. Consequently, IT modifies the Cron job
 by adding the following line:
 
-[source]
-
-@daily hbase hbase backup create incremental 
s3a://$ACCESS_KEY:$SECRET_KEY@prodhbasebackups/backups -s green_set
-
+ @daily hbase hbase backup create incremental 
s3a://$ACCESS_KEY:$SECRET_KEY@prodhbasebackups/backups -s green_set
 
-4. A catastrophic IT incident disables the production cluster that the green 
application uses. An HBase system administrator of the
+* A catastrophic IT incident disables the production cluster that the green 
application uses. An HBase system administrator of the
 backup cluster must restore the _green_set_ dataset to the point in time 
closest to the recovery objective.
-
++
 NOTE: If the administrator of the backup HBase cluster has the backup ID with 
relevant details in accessible records, the following
 search with the `hdfs dfs -ls` c

hbase git commit: HBASE-18626 Handle the incompatible change about the replication TableCFs' config

Repository: hbase
Updated Branches:
  refs/heads/master 0ef41f895 -> 4cdca34ac


HBASE-18626 Handle the incompatible change about the replication TableCFs' 
config

Signed-off-by: Andrew Purtell 


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/4cdca34a
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/4cdca34a
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/4cdca34a

Branch: refs/heads/master
Commit: 4cdca34ace9e2e9a25cd5fbf7f76b7a8be4266d1
Parents: 0ef41f8
Author: Guanghao Zhang 
Authored: Sat Nov 18 15:33:08 2017 +0800
Committer: Sean Busbey 
Committed: Thu Mar 22 15:52:53 2018 -0500

--
 src/main/asciidoc/_chapters/upgrading.adoc | 20 
 1 file changed, 20 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/4cdca34a/src/main/asciidoc/_chapters/upgrading.adoc
--
diff --git a/src/main/asciidoc/_chapters/upgrading.adoc 
b/src/main/asciidoc/_chapters/upgrading.adoc
index fd8a86a..0747ffb 100644
--- a/src/main/asciidoc/_chapters/upgrading.adoc
+++ b/src/main/asciidoc/_chapters/upgrading.adoc
@@ -324,6 +324,26 @@ Quitting...
 
 == Upgrade Paths
 
+[[upgrade1.4]]
+=== Upgrading to 1.4+
+
+ Replication peer's TableCFs config
+
+Before 1.4, the table name can't include namespace for replication peer's 
TableCFs config. It was fixed by add TableCFs to ReplicationPeerConfig which 
was stored on Zookeeper. So when upgrade to 1.4, you have to update the 
original ReplicationPeerConfig data on Zookeeper firstly. There are four steps 
to upgrade when your cluster have a replication peer with TableCFs config.
+
+* Disable the replication peer.
+* If master has permission to write replication peer znode, then rolling 
update master directly. If not, use TableCFsUpdater tool to update the 
replication peer's config.
+[source,bash]
+
+$ bin/hbase org.apache.hadoop.hbase.replication.master.TableCFsUpdater update
+
+* Rolling update regionservers.
+* Enable the replication peer.
+
+Notes:
+
+* Can't use the old client(before 1.4) to change the replication peer's 
config. Because the client will write config to Zookeeper directly, the old 
client will miss TableCFs config. And the old client write TableCFs config to 
the old tablecfs znode, it will not work for new version regionserver.
+
 [[upgrade1.0]]
 === Upgrading from 0.98.x to 1.x
 



hbase git commit: HBASE-20224 Web UI is broken in standalone mode

Repository: hbase
Updated Branches:
  refs/heads/master 4cdca34ac -> c614b9f3e


HBASE-20224 Web UI is broken in standalone mode

Changes for HBASE-20027 seem to cause UI not showing up on default port in 
standalone mode. For concurrent
unit test execution, individual tests can set 
hbase.localcluster.assign.random.ports to true or modify
test/resources/hbase-site.xml.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/c614b9f3
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/c614b9f3
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/c614b9f3

Branch: refs/heads/master
Commit: c614b9f3e8fe1400b600fd1c109bca3fc784a382
Parents: 4cdca34
Author: Umesh Agashe 
Authored: Wed Mar 21 12:48:18 2018 -0700
Committer: Michael Stack 
Committed: Thu Mar 22 20:27:39 2018 -0700

--
 hbase-client/src/test/resources/hbase-site.xml  |  7 
 .../src/test/resources/hbase-site.xml   |  7 
 .../src/test/resources/hbase-site.xml   |  7 
 hbase-rest/src/test/resources/hbase-site.xml|  7 
 .../apache/hadoop/hbase/LocalHBaseCluster.java  |  2 +-
 .../apache/hadoop/hbase/MiniHBaseCluster.java   |  2 +-
 hbase-server/src/test/resources/hbase-site.xml  |  7 
 hbase-shell/src/test/resources/hbase-site.xml   | 39 
 hbase-thrift/src/test/resources/hbase-site.xml  |  7 
 9 files changed, 83 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/c614b9f3/hbase-client/src/test/resources/hbase-site.xml
--
diff --git a/hbase-client/src/test/resources/hbase-site.xml 
b/hbase-client/src/test/resources/hbase-site.xml
index 99d2ab8..858d428 100644
--- a/hbase-client/src/test/resources/hbase-site.xml
+++ b/hbase-client/src/test/resources/hbase-site.xml
@@ -29,4 +29,11 @@
 hbase.hconnection.threads.keepalivetime
 3
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/c614b9f3/hbase-mapreduce/src/test/resources/hbase-site.xml
--
diff --git a/hbase-mapreduce/src/test/resources/hbase-site.xml 
b/hbase-mapreduce/src/test/resources/hbase-site.xml
index 64a1964..34802d0 100644
--- a/hbase-mapreduce/src/test/resources/hbase-site.xml
+++ b/hbase-mapreduce/src/test/resources/hbase-site.xml
@@ -158,4 +158,11 @@
 hbase.hconnection.threads.keepalivetime
 3
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/c614b9f3/hbase-procedure/src/test/resources/hbase-site.xml
--
diff --git a/hbase-procedure/src/test/resources/hbase-site.xml 
b/hbase-procedure/src/test/resources/hbase-site.xml
index 114ee8a..a1cc27e 100644
--- a/hbase-procedure/src/test/resources/hbase-site.xml
+++ b/hbase-procedure/src/test/resources/hbase-site.xml
@@ -41,4 +41,11 @@
   WARNING: Doing so may expose you to additional risk of data loss!
 
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/c614b9f3/hbase-rest/src/test/resources/hbase-site.xml
--
diff --git a/hbase-rest/src/test/resources/hbase-site.xml 
b/hbase-rest/src/test/resources/hbase-site.xml
index 2bd3ee4..be7b492 100644
--- a/hbase-rest/src/test/resources/hbase-site.xml
+++ b/hbase-rest/src/test/resources/hbase-site.xml
@@ -139,4 +139,11 @@
 Skip sanity checks in tests
 
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/c614b9f3/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
index e19e53b..5c8ddd9 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
@@ -141,7 +141,7 @@ public class LocalHBaseCluster {
 
 // Always have masters and regionservers come up on port '0' so we don't
 // clash over default ports.
-if (conf.getBoolean(ASSIGN_RANDOM_PORTS, true)) {
+if (conf.getBoolean(ASSIGN_RAND

hbase git commit: HBASE-20224 Web UI is broken in standalone mode

Repository: hbase
Updated Branches:
  refs/heads/branch-2.0 996963eb9 -> 2cff656df


HBASE-20224 Web UI is broken in standalone mode

Changes for HBASE-20027 seem to cause UI not showing up on default port in 
standalone mode. For concurrent
unit test execution, individual tests can set 
hbase.localcluster.assign.random.ports to true or modify
test/resources/hbase-site.xml.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/2cff656d
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/2cff656d
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/2cff656d

Branch: refs/heads/branch-2.0
Commit: 2cff656dfacf86de5000e24a905aab45407880a3
Parents: 996963e
Author: Umesh Agashe 
Authored: Wed Mar 21 12:48:18 2018 -0700
Committer: Michael Stack 
Committed: Thu Mar 22 20:28:32 2018 -0700

--
 hbase-client/src/test/resources/hbase-site.xml  |  7 
 .../src/test/resources/hbase-site.xml   |  7 
 .../src/test/resources/hbase-site.xml   |  7 
 hbase-rest/src/test/resources/hbase-site.xml|  7 
 .../apache/hadoop/hbase/LocalHBaseCluster.java  |  2 +-
 .../apache/hadoop/hbase/MiniHBaseCluster.java   |  2 +-
 hbase-server/src/test/resources/hbase-site.xml  |  7 
 hbase-shell/src/test/resources/hbase-site.xml   | 39 
 hbase-thrift/src/test/resources/hbase-site.xml  |  7 
 9 files changed, 83 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/2cff656d/hbase-client/src/test/resources/hbase-site.xml
--
diff --git a/hbase-client/src/test/resources/hbase-site.xml 
b/hbase-client/src/test/resources/hbase-site.xml
index 99d2ab8..858d428 100644
--- a/hbase-client/src/test/resources/hbase-site.xml
+++ b/hbase-client/src/test/resources/hbase-site.xml
@@ -29,4 +29,11 @@
 hbase.hconnection.threads.keepalivetime
 3
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/2cff656d/hbase-mapreduce/src/test/resources/hbase-site.xml
--
diff --git a/hbase-mapreduce/src/test/resources/hbase-site.xml 
b/hbase-mapreduce/src/test/resources/hbase-site.xml
index 64a1964..34802d0 100644
--- a/hbase-mapreduce/src/test/resources/hbase-site.xml
+++ b/hbase-mapreduce/src/test/resources/hbase-site.xml
@@ -158,4 +158,11 @@
 hbase.hconnection.threads.keepalivetime
 3
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/2cff656d/hbase-procedure/src/test/resources/hbase-site.xml
--
diff --git a/hbase-procedure/src/test/resources/hbase-site.xml 
b/hbase-procedure/src/test/resources/hbase-site.xml
index 114ee8a..a1cc27e 100644
--- a/hbase-procedure/src/test/resources/hbase-site.xml
+++ b/hbase-procedure/src/test/resources/hbase-site.xml
@@ -41,4 +41,11 @@
   WARNING: Doing so may expose you to additional risk of data loss!
 
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/2cff656d/hbase-rest/src/test/resources/hbase-site.xml
--
diff --git a/hbase-rest/src/test/resources/hbase-site.xml 
b/hbase-rest/src/test/resources/hbase-site.xml
index 2bd3ee4..be7b492 100644
--- a/hbase-rest/src/test/resources/hbase-site.xml
+++ b/hbase-rest/src/test/resources/hbase-site.xml
@@ -139,4 +139,11 @@
 Skip sanity checks in tests
 
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/2cff656d/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
index e19e53b..5c8ddd9 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
@@ -141,7 +141,7 @@ public class LocalHBaseCluster {
 
 // Always have masters and regionservers come up on port '0' so we don't
 // clash over default ports.
-if (conf.getBoolean(ASSIGN_RANDOM_PORTS, true)) {
+if (conf.getBoolean(ASS

hbase git commit: HBASE-20224 Web UI is broken in standalone mode

Repository: hbase
Updated Branches:
  refs/heads/branch-2 79e4c9d92 -> 96d63fee1


HBASE-20224 Web UI is broken in standalone mode

Changes for HBASE-20027 seem to cause UI not showing up on default port in 
standalone mode. For concurrent
unit test execution, individual tests can set 
hbase.localcluster.assign.random.ports to true or modify
test/resources/hbase-site.xml.


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/96d63fee
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/96d63fee
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/96d63fee

Branch: refs/heads/branch-2
Commit: 96d63fee1172d00de94d6470fcc0e14b8401d19d
Parents: 79e4c9d
Author: Umesh Agashe 
Authored: Wed Mar 21 12:48:18 2018 -0700
Committer: Michael Stack 
Committed: Thu Mar 22 20:28:08 2018 -0700

--
 hbase-client/src/test/resources/hbase-site.xml  |  7 
 .../src/test/resources/hbase-site.xml   |  7 
 .../src/test/resources/hbase-site.xml   |  7 
 hbase-rest/src/test/resources/hbase-site.xml|  7 
 .../apache/hadoop/hbase/LocalHBaseCluster.java  |  2 +-
 .../apache/hadoop/hbase/MiniHBaseCluster.java   |  2 +-
 hbase-server/src/test/resources/hbase-site.xml  |  7 
 hbase-shell/src/test/resources/hbase-site.xml   | 39 
 hbase-thrift/src/test/resources/hbase-site.xml  |  7 
 9 files changed, 83 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/96d63fee/hbase-client/src/test/resources/hbase-site.xml
--
diff --git a/hbase-client/src/test/resources/hbase-site.xml 
b/hbase-client/src/test/resources/hbase-site.xml
index 99d2ab8..858d428 100644
--- a/hbase-client/src/test/resources/hbase-site.xml
+++ b/hbase-client/src/test/resources/hbase-site.xml
@@ -29,4 +29,11 @@
 hbase.hconnection.threads.keepalivetime
 3
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/96d63fee/hbase-mapreduce/src/test/resources/hbase-site.xml
--
diff --git a/hbase-mapreduce/src/test/resources/hbase-site.xml 
b/hbase-mapreduce/src/test/resources/hbase-site.xml
index 64a1964..34802d0 100644
--- a/hbase-mapreduce/src/test/resources/hbase-site.xml
+++ b/hbase-mapreduce/src/test/resources/hbase-site.xml
@@ -158,4 +158,11 @@
 hbase.hconnection.threads.keepalivetime
 3
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/96d63fee/hbase-procedure/src/test/resources/hbase-site.xml
--
diff --git a/hbase-procedure/src/test/resources/hbase-site.xml 
b/hbase-procedure/src/test/resources/hbase-site.xml
index 114ee8a..a1cc27e 100644
--- a/hbase-procedure/src/test/resources/hbase-site.xml
+++ b/hbase-procedure/src/test/resources/hbase-site.xml
@@ -41,4 +41,11 @@
   WARNING: Doing so may expose you to additional risk of data loss!
 
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/96d63fee/hbase-rest/src/test/resources/hbase-site.xml
--
diff --git a/hbase-rest/src/test/resources/hbase-site.xml 
b/hbase-rest/src/test/resources/hbase-site.xml
index 2bd3ee4..be7b492 100644
--- a/hbase-rest/src/test/resources/hbase-site.xml
+++ b/hbase-rest/src/test/resources/hbase-site.xml
@@ -139,4 +139,11 @@
 Skip sanity checks in tests
 
   
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/96d63fee/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
index e19e53b..5c8ddd9 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
@@ -141,7 +141,7 @@ public class LocalHBaseCluster {
 
 // Always have masters and regionservers come up on port '0' so we don't
 // clash over default ports.
-if (conf.getBoolean(ASSIGN_RANDOM_PORTS, true)) {
+if (conf.getBoolean(ASSIGN_

hbase git commit: HBASE-20224 Web UI is broken in standalone mode; ADDENDUM

Repository: hbase
Updated Branches:
  refs/heads/branch-2 96d63fee1 -> 705d15038


HBASE-20224 Web UI is broken in standalone mode; ADDENDUM


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/705d1503
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/705d1503
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/705d1503

Branch: refs/heads/branch-2
Commit: 705d150386f063d0454678fd4ec0526f84a4d83b
Parents: 96d63fe
Author: Michael Stack 
Authored: Thu Mar 22 21:26:40 2018 -0700
Committer: Michael Stack 
Committed: Thu Mar 22 21:29:03 2018 -0700

--
 .../src/test/resources/hbase-site.xml   | 35 
 1 file changed, 35 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/705d1503/hbase-examples/src/test/resources/hbase-site.xml
--
diff --git a/hbase-examples/src/test/resources/hbase-site.xml 
b/hbase-examples/src/test/resources/hbase-site.xml
new file mode 100644
index 000..697567e
--- /dev/null
+++ b/hbase-examples/src/test/resources/hbase-site.xml
@@ -0,0 +1,35 @@
+
+
+
+
+  
+hbase.defaults.for.version.skip
+true
+  
+  
+hbase.localcluster.assign.random.ports
+true
+
+  Assign random ports to master and RS info server (UI).
+
+  
+



  1   2   >