hbase git commit: HBASE-19943 Only allow removing sync replication peer which is in DA state

2018-03-02 Thread openinx
Repository: hbase
Updated Branches:
  refs/heads/HBASE-19064 3301f9757 -> ad25386e2


HBASE-19943 Only allow removing sync replication peer which is in DA state


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

Branch: refs/heads/HBASE-19064
Commit: ad25386e2547d987a71f2ed0372514af8ada3e3a
Parents: 3301f97
Author: huzheng 
Authored: Thu Mar 1 18:34:02 2018 +0800
Committer: huzheng 
Committed: Fri Mar 2 17:40:47 2018 +0800

--
 .../replication/ReplicationPeerManager.java | 11 
 .../hbase/wal/SyncReplicationWALProvider.java   |  2 +-
 .../replication/TestReplicationAdmin.java   | 63 
 3 files changed, 75 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/ad25386e/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ReplicationPeerManager.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ReplicationPeerManager.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ReplicationPeerManager.java
index d80e9a4..6698aa5 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ReplicationPeerManager.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/replication/ReplicationPeerManager.java
@@ -120,8 +120,19 @@ public class ReplicationPeerManager {
 return desc;
   }
 
+  private void checkPeerInDAStateIfSyncReplication(String peerId) throws 
DoNotRetryIOException {
+ReplicationPeerDescription desc = peers.get(peerId);
+if (desc != null && desc.getPeerConfig().isSyncReplication()
+&& 
!SyncReplicationState.DOWNGRADE_ACTIVE.equals(desc.getSyncReplicationState())) {
+  throw new DoNotRetryIOException("Couldn't remove synchronous replication 
peer with state="
+  + desc.getSyncReplicationState()
+  + ", Transit the synchronous replication state to be 
DOWNGRADE_ACTIVE firstly.");
+}
+  }
+
   public void preRemovePeer(String peerId) throws DoNotRetryIOException {
 checkPeerExists(peerId);
+checkPeerInDAStateIfSyncReplication(peerId);
   }
 
   public void preEnablePeer(String peerId) throws DoNotRetryIOException {

http://git-wip-us.apache.org/repos/asf/hbase/blob/ad25386e/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/SyncReplicationWALProvider.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/SyncReplicationWALProvider.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/SyncReplicationWALProvider.java
index ac4b4cd..282aa21 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/SyncReplicationWALProvider.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/wal/SyncReplicationWALProvider.java
@@ -142,7 +142,7 @@ public class SyncReplicationWALProvider implements 
WALProvider, PeerActionListen
   @Override
   public WAL getWAL(RegionInfo region) throws IOException {
 if (region == null) {
-  return provider.getWAL(region);
+  return provider.getWAL(null);
 }
 Optional> peerIdAndRemoteWALDir =
   peerInfoProvider.getPeerIdAndRemoteWALDir(region);

http://git-wip-us.apache.org/repos/asf/hbase/blob/ad25386e/hbase-server/src/test/java/org/apache/hadoop/hbase/client/replication/TestReplicationAdmin.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/replication/TestReplicationAdmin.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/replication/TestReplicationAdmin.java
index 0ad476f..486ab51 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/replication/TestReplicationAdmin.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/replication/TestReplicationAdmin.java
@@ -254,6 +254,62 @@ public class TestReplicationAdmin {
   }
 
   @Test
+  public void testRemovePeerWithNonDAState() throws Exception {
+TableName tableName = TableName.valueOf(name.getMethodName());
+TEST_UTIL.createTable(tableName, Bytes.toBytes("family"));
+ReplicationPeerConfigBuilder builder = ReplicationPeerConfig.newBuilder();
+
+String rootDir = "hdfs://srv1:/hbase";
+builder.setClusterKey(KEY_ONE);
+builder.setRemoteWALDir(rootDir);
+builder.setReplicateAllUserTables(false);
+Map> tableCfs = new HashMap<>();
+tableCfs.put(tableName, new ArrayList<>());
+builder.setTableCFsMap(tableCfs);
+hbaseAdmin.addReplicationPeer(ID_ONE, builder.build());
+assert

hbase git commit: HBASE-20070 refactor website generation

2018-03-02 Thread busbey
Repository: hbase
Updated Branches:
  refs/heads/master 99d3edfc8 -> 2a65066b3


HBASE-20070 refactor website generation

* rely on git plumbing commands when checking if we've built the site for a 
particular commit already
* switch to forcing '-e' for bash
* add command line switches for: path to hbase, working directory, and 
publishing
* only export JAVA/MAVEN HOME if they aren't already set.
* add some docs about assumptions
* Update javadoc plugin to consistently be version 3.0.0
* avoid duplicative site invocations on reactor modules
* update use of cp command so it works both on linux and mac
* manually skip enforcer plugin during build
* still doing install of all jars due to MJAVADOC-490, but then skip rebuilding 
during aggregate reports.
* avoid the pager on git-diff by teeing to a log file, which also helps later 
reviewing in the case of big changesets.

Signed-off-by: Michael Stack 
Signed-off-by: Misty Stanley-Jones 


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

Branch: refs/heads/master
Commit: 2a65066b350c8354b09d3e57b8fdac644020faee
Parents: 99d3edf
Author: Sean Busbey 
Authored: Mon Feb 26 11:36:44 2018 -0600
Committer: Sean Busbey 
Committed: Fri Mar 2 09:25:10 2018 -0600

--
 .../jenkins-scripts/generate-hbase-website.sh   | 253 ++-
 hbase-annotations/pom.xml   |   7 +
 hbase-assembly/pom.xml  |   7 -
 hbase-backup/pom.xml|   7 -
 hbase-build-configuration/pom.xml   |   7 +
 hbase-client/pom.xml|   7 -
 hbase-common/pom.xml|   7 -
 hbase-endpoint/pom.xml  |   7 -
 hbase-examples/pom.xml  |   7 -
 hbase-external-blockcache/pom.xml   |   7 -
 hbase-hadoop-compat/pom.xml |   7 -
 hbase-hadoop2-compat/pom.xml|   7 -
 hbase-http/pom.xml  |   7 -
 hbase-it/pom.xml|   7 -
 hbase-mapreduce/pom.xml |   7 -
 hbase-metrics-api/pom.xml   |   7 -
 hbase-metrics/pom.xml   |   7 -
 hbase-procedure/pom.xml |   7 -
 hbase-protocol-shaded/pom.xml   |   7 -
 hbase-protocol/pom.xml  |   7 -
 hbase-replication/pom.xml   |   7 -
 hbase-resource-bundle/pom.xml   |   7 -
 hbase-rest/pom.xml  |   7 -
 hbase-rsgroup/pom.xml   |   7 -
 hbase-server/pom.xml|   7 -
 .../hbase-shaded-check-invariants/pom.xml   |   7 +
 hbase-shaded/pom.xml|   7 -
 hbase-shell/pom.xml |   7 -
 hbase-spark-it/pom.xml  |   7 -
 hbase-testing-util/pom.xml  |  11 -
 hbase-thrift/pom.xml|   7 -
 hbase-zookeeper/pom.xml |   7 -
 pom.xml |  15 +-
 33 files changed, 211 insertions(+), 278 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/2a65066b/dev-support/jenkins-scripts/generate-hbase-website.sh
--
diff --git a/dev-support/jenkins-scripts/generate-hbase-website.sh 
b/dev-support/jenkins-scripts/generate-hbase-website.sh
index 06d160a..0d7af75 100644
--- a/dev-support/jenkins-scripts/generate-hbase-website.sh
+++ b/dev-support/jenkins-scripts/generate-hbase-website.sh
@@ -23,74 +23,176 @@
 #
 # It needs to be built on a Jenkins server with the label git-websites
 #
-# It expects to have the hbase repo cloned to the directory hbase
+# Allows specifying options for working directory, maven repo, and publishing 
to git
+# run with --help for usage.
 #
 # If there is a build error, the Jenkins job is configured to send an email
 
-LOCAL_REPO=${WORKSPACE}/.m2/repo
-# Nuke the local maven repo each time, to start with a known environment
-rm -Rf "${LOCAL_REPO}"
-mkdir -p "${LOCAL_REPO}"
+declare CURRENT_HBASE_COMMIT
+declare PUSHED
+declare FILE
+declare WEBSITE_COMMIT_MSG
+declare -a FILES_TO_REMOVE
 
-# Clean any leftover files in case we are reusing the workspace
-rm -Rf -- *.patch *.patch.zip hbase/target target *.txt hbase-site
+set -e
+function usage {
+  echo "Usage: ${0} [options] /path/to/hbase/checkout"
+  echo ""
+  echo "--working-dir /path/to/use  Path for writing logs and a local 
checkout of hbase-site repo."
+  echo "

hbase git commit: HBASE-19437 Batch operation can't handle the null result for Append/Increment

2018-03-02 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/branch-2 a2de29560 -> e06e90bdb


HBASE-19437 Batch operation can't handle the null result for Append/Increment

Signed-off-by: anoopsamjohn 
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/e06e90bd
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/e06e90bd
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/e06e90bd

Branch: refs/heads/branch-2
Commit: e06e90bdbc35faf294869d6c2f4ea81910b48c2d
Parents: a2de295
Author: Chia-Ping Tsai 
Authored: Fri Mar 2 23:22:01 2018 +0800
Committer: Chia-Ping Tsai 
Committed: Fri Mar 2 23:42:41 2018 +0800

--
 .../hbase/regionserver/RSRpcServices.java   |   4 +-
 .../TestIncrementAndAppendWithNullResult.java   | 162 +++
 2 files changed, 164 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/e06e90bd/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
index d0a1315..6dbced2 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
@@ -691,7 +691,7 @@ public class RSRpcServices implements HBaseRPCErrorHandler,
   region.getTableDescriptor().getTableName(),
 EnvironmentEdgeManager.currentTime() - before);
 }
-return r;
+return r == null ? Result.EMPTY_RESULT : r;
   }
 
   /**
@@ -743,7 +743,7 @@ public class RSRpcServices implements HBaseRPCErrorHandler,
   region.getTableDescriptor().getTableName(),
   EnvironmentEdgeManager.currentTime() - before);
 }
-return r;
+return r == null ? Result.EMPTY_RESULT : r;
   }
 
   /**

http://git-wip-us.apache.org/repos/asf/hbase/blob/e06e90bd/hbase-server/src/test/java/org/apache/hadoop/hbase/coprocessor/TestIncrementAndAppendWithNullResult.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/coprocessor/TestIncrementAndAppendWithNullResult.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/coprocessor/TestIncrementAndAppendWithNullResult.java
new file mode 100644
index 000..239190e
--- /dev/null
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/coprocessor/TestIncrementAndAppendWithNullResult.java
@@ -0,0 +1,162 @@
+/**
+ *
+ * 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.coprocessor;
+
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+
+import java.io.IOException;
+import java.util.Arrays;
+import java.util.List;
+import java.util.Optional;
+import org.apache.hadoop.hbase.Cell;
+import org.apache.hadoop.hbase.CellBuilderFactory;
+import org.apache.hadoop.hbase.CellBuilderType;
+import org.apache.hadoop.hbase.HBaseClassTestRule;
+import org.apache.hadoop.hbase.HBaseTestingUtility;
+import org.apache.hadoop.hbase.HConstants;
+import org.apache.hadoop.hbase.TableName;
+import org.apache.hadoop.hbase.client.Append;
+import org.apache.hadoop.hbase.client.Increment;
+import org.apache.hadoop.hbase.client.Result;
+import org.apache.hadoop.hbase.client.Row;
+import org.apache.hadoop.hbase.client.Table;
+import org.apache.hadoop.hbase.testclassification.CoprocessorTests;
+import org.apache.hadoop.hbase.testclassification.MediumTests;
+import org.apache.hadoop.hbase.util.Bytes;
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+import org.junit.ClassRule;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
+
+@Category({CoprocessorTests.class, MediumTests.class})
+public class TestIncrementAndAppendWithNullResult {
+
+  @ClassRule
+  public static final HBaseClass

hbase git commit: HBASE-19437 Batch operation can't handle the null result for Append/Increment

2018-03-02 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/master 2a65066b3 -> db131be39


HBASE-19437 Batch operation can't handle the null result for Append/Increment

Signed-off-by: anoopsamjohn 
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/db131be3
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/db131be3
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/db131be3

Branch: refs/heads/master
Commit: db131be39a2e4821751be1d654dbaff81024d0ee
Parents: 2a65066
Author: Chia-Ping Tsai 
Authored: Fri Mar 2 23:22:01 2018 +0800
Committer: Chia-Ping Tsai 
Committed: Fri Mar 2 23:31:56 2018 +0800

--
 .../hbase/regionserver/RSRpcServices.java   |   4 +-
 .../TestIncrementAndAppendWithNullResult.java   | 162 +++
 2 files changed, 164 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/db131be3/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
index 1ff67e9..803d3e8 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/RSRpcServices.java
@@ -692,7 +692,7 @@ public class RSRpcServices implements HBaseRPCErrorHandler,
   region.getTableDescriptor().getTableName(),
 EnvironmentEdgeManager.currentTime() - before);
 }
-return r;
+return r == null ? Result.EMPTY_RESULT : r;
   }
 
   /**
@@ -744,7 +744,7 @@ public class RSRpcServices implements HBaseRPCErrorHandler,
   region.getTableDescriptor().getTableName(),
   EnvironmentEdgeManager.currentTime() - before);
 }
-return r;
+return r == null ? Result.EMPTY_RESULT : r;
   }
 
   /**

http://git-wip-us.apache.org/repos/asf/hbase/blob/db131be3/hbase-server/src/test/java/org/apache/hadoop/hbase/coprocessor/TestIncrementAndAppendWithNullResult.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/coprocessor/TestIncrementAndAppendWithNullResult.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/coprocessor/TestIncrementAndAppendWithNullResult.java
new file mode 100644
index 000..239190e
--- /dev/null
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/coprocessor/TestIncrementAndAppendWithNullResult.java
@@ -0,0 +1,162 @@
+/**
+ *
+ * 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.coprocessor;
+
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+
+import java.io.IOException;
+import java.util.Arrays;
+import java.util.List;
+import java.util.Optional;
+import org.apache.hadoop.hbase.Cell;
+import org.apache.hadoop.hbase.CellBuilderFactory;
+import org.apache.hadoop.hbase.CellBuilderType;
+import org.apache.hadoop.hbase.HBaseClassTestRule;
+import org.apache.hadoop.hbase.HBaseTestingUtility;
+import org.apache.hadoop.hbase.HConstants;
+import org.apache.hadoop.hbase.TableName;
+import org.apache.hadoop.hbase.client.Append;
+import org.apache.hadoop.hbase.client.Increment;
+import org.apache.hadoop.hbase.client.Result;
+import org.apache.hadoop.hbase.client.Row;
+import org.apache.hadoop.hbase.client.Table;
+import org.apache.hadoop.hbase.testclassification.CoprocessorTests;
+import org.apache.hadoop.hbase.testclassification.MediumTests;
+import org.apache.hadoop.hbase.util.Bytes;
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+import org.junit.ClassRule;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
+
+@Category({CoprocessorTests.class, MediumTests.class})
+public class TestIncrementAndAppendWithNullResult {
+
+  @ClassRule
+  public static final HBaseClassTest

hbase git commit: HBASE-20070 refactor website generation

2018-03-02 Thread busbey
Repository: hbase
Updated Branches:
  refs/heads/branch-2 e06e90bdb -> 9927c2e14


HBASE-20070 refactor website generation

* rely on git plumbing commands when checking if we've built the site for a 
particular commit already
* switch to forcing '-e' for bash
* add command line switches for: path to hbase, working directory, and 
publishing
* only export JAVA/MAVEN HOME if they aren't already set.
* add some docs about assumptions
* Update javadoc plugin to consistently be version 3.0.0
* avoid duplicative site invocations on reactor modules
* update use of cp command so it works both on linux and mac
* manually skip enforcer plugin during build
* still doing install of all jars due to MJAVADOC-490, but then skip rebuilding 
during aggregate reports.
* avoid the pager on git-diff by teeing to a log file, which also helps later 
reviewing in the case of big changesets.

Signed-off-by: Michael Stack 
Signed-off-by: Misty Stanley-Jones 

 Conflicts:
hbase-backup/pom.xml
hbase-spark-it/pom.xml


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

Branch: refs/heads/branch-2
Commit: 9927c2e14a78f5d6e68e12ecfcada3e57db71ac5
Parents: e06e90b
Author: Sean Busbey 
Authored: Mon Feb 26 11:36:44 2018 -0600
Committer: Sean Busbey 
Committed: Fri Mar 2 09:51:43 2018 -0600

--
 .../jenkins-scripts/generate-hbase-website.sh   | 253 ++-
 hbase-annotations/pom.xml   |   7 +
 hbase-assembly/pom.xml  |   7 -
 hbase-build-configuration/pom.xml   |   7 +
 hbase-client/pom.xml|   7 -
 hbase-common/pom.xml|   7 -
 hbase-endpoint/pom.xml  |   7 -
 hbase-examples/pom.xml  |   7 -
 hbase-external-blockcache/pom.xml   |   7 -
 hbase-hadoop-compat/pom.xml |   7 -
 hbase-hadoop2-compat/pom.xml|   7 -
 hbase-http/pom.xml  |   7 -
 hbase-it/pom.xml|   7 -
 hbase-mapreduce/pom.xml |   7 -
 hbase-metrics-api/pom.xml   |   7 -
 hbase-metrics/pom.xml   |   7 -
 hbase-procedure/pom.xml |   7 -
 hbase-protocol-shaded/pom.xml   |   7 -
 hbase-protocol/pom.xml  |   7 -
 hbase-replication/pom.xml   |   7 -
 hbase-resource-bundle/pom.xml   |   7 -
 hbase-rest/pom.xml  |   7 -
 hbase-rsgroup/pom.xml   |   7 -
 hbase-server/pom.xml|   7 -
 .../hbase-shaded-check-invariants/pom.xml   |   7 +
 hbase-shaded/pom.xml|   7 -
 hbase-shell/pom.xml |   7 -
 hbase-testing-util/pom.xml  |  11 -
 hbase-thrift/pom.xml|   7 -
 hbase-zookeeper/pom.xml |   7 -
 pom.xml |  15 +-
 31 files changed, 211 insertions(+), 264 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/9927c2e1/dev-support/jenkins-scripts/generate-hbase-website.sh
--
diff --git a/dev-support/jenkins-scripts/generate-hbase-website.sh 
b/dev-support/jenkins-scripts/generate-hbase-website.sh
index 06d160a..0d7af75 100644
--- a/dev-support/jenkins-scripts/generate-hbase-website.sh
+++ b/dev-support/jenkins-scripts/generate-hbase-website.sh
@@ -23,74 +23,176 @@
 #
 # It needs to be built on a Jenkins server with the label git-websites
 #
-# It expects to have the hbase repo cloned to the directory hbase
+# Allows specifying options for working directory, maven repo, and publishing 
to git
+# run with --help for usage.
 #
 # If there is a build error, the Jenkins job is configured to send an email
 
-LOCAL_REPO=${WORKSPACE}/.m2/repo
-# Nuke the local maven repo each time, to start with a known environment
-rm -Rf "${LOCAL_REPO}"
-mkdir -p "${LOCAL_REPO}"
+declare CURRENT_HBASE_COMMIT
+declare PUSHED
+declare FILE
+declare WEBSITE_COMMIT_MSG
+declare -a FILES_TO_REMOVE
 
-# Clean any leftover files in case we are reusing the workspace
-rm -Rf -- *.patch *.patch.zip hbase/target target *.txt hbase-site
+set -e
+function usage {
+  echo "Usage: ${0} [options] /path/to/hbase/checkout"
+  echo ""
+  echo "--working-dir /path/to/use  Path for writing logs and a local 
checkout of hbase-site repo."
+  echo "if given must exist."
+  echo "  

hbase git commit: HBASE-20114 Fix IllegalFormatConversionException in rsgroup.jsp

2018-03-02 Thread tedyu
Repository: hbase
Updated Branches:
  refs/heads/master db131be39 -> 1d25b6083


HBASE-20114 Fix IllegalFormatConversionException in rsgroup.jsp

Signed-off-by: tedyu 


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

Branch: refs/heads/master
Commit: 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3
Parents: db131be
Author: haxiaolin 
Authored: Fri Mar 2 11:21:12 2018 +0800
Committer: tedyu 
Committed: Fri Mar 2 09:00:28 2018 -0800

--
 hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/1d25b608/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp
--
diff --git a/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp 
b/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp
index 7b7e227..43753a5 100644
--- a/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp
+++ b/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp
@@ -254,7 +254,7 @@
 %>

  <%= serverName.getServerName() 
%>
- <%= String.format("%.0f", 
sl.getRequestCountPerSecond()) %>
+ <%= sl.getRequestCountPerSecond() %>
  <%= readRequestCount %>
  <%= writeRequestCount %>




hbase git commit: HBASE-20114 Fix IllegalFormatConversionException in rsgroup.jsp

2018-03-02 Thread tedyu
Repository: hbase
Updated Branches:
  refs/heads/branch-2 9927c2e14 -> 4ec2eeef6


HBASE-20114 Fix IllegalFormatConversionException in rsgroup.jsp

Signed-off-by: tedyu 


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

Branch: refs/heads/branch-2
Commit: 4ec2eeef63ba283047887c0acf3cba623c19e3af
Parents: 9927c2e
Author: haxiaolin 
Authored: Fri Mar 2 11:21:12 2018 +0800
Committer: tedyu 
Committed: Fri Mar 2 09:01:05 2018 -0800

--
 hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/4ec2eeef/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp
--
diff --git a/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp 
b/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp
index 7b7e227..43753a5 100644
--- a/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp
+++ b/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp
@@ -254,7 +254,7 @@
 %>

  <%= serverName.getServerName() 
%>
- <%= String.format("%.0f", 
sl.getRequestCountPerSecond()) %>
+ <%= sl.getRequestCountPerSecond() %>
  <%= readRequestCount %>
  <%= writeRequestCount %>




hbase git commit: HBASE-20109 Add Admin#getMaster API to branch-1

2018-03-02 Thread apurtell
Repository: hbase
Updated Branches:
  refs/heads/branch-1 c590ebba0 -> aae12e847


HBASE-20109 Add Admin#getMaster API to branch-1

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/aae12e84
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/aae12e84
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/aae12e84

Branch: refs/heads/branch-1
Commit: aae12e8470a0232b0e43010dfadcbdffcaff0339
Parents: c590ebb
Author: Andrew Purtell 
Authored: Fri Mar 2 11:39:43 2018 -0800
Committer: Andrew Purtell 
Committed: Fri Mar 2 11:39:43 2018 -0800

--
 .../java/org/apache/hadoop/hbase/client/Admin.java |  6 ++
 .../org/apache/hadoop/hbase/client/HBaseAdmin.java | 17 -
 2 files changed, 22 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/aae12e84/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Admin.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Admin.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Admin.java
index 4aadd30..8f5e150 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Admin.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Admin.java
@@ -1545,6 +1545,12 @@ public interface Admin extends Abortable, Closeable {
   void updateConfiguration() throws IOException;
 
   /**
+   * @return current master server name
+   * @throws IOException if a remote or network exception occurs
+   */
+  ServerName getMaster() throws IOException;
+
+  /**
* Get the info port of the current master if one is available.
* @return master info port
* @throws IOException

http://git-wip-us.apache.org/repos/asf/hbase/blob/aae12e84/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java
index 507c6fb..d68add6 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java
@@ -4542,9 +4542,24 @@ public class HBaseAdmin implements Admin {
 }
   }
 
+  /**
+   * @return current master server name
+   * @throws IOException if a remote or network exception occurs
+   */
+  @Override
+  public ServerName getMaster() throws IOException {
+ConnectionManager.HConnectionImplementation connection =
+(ConnectionManager.HConnectionImplementation)this.connection;
+ZooKeeperKeepAliveConnection zkw = 
connection.getKeepAliveZooKeeperWatcher();
+try {
+  return MasterAddressTracker.getMasterAddress(zkw);
+} catch (Exception e) {
+  throw new IOException("Failed to get master address from 
MasterAddressTracker", e);
+}
+  }
+
   @Override
   public int getMasterInfoPort() throws IOException {
-// TODO: Fix!  Reaching into internal implementation
 ConnectionManager.HConnectionImplementation connection =
 (ConnectionManager.HConnectionImplementation)this.connection;
 ZooKeeperKeepAliveConnection zkw = 
connection.getKeepAliveZooKeeperWatcher();



hbase git commit: HBASE-20114 Fix IllegalFormatConversionException in rsgroup.jsp - revert premature commit

2018-03-02 Thread tedyu
Repository: hbase
Updated Branches:
  refs/heads/branch-2 4ec2eeef6 -> 9e9b347d6


HBASE-20114 Fix IllegalFormatConversionException in rsgroup.jsp - revert 
premature commit


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

Branch: refs/heads/branch-2
Commit: 9e9b347d667e1fc6165c9f8ae5ae7052147e8895
Parents: 4ec2eee
Author: tedyu 
Authored: Fri Mar 2 12:07:16 2018 -0800
Committer: tedyu 
Committed: Fri Mar 2 12:07:16 2018 -0800

--
 hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/9e9b347d/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp
--
diff --git a/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp 
b/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp
index 43753a5..7b7e227 100644
--- a/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp
+++ b/hbase-server/src/main/resources/hbase-webapps/master/rsgroup.jsp
@@ -254,7 +254,7 @@
 %>

  <%= serverName.getServerName() 
%>
- <%= sl.getRequestCountPerSecond() %>
+ <%= String.format("%.0f", 
sl.getRequestCountPerSecond()) %>
  <%= readRequestCount %>
  <%= writeRequestCount %>




svn commit: r25384 - /dev/hbase/hbase-2.0.0-beta-2.RC0/

2018-03-02 Thread stack
Author: stack
Date: Fri Mar  2 22:11:31 2018
New Revision: 25384

Log:
RC0 of hbase-2.0.0-beta-2

Added:
dev/hbase/hbase-2.0.0-beta-2.RC0/
dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz   (with 
props)
dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.asc
dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.md5
dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.sha512
dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz   (with 
props)
dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.asc
dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.md5
dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.sha512

Added: dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz
==
Binary file - no diff available.

Propchange: dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz
--
svn:mime-type = application/octet-stream

Added: dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.asc
==
--- dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.asc (added)
+++ dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.asc Fri Mar  
2 22:11:31 2018
@@ -0,0 +1,10 @@
+-BEGIN PGP SIGNATURE-
+
+iQEcBAABAgAGBQJamcn0AAoJEN8PW7wwzQmWUDwH/jLLwZGznNav3Anntqa4far1
+hTl244s3uvkdzHjZ6pO0dlbURvUL42v0VRGeL2S5PfOjl21HRi4uwPBoL1vjViri
+2CpwEBRzgI/5znhZ05Ww2cN/oR0URk0MIYqTo7kdNtgjzMM/Bt4zdV2VLyUT9ZST
+B0GI8+0VZIueUDOoVox7HoZqTssAopwFUmmNbHicKpP1pn6Vmz/HjDtMCD1qR62N
+tiDMC8zxWEdJSJPTs5wGtamzH+nVtLKs2+9cy7vCT9D+cwbW3taLbpwnulyr79cy
+vqRElPmLlEeVFd/2xDXRlbOVoP52KlG6QEIPPXRa5wVH1NSEkV0TXecSuv+wa6s=
+=/wyh
+-END PGP SIGNATURE-

Added: dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.md5
==
--- dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.md5 (added)
+++ dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.md5 Fri Mar  
2 22:11:31 2018
@@ -0,0 +1 @@
+hbase-2.0.0-beta-2-bin.tar.gz: 92 3F 31 AB 4F E0 F2 7F  DE 30 A2 E7 16 B9 A0 C6

Added: dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.sha512
==
--- dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.sha512 
(added)
+++ dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.sha512 Fri 
Mar  2 22:11:31 2018
@@ -0,0 +1,4 @@
+hbase-2.0.0-beta-2-bin.tar.gz: DBE603B5 F213CD92 51974399 9438931B 1DD366A8
+   F921EEE1 28B4266E 54DF389B 271A919B F21F546E
+   F552448B 2067423E F631D98C 42444F1E 499B15FF
+   B22791A2

Added: dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz
==
Binary file - no diff available.

Propchange: dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz
--
svn:mime-type = application/octet-stream

Added: dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.asc
==
--- dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.asc (added)
+++ dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.asc Fri Mar  
2 22:11:31 2018
@@ -0,0 +1,10 @@
+-BEGIN PGP SIGNATURE-
+
+iQEcBAABAgAGBQJamcn4AAoJEN8PW7wwzQmW2lYIAIOX583Uz6SRw3XchgmlSV2i
+fAbmC9yK6H7lm/YnL3vM9dhlIxfik4qzykLVotIy2qQofjKoWwdhieXxHSa3ciIL
+j+85Ma9Ier9GRFYnejs8aZ4uZK3sIygRA/Vpfh6P5a3E/f2qhqYbXOC4wFmxFNPE
+IH+mXyOr4/j6TMCvOvJ4mYNJpBPe+LqfCg5xfwGAbw/YqBdCGKfhiHKeSViouepR
+aw8qVcgNFqzvXxeoSR3TbwHhBi9N5VdYj4Ie1Ijg2NXHEf3XhrWqEijJHTUbHXRG
+dca/hGVKR/tWMfjxEX4HLQ/wkAPP/C7EsPxDoaRvdh7OrGTmtwzcTLuxFNHRgjQ=
+=Cfiw
+-END PGP SIGNATURE-

Added: dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.md5
==
--- dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.md5 (added)
+++ dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.md5 Fri Mar  
2 22:11:31 2018
@@ -0,0 +1 @@
+hbase-2.0.0-beta-2-src.tar.gz: 02 97 36 D4 EA 4E 80 DF  11 9C C9 0A B1 DF BF BB

Added: dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.sha512
==
--- dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.sha512 
(added)
+++ dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.sha512 Fri 
Mar  2 22:11:31 2018
@@ -0,0 +1,4 @@
+hbase-2.0.0-beta-2-src.tar.gz: B0

[hbase] Git Push Summary

2018-03-02 Thread stack
Repository: hbase
Updated Tags:  refs/tags/2.0.0-beta-2RC0.2 [created] f5ed56d78


svn commit: r25385 - in /dev/hbase/hbase-2.0.0-beta-2.RC0: hbase-2.0.0-beta-2-bin.tar.gz.asc hbase-2.0.0-beta-2-src.tar.gz.asc

2018-03-02 Thread stack
Author: stack
Date: Fri Mar  2 23:24:07 2018
New Revision: 25385

Log:
Remove bad .asc files

Removed:
dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.asc
dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.asc



svn commit: r25386 - in /dev/hbase/hbase-2.0.0-beta-2.RC0: hbase-2.0.0-beta-2-bin.tar.gz.asc hbase-2.0.0-beta-2-src.tar.gz.asc

2018-03-02 Thread stack
Author: stack
Date: Fri Mar  2 23:26:55 2018
New Revision: 25386

Log:
Push signings with key 8ACC93D2

Added:
dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.asc
dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.asc

Added: dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.asc
==
--- dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.asc (added)
+++ dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-bin.tar.gz.asc Fri Mar  
2 23:26:55 2018
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIcBAABAgAGBQJamd2CAAoJEJgWx/yKzJPShIIP/2n4u50p73K7nO+JXkNRyElA
+rcJI/U74iuQ6wgDLtEWvi9eY/gKYTwIyhOXqS55i9TgoPRvBwlCpJS5D4N7uVBUe
+BvG8GCtuMb4ydZYFPnhpY5o0BH21OC73XzlWpJjKkRrW65G0TezOhLkwlI5+X5PR
+9FBz/8ObfXc676XlCjEn0Ei5zPA8ZM4lIZGKjdcq7kDbcNAzJEFtFS3/Spcukwkm
+UWFxptQJjYGGbeWxh6mkUU31ZtruEhv2EBh4zWZUwAgGRhkW/xzFuqDEzLBYuESx
+Yoda2wh15c8CFclBP6qzIaJK6dH9gOMtPEnA2QIXn4dU2TPAeUSl7Qc1/oyfOwco
+73F3nSdhsxqHy3xGi6Jd7Od7gnK19ishtJ8/YMY3xbJRCl5AuITUP+3+WMp7aCW+
+Fu0GHcZvSswLLw9GBhsjKABLHK0zmScKgbuKrbbjlQUjih0XYElVbWCojYcyX7WQ
+dsZp8xFY8lOGxZFew3WGeRPrnV5QdZ0RfJnWpubMQ7Xl6RkIVCb9XcF2Oas1Y+lj
+LYxTX9NhopWLWV/a/YkNh1UnNoj0hkaEv+JjZCz3cMVEtRIyXbpCVOAICwD2ToI7
+//XcQ33UrH9P/uKCGqpli4eJESM6o4DlPG2TjGH9RihEqTWu5ksvxPN1INAd9Uk9
+UYFDq4P22LKXZLHXhIPO
+=Drct
+-END PGP SIGNATURE-

Added: dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.asc
==
--- dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.asc (added)
+++ dev/hbase/hbase-2.0.0-beta-2.RC0/hbase-2.0.0-beta-2-src.tar.gz.asc Fri Mar  
2 23:26:55 2018
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIcBAABAgAGBQJamd2GAAoJEJgWx/yKzJPST2EQAMJtQvExErcAYD+0x1wBGvjg
+90/YFX+JxfCFfhxWqaVvOS9Vf8i7QNVHEXtm9ZgN7l71J+JhQLPOBxhl3BR+R/5/
+XoAVD5E1e9vgLDrBm2+OGVXK4PyfVJx14pPU0aEwtj9MSjUUANJnARlo+Q1YgTq6
+VU+DPBRIEp7+FN4HZkaIfxDYDi8RpYPc69n0c8HJKTOqx80T9Bl4vy3XdbFxX5eu
+EslF4YqS77z4QpEjVr33+7qgt44zFY5mh8yaJnsI9We+nR58dxS2fUpe/zNQazQC
+0r/5WHSTHc7mtsv+J8gMfo4xbyjHKKOr+qHZk8Kd1bVpRJZrvTzIVwF4sUZrbUf6
+jImzWq9QrO03JvXJPWO2kGr2C997leChy772QAJq2378DuIW7cbSN6we5I9ceFy3
+n1PrU33oAzvVOW/1lRJFt7KyG7bqlOZt9iVO/u1uu7GSr5GHdvyvr/9l8WkSesge
+nJTSoGVHzeE290hAGJ0h3nmzPp47qF0REdqZZiYLHt8V2bf0/YlinxgOtipYkZDG
+cELK9wdiiudX+dci3Rgyhi+csZjzZI+j72gOEu/HjUBxAvN0YbunCtZHyUhap+46
+bOSwjBm7pj3bz+9uT/nH0cSmg7ID+bF9AODQeT8lK4hCWxXhcv+bBqJN3JkYj3qZ
+pqg8HhTzl2Y2LUpFZj2W
+=ZO19
+-END PGP SIGNATURE-




[01/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 374a4b291 -> eb05e3e3b


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/class-use/Cursor.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/class-use/Cursor.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/Cursor.html
index c91a828..15bc56d 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/Cursor.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/Cursor.html
@@ -120,7 +120,7 @@
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
 AdvancedScanResultConsumer.ScanController.cursor()
 Get the scan cursor if available.
 



[09/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/RetriesExhaustedException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/RetriesExhaustedException.html 
b/apidocs/org/apache/hadoop/hbase/client/RetriesExhaustedException.html
index f98f198..dcee4f2 100644
--- a/apidocs/org/apache/hadoop/hbase/client/RetriesExhaustedException.html
+++ b/apidocs/org/apache/hadoop/hbase/client/RetriesExhaustedException.html
@@ -91,16 +91,16 @@
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-http://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/Throwable.html?is-external=true";
 title="class or interface in java.lang">java.lang.Throwable
 
 
-http://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/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">java.lang.Exception
 
 
-http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">java.io.IOException
+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.client.RetriesExhaustedException
@@ -118,7 +118,7 @@
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
 
 
 Direct Known Subclasses:
@@ -128,7 +128,7 @@
 
 @InterfaceAudience.Public
 public class RetriesExhaustedException
-extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
+extends https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Exception thrown by HTable methods when an attempt to do 
something (like
  commit changes) fails after a bunch of retries.
 
@@ -154,23 +154,23 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.ht
 
 
 RetriesExhaustedException(int numRetries,
- http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in 
java.util">List exceptions)
+ https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in 
java.util">List exceptions)
 Create a new RetriesExhaustedException from the list of 
prior failures.
 
 
 
-RetriesExhaustedException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String msg) 
+RetriesExhaustedException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String msg) 
 
 
-RetriesExhaustedException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String callableVitals,
+RetriesExhaustedException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String callableVitals,
  int numTries,
- http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">ListThrowable> exceptions)
+ https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">ListThrowable> exceptions)
 Create a new RetriesExhaustedException from the list of 
prior failures.
 
 
 
-RetriesExhaustedException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String msg,
- http://doc

[39/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/HRegionInfo.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/HRegionInfo.html 
b/apidocs/org/apache/hadoop/hbase/HRegionInfo.html
index 8ff5710..ec25e40 100644
--- a/apidocs/org/apache/hadoop/hbase/HRegionInfo.html
+++ b/apidocs/org/apache/hadoop/hbase/HRegionInfo.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.HRegionInfo
@@ -109,7 +109,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, RegionInfo
+https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, RegionInfo
 
 
 Deprecated. 
@@ -117,11 +117,11 @@ var activeTableTab = "activeTableTab";
  use RegionInfoBuilder to build RegionInfo.
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
+https://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
  @InterfaceAudience.Public
 public class HRegionInfo
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
-implements RegionInfo, http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+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 RegionInfo, https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
 Information about a region. A region is a range of keys in 
the whole keyspace of a table, an
  identifier (a timestamp) for differentiating between subset ranges (after 
region split)
  and a replicaId for differentiating the instance for the same range and some 
status information
@@ -169,7 +169,7 @@ implements Field and Description
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 ENCODED_REGION_NAME_REGEX
 Deprecated. 
 A non-capture group so that this can be embedded.
@@ -195,7 +195,7 @@ implements 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 NO_HASH
 Deprecated. 
  
@@ -323,7 +323,7 @@ implements 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 encodeRegionName(byte[] regionName)
 Deprecated. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
@@ -333,7 +333,7 @@ implements 
 
 boolean
-equals(http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object o)
+equals(https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object o)
 Deprecated. 
  
 
@@ -346,7 +346,7 @@ implements 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 getEncodedName()
 Deprecated. 
  
@@ -376,7 +376,7 @@ implements 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 getRegionNameAsString()
 Deprecated. 
  
@@ -389,13 +389,13 @@ implements 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java

[27/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/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 6ea4d25..1900827 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/ServerName.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/ServerName.html
@@ -117,7 +117,7 @@
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+static https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 ServerName.EMPTY_SERVER_LIST 
 
 
@@ -166,7 +166,7 @@
 
 
 static ServerName
-ServerName.parseServerName(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String str) 
+ServerName.parseServerName(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String str) 
 
 
 static ServerName
@@ -177,13 +177,13 @@
 
 
 static ServerName
-ServerName.valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String serverName)
+ServerName.valueOf(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String serverName)
 Retrieve an instance of ServerName.
 
 
 
 static ServerName
-ServerName.valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hostname,
+ServerName.valueOf(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hostname,
int port,
long startcode)
 Retrieve an instance of ServerName.
@@ -191,7 +191,7 @@
 
 
 static ServerName
-ServerName.valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hostAndPort,
+ServerName.valueOf(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hostAndPort,
long startCode)
 Retrieve an instance of ServerName.
 
@@ -206,17 +206,17 @@
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+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() 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+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. 
  
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+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()
 Deprecated. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
@@ -225,27 +225,27 @@
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+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() 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+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. 
  
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+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://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+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. 
  
 
 
-http://docs.oracle.com/javase/8/

[35/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/NamespaceExistException.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/NamespaceExistException.html 
b/apidocs/org/apache/hadoop/hbase/NamespaceExistException.html
index 10222eb..e655215 100644
--- a/apidocs/org/apache/hadoop/hbase/NamespaceExistException.html
+++ b/apidocs/org/apache/hadoop/hbase/NamespaceExistException.html
@@ -91,16 +91,16 @@
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-http://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/Throwable.html?is-external=true";
 title="class or interface in java.lang">java.lang.Throwable
 
 
-http://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/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">java.lang.Exception
 
 
-http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">java.io.IOException
+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.HBaseIOException
@@ -128,7 +128,7 @@
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
 
 
 
@@ -161,7 +161,7 @@ extends NamespaceExistException() 
 
 
-NamespaceExistException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String msg) 
+NamespaceExistException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String msg) 
 
 
 
@@ -176,15 +176,15 @@ extends 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">Throwable
-http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace--";
 title="class or interface in java.lang">fillInStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getCause--";
 title="class or interface in java.lang">getCause, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage--";
 title="class or interface in java.lang">getLocalizedMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getMessage--";
 title="class or interface in java.lang">getMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace--";
 title="class or inter
 face in java.lang">getStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed--";
 title="class or interface in java.lang">getSuppressed, http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace--";
 title="class or interface in java.lang">printStackTrace, http://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, http://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, http://docs.oracle.com/javase/8/docs/api/java/lan
 
g/Throwable.html?is-external=true#setStackTrace-java.lang.StackTraceElement:A-" 
title="class or interface in java.lang">setStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#toString--";
 title="class or interface in java.lang">toString
+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">Thr

[29/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/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 96d745d..531711f 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
@@ -259,7 +259,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 static Cell
 CellUtil.createCell(Cell cell,
-  http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in 
java.util">List tags)
+  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. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
 
@@ -409,7 +409,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 static int
 CellUtil.copyFamilyTo(Cell cell,
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
+https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
 int destinationOffset)
 Copies the family to the given bytebuffer
 
@@ -425,7 +425,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 static int
 CellUtil.copyQualifierTo(Cell cell,
-   http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
+   https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
int destinationOffset)
 Copies the qualifier to the given bytebuffer
 
@@ -447,7 +447,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 static int
 CellUtil.copyRowTo(Cell cell,
- http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
+ https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
  int destinationOffset)
 Copies the row to the given bytebuffer
 
@@ -465,7 +465,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 static int
 CellUtil.copyTagTo(Cell cell,
- http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
+ https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
  int destinationOffset)
 Deprecated. 
 As of HBase-2.0. Will be 
removed in 3.0.
@@ -483,7 +483,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 static int
 CellUtil.copyValueTo(Cell cell,
-   http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
+   https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
int destinationOffset)
 Copies the value to the given bytebuffer
 
@@ -510,7 +510,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 static Cell
 CellUtil.createCell(Cell cell,
-  http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in 
java.util">List tags)
+  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. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
 
@@ -617,7 +617,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 CellUtil.getCellKeyAsString(Cell cell) 
 
 
@@ -629,7 +629,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+static 

[06/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/SnapshotDescription.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/SnapshotDescription.html 
b/apidocs/org/apache/hadoop/hbase/client/SnapshotDescription.html
index 3c8462d..1f2e0d6 100644
--- a/apidocs/org/apache/hadoop/hbase/client/SnapshotDescription.html
+++ b/apidocs/org/apache/hadoop/hbase/client/SnapshotDescription.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.client.SnapshotDescription
@@ -111,7 +111,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Public
 public class SnapshotDescription
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 The POJO equivalent of HBaseProtos.SnapshotDescription
 
 
@@ -131,19 +131,19 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 Constructor and Description
 
 
-SnapshotDescription(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name) 
+SnapshotDescription(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name) 
 
 
-SnapshotDescription(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
-   http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String table)
+SnapshotDescription(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/lang/String.html?is-external=true";
 title="class or interface in java.lang">String table)
 Deprecated. 
 Use the version with the 
TableName instance instead
 
 
 
 
-SnapshotDescription(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
-   http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String table,
+SnapshotDescription(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/lang/String.html?is-external=true";
 title="class or interface in java.lang">String table,
SnapshotType type)
 Deprecated. 
 Use the version with the 
TableName instance instead
@@ -151,20 +151,20 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-SnapshotDescription(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
-   http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String table,
+SnapshotDescription(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/lang/String.html?is-external=true";
 title="class or interface in java.lang">String table,
SnapshotType type,
-   http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String owner)
+   https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String owner)
 Deprecated. 
 Use the version with the 
TableName instance instead
 
 
 
 
-SnapshotDescription(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
-   http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String table,
+SnapshotDescription(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/lang/String.html?is-external=true

[14/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/MasterSwitchType.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/MasterSwitchType.html 
b/apidocs/org/apache/hadoop/hbase/client/MasterSwitchType.html
index 1fce8cc..a8eec5a 100644
--- a/apidocs/org/apache/hadoop/hbase/client/MasterSwitchType.html
+++ b/apidocs/org/apache/hadoop/hbase/client/MasterSwitchType.html
@@ -97,10 +97,10 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">java.lang.Enum
+https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">java.lang.Enum
 
 
 org.apache.hadoop.hbase.client.MasterSwitchType
@@ -114,13 +114,13 @@ var activeTableTab = "activeTableTab";
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable, http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable, https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
 
 
 
 @InterfaceAudience.Public
 public enum MasterSwitchType
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum
 Represents the master switch type
 
 
@@ -162,7 +162,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is
 
 
 static MasterSwitchType
-valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
+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.
 
 
@@ -178,15 +178,15 @@ the order they are declared.
 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum
-http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#clone--";
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#compareTo-E-";
 title="class or interface in java.lang">compareTo, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#equals-java.lang.Object-";
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#finalize--";
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#getDeclaringClass--";
 title="class or interface in java.lang">getDeclaringClass, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#hashCode--";
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/8/docs/
 api/java/lang/Enum.html?is-external=true#name--" title="class or interface in 
java.lang">name, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#ordinal--";
 title="class or interface in java.lang">ordinal, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#toString--";
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#valueOf-java.lang.Class-java.lang.String-";
 title="class or interface in java.lang">valueOf
+Methods inherited from class 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
+https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#clone--";
 title="class or interface in java.lang">clone, https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#compareTo-E-";
 title="class or interface in java.lang">compareTo, https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is

[50/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/acid-semantics.html
--
diff --git a/acid-semantics.html b/acid-semantics.html
index 65cdce1..e559e5e 100644
--- a/acid-semantics.html
+++ b/acid-semantics.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase –  
   Apache HBase (TM) ACID Properties
@@ -195,18 +195,6 @@
 
   
 
-  
-  
-  1.1 Documentation
-  
-API
-
-X-Ref
-
-Ref Guide (single-page)
-
-  
-
   
   
 
@@ -606,7 +594,7 @@ under the License. -->
 https://www.apache.org/";>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2018-02-20
+  Last Published: 
2018-03-03
 
 
 



[21/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/AsyncAdminBuilder.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/AsyncAdminBuilder.html 
b/apidocs/org/apache/hadoop/hbase/client/AsyncAdminBuilder.html
index 918db59..a11a224 100644
--- a/apidocs/org/apache/hadoop/hbase/client/AsyncAdminBuilder.html
+++ b/apidocs/org/apache/hadoop/hbase/client/AsyncAdminBuilder.html
@@ -149,21 +149,21 @@ public interface 
 AsyncAdminBuilder
 setOperationTimeout(long timeout,
-   http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
+   https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
 Set timeout for a whole admin operation.
 
 
 
 AsyncAdminBuilder
 setRetryPause(long timeout,
- http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
+ https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
 Set the base pause time for retrying.
 
 
 
 AsyncAdminBuilder
 setRpcTimeout(long timeout,
- http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
+ https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
 Set timeout for each rpc request.
 
 
@@ -195,7 +195,7 @@ public interface 
 setOperationTimeout
 AsyncAdminBuilder setOperationTimeout(long timeout,
-  http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
+  https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
 Set timeout for a whole admin operation. Operation timeout 
and max attempt times(or max retry
  times) are both limitations for retrying, we will stop retrying when we reach 
any of the
  limitations.
@@ -215,7 +215,7 @@ public interface 
 setRpcTimeout
 AsyncAdminBuilder setRpcTimeout(long timeout,
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
 Set timeout for each rpc request.
 
 Parameters:
@@ -233,7 +233,7 @@ public interface 
 setRetryPause
 AsyncAdminBuilder setRetryPause(long timeout,
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
 Set the base pause time for retrying. We use an exponential 
policy to generate sleep time when
  retrying.
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/AsyncBufferedMutator.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/AsyncBufferedMutator.html 
b/apidocs/org/apache/hadoop/hbase/client/AsyncBufferedMutator.html
index 9b06d41..bbaaa3c 100644
--- a/apidocs/org/apache/hadoop/hbase/client/AsyncBufferedMutator.html
+++ b/apidocs/org/apache/hadoop/hbase/client/AsyncBufferedMutator.html
@@ -101,13 +101,13 @@ var activeTableTab = "activeTableTab";
 
 
 All Superinterfaces:
-http://docs.oracle.com/javase/8/docs/api/java/lang/AutoCloseable.html?is-external=true";
 title="class or interface in java.lang">AutoCloseable, http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html?is-external=true";
 title="class or interface in java.io">Closeable
+https://docs.oracle.com/javase/8/docs/api/java/lang/AutoCloseable.html?is-external=true";
 title="class or interface in java.lang">AutoCloseable, https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html?is-external=true";
 title="class or interface in java.io">Closeable
 
 
 
 @InterfaceAudience.Public
 public interface AsyncBufferedMu

[22/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/AsyncAdmin.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/AsyncAdmin.html 
b/apidocs/org/apache/hadoop/hbase/client/AsyncAdmin.html
index f660c5a..2d899da 100644
--- a/apidocs/org/apache/hadoop/hbase/client/AsyncAdmin.html
+++ b/apidocs/org/apache/hadoop/hbase/client/AsyncAdmin.html
@@ -127,116 +127,116 @@ public interface Method and Description
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureBoolean>
+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>
 abortProcedure(long procId,
   boolean mayInterruptIfRunning)
 abort a procedure
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
+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>
 addColumnFamily(TableName tableName,
ColumnFamilyDescriptor columnFamily)
 Add a column family to an existing table.
 
 
 
-default http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-addReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String peerId,
+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">CompletableFutureVoid>
+addReplicationPeer(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String peerId,
   ReplicationPeerConfig peerConfig)
 Add a new replication peer for replicating data to slave 
cluster
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-addReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String peerId,
+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>
+addReplicationPeer(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String peerId,
   ReplicationPeerConfig peerConfig,
   boolean enabled)
 Add a new replication peer for replicating data to slave 
cluster
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-appendReplicationPeerTableCFs(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String peerId,
- http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList

[42/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/DroppedSnapshotException.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/DroppedSnapshotException.html 
b/apidocs/org/apache/hadoop/hbase/DroppedSnapshotException.html
index 5f8ab51..1b194c3 100644
--- a/apidocs/org/apache/hadoop/hbase/DroppedSnapshotException.html
+++ b/apidocs/org/apache/hadoop/hbase/DroppedSnapshotException.html
@@ -91,16 +91,16 @@
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-http://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/Throwable.html?is-external=true";
 title="class or interface in java.lang">java.lang.Throwable
 
 
-http://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/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">java.lang.Exception
 
 
-http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">java.io.IOException
+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.DroppedSnapshotException
@@ -118,13 +118,13 @@
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
 
 
 
 @InterfaceAudience.Public
 public class DroppedSnapshotException
-extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
+extends https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Thrown during flush if the possibility snapshot content was 
not properly
  persisted into store files.  Response should include replay of wal 
content.
 
@@ -154,7 +154,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.ht
 
 
 
-DroppedSnapshotException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String msg) 
+DroppedSnapshotException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String msg) 
 
 
 
@@ -169,15 +169,15 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.ht
 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">Throwable
-http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace--";
 title="class or interface in java.lang">fillInStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getCause--";
 title="class or interface in java.lang">getCause, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage--";
 title="class or interface in java.lang">getLocalizedMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getMessage--";
 title="class or interface in java.lang">getMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace--";
 title="class or inter
 face in java.lang">getStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed--";
 title="class or interface in java.lang">getSuppressed, http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace--";
 title="class or interface in java.lang">printStackTrace, http://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, http://docs.oracle.com/javase/8/docs/api/java/lang

[30/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/TableNotEnabledException.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/TableNotEnabledException.html 
b/apidocs/org/apache/hadoop/hbase/TableNotEnabledException.html
index ead98f8..3387ad0 100644
--- a/apidocs/org/apache/hadoop/hbase/TableNotEnabledException.html
+++ b/apidocs/org/apache/hadoop/hbase/TableNotEnabledException.html
@@ -91,16 +91,16 @@
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-http://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/Throwable.html?is-external=true";
 title="class or interface in java.lang">java.lang.Throwable
 
 
-http://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/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">java.lang.Exception
 
 
-http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">java.io.IOException
+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.HBaseIOException
@@ -128,7 +128,7 @@
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
 
 
 
@@ -166,7 +166,7 @@ extends TableNotEnabledException(byte[] tableName) 
 
 
-TableNotEnabledException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s)
+TableNotEnabledException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s)
 Constructor
 
 
@@ -186,15 +186,15 @@ extends 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">Throwable
-http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace--";
 title="class or interface in java.lang">fillInStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getCause--";
 title="class or interface in java.lang">getCause, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage--";
 title="class or interface in java.lang">getLocalizedMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getMessage--";
 title="class or interface in java.lang">getMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace--";
 title="class or inter
 face in java.lang">getStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed--";
 title="class or interface in java.lang">getSuppressed, http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace--";
 title="class or interface in java.lang">printStackTrace, http://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, http://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, http://docs.oracle.com/javase/8/docs/api/java/lan
 
g/Throwable.html?is-external=true#setStackTrace-java.lang.StackTraceElement:A-" 
title="class or interface in java.lang">setStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#toString--";
 title="class or interface in java.lang">toString
+Methods inherited from class java.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class o

[18/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html 
b/apidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
index 535d98b..49f5581 100644
--- a/apidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
+++ b/apidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.client.ColumnFamilyDescriptorBuilder
@@ -111,7 +111,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Public
 public class ColumnFamilyDescriptorBuilder
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 
 Since:
 2.0.0
@@ -256,7 +256,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 NEW_VERSION_BEHAVIOR 
 
 
@@ -287,16 +287,16 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 getCompressionType() 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String>
+static https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String>
 getDefaultValues() 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 getNameAsString() 
 
 
 static 
org.apache.hadoop.hbase.util.PrettyPrinter.Unit
-getUnit(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key) 
+getUnit(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key) 
 
 
 static byte[]
@@ -316,7 +316,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 static ColumnFamilyDescriptor
-of(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name) 
+of(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name) 
 
 
 static ColumnFamilyDescriptor
@@ -324,7 +324,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 ColumnFamilyDescriptorBuilder
-removeConfiguration(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key) 
+removeConfiguration(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key) 
 
 
 ColumnFamilyDescriptorBuilder
@@ -364,8 +364,8 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 ColumnFamilyDescriptorBuilder
-setConfiguration(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key,
-http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String value) 
+setConfiguration(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key,
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external

[10/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/Result.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Result.html 
b/apidocs/org/apache/hadoop/hbase/client/Result.html
index 8ed792e..77b5567 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Result.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Result.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.client.Result
@@ -115,13 +115,13 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Public
 public class Result
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+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 CellScannable, CellScanner
 Single row result of a Get or Scan query.
 
  This class is NOT THREAD SAFE.
 
- Convenience methods are available that return various http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+ Convenience methods are available that return various https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
  structures and values directly.
 
  To get a complete mapping of all cells in the Result, which can include
@@ -309,43 +309,43 @@ implements 
 static Result
 create(Cell[] cells,
-  http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean exists,
+  https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean exists,
   boolean stale) 
 
 
 static Result
 create(Cell[] cells,
-  http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean exists,
+  https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean exists,
   boolean stale,
   boolean mayHaveMoreCellsInRow) 
 
 
 static Result
-create(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List cells)
+create(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List cells)
 Instantiate a Result with the specified List of 
KeyValues.
 
 
 
 static Result
-create(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List cells,
-  http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in 
java.lang">Boolean exists) 
+create(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List cells,
+  https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in 
java.lang">Boolean exists) 
 
 
 static Result
-create(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List cells,
-  http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean exists,
+create(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List cells,
+  https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean exists,
   boolean stale) 
 
 
 static Result
-create(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List cells,
-  http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean exists,
+create(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List cells,
+  https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean exists,
   boolean stale,
   boolean mayHaveMoreCellsInRow) 
 
 
 static Result
-createCompleteResult(http://docs.oracle.com/javase/8/docs/api/java/lang/Iterable.htm

[13/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/Operation.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Operation.html 
b/apidocs/org/apache/hadoop/hbase/client/Operation.html
index af6c1b9..9ef2891 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Operation.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Operation.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.client.Operation
@@ -115,7 +115,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Public
 public abstract class Operation
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 Superclass for any type that maps to a potentially 
application-level query.
  (e.g. Put, Get, Delete, Scan, Next, etc.)
  Contains methods for exposure to logging and debugging tools.
@@ -155,47 +155,47 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 Method and Description
 
 
-abstract http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object>
+abstract https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object>
 getFingerprint()
 Produces a Map containing a fingerprint which identifies 
the type and 
  the static schema components of a query (i.e.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 toJSON()
 Produces a JSON object sufficient for description of a query
  in a debugging or logging context.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 toJSON(int maxCols)
 Produces a JSON object for fingerprint and details exposure 
in a
  parseable format.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object>
+https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object>
 toMap()
 Produces a Map containing a full summary of a query.
 
 
 
-abstract http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object>
+abstract https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object>
 toMap(int maxCols)
 Produces a Map containing a summary of the details of a 
query 
  beyond the scope of

[47/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/deprecated-list.html
--
diff --git a/apidocs/deprecated-list.html b/apidocs/deprecated-list.html
index 66dafbe..c82f999 100644
--- a/apidocs/deprecated-list.html
+++ b/apidocs/deprecated-list.html
@@ -100,7 +100,7 @@
 
 
 org.apache.hadoop.hbase.util.Counter
-use http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/LongAdder.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">LongAdder instead.
+use https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/LongAdder.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">LongAdder instead.
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/index-all.html
--
diff --git a/apidocs/index-all.html b/apidocs/index-all.html
index 0a024cb..2e4c248 100644
--- a/apidocs/index-all.html
+++ b/apidocs/index-all.html
@@ -605,6 +605,8 @@
 
 assign(byte[])
 - Method in interface org.apache.hadoop.hbase.client.AsyncAdmin
  
+ASSIGN_RANDOM_PORTS
 - Static variable in class org.apache.hadoop.hbase.LocalHBaseCluster
+ 
 AsyncAdmin - Interface in org.apache.hadoop.hbase.client
 
 The asynchronous administrative API for HBase.
@@ -2472,7 +2474,7 @@
 
 copyOfRange(ByteBuffer,
 int, int) - Static method in class org.apache.hadoop.hbase.util.ByteBufferUtils
 
-Similar to  http://docs.oracle.com/javase/8/docs/api/java/util/Arrays.html?is-external=true#copyOfRange-byte:A-int-int-";
 title="class or interface in java.util">Arrays.copyOfRange(byte[], int, 
int)
+Similar to  https://docs.oracle.com/javase/8/docs/api/java/util/Arrays.html?is-external=true#copyOfRange-byte:A-int-int-";
 title="class or interface in java.util">Arrays.copyOfRange(byte[], int, 
int)
 
 copyQualifierTo(Cell,
 byte[], int) - Static method in class org.apache.hadoop.hbase.CellUtil
 
@@ -2539,7 +2541,7 @@
 Counter - 
Class in org.apache.hadoop.hbase.util
 
 Deprecated.
-use http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/LongAdder.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">LongAdder instead.
+use https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/LongAdder.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">LongAdder instead.
 
 
 Counter() 
- Constructor for class org.apache.hadoop.hbase.util.Counter
@@ -3331,7 +,7 @@
 
 decodeNumericAsBigDecimal(PositionedByteRange)
 - Static method in class org.apache.hadoop.hbase.util.OrderedBytes
 
-Decode a http://docs.oracle.com/javase/8/docs/api/java/math/BigDecimal.html?is-external=true";
 title="class or interface in java.math">BigDecimal value from 
the variable-length encoding.
+Decode a https://docs.oracle.com/javase/8/docs/api/java/math/BigDecimal.html?is-external=true";
 title="class or interface in java.math">BigDecimal value from 
the variable-length encoding.
 
 decodeNumericAsDouble(PositionedByteRange)
 - Static method in class org.apache.hadoop.hbase.util.OrderedBytes
 
@@ -3699,7 +3701,7 @@
 
 DEFAULT_MATH_CONTEXT
 - Static variable in class org.apache.hadoop.hbase.util.OrderedBytes
 
-The context used to normalize http://docs.oracle.com/javase/8/docs/api/java/math/BigDecimal.html?is-external=true";
 title="class or interface in java.math">BigDecimal 
values.
+The context used to normalize https://docs.oracle.com/javase/8/docs/api/java/math/BigDecimal.html?is-external=true";
 title="class or interface in java.math">BigDecimal 
values.
 
 DEFAULT_MAX_AGE
 - Static variable in interface org.apache.hadoop.hbase.rest.Constants
  
@@ -9482,13 +9484,6 @@
 
 Deprecated.
  
-hasSerialReplicationScope()
 - Method in interface org.apache.hadoop.hbase.client.TableDescriptor
- 
-hasSerialReplicationScope()
 - Method in class org.apache.hadoop.hbase.HTableDescriptor
-
-Deprecated.
-Return true if there are at least one cf whose replication 
scope is serial.
-
 hasTotalNumberOfRequests()
 - Method in class org.apache.hadoop.hbase.ServerLoad
 
 Deprecated.
@@ -11257,7 +11252,7 @@
  
 iterator(PositionedByteRange)
 - Method in class org.apache.hadoop.hbase.types.Struct
 
-Retrieve an http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator over the 
values encoded in src.
+Retrieve an https://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator over the 
values encoded in src.
 
 iterator()
 - Method in class org.apache.hadoop.hbase.util.PairOfSameType
  
@@ -12443,6 +12438,8 @@
 
 Copy the data to the output stream and update position in 
buffer.
 
+MULTI_TABLES_SUPPORT
 - Static variable in class org.apache.hadoop.hbase.mapreduce.WALPlayer
+ 
 MultiActionResultTooLarge - Exception in org.a

[04/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/TableDescriptor.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/TableDescriptor.html 
b/apidocs/org/apache/hadoop/hbase/client/TableDescriptor.html
index b6aac56..62edd2e 100644
--- a/apidocs/org/apache/hadoop/hbase/client/TableDescriptor.html
+++ b/apidocs/org/apache/hadoop/hbase/client/TableDescriptor.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":6,"i1":6,"i2":6,"i3":6,"i4":17,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":38,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":6,"i26":6,"i27":6,"i28":18};
+var methods = 
{"i0":6,"i1":6,"i2":6,"i3":6,"i4":17,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":38,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":6,"i26":6,"i27":18};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],4:["t3","Abstract 
Methods"],16:["t5","Default Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -150,17 +150,17 @@ public interface 
-http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">Set
+https://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">Set
 getColumnFamilyNames()
 Returns all the column family names of the current 
table.
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html?is-external=true";
 title="class or interface in java.util">Comparator
-getComparator(http://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html?is-external=true";
 title="class or interface in java.util">Comparator cfComparator) 
+static https://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html?is-external=true";
 title="class or interface in java.util">Comparator
+getComparator(https://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html?is-external=true";
 title="class or interface in java.util">Comparator cfComparator) 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">CollectionString>
+https://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">CollectionString>
 getCoprocessors()
 Return the list of attached co-processor represented by 
their name
  className
@@ -173,7 +173,7 @@ public interface 
-http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 getFlushPolicyClassName()
 This gets the class associated with the flush policy which 
determines the
  stores need to be flushed when flushing a region.
@@ -194,7 +194,7 @@ public interface 
-http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 getOwnerString()
 Deprecated. 
 
@@ -208,7 +208,7 @@ public interface getRegionReplication() 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 getRegionSplitPolicyClassName()
 This gets the class associated with the region split policy 
which
  determines when a region split should occur.
@@ -233,13 +233,13 @@ public interface 
-http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
-getValue(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key)
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+getValue(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key)
 Getter for accessing the metadata associated with the 
key.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/

[46/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/CellBuilderType.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/CellBuilderType.html 
b/apidocs/org/apache/hadoop/hbase/CellBuilderType.html
index d72ce82..d2fb707 100644
--- a/apidocs/org/apache/hadoop/hbase/CellBuilderType.html
+++ b/apidocs/org/apache/hadoop/hbase/CellBuilderType.html
@@ -97,10 +97,10 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">java.lang.Enum
+https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">java.lang.Enum
 
 
 org.apache.hadoop.hbase.CellBuilderType
@@ -114,13 +114,13 @@ var activeTableTab = "activeTableTab";
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable, http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable, https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
 
 
 
 @InterfaceAudience.Public
 public enum CellBuilderType
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum
 Used by CellBuilderFactory and 
ExtendedCellBuilderFactory.
  Indicates which memory copy is used in building cell.
 
@@ -168,7 +168,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is
 
 
 static CellBuilderType
-valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
+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.
 
 
@@ -184,15 +184,15 @@ the order they are declared.
 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum
-http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#clone--";
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#compareTo-E-";
 title="class or interface in java.lang">compareTo, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#equals-java.lang.Object-";
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#finalize--";
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#getDeclaringClass--";
 title="class or interface in java.lang">getDeclaringClass, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#hashCode--";
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/8/docs/
 api/java/lang/Enum.html?is-external=true#name--" title="class or interface in 
java.lang">name, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#ordinal--";
 title="class or interface in java.lang">ordinal, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#toString--";
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#valueOf-java.lang.Class-java.lang.String-";
 title="class or interface in java.lang">valueOf
+Methods inherited from class 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
+https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#clone--";
 title="class or interface in java.lang">clone, https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#compareTo-E-";
 title="class or interface in java.lang">compareTo, https://docs.oracle.com/javase/8/docs/ap

[11/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/RequestController.ReturnCode.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/RequestController.ReturnCode.html 
b/apidocs/org/apache/hadoop/hbase/client/RequestController.ReturnCode.html
index 7b546c6..5b91331 100644
--- a/apidocs/org/apache/hadoop/hbase/client/RequestController.ReturnCode.html
+++ b/apidocs/org/apache/hadoop/hbase/client/RequestController.ReturnCode.html
@@ -97,10 +97,10 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">java.lang.Enum
+https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">java.lang.Enum
 
 
 org.apache.hadoop.hbase.client.RequestController.ReturnCode
@@ -114,7 +114,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable, http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable, https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
 
 
 Enclosing interface:
@@ -124,7 +124,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Public
 public static enum RequestController.ReturnCode
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum
 
 
 
@@ -174,7 +174,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is
 
 
 static RequestController.ReturnCode
-valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
+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.
 
 
@@ -190,15 +190,15 @@ the order they are declared.
 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum
-http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#clone--";
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#compareTo-E-";
 title="class or interface in java.lang">compareTo, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#equals-java.lang.Object-";
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#finalize--";
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#getDeclaringClass--";
 title="class or interface in java.lang">getDeclaringClass, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#hashCode--";
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/8/docs/
 api/java/lang/Enum.html?is-external=true#name--" title="class or interface in 
java.lang">name, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#ordinal--";
 title="class or interface in java.lang">ordinal, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#toString--";
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#valueOf-java.lang.Class-java.lang.String-";
 title="class or interface in java.lang">valueOf
+Methods inherited from class 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
+https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true#clone--";
 title="class or interface in java.l

[34/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/RegionException.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/RegionException.html 
b/apidocs/org/apache/hadoop/hbase/RegionException.html
index 99f5e61..d3cf18a 100644
--- a/apidocs/org/apache/hadoop/hbase/RegionException.html
+++ b/apidocs/org/apache/hadoop/hbase/RegionException.html
@@ -91,16 +91,16 @@
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-http://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/Throwable.html?is-external=true";
 title="class or interface in java.lang">java.lang.Throwable
 
 
-http://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/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">java.lang.Exception
 
 
-http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">java.io.IOException
+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.HBaseIOException
@@ -123,7 +123,7 @@
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
 
 
 Direct Known Subclasses:
@@ -163,7 +163,7 @@ extends 
 
 
-RegionException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s)
+RegionException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s)
 Constructor
 
 
@@ -180,15 +180,15 @@ extends 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">Throwable
-http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace--";
 title="class or interface in java.lang">fillInStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getCause--";
 title="class or interface in java.lang">getCause, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage--";
 title="class or interface in java.lang">getLocalizedMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getMessage--";
 title="class or interface in java.lang">getMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace--";
 title="class or inter
 face in java.lang">getStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed--";
 title="class or interface in java.lang">getSuppressed, http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace--";
 title="class or interface in java.lang">printStackTrace, http://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, http://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, http://docs.oracle.com/javase/8/docs/api/java/lan
 
g/Throwable.html?is-external=true#setStackTrace-java.lang.StackTraceElement:A-" 
title="class or interface in java.lang">setStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#toString--";
 title="class or interface in java.lang">toString
+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/jav

[07/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/Scan.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Scan.html 
b/apidocs/org/apache/hadoop/hbase/client/Scan.html
index 806ad85..1ca681e 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Scan.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Scan.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.client.Operation
@@ -215,19 +215,19 @@ extends 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CLIENT_SCANNER_ASYNC_PREFETCH
 Parameter name for client scanner sync/async prefetch 
toggle.
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 SCAN_ATTRIBUTES_METRICS_DATA
 Deprecated. 
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 SCAN_ATTRIBUTES_METRICS_ENABLE
 Deprecated. 
 since 1.0.0. Use setScanMetricsEnabled(boolean)
@@ -235,7 +235,7 @@ extends 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 SCAN_ATTRIBUTES_TABLE_NAME 
 
 
@@ -361,7 +361,7 @@ extends getFamilies() 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapNavigableSet>
+https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapNavigableSet>
 getFamilyMap()
 Getting the familyMap
 
@@ -371,7 +371,7 @@ extends getFilter() 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object>
+https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object>
 getFingerprint()
 Compile the table and column family (i.e.
 
@@ -442,7 +442,7 @@ extends includeStopRow() 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean
+https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean
 isAsyncPrefetch() 
 
 
@@ -493,11 +493,11 @@ extends 
 
 Scan
-setACL(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,org.apache.hadoop.hbase.security.access.Permission> perms) 
+setACL(https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,org.apache.hadoop.hbase.security.access.Permission> perms) 
 
 
 Scan
-setACL(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang

[48/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/constant-values.html
--
diff --git a/apidocs/constant-values.html b/apidocs/constant-values.html
index 95efc3a..152b247 100644
--- a/apidocs/constant-values.html
+++ b/apidocs/constant-values.html
@@ -93,49 +93,49 @@
 
 
 
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+public 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
 CONFIG
 "Configuration"
 
 
 
 
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+public 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
 COPROC
 "Coprocesssor"
 
 
 
 
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+public 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
 PHOENIX
 "Phoenix"
 
 
 
 
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+public 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
 REPLICATION
 "Replication"
 
 
 
 
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+public 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
 SPARK
 "Spark"
 
 
 
 
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+public 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
 TOOLS
 "Tools"
 
 
 
 
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+public 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
 UNITTEST
 "Unittest"
 
@@ -154,77 +154,77 @@
 
 
 
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+public 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
 BLOCKCACHE
 "BLOCKCACHE"
 
 
 
 
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+public 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
 BLOCKSIZE
 "BLOCKSIZE"
 
 
 
 
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+public 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
 BLOOMFILTER
 "BLOOMFILTER"
 
 
 
 
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+public 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
 CACHE_BLOOMS_ON_WRITE
 "CACHE_BLOOMS_ON_WRITE"
 
 
 
 
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+public 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
 CACHE_DATA_IN_L1
 "CACHE_DATA_IN_L1"
 
 
 
 
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+public 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
 CACHE_DATA_ON_WRITE
 "CACHE_DATA_ON_WRITE"
 
 
 
 
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+public static final https://docs.oracle.com/javase/8/docs/ap

[12/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/Query.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Query.html 
b/apidocs/org/apache/hadoop/hbase/client/Query.html
index 3a6a0da..beb9848 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Query.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Query.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.client.Operation
@@ -150,7 +150,7 @@ extends Field and Description
 
 
-protected http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+protected https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
 colFamTimeRangeMap 
 
 
@@ -162,7 +162,7 @@ extends filter 
 
 
-protected http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean
+protected https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean
 loadColumnFamiliesOnDemand 
 
 
@@ -223,7 +223,7 @@ extends getAuthorizations() 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
 getColumnFamilyTimeRange() 
 
 
@@ -241,7 +241,7 @@ extends getIsolationLevel() 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean
+https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean
 getLoadColumnFamiliesOnDemandValue()
 Get the raw loadColumnFamiliesOnDemand setting; if it's not 
set, can be null.
 
@@ -254,11 +254,11 @@ extends 
 Query
-setACL(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,org.apache.hadoop.hbase.security.access.Permission> perms) 
+setACL(https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,org.apache.hadoop.hbase.security.access.Permission> perms) 
 
 
 Query
-setACL(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String user,
+setACL(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String user,
   
org.apache.hadoop.hbase.security.access.Permission perms) 
 
 
@@ -326,8 +326,8 @@ extends 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
-http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--";
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-";
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--";
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--";
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--";
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--";
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/8/docs/api/java/lang
 /Object.html?is-external=true#notifyAll--" title="class or interface in 
java.lang">notifyAll, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--";
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-";
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/8/docs/api/java/lang/Obje

[16/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/DoNotRetryRegionException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/DoNotRetryRegionException.html 
b/apidocs/org/apache/hadoop/hbase/client/DoNotRetryRegionException.html
index 8fd0886..343e4bb 100644
--- a/apidocs/org/apache/hadoop/hbase/client/DoNotRetryRegionException.html
+++ b/apidocs/org/apache/hadoop/hbase/client/DoNotRetryRegionException.html
@@ -91,16 +91,16 @@
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-http://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/Throwable.html?is-external=true";
 title="class or interface in java.lang">java.lang.Throwable
 
 
-http://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/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">java.lang.Exception
 
 
-http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">java.io.IOException
+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.HBaseIOException
@@ -128,7 +128,7 @@
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
 
 
 Direct Known Subclasses:
@@ -165,7 +165,7 @@ extends DoNotRetryRegionException() 
 
 
-DoNotRetryRegionException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s) 
+DoNotRetryRegionException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s) 
 
 
 
@@ -180,15 +180,15 @@ extends 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">Throwable
-http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace--";
 title="class or interface in java.lang">fillInStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getCause--";
 title="class or interface in java.lang">getCause, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage--";
 title="class or interface in java.lang">getLocalizedMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getMessage--";
 title="class or interface in java.lang">getMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace--";
 title="class or inter
 face in java.lang">getStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed--";
 title="class or interface in java.lang">getSuppressed, http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace--";
 title="class or interface in java.lang">printStackTrace, http://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, http://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, http://docs.oracle.com/javase/8/docs/api/java/lan
 
g/Throwable.html?is-external=true#setStackTrace-java.lang.StackTraceElement:A-" 
title="class or interface in java.lang">setStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#toString--";
 title="class or interface in java.lang">toString
+Methods inherited from class java.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Throwa

[45/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/CellUtil.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/CellUtil.html 
b/apidocs/org/apache/hadoop/hbase/CellUtil.html
index dc45ae2..0b860b3 100644
--- a/apidocs/org/apache/hadoop/hbase/CellUtil.html
+++ b/apidocs/org/apache/hadoop/hbase/CellUtil.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.CellUtil
@@ -111,7 +111,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Public
 public final class CellUtil
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 Utility methods helpful for slinging Cell instances. Some methods below 
are for internal
  use only and are marked InterfaceAudience.Private at the method level. Note 
that all such methods
  have been marked deprecated in HBase-2.0 which will be subsequently removed 
in HBase-3.0
@@ -212,7 +212,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 static int
 copyFamilyTo(Cell cell,
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
+https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
 int destinationOffset)
 Copies the family to the given bytebuffer
 
@@ -228,7 +228,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 static int
 copyQualifierTo(Cell cell,
-   http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
+   https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
int destinationOffset)
 Copies the qualifier to the given bytebuffer
 
@@ -250,7 +250,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 static int
 copyRowTo(Cell cell,
- http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
+ https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
  int destinationOffset)
 Copies the row to the given bytebuffer
 
@@ -268,7 +268,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 static int
 copyTagTo(Cell cell,
- http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
+ https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
  int destinationOffset)
 Deprecated. 
 As of HBase-2.0. Will be 
removed in 3.0.
@@ -286,7 +286,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 static int
 copyValueTo(Cell cell,
-   http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
+   https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
int destinationOffset)
 Copies the value to the given bytebuffer
 
@@ -374,7 +374,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 static Cell
 createCell(Cell cell,
-  http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in 
java.util">List tags)
+  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. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
 
@@ -386,19 +386,19 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 static CellScanner
-createCellScanner(http://docs.oracle.com/javase/8/docs/api/java/lang/Iterable.html?is-external=true";
 title="class or interface in java.lang">Iterable ce

[33/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/RetryImmediatelyException.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/RetryImmediatelyException.html 
b/apidocs/org/apache/hadoop/hbase/RetryImmediatelyException.html
index cf33d78..36052a7 100644
--- a/apidocs/org/apache/hadoop/hbase/RetryImmediatelyException.html
+++ b/apidocs/org/apache/hadoop/hbase/RetryImmediatelyException.html
@@ -91,16 +91,16 @@
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-http://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/Throwable.html?is-external=true";
 title="class or interface in java.lang">java.lang.Throwable
 
 
-http://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/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">java.lang.Exception
 
 
-http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">java.io.IOException
+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.RetryImmediatelyException
@@ -118,7 +118,7 @@
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
 
 
 Direct Known Subclasses:
@@ -128,7 +128,7 @@
 
 @InterfaceAudience.Public
 public class RetryImmediatelyException
-extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
+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
@@ -151,7 +151,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.ht
 Constructor and Description
 
 
-RetryImmediatelyException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s) 
+RetryImmediatelyException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s) 
 
 
 
@@ -166,15 +166,15 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.ht
 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">Throwable
-http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace--";
 title="class or interface in java.lang">fillInStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getCause--";
 title="class or interface in java.lang">getCause, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage--";
 title="class or interface in java.lang">getLocalizedMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getMessage--";
 title="class or interface in java.lang">getMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace--";
 title="class or inter
 face in java.lang">getStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed--";
 title="class or interface in java.lang">getSuppressed, http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace--";
 title="class or interface in java.lang">printStackTrace, http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace-

[15/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.html 
b/apidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.html
index df7925c..d0d02d9 100644
--- a/apidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.html
+++ b/apidocs/org/apache/hadoop/hbase/client/HTableMultiplexer.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.client.HTableMultiplexer
@@ -111,7 +111,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Public
 public class HTableMultiplexer
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 HTableMultiplexer provides a thread-safe non blocking PUT 
API across all the tables.
  Each put will be sharded into different buffer queues based on its 
destination region server.
  So each region server buffer queue will only have the puts which share the 
same destination.
@@ -164,15 +164,15 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 Field and Description
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 TABLE_MULTIPLEXER_FLUSH_PERIOD_MS 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 TABLE_MULTIPLEXER_INIT_THREADS 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 TABLE_MULTIPLEXER_MAX_RETRIES_IN_QUEUE 
 
 
@@ -224,9 +224,9 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 getHTableMultiplexerStatus() 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 put(byte[] tableName,
-   http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List puts)
+   https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List puts)
 Deprecated. 
 Use put(TableName,
 List) instead.
 
@@ -252,9 +252,9 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 put(TableName tableName,
-   http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List puts)
+   https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List puts)
 The puts request will be buffered by their corresponding 
buffer queue.
 
 
@@ -278,8 +278,8 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
-http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--";
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-";
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--";
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--";
 title="class or interface in java.lang">get

[43/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/ClusterStatus.html 
b/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
index b3e345b..1b657f2 100644
--- a/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
+++ b/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.ClusterStatus
@@ -118,9 +118,9 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Public
- http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
+ https://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
 public class ClusterStatus
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+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 ClusterMetrics
 Status information on the HBase cluster.
  
@@ -180,15 +180,15 @@ implements 
 
 
-ClusterStatus(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hbaseVersion,
- http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String clusterid,
- http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map servers,
- http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection deadServers,
+ClusterStatus(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hbaseVersion,
+ https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String clusterid,
+ https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map servers,
+ https://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection deadServers,
  ServerName master,
- http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection backupMasters,
- http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in 
java.util">List rit,
- http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String[] masterCoprocessors,
- http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean balancerOn,
+ https://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection backupMasters,
+ https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in 
java.util">List rit,
+ https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String[] masterCoprocessors,
+ https://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean balancerOn,
  int masterInfoPort)
 Deprecated. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
@@ -212,18 +212,18 @@ implements 
 
 boolean
-equals(http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object o)
+equals(https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object o)
 Deprecated. 
  
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+https://docs.oracle.com/jav

[41/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/HColumnDescriptor.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/HColumnDescriptor.html 
b/apidocs/org/apache/hadoop/hbase/HColumnDescriptor.html
index 2a7df6f..b7f6e3e 100644
--- a/apidocs/org/apache/hadoop/hbase/HColumnDescriptor.html
+++ b/apidocs/org/apache/hadoop/hbase/HColumnDescriptor.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.HColumnDescriptor
@@ -109,16 +109,16 @@ var activeTableTab = "activeTableTab";
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, ColumnFamilyDescriptor
+https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, ColumnFamilyDescriptor
 
 
 Deprecated.
 
 @InterfaceAudience.Public
- http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
+ https://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
 public class HColumnDescriptor
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
-implements ColumnFamilyDescriptor, 
http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+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 ColumnFamilyDescriptor, 
https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
 An HColumnDescriptor contains information about a column 
family such as the
  number of versions, compression settings, etc.
 
@@ -142,67 +142,67 @@ implements Field and Description
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 BLOCKCACHE
 Deprecated. 
  
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 BLOCKSIZE
 Deprecated. 
  
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 BLOOMFILTER
 Deprecated. 
  
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 CACHE_BLOOMS_ON_WRITE
 Deprecated. 
  
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 CACHE_DATA_IN_L1
 Deprecated. 
  
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 CACHE_DATA_ON_WRITE
 Deprecated. 
  
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 CACHE_INDEX_ON_WRITE
 Deprecated. 
  
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface 

[32/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/ServerMetrics.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/ServerMetrics.html 
b/apidocs/org/apache/hadoop/hbase/ServerMetrics.html
index 3b46b9c..92f46bb 100644
--- a/apidocs/org/apache/hadoop/hbase/ServerMetrics.html
+++ b/apidocs/org/apache/hadoop/hbase/ServerMetrics.html
@@ -127,7 +127,7 @@ public interface Method and Description
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">SetString>
+https://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">SetString>
 getCoprocessorNames()
 Return the RegionServer-level and Region-level 
coprocessors
 
@@ -145,7 +145,7 @@ public interface getMaxHeapSize() 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
 getRegionMetrics() 
 
 
@@ -155,7 +155,7 @@ public interface 
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 getReplicationLoadSourceList()
 Call directly from client such as hbase shell
 
@@ -271,7 +271,7 @@ public interface 
 
 getReplicationLoadSourceList
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List getReplicationLoadSourceList()
+https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List getReplicationLoadSourceList()
 Call directly from client such as hbase shell
 
 Returns:
@@ -300,7 +300,7 @@ public interface 
 
 getRegionMetrics
-http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map getRegionMetrics()
+https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map getRegionMetrics()
 
 Returns:
 region load metrics
@@ -313,7 +313,7 @@ public interface 
 
 getCoprocessorNames
-http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">SetString> getCoprocessorNames()
+https://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">SetString> getCoprocessorNames()
 Return the RegionServer-level and Region-level 
coprocessors
 
 Returns:

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/ServerName.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/ServerName.html 
b/apidocs/org/apache/hadoop/hbase/ServerName.html
index 565ca9a..e64412a 100644
--- a/apidocs/org/apache/hadoop/hbase/ServerName.html
+++ b/apidocs/org/apache/hadoop/hbase/ServerName.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.ServerName
@@ -109,14 +109,14 @@ var activeTableTab = "activeTableTab";
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable, http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable, https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Compa

[24/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/Admin.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Admin.html 
b/apidocs/org/apache/hadoop/hbase/client/Admin.html
index f2d60a6..a7089ff 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Admin.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Admin.html
@@ -101,13 +101,13 @@ var activeTableTab = "activeTableTab";
 
 
 All Superinterfaces:
-org.apache.hadoop.hbase.Abortable, http://docs.oracle.com/javase/8/docs/api/java/lang/AutoCloseable.html?is-external=true";
 title="class or interface in java.lang">AutoCloseable, http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html?is-external=true";
 title="class or interface in java.io">Closeable
+org.apache.hadoop.hbase.Abortable, https://docs.oracle.com/javase/8/docs/api/java/lang/AutoCloseable.html?is-external=true";
 title="class or interface in java.lang">AutoCloseable, https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html?is-external=true";
 title="class or interface in java.io">Closeable
 
 
 
 @InterfaceAudience.Public
 public interface Admin
-extends org.apache.hadoop.hbase.Abortable, http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html?is-external=true";
 title="class or interface in java.io">Closeable
+extends org.apache.hadoop.hbase.Abortable, https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html?is-external=true";
 title="class or interface in java.io">Closeable
 The administrative API for HBase. Obtain an instance from 
Connection.getAdmin()
 and
  call close()
 when done.
  Admin can be used to create, drop, list, enable and disable and otherwise 
modify tables,
@@ -140,8 +140,8 @@ extends org.apache.hadoop.hbase.Abortable, http://docs.oracle.com/javas
 
 
 void
-abort(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String why,
- http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">Throwable e)
+abort(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String why,
+ https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">Throwable e)
 Abort the server or client.
 
 
@@ -153,7 +153,7 @@ extends org.apache.hadoop.hbase.Abortable, http://docs.oracle.com/javas
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true";
 title="class or interface in java.util.concurrent">FutureBoolean>
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true";
 title="class or interface in java.util.concurrent">FutureBoolean>
 abortProcedureAsync(long procId,
boolean mayInterruptIfRunning)
 Abort a procedure but does not block and wait for 
completion.
@@ -178,7 +178,7 @@ extends org.apache.hadoop.hbase.Abortable, http://docs.oracle.com/javas
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true";
 title="class or interface in java.util.concurrent">FutureVoid>
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true";
 title="class or interface in java.util.concurrent">FutureVoid>
 addColumnFamilyAsync(TableName tableName,
 ColumnFamilyDescriptor columnFamily)
 Add a column family to an existing table.
@@ -186,29 +186,29 @@ extends org.apache.hadoop.hbase.Abortable, http://docs.oracle.com/javas
 
 
 default void
-addReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String peerId,
+addReplicationPeer(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String peerId,
   ReplicationPeerConfig peerConfig)
 Add a new replication peer for replicating data to slave 
cluster.
 
 
 
 void
-addReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String peerId,
+addReplicationPeer(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String peerId,
  

[38/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/HTableDescriptor.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/HTableDescriptor.html 
b/apidocs/org/apache/hadoop/hbase/HTableDescriptor.html
index 6bba12a..0084b17 100644
--- a/apidocs/org/apache/hadoop/hbase/HTableDescriptor.html
+++ b/apidocs/org/apache/hadoop/hbase/HTableDescriptor.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":42,"i1":42,"i2":42,"i3":42,"i4":42,"i5":42,"i6":42,"i7":42,"i8":42,"i9":42,"i10":42,"i11":42,"i12":42,"i13":42,"i14":42,"i15":42,"i16":42,"i17":42,"i18":42,"i19":42,"i20":42,"i21":42,"i22":42,"i23":42,"i24":42,"i25":42,"i26":42,"i27":42,"i28":42,"i29":42,"i30":42,"i31":42,"i32":42,"i33":42,"i34":42,"i35":42,"i36":42,"i37":42,"i38":42,"i39":42,"i40":42,"i41":42,"i42":42,"i43":42,"i44":42,"i45":41,"i46":42,"i47":42,"i48":42,"i49":42,"i50":42,"i51":42,"i52":42,"i53":42,"i54":42,"i55":42,"i56":42,"i57":42,"i58":42,"i59":42,"i60":42,"i61":42,"i62":42,"i63":42,"i64":42,"i65":42,"i66":42,"i67":42,"i68":42,"i69":42,"i70":42,"i71":42,"i72":42,"i73":42,"i74":42};
+var methods = 
{"i0":42,"i1":42,"i2":42,"i3":42,"i4":42,"i5":42,"i6":42,"i7":42,"i8":42,"i9":42,"i10":42,"i11":42,"i12":42,"i13":42,"i14":42,"i15":42,"i16":42,"i17":42,"i18":42,"i19":42,"i20":42,"i21":42,"i22":42,"i23":42,"i24":42,"i25":42,"i26":42,"i27":42,"i28":42,"i29":42,"i30":42,"i31":42,"i32":42,"i33":42,"i34":42,"i35":42,"i36":42,"i37":42,"i38":42,"i39":42,"i40":42,"i41":42,"i42":42,"i43":42,"i44":41,"i45":42,"i46":42,"i47":42,"i48":42,"i49":42,"i50":42,"i51":42,"i52":42,"i53":42,"i54":42,"i55":42,"i56":42,"i57":42,"i58":42,"i59":42,"i60":42,"i61":42,"i62":42,"i63":42,"i64":42,"i65":42,"i66":42,"i67":42,"i68":42,"i69":42,"i70":42,"i71":42,"i72":42,"i73":42};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete 
Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.HTableDescriptor
@@ -109,7 +109,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, TableDescriptor
+https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, TableDescriptor
 
 
 Deprecated. 
@@ -117,11 +117,11 @@ var activeTableTab = "activeTableTab";
  Use TableDescriptorBuilder to 
build HTableDescriptor.
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
+https://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
  @InterfaceAudience.Public
 public class HTableDescriptor
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
-implements TableDescriptor, http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
+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 TableDescriptor, https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
 HTableDescriptor contains the details about an HBase table  
such as the descriptors of
  all the column families, is the table a catalog table,  hbase:meta 
,
  if the table is read only, the maximum size of the memstore,
@@ -145,7 +145,7 @@ implements Field and Description
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 COMPACTION_ENABLED
 Deprecated. 
  
@@ -193,37 +193,37 @@ implements 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 DURABILITY
 Deprecated. 
  
 
 

[44/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/ChoreService.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/ChoreService.html 
b/apidocs/org/apache/hadoop/hbase/ChoreService.html
index da00c91..bb6ce37 100644
--- a/apidocs/org/apache/hadoop/hbase/ChoreService.html
+++ b/apidocs/org/apache/hadoop/hbase/ChoreService.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.ChoreService
@@ -111,12 +111,12 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Public
 public class ChoreService
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 ChoreService is a service that can be used to schedule 
instances of ScheduledChore to run
  periodically while sharing threads. The ChoreService is backed by a
- http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ScheduledThreadPoolExecutor.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ScheduledThreadPoolExecutor whose core 
pool size changes dynamically depending on the
+ https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ScheduledThreadPoolExecutor.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ScheduledThreadPoolExecutor whose core 
pool size changes dynamically depending on the
  number of ScheduledChore 
scheduled. All of the threads in the core thread pool of the
- underlying http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ScheduledThreadPoolExecutor.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ScheduledThreadPoolExecutor are set to 
be daemon threads.
+ underlying https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ScheduledThreadPoolExecutor.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ScheduledThreadPoolExecutor are set to 
be daemon threads.
  
  The ChoreService provides the ability to schedule, cancel, and trigger 
instances of
  ScheduledChore. The 
ChoreService also provides the ability to check on the status of
@@ -147,14 +147,14 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 Constructor and Description
 
 
-ChoreService(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String coreThreadPoolPrefix) 
+ChoreService(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String coreThreadPoolPrefix) 
 
 
-ChoreService(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String coreThreadPoolPrefix,
+ChoreService(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String coreThreadPoolPrefix,
 boolean jitter) 
 
 
-ChoreService(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String coreThreadPoolPrefix,
+ChoreService(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String coreThreadPoolPrefix,
 int corePoolSize,
 boolean jitter) 
 
@@ -196,8 +196,8 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
-http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--";
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-";
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--";
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--";
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--";
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--";
 title="class or interface in java

[37/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/InvalidFamilyOperationException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/InvalidFamilyOperationException.html 
b/apidocs/org/apache/hadoop/hbase/InvalidFamilyOperationException.html
index f66be98..c0db59c 100644
--- a/apidocs/org/apache/hadoop/hbase/InvalidFamilyOperationException.html
+++ b/apidocs/org/apache/hadoop/hbase/InvalidFamilyOperationException.html
@@ -91,16 +91,16 @@
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-http://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/Throwable.html?is-external=true";
 title="class or interface in java.lang">java.lang.Throwable
 
 
-http://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/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">java.lang.Exception
 
 
-http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">java.io.IOException
+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.HBaseIOException
@@ -128,7 +128,7 @@
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
 
 
 
@@ -164,12 +164,12 @@ extends 
 
 
-InvalidFamilyOperationException(http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">Exception e)
+InvalidFamilyOperationException(https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">Exception e)
 Constructor taking another exception.
 
 
 
-InvalidFamilyOperationException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s)
+InvalidFamilyOperationException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s)
 Constructor
 
 
@@ -186,15 +186,15 @@ extends 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">Throwable
-http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace--";
 title="class or interface in java.lang">fillInStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getCause--";
 title="class or interface in java.lang">getCause, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage--";
 title="class or interface in java.lang">getLocalizedMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getMessage--";
 title="class or interface in java.lang">getMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace--";
 title="class or inter
 face in java.lang">getStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed--";
 title="class or interface in java.lang">getSuppressed, http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace--";
 title="class or interface in java.lang">printStackTrace, http://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, http://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, http://docs.oracle.com/javase/8/docs/api/java/lan
 
g/Throwable.html?is-exte

[08/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/RowMutations.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/RowMutations.html 
b/apidocs/org/apache/hadoop/hbase/client/RowMutations.html
index b50d2b7..8958b78 100644
--- a/apidocs/org/apache/hadoop/hbase/client/RowMutations.html
+++ b/apidocs/org/apache/hadoop/hbase/client/RowMutations.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.client.RowMutations
@@ -109,13 +109,13 @@ var activeTableTab = "activeTableTab";
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, Row
+https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, Row
 
 
 
 @InterfaceAudience.Public
 public class RowMutations
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+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 Row
 Performs multiple mutations atomically on a single row.
  Currently Put and Delete are supported.
@@ -192,7 +192,7 @@ implements 
 
 RowMutations
-add(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List mutations)
+add(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List mutations)
 Currently only supports Put and Delete mutations.
 
 
@@ -222,7 +222,7 @@ implements 
 
 boolean
-equals(http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object obj)
+equals(https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object obj)
 Deprecated. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
  No replacement
@@ -234,7 +234,7 @@ implements getMaxPriority() 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 getMutations() 
 
 
@@ -252,7 +252,7 @@ implements 
 
 static RowMutations
-of(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List mutations)
+of(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List mutations)
 Create a RowMutations 
with the specified mutations.
 
 
@@ -261,8 +261,8 @@ implements 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
-http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--";
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--";
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--";
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--";
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notifyAll--";
 title="class or interface in java.lang">notifyAll, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--";
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.ht
 ml?is-external=true#wait--" title="class or interface in java.lang">wait, 
http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-";
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-";
 title="class or interface in java.lang">wait
+Methods inherited from class java.lang.https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface 

[26/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/class-use/TableExistsException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/class-use/TableExistsException.html 
b/apidocs/org/apache/hadoop/hbase/class-use/TableExistsException.html
index d8bdef1..611fa84 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/TableExistsException.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/TableExistsException.html
@@ -113,22 +113,22 @@
 
 
 void
-Admin.cloneSnapshot(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String snapshotName,
+Admin.cloneSnapshot(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String snapshotName,
  TableName tableName)
 Create a new table by cloning the snapshot content.
 
 
 
 void
-Admin.cloneSnapshot(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String snapshotName,
+Admin.cloneSnapshot(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String snapshotName,
  TableName tableName,
  boolean restoreAcl)
 Create a new table by cloning the snapshot content.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true";
 title="class or interface in java.util.concurrent">FutureVoid>
-Admin.cloneSnapshotAsync(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String snapshotName,
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true";
 title="class or interface in java.util.concurrent">FutureVoid>
+Admin.cloneSnapshotAsync(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String snapshotName,
   TableName tableName)
 Create a new table by cloning the snapshot content, but 
does not block
  and wait for it to be completely cloned.



[28/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html 
b/apidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
index 789536f..1957877 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
@@ -164,7 +164,7 @@
 
 
 static HRegionInfo
-HRegionInfo.parseFrom(http://docs.oracle.com/javase/8/docs/api/java/io/DataInputStream.html?is-external=true";
 title="class or interface in java.io">DataInputStream in)
+HRegionInfo.parseFrom(https://docs.oracle.com/javase/8/docs/api/java/io/DataInputStream.html?is-external=true";
 title="class or interface in java.io">DataInputStream in)
 Deprecated. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
  Use RegionInfo.parseFrom(DataInputStream).
@@ -201,7 +201,7 @@
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+static https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 HRegionInfo.parseDelimitedFrom(byte[] bytes,
   int offset,
   int length)
@@ -258,7 +258,7 @@
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HRegionInfo.getRegionNameAsStringForDisplay(HRegionInfo hri,

org.apache.hadoop.conf.Configuration conf)
 Deprecated. 
@@ -280,7 +280,7 @@
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HRegionInfo.getShortNameToLog(HRegionInfo... hris)
 Deprecated. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
@@ -318,8 +318,8 @@
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
-HRegionInfo.getShortNameToLog(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List hris)
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+HRegionInfo.getShortNameToLog(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List hris)
 Deprecated. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
  Use RegionInfo.getShortNameToLog(List))}.
@@ -355,7 +355,7 @@
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 Admin.getOnlineRegions(ServerName sn)
 Deprecated. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
@@ -365,7 +365,7 @@
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 Admin.getTableRegions(TableName tableName)
 Deprecated. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html 
b/apidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
index 05c089c..0945890 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
@@ -149,19 +149,19 @@
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 RegionLocator.getAllRegionLocations()
 Retrieves all of the regions associated with this 
table.
 
 
 
-default http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="cla

[23/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/AdvancedScanResultConsumer.ScanController.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/AdvancedScanResultConsumer.ScanController.html
 
b/apidocs/org/apache/hadoop/hbase/client/AdvancedScanResultConsumer.ScanController.html
index e12d889..afdcd68 100644
--- 
a/apidocs/org/apache/hadoop/hbase/client/AdvancedScanResultConsumer.ScanController.html
+++ 
b/apidocs/org/apache/hadoop/hbase/client/AdvancedScanResultConsumer.ScanController.html
@@ -134,7 +134,7 @@ public static interface Method and Description
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
 cursor()
 Get the scan cursor if available.
 
@@ -202,7 +202,7 @@ public static interface 
 
 cursor
-http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional cursor()
+https://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional cursor()
 Get the scan cursor if available.
 
 Returns:

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/Append.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Append.html 
b/apidocs/org/apache/hadoop/hbase/client/Append.html
index e41805f..b655827 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Append.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Append.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.client.Operation
@@ -124,7 +124,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, CellScannable, Attributes, Row, 
org.apache.hadoop.hbase.io.HeapSize
+https://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, CellScannable, Attributes, Row, 
org.apache.hadoop.hbase.io.HeapSize
 
 
 
@@ -206,7 +206,7 @@ extends 
 Append(byte[] row,
   long ts,
-  http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> familyMap)
+  https://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> familyMap)
 Construct the Append with user defined data.
 
 
@@ -268,16 +268,16 @@ extends 
 
 Append
-setACL(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,org.apache.hadoop.hbase.security.access.Permission> perms) 
+setACL(https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,org.apache.hadoop.hbase.security.access.Permission> perms) 
 
 
 Append
-setACL(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String user,
+setACL(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String user,
   
org.apache.hadoop.hbase.security.access.Permission perms) 
 
 
 Append
-setAttribute(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
+setAttribute(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
 byte[] value)
 Sets an attribute.
 
@@ -290,7 +290,7 @@ extends 
 
 Append
-setClusterIds(ht

[40/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/HConstants.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/HConstants.html 
b/apidocs/org/apache/hadoop/hbase/HConstants.html
index 741a24f..737a05b 100644
--- a/apidocs/org/apache/hadoop/hbase/HConstants.html
+++ b/apidocs/org/apache/hadoop/hbase/HConstants.html
@@ -91,7 +91,7 @@
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.HConstants
@@ -105,7 +105,7 @@
 
 @InterfaceAudience.Public
 public final class HConstants
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 HConstants holds a bunch of HBase-related constants
 
 
@@ -136,18 +136,18 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 BASE_NAMESPACE_DIR 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 BUCKET_CACHE_IOENGINE_KEY
 Current ioengine options in include: heap, offheap and 
file:PATH (where PATH is the path
  to the file that will host the file-based cache.
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 BUCKET_CACHE_SIZE_KEY
 When using bucket cache, this is a float that EITHER 
represents a percentage of total heap
  memory size to give to the cache (if < 1.0) OR, it is the capacity in
@@ -155,19 +155,19 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 BULKLOAD_MAX_RETRIES_NUMBER
 Maximum time to retry for a failed bulk load request
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 BULKLOAD_STAGING_DIR_NAME
 Staging dir used by bulk load
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 BYTES_PER_CHECKSUM
 The name of the configuration parameter that specifies
  the number of bytes in a newly created checksum chunk.
@@ -180,13 +180,13 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 CATALOG_FAMILY_STR
 The catalog family as a string
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 CHECKSUM_TYPE_NAME
 The name of the configuration parameter that specifies
  the name of an algorithm that is used to compute checksums
@@ -194,31 +194,31 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 CIPHER_AES
 Default cipher for encryptio

[25/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/class-use/TableName.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/TableName.html 
b/apidocs/org/apache/hadoop/hbase/class-use/TableName.html
index 6d2c2d7..e88b1fa 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/TableName.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/TableName.html
@@ -221,17 +221,17 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 static TableName
-TableName.valueOf(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer namespace,
-   http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in 
java.nio">ByteBuffer qualifier) 
+TableName.valueOf(https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer namespace,
+   https://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in 
java.nio">ByteBuffer qualifier) 
 
 
 static TableName
-TableName.valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name) 
+TableName.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) 
 
 
 static TableName
-TableName.valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String namespaceAsString,
-   http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String qualifierAsString) 
+TableName.valueOf(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String namespaceAsString,
+   https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String qualifierAsString) 
 
 
 
@@ -302,7 +302,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 static byte[]
 HRegionInfo.createRegionName(TableName tableName,
 byte[] startKey,
-http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String id,
+https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String id,
 boolean newFormat)
 Deprecated. 
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
@@ -494,20 +494,20 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 TableName[]
-Admin.listTableNames(http://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)
+Admin.listTableNames(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 of the names of userspace tables.
 
 
 
 TableName[]
-Admin.listTableNames(http://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,
+Admin.listTableNames(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,
   boolean includeSysTables)
 List all of the names of userspace tables.
 
 
 
 TableName[]
-Admin.listTableNames(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String regex)
+Admin.listTableNames(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String regex)
 Deprecated. 
 since 2.0 version and will 
be removed in 3.0 version. Use
  Admin.listTableNames(Pattern)
 instead.
@@ -516,7 +516,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 TableName[]
-Admin.listTableNames(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String regex,
+Admin.listTableNames(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String regex,
   boolean includeSysTables)
 Deprecated. 
 since 2.0 version and will 
be removed in 3.0 version. Use
@@ -526,7 +526,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 TableName[]
-Admin.listTableNamesByNamespace(http://

[49/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apache_hbase_reference_guide.pdf
--
diff --git a/apache_hbase_reference_guide.pdf b/apache_hbase_reference_guide.pdf
index 8516ebb..8138981 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:20180220144618+00'00')
-/CreationDate (D:20180220144618+00'00')
+/ModDate (D:20180303060950+00'00')
+/CreationDate (D:20180303060950+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 4536 0 R
+/PageLabels 4761 0 R
 /PageMode /UseOutlines
 /OpenAction [7 0 R /FitH 842.89]
 /ViewerPreferences << /DisplayDocTitle true
@@ -23,8 +23,8 @@ endobj
 endobj
 3 0 obj
 << /Type /Pages
-/Count 708
-/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 493 0 R 502 0 R 510 0 R 515 0 R 520 0 R 525 0 R 529 0 R 545 0 R 555 0 R 560 0 
R 574 0 R 580 0 R 585 0 R 587 0 R 589 0 R 592 0 R 594 0 R 596 0 R 604 0 R 610 0 
R 615 0 R 620 0 R 631 0 R 642 0 R 647 0 R 655 0 R 659 0 R 663 0 R 665 0 R 680 0 
R 694 0 R 704 0 R 706 0 R 708 0 R 717 0 R 729 0 R 739 0 R 747 0 R 753 0 R 756 0 
R 760 0 R 764 0 R 767 0 R 770 0 R 772 0 R 775 0 R 779 0 R 781 0 R 786 0 R 790 0 
R 795 0 R 799 0 R 803 0 R 809 0 R 811 0 
 R 815 0 R 824 0 R 826 0 R 829 0 R 833 0 R 836 0 R 839 0 R 853 0 R 860 0 R 868 
0 R 879 0 R 885 0 R 897 0 R 901 0 R 904 0 R 908 0 R 911 0 R 916 0 R 925 0 R 933 
0 R 937 0 R 941 0 R 946 0 R 950 0 R 952 0 R 967 0 R 978 0 R 983 0 R 990 0 R 993 
0 R 1002 0 R 1011 0 R 1015 0 R 1020 0 R 1025 0 R 1027 0 R 1029 0 R 1031 0 R 
1041 0 R 1049 0 R 1053 0 R 1060 0 R 1067 0 R 1075 0 R 1080 0 R 1085 0 R 1090 0 
R 1098 0 R 1102 0 R 1107 0 R 1109 0 R 1116 0 R 1122 0 R 1124 0 R 1131 0 R 1141 
0 R 1145 0 R 1147 0 R 1149 0 R 1153 0 R 1156 0 R 1161 0 R 1164 0 R 1176 0 R 
1180 0 R 1186 0 R 1194 0 R 1199 0 R 1203 0 R 1207 0 R 1209 0 R 1212 0 R 1215 0 
R 1218 0 R 1223 0 R 1227 0 R 1231 0 R 1236 0 R 1240 0 R 1244 0 R 1246 0 R 1256 
0 R 1259 0 R 1267 0 R 1276 0 R 1282 0 R 1286 0 R 1288 0 R 1298 0 R 1301 0 R 
1307 0 R 1316 0 R 1319 0 R 1326 0 R 1334 0 R 1336 0 R 1338 0 R 1347 0 R 1349 0 
R 1351 0 R 1354 0 R 1356 0 R 1358 0 R 1360 0 R 1362 0 R 1365 0 R 1369 0 R 1374 
0 R 1376 0 R 1378 0 R 1380 0 R 1385 0 R 1392 0 R 1398 0 R
  1401 0 R 1403 0 R 1406 0 R 1410 0 R 1414 0 R 1417 0 R 1419 0 R 1421 0 R 1424 
0 R 1429 0 R 1435 0 R 1443 0 R 1457 0 R 1471 0 R 1474 0 R 1479 0 R 1492 0 R 
1501 0 R 1515 0 R 1521 0 R 1530 0 R 1545 0 R 1559 0 R 1571 0 R 1576 0 R 1582 0 
R 1593 0 R 1599 0 R 1604 0 R 1612 0 R 1615 0 R 1624 0 R 1631 0 R 1634 0 R 1647 
0 R 1649 0 R 1655 0 R 1659 0 R 1661 0 R 1669 0 R 1677 0 R 1681 0 R 1683 0 R 
1685 0 R 1697 0 R 1703 0 R 1712 0 R 1718 0 R 1732 0 R 1737 0 R 1746 0 R 1754 0 
R 1760 0 R 1767 0 R 1771 0 R 1774 0 R 1776 0 R 1783 0 R 1787 0 R 1793 0 R 1797 
0 R 1805 0 R 1810 0 R 1816 0 R 1821 0 R 1823 0 R 1833 0 R 1840 0 R 1846 0 R 
1851 0 R 1855 0 R 1858 0 R 1863 0 R 1869 0 R 1876 0 R 1878 0 R 1880 0 R 1883 0 
R 1891 0 R 1894 0 R 1901 0 R 1910 0 R 1913 0 R 1918 0 R 1920 0 R 1923 0 R 1926 
0 R 1929 0 R 1936 0 R 1942 0 R 1944 0 R 1952 0 R 1959 0 R 1966 0 R 1972 0 R 
1977 0 R 1979 0 R 1988 0 R 1998 0 R 2008 0 R 2014 0 R 2022 0 R 2024 0 R 2027 0 
R 2029 0 R 2032 0 R 2035 0 R 2038 0 R 2043 0 R 2047 0 R 2058 0
  R 2061 0 R 2066 0 R 2069 0 R 2071 0 R 2076 0 R 2086 0 R 2088 0 R 2090 0 R 
2092 0 R 2094 0 R 2097 0 R 2099 0 R 2101 0 R 2104 0 R 2106 0 R 2108 0 R 2112 0 
R 2117 0 R 2126 0 R 2128 0 R 2130 0 R 2137 0 R 2139 0 R 2144 0 R 2146 0 R 2148 
0 R 2155 0 R 2160 0 R 2164 0 R 2168 0 R 2172 0 R 2174 0 R 2176 0 R 2180 0 R 
2183 0 R 2185 0 R 2187 0 R 2191 0 R 2193 0 R 2196 0 R 2198 0 R 2200 0 R 2202 0 
R 2209 0 R 2212 0 R 2217 0 R 2219 0 R 2221 0 R 2223 0 R 2225 0 R 2233 0 R 2244 
0 R 2258 0 R 2269 0 R 2273 0 R 2279 0 R 2283 0 R 2286 0 R 2291 0 R 2297 0 R 
2299 0 R 2302 0 R 2304 0 R 2306 0 R 2308 0 R 2312 0 R 2314 0 R 2327 0 R 2330 0 
R 2338 0 R 2344 0 R 2356 0 R 2370 0 R 2384 0 R 2401 0 R 2405 0 R 2407 0 R 2411 
0 R 2429 0 R 2435 0 R 2447 0 R 2451 0 R 2455 0 R 2464 0 R 2474 0 R 2479 0 R 
2490 0 R 2503 0 R 2521 0 R 2530 0 R 2533 0 R 2542 0 R 2560 0 R 2567 0 R 2570 0 
R 2575 0 R 2579 0 R 2582 0 R 2591 0 R 2600 0 R 2603 0 R 2605 0 R 2609 0 R 2624 
0 R 2632 0 R 2637 0 R 2642 0 R 2645 0

[17/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/ConnectionFactory.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/ConnectionFactory.html 
b/apidocs/org/apache/hadoop/hbase/client/ConnectionFactory.html
index 7e0f75a..e3dba54 100644
--- a/apidocs/org/apache/hadoop/hbase/client/ConnectionFactory.html
+++ b/apidocs/org/apache/hadoop/hbase/client/ConnectionFactory.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.client.ConnectionFactory
@@ -111,7 +111,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Public
 public class ConnectionFactory
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 A non-instantiable class that manages creation of Connections. Managing the 
lifecycle of
  the Connections to the cluster is 
the responsibility of the caller. From a
  Connection, Table 
implementations are retrieved with
@@ -155,7 +155,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 Field and Description
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+static https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CLIENT_ASYNC_CONNECTION_IMPL 
 
 
@@ -195,20 +195,20 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 Method and Description
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
+static 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
 createAsyncConnection()
 Call createAsyncConnection(Configuration)
 using default HBaseConfiguration.
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
+static 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
 createAsyncConnection(org.apache.hadoop.conf.Configuration conf)
 Call createAsyncConnection(Configuration,
 User) using the given conf and a
  User object created by UserProvider.
 
 
 
-static http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
+static 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
 createAsyncConnection(org.apache.hadoop.conf.Configuration conf,
  User user)
 Create a new AsyncConnection instance using the passed 
conf and user.
@@ -229,14 +229,14 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 static Connection
 createConnection(org.apache.hadoop.conf.Configuration conf,
-http://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)
+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)
 Create a new Connection instance using the passed 
conf instance.
 
 
 
 static Connection
 createConnection(org.apache.hadoop.conf.Configuration conf,
-http://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,
+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,
 User user)
 Create a new Connection instance using the passed 
conf instance.
 
@@ -253,8 +253,8 @@ extends http://docs.orac

[20/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/AsyncTable.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/AsyncTable.html 
b/apidocs/org/apache/hadoop/hbase/client/AsyncTable.html
index 8f03403..a4bedb1 100644
--- a/apidocs/org/apache/hadoop/hbase/client/AsyncTable.html
+++ b/apidocs/org/apache/hadoop/hbase/client/AsyncTable.html
@@ -109,7 +109,7 @@ public interface http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in 
java.util.concurrent">CompletableFuture.
+ from the returned 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.
 
 Since:
 2.0.0
@@ -154,20 +154,20 @@ public interface Method and Description
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
+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
 append(Append append)
 Appends values to one or more columns within a single 
row.
 
 
 
- http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">ListCompletableFuture>
-batch(http://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/util/List.html?is-external=true";
 title="class or interface in java.util">ListCompletableFuture>
+batch(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List actions)
 Method that does a batch call on Deletes, Gets, Puts, 
Increments, Appends and RowMutations.
 
 
 
-default  http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-batchAll(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List actions)
+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>
+batchAll(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List actions)
 A simple version of batch.
 
 
@@ -180,71 +180,71 @@ public interface 
  org.apache.hadoop.hbase.client.AsyncTable.CoprocessorServiceBuilder
-coprocessorService(http://docs.oracle.com/javase/8/docs/api/java/util/function/Function.html?is-external=true";
 title="class or interface in 
java.util.function">Function stubMaker,
+coprocessorService(https://docs.oracle.com/javase/8/docs/api/java/util/function/Function.html?is-external=true";
 title="class or interface in 
java.util.function">Function stubMaker,
   ServiceCaller callable,
   AsyncTable.CoprocessorCallback callback)
 Execute a coprocessor call on the regions which are covered 
by a range.
 
 
 
- http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in 
java.util.concurrent">CompletableFuture
-coprocessorService(http://docs.oracle.com/javase/8/docs/api/java/util/function/Function.html?is-external=true";
 title="class or interface in 
java.util.function">Function stubMaker,
+ 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
+coprocessorService(https://docs.oracle.com/javase/8/docs/api/java/util/function/Function.html?is-external=true";
 title="class or interface in 
java.util.function">Function stubMaker,

[03/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/TableDescriptorBuilder.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/TableDescriptorBuilder.html 
b/apidocs/org/apache/hadoop/hbase/client/TableDescriptorBuilder.html
index 04248c5..81c7c35 100644
--- a/apidocs/org/apache/hadoop/hbase/client/TableDescriptorBuilder.html
+++ b/apidocs/org/apache/hadoop/hbase/client/TableDescriptorBuilder.html
@@ -97,7 +97,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
 org.apache.hadoop.hbase.client.TableDescriptorBuilder
@@ -110,8 +110,8 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Public
-public class TableDescriptorBuilder
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+public class TableDescriptorBuilder
+extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 
 Since:
 2.0.0
@@ -198,18 +198,18 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 TableDescriptorBuilder
-addCoprocessor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String className) 
+addCoprocessor(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String className) 
 
 
 TableDescriptorBuilder
-addCoprocessor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String className,
+addCoprocessor(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String className,
   org.apache.hadoop.fs.Path jarFilePath,
   int priority,
-  http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String> kvs) 
+  https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String> kvs) 
 
 
 TableDescriptorBuilder
-addCoprocessorWithSpec(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String specStr) 
+addCoprocessorWithSpec(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String specStr) 
 
 
 TableDescriptor
@@ -250,7 +250,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 TableDescriptorBuilder
-removeCoprocessor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String className) 
+removeCoprocessor(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String className) 
 
 
 TableDescriptorBuilder
@@ -270,7 +270,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 TableDescriptorBuilder
-setFlushPolicyClassName(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String clazz) 
+setFlushPolicyClassName(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String clazz) 
 
 
 TableDescriptorBuilder
@@ -292,7 +292,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 TableDescriptorBuilder
-setOwnerString(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String ownerString)
+setOwnerString(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String ownerString)
 Deprecated. 
 
 
@@ -314,7 +314,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 TableDescriptorBuilder
-setRegionSplit

[31/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/TableExistsException.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/TableExistsException.html 
b/apidocs/org/apache/hadoop/hbase/TableExistsException.html
index c956448..c219c09 100644
--- a/apidocs/org/apache/hadoop/hbase/TableExistsException.html
+++ b/apidocs/org/apache/hadoop/hbase/TableExistsException.html
@@ -91,16 +91,16 @@
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-http://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/Throwable.html?is-external=true";
 title="class or interface in java.lang">java.lang.Throwable
 
 
-http://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/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">java.lang.Exception
 
 
-http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">java.io.IOException
+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.HBaseIOException
@@ -128,7 +128,7 @@
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
 
 
 
@@ -163,7 +163,7 @@ extends 
 
 
-TableExistsException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s)
+TableExistsException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s)
 Constructor
 
 
@@ -183,15 +183,15 @@ extends 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">Throwable
-http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace--";
 title="class or interface in java.lang">fillInStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getCause--";
 title="class or interface in java.lang">getCause, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage--";
 title="class or interface in java.lang">getLocalizedMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getMessage--";
 title="class or interface in java.lang">getMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace--";
 title="class or inter
 face in java.lang">getStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed--";
 title="class or interface in java.lang">getSuppressed, http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#printStackTrace--";
 title="class or interface in java.lang">printStackTrace, http://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, http://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, http://docs.oracle.com/javase/8/docs/api/java/lan
 
g/Throwable.html?is-external=true#setStackTrace-java.lang.StackTraceElement:A-" 
title="class or interface in java.lang">setStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#toString--";
 title="class or interface in java.lang">toString
+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/d

[19/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/AsyncTableBuilder.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/AsyncTableBuilder.html 
b/apidocs/org/apache/hadoop/hbase/client/AsyncTableBuilder.html
index 3e502b3..93c85f0 100644
--- a/apidocs/org/apache/hadoop/hbase/client/AsyncTableBuilder.html
+++ b/apidocs/org/apache/hadoop/hbase/client/AsyncTableBuilder.html
@@ -151,35 +151,35 @@ public interface 
 AsyncTableBuilder
 setOperationTimeout(long timeout,
-   http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
+   https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
 Set timeout for a whole operation such as get, put or 
delete.
 
 
 
 AsyncTableBuilder
 setReadRpcTimeout(long timeout,
- http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
+ https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
 Set timeout for each read(get, scan) rpc request.
 
 
 
 AsyncTableBuilder
 setRetryPause(long pause,
- http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
+ https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
 Set the base pause time for retrying.
 
 
 
 AsyncTableBuilder
 setRpcTimeout(long timeout,
- http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
+ https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
 Set timeout for each rpc request.
 
 
 
 AsyncTableBuilder
 setScanTimeout(long timeout,
-  http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
+  https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
 As now we have heartbeat support for scan, ideally a scan 
will never timeout unless the RS is
  crash.
 
@@ -193,7 +193,7 @@ public interface 
 AsyncTableBuilder
 setWriteRpcTimeout(long timeout,
-  http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
+  https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
 Set timeout for each write(put, delete) rpc request.
 
 
@@ -219,7 +219,7 @@ public interface 
 setOperationTimeout
 AsyncTableBuilder setOperationTimeout(long timeout,
- http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
+ https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
 Set timeout for a whole operation such as get, put or 
delete. Notice that scan will not be
  effected by this value, see scanTimeoutNs.
  
@@ -240,7 +240,7 @@ public interface 
 setScanTimeout
 AsyncTableBuilder setScanTimeout(long timeout,
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
+https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
 As now we have heartbeat support for scan, ideally a scan 
will never timeout unless the RS is
  crash. The RS will always return something before the rpc timed out or scan 
timed out to tell
  the client that it is still alive. The scan timeout is used as operation 
timeout for every
@@ -258,7 +258,7 @@ public interface 
 setRpcTimeout
 AsyncTableBuilder setRpcTimeout(long time

[36/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/MasterNotRunningException.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/MasterNotRunningException.html 
b/apidocs/org/apache/hadoop/hbase/MasterNotRunningException.html
index 7bea9cb..23a0240 100644
--- a/apidocs/org/apache/hadoop/hbase/MasterNotRunningException.html
+++ b/apidocs/org/apache/hadoop/hbase/MasterNotRunningException.html
@@ -91,16 +91,16 @@
 
 
 
-http://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/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-http://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/Throwable.html?is-external=true";
 title="class or interface in java.lang">java.lang.Throwable
 
 
-http://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/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">java.lang.Exception
 
 
-http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">java.io.IOException
+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.HBaseIOException
@@ -123,7 +123,7 @@
 
 
 All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
+https://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
 
 
 
@@ -158,18 +158,18 @@ extends 
 
 
-MasterNotRunningException(http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">Exception e)
+MasterNotRunningException(https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">Exception e)
 Constructor taking another exception.
 
 
 
-MasterNotRunningException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s)
+MasterNotRunningException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s)
 Constructor
 
 
 
-MasterNotRunningException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s,
- http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">Exception e) 
+MasterNotRunningException(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String s,
+ https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true";
 title="class or interface in java.lang">Exception e) 
 
 
 
@@ -184,15 +184,15 @@ extends 
 
 
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">Throwable
-http://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, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#fillInStackTrace--";
 title="class or interface in java.lang">fillInStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getCause--";
 title="class or interface in java.lang">getCause, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getLocalizedMessage--";
 title="class or interface in java.lang">getLocalizedMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getMessage--";
 title="class or interface in java.lang">getMessage, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getStackTrace--";
 title="class or inter
 face in java.lang">getStackTrace, http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true#getSuppressed--";
 title="class or interface in java.lang">getSuppressed, http://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">i

[02/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/class-use/Append.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/class-use/Append.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/Append.html
index 774a99d..d575d36 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/Append.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/Append.html
@@ -135,16 +135,16 @@
 
 
 Append
-Append.setACL(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,org.apache.hadoop.hbase.security.access.Permission> perms) 
+Append.setACL(https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,org.apache.hadoop.hbase.security.access.Permission> perms) 
 
 
 Append
-Append.setACL(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String user,
+Append.setACL(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String user,
   
org.apache.hadoop.hbase.security.access.Permission perms) 
 
 
 Append
-Append.setAttribute(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
+Append.setAttribute(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
 byte[] value) 
 
 
@@ -153,7 +153,7 @@
 
 
 Append
-Append.setClusterIds(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">ListUUID> clusterIds) 
+Append.setClusterIds(https://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">ListUUID> clusterIds) 
 
 
 Append
@@ -161,7 +161,7 @@
 
 
 Append
-Append.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map)
+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 Append(byte[],
 long, NavigableMap) instead
@@ -170,7 +170,7 @@
 
 
 Append
-Append.setId(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String id) 
+Append.setId(https://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String id) 
 
 
 Append
@@ -205,7 +205,7 @@
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
+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.append(Append append)
 Appends values to one or more columns within a single 
row.
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/class-use/AsyncAdmin.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/class-use/AsyncAdmin.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/AsyncAdmin.html
index 7807024..247cc4a 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/AsyncAdmin.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/AsyncAdmin.html
@@ -118,7 +118,7 @@
 
 
 default AsyncAdmin
-AsyncConnection.getAdmin(http://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)
+AsyncConnection.getAdmin(https://docs.oracle.c

[05/51] [partial] hbase-site git commit: Published site at 1d25b60831b8cc8f7ad5fd366f1867de5c20d2f3.

2018-03-02 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/eb05e3e3/apidocs/org/apache/hadoop/hbase/client/Table.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Table.html 
b/apidocs/org/apache/hadoop/hbase/client/Table.html
index 9e72f68..db20dae 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Table.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Table.html
@@ -101,7 +101,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Superinterfaces:
-http://docs.oracle.com/javase/8/docs/api/java/lang/AutoCloseable.html?is-external=true";
 title="class or interface in java.lang">AutoCloseable, http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html?is-external=true";
 title="class or interface in java.io">Closeable
+https://docs.oracle.com/javase/8/docs/api/java/lang/AutoCloseable.html?is-external=true";
 title="class or interface in java.lang">AutoCloseable, https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html?is-external=true";
 title="class or interface in java.io">Closeable
 
 
 All Known Implementing Classes:
@@ -111,7 +111,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Public
 public interface Table
-extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html?is-external=true";
 title="class or interface in java.io">Closeable
+extends https://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html?is-external=true";
 title="class or interface in java.io">Closeable
 Used to communicate with a single HBase table.
  Obtain an instance from a Connection 
and call close()
 afterwards.
 
@@ -151,21 +151,21 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 void
-batch(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List actions,
- http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object[] results)
+batch(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)
 Method that does a batch call on Deletes, Gets, Puts, 
Increments, Appends, RowMutations.
 
 
 
  void
-batchCallback(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List actions,
- http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object[] results,
+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,
  
org.apache.hadoop.hbase.client.coprocessor.Batch.Callback callback)
 Same as batch(List,
 Object[]), but with a callback.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
 batchCoprocessorService(com.google.protobuf.Descriptors.MethodDescriptor methodDescriptor,
com.google.protobuf.Message request,
byte[] startKey,
@@ -312,8 +312,8 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
-coprocessorService(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang">Class service,
+https://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map
+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,
   
org.apache.hadoop.hbase.client.coprocessor.Batch.Call callable)
@@ -325,7 +325,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 void
-coprocessorService(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in j