hbase git commit: HBASE-19321 ZKAsyncRegistry ctor would hang when zookeeper cluster is not available

2017-11-21 Thread zhangduo
Repository: hbase
Updated Branches:
  refs/heads/branch-2 9c29a6211 -> 8c2a962d1


HBASE-19321 ZKAsyncRegistry ctor would hang when zookeeper cluster is not 
available


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

Branch: refs/heads/branch-2
Commit: 8c2a962d1c3b56dfad7ab927782605fdffc4bf30
Parents: 9c29a62
Author: wuguoquan 
Authored: Wed Nov 22 13:46:51 2017 +0800
Committer: zhangduo 
Committed: Wed Nov 22 15:51:02 2017 +0800

--
 .../main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/8c2a962d/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
index e67153d..6d49b7f 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
@@ -28,6 +28,7 @@ import static 
org.apache.hadoop.hbase.zookeeper.ZKMetadata.removeMetaData;
 
 import java.io.IOException;
 import java.util.concurrent.CompletableFuture;
+import java.util.concurrent.TimeUnit;
 
 import org.apache.commons.lang3.mutable.MutableInt;
 import org.apache.commons.logging.Log;
@@ -81,7 +82,7 @@ class ZKAsyncRegistry implements AsyncRegistry {
 this.zk.start();
 // TODO: temporary workaround for HBASE-19312, must be removed before 
2.0.0 release!
 try {
-  this.zk.blockUntilConnected();
+  this.zk.blockUntilConnected(2, TimeUnit.SECONDS);
 } catch (InterruptedException e) {
   return;
 }



hbase git commit: HBASE-19321 ZKAsyncRegistry ctor would hang when zookeeper cluster is not available

2017-11-21 Thread zhangduo
Repository: hbase
Updated Branches:
  refs/heads/master 1a4037b9d -> 7acf3f9a9


HBASE-19321 ZKAsyncRegistry ctor would hang when zookeeper cluster is not 
available


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

Branch: refs/heads/master
Commit: 7acf3f9a9cfc6a93107428c3e75b94b8af7a174a
Parents: 1a4037b
Author: wuguoquan 
Authored: Wed Nov 22 13:46:51 2017 +0800
Committer: zhangduo 
Committed: Wed Nov 22 15:41:44 2017 +0800

--
 .../main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/7acf3f9a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
index e67153d..6d49b7f 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
@@ -28,6 +28,7 @@ import static 
org.apache.hadoop.hbase.zookeeper.ZKMetadata.removeMetaData;
 
 import java.io.IOException;
 import java.util.concurrent.CompletableFuture;
+import java.util.concurrent.TimeUnit;
 
 import org.apache.commons.lang3.mutable.MutableInt;
 import org.apache.commons.logging.Log;
@@ -81,7 +82,7 @@ class ZKAsyncRegistry implements AsyncRegistry {
 this.zk.start();
 // TODO: temporary workaround for HBASE-19312, must be removed before 
2.0.0 release!
 try {
-  this.zk.blockUntilConnected();
+  this.zk.blockUntilConnected(2, TimeUnit.SECONDS);
 } catch (InterruptedException e) {
   return;
 }



hbase git commit: HBASE-19311 Promote TestAcidGuarantees to LargeTests and start mini cluster once to make it faster

2017-11-21 Thread zhangduo
Repository: hbase
Updated Branches:
  refs/heads/branch-2 8f0f820f2 -> 9c29a6211


HBASE-19311 Promote TestAcidGuarantees to LargeTests and start mini cluster 
once to make it faster


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

Branch: refs/heads/branch-2
Commit: 9c29a6211b7272a91aa520d8ac4343e148a6a0ca
Parents: 8f0f820
Author: zhangduo 
Authored: Tue Nov 21 21:18:54 2017 +0800
Committer: zhangduo 
Committed: Wed Nov 22 14:10:17 2017 +0800

--
 .../hadoop/hbase/util/AbstractHBaseTool.java|  10 +-
 .../hbase/IntegrationTestAcidGuarantees.java|  60 ++-
 .../hadoop/hbase/AcidGuaranteesTestTool.java| 415 
 .../apache/hadoop/hbase/TestAcidGuarantees.java | 498 +++
 4 files changed, 510 insertions(+), 473 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/9c29a621/hbase-common/src/main/java/org/apache/hadoop/hbase/util/AbstractHBaseTool.java
--
diff --git 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/AbstractHBaseTool.java
 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/AbstractHBaseTool.java
index b808d3e..e301c1f 100644
--- 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/AbstractHBaseTool.java
+++ 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/AbstractHBaseTool.java
@@ -1,4 +1,4 @@
-/*
+/**
  * 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
@@ -231,6 +231,14 @@ public abstract class AbstractHBaseTool implements Tool, 
Configurable {
 }
   }
 
+  public long getOptionAsLong(CommandLine cmd, String opt, int defaultValue) {
+if (cmd.hasOption(opt)) {
+  return Long.parseLong(cmd.getOptionValue(opt));
+} else {
+  return defaultValue;
+}
+  }
+
   public double getOptionAsDouble(CommandLine cmd, String opt, double 
defaultValue) {
 if (cmd.hasOption(opt)) {
   return Double.parseDouble(cmd.getOptionValue(opt));

http://git-wip-us.apache.org/repos/asf/hbase/blob/9c29a621/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java
--
diff --git 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java
 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java
index e1c17a4..3c1e6ad 100644
--- 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java
+++ 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java
@@ -17,26 +17,30 @@
  */
 package org.apache.hadoop.hbase;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Sets;
+import static org.apache.hadoop.hbase.AcidGuaranteesTestTool.FAMILY_A;
+import static org.apache.hadoop.hbase.AcidGuaranteesTestTool.FAMILY_B;
+import static org.apache.hadoop.hbase.AcidGuaranteesTestTool.FAMILY_C;
+import static org.apache.hadoop.hbase.AcidGuaranteesTestTool.TABLE_NAME;
+
+import java.util.Set;
+
 import org.apache.hadoop.conf.Configuration;
-import org.apache.hadoop.hbase.regionserver.CompactingMemStore;
 import org.apache.hadoop.hbase.regionserver.ConstantSizeRegionSplitPolicy;
-import org.apache.hadoop.hbase.regionserver.MemStoreCompactor;
 import org.apache.hadoop.hbase.testclassification.IntegrationTests;
 import org.apache.hadoop.hbase.util.Bytes;
 import org.apache.hadoop.util.ToolRunner;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
 
-import java.util.Set;
+import org.apache.hadoop.hbase.shaded.com.google.common.collect.Sets;
 
 /**
  * This Integration Test verifies acid guarantees across column families by 
frequently writing
  * values to rows with multiple column families and concurrently reading 
entire rows that expect all
  * column families.
- *
  * 
  * Sample usage:
+ *
  * 
  * hbase org.apache.hadoop.hbase.IntegrationTestAcidGuarantees -Dmillis=1 
-DnumWriters=50
  * -DnumGetters=2 -DnumScanners=2 -DnumUniqueRows=5
@@ -47,19 +51,11 @@ public class IntegrationTestAcidGuarantees extends 
IntegrationTestBase {
   private static final int SERVER_COUNT = 1; // number of slaves for the 
smallest cluster
 
   // The unit test version.
-  TestAcidGuarantees tag;
+  AcidGuaranteesTestTool tool;
 
   @Override
   public int runTestFromCommandLine() throws Exception {
-Configuration c = getConf();
-int millis = c.getInt("millis", 5000);
-int 

hbase git commit: HBASE-19311 Promote TestAcidGuarantees to LargeTests and start mini cluster once to make it faster

2017-11-21 Thread zhangduo
Repository: hbase
Updated Branches:
  refs/heads/master 3b2b22b5f -> 1a4037b9d


HBASE-19311 Promote TestAcidGuarantees to LargeTests and start mini cluster 
once to make it faster


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

Branch: refs/heads/master
Commit: 1a4037b9dc1efbfacd81bb38770f3ee42cf5545a
Parents: 3b2b22b
Author: zhangduo 
Authored: Tue Nov 21 21:18:54 2017 +0800
Committer: zhangduo 
Committed: Wed Nov 22 14:10:10 2017 +0800

--
 .../hadoop/hbase/util/AbstractHBaseTool.java|  10 +-
 .../hbase/IntegrationTestAcidGuarantees.java|  60 ++-
 .../hadoop/hbase/AcidGuaranteesTestTool.java| 415 
 .../apache/hadoop/hbase/TestAcidGuarantees.java | 498 +++
 4 files changed, 510 insertions(+), 473 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/1a4037b9/hbase-common/src/main/java/org/apache/hadoop/hbase/util/AbstractHBaseTool.java
--
diff --git 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/AbstractHBaseTool.java
 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/AbstractHBaseTool.java
index b808d3e..e301c1f 100644
--- 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/AbstractHBaseTool.java
+++ 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/AbstractHBaseTool.java
@@ -1,4 +1,4 @@
-/*
+/**
  * 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
@@ -231,6 +231,14 @@ public abstract class AbstractHBaseTool implements Tool, 
Configurable {
 }
   }
 
+  public long getOptionAsLong(CommandLine cmd, String opt, int defaultValue) {
+if (cmd.hasOption(opt)) {
+  return Long.parseLong(cmd.getOptionValue(opt));
+} else {
+  return defaultValue;
+}
+  }
+
   public double getOptionAsDouble(CommandLine cmd, String opt, double 
defaultValue) {
 if (cmd.hasOption(opt)) {
   return Double.parseDouble(cmd.getOptionValue(opt));

http://git-wip-us.apache.org/repos/asf/hbase/blob/1a4037b9/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java
--
diff --git 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java
 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java
index e1c17a4..3c1e6ad 100644
--- 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java
+++ 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestAcidGuarantees.java
@@ -17,26 +17,30 @@
  */
 package org.apache.hadoop.hbase;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Sets;
+import static org.apache.hadoop.hbase.AcidGuaranteesTestTool.FAMILY_A;
+import static org.apache.hadoop.hbase.AcidGuaranteesTestTool.FAMILY_B;
+import static org.apache.hadoop.hbase.AcidGuaranteesTestTool.FAMILY_C;
+import static org.apache.hadoop.hbase.AcidGuaranteesTestTool.TABLE_NAME;
+
+import java.util.Set;
+
 import org.apache.hadoop.conf.Configuration;
-import org.apache.hadoop.hbase.regionserver.CompactingMemStore;
 import org.apache.hadoop.hbase.regionserver.ConstantSizeRegionSplitPolicy;
-import org.apache.hadoop.hbase.regionserver.MemStoreCompactor;
 import org.apache.hadoop.hbase.testclassification.IntegrationTests;
 import org.apache.hadoop.hbase.util.Bytes;
 import org.apache.hadoop.util.ToolRunner;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
 
-import java.util.Set;
+import org.apache.hadoop.hbase.shaded.com.google.common.collect.Sets;
 
 /**
  * This Integration Test verifies acid guarantees across column families by 
frequently writing
  * values to rows with multiple column families and concurrently reading 
entire rows that expect all
  * column families.
- *
  * 
  * Sample usage:
+ *
  * 
  * hbase org.apache.hadoop.hbase.IntegrationTestAcidGuarantees -Dmillis=1 
-DnumWriters=50
  * -DnumGetters=2 -DnumScanners=2 -DnumUniqueRows=5
@@ -47,19 +51,11 @@ public class IntegrationTestAcidGuarantees extends 
IntegrationTestBase {
   private static final int SERVER_COUNT = 1; // number of slaves for the 
smallest cluster
 
   // The unit test version.
-  TestAcidGuarantees tag;
+  AcidGuaranteesTestTool tool;
 
   @Override
   public int runTestFromCommandLine() throws Exception {
-Configuration c = getConf();
-int millis = c.getInt("millis", 5000);
-int numWriters = 

hbase git commit: HBASE-19291 Use common header and footer for JSP pages

2017-11-21 Thread appy
Repository: hbase
Updated Branches:
  refs/heads/branch-2 bcd367e29 -> 8f0f820f2


HBASE-19291 Use common header and footer for JSP pages

Use header and footer in our *.jsp pages to avoid unnecessary redundancy 
(copy-paste of code)

Misc edits:
- Due to redundancy, new additions make it to some places but not others. For 
eg there are missing links to "/logLevel", "/processRS.jsp" in few places.
- Fix processMaster.jsp wrongly pointing to rs-status instead of master-status 
(probably due to copy paste from processRS.jsp)
- Deleted a bunch of extraneous "" in processMaster.jsp & processRS.jsp
- Added missing  tag in snapshot.jsp
- Deleted fossils of html5shiv.js. It's uses and the js itself were deleted in 
the commit "819aed4ccd073d818bfef5931ec8d248bfae5f1f"
- Fixed wrongly matched heading tags
- Deleted some unused variables

Tested:
Ran standalone cluster and opened each page to make sure it looked right.

Sidenote:
Looks like HBASE-3835 started the work of converting from jsp to jamon, but the 
work didn't finish. Now we have a mix of jsp and jamon. Needs reconciling, but 
later.


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

Branch: refs/heads/branch-2
Commit: 8f0f820f22c2cdf715ae5c8acfe4753bf8a6350b
Parents: bcd367e
Author: Apekshit 
Authored: Fri Apr 8 00:50:33 2016 -0700
Committer: Apekshit Sharma 
Committed: Tue Nov 21 13:56:00 2017 -0800

--
 .../resources/hbase-webapps/master/footer.jsp   | 24 ++
 .../resources/hbase-webapps/master/header.jsp   | 67 +++
 .../hbase-webapps/master/procedures.jsp | 63 +++
 .../hbase-webapps/master/processMaster.jsp  | 85 +---
 .../resources/hbase-webapps/master/snapshot.jsp | 77 --
 .../hbase-webapps/master/snapshotsStats.jsp | 52 ++--
 .../resources/hbase-webapps/master/table.jsp| 72 +++--
 .../hbase-webapps/master/tablesDetailed.jsp | 61 ++
 .../main/resources/hbase-webapps/master/zk.jsp  | 60 ++
 .../hbase-webapps/regionserver/footer.jsp   | 24 ++
 .../hbase-webapps/regionserver/header.jsp   | 65 +++
 .../hbase-webapps/regionserver/processRS.jsp| 84 +--
 .../hbase-webapps/regionserver/region.jsp   | 62 ++
 .../hbase-webapps/regionserver/storeFile.jsp| 55 ++---
 14 files changed, 288 insertions(+), 563 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/8f0f820f/hbase-server/src/main/resources/hbase-webapps/master/footer.jsp
--
diff --git a/hbase-server/src/main/resources/hbase-webapps/master/footer.jsp 
b/hbase-server/src/main/resources/hbase-webapps/master/footer.jsp
new file mode 100644
index 000..0aed242
--- /dev/null
+++ b/hbase-server/src/main/resources/hbase-webapps/master/footer.jsp
@@ -0,0 +1,24 @@
+<%--
+/**
+* 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.
+*/
+--%>
+
+
+
+  
+
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/hbase/blob/8f0f820f/hbase-server/src/main/resources/hbase-webapps/master/header.jsp
--
diff --git a/hbase-server/src/main/resources/hbase-webapps/master/header.jsp 
b/hbase-server/src/main/resources/hbase-webapps/master/header.jsp
new file mode 100644
index 000..c7cbf3e
--- /dev/null
+++ b/hbase-server/src/main/resources/hbase-webapps/master/header.jsp
@@ -0,0 +1,67 @@
+<%--
+/**
+* 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 

hbase git commit: HBASE-19291 Use common header and footer for JSP pages

2017-11-21 Thread appy
Repository: hbase
Updated Branches:
  refs/heads/master 984e0ecfc -> 3b2b22b5f


HBASE-19291 Use common header and footer for JSP pages

Use header and footer in our *.jsp pages to avoid unnecessary redundancy 
(copy-paste of code)

Misc edits:
- Due to redundancy, new additions make it to some places but not others. For 
eg there are missing links to "/logLevel", "/processRS.jsp" in few places.
- Fix processMaster.jsp wrongly pointing to rs-status instead of master-status 
(probably due to copy paste from processRS.jsp)
- Deleted a bunch of extraneous "" in processMaster.jsp & processRS.jsp
- Added missing  tag in snapshot.jsp
- Deleted fossils of html5shiv.js. It's uses and the js itself were deleted in 
the commit "819aed4ccd073d818bfef5931ec8d248bfae5f1f"
- Fixed wrongly matched heading tags
- Deleted some unused variables

Tested:
Ran standalone cluster and opened each page to make sure it looked right.

Sidenote:
Looks like HBASE-3835 started the work of converting from jsp to jamon, but the 
work didn't finish. Now we have a mix of jsp and jamon. Needs reconciling, but 
later.


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

Branch: refs/heads/master
Commit: 3b2b22b5fac1175302b320b7ca1ed766326924cc
Parents: 984e0ec
Author: Apekshit 
Authored: Fri Apr 8 00:50:33 2016 -0700
Committer: Apekshit Sharma 
Committed: Tue Nov 21 13:52:32 2017 -0800

--
 .../resources/hbase-webapps/master/footer.jsp   | 24 ++
 .../resources/hbase-webapps/master/header.jsp   | 67 +++
 .../hbase-webapps/master/procedures.jsp | 63 +++
 .../hbase-webapps/master/processMaster.jsp  | 85 +---
 .../resources/hbase-webapps/master/snapshot.jsp | 77 --
 .../hbase-webapps/master/snapshotsStats.jsp | 52 ++--
 .../resources/hbase-webapps/master/table.jsp| 72 +++--
 .../hbase-webapps/master/tablesDetailed.jsp | 61 ++
 .../main/resources/hbase-webapps/master/zk.jsp  | 60 ++
 .../hbase-webapps/regionserver/footer.jsp   | 24 ++
 .../hbase-webapps/regionserver/header.jsp   | 65 +++
 .../hbase-webapps/regionserver/processRS.jsp| 84 +--
 .../hbase-webapps/regionserver/region.jsp   | 62 ++
 .../hbase-webapps/regionserver/storeFile.jsp| 55 ++---
 14 files changed, 288 insertions(+), 563 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/3b2b22b5/hbase-server/src/main/resources/hbase-webapps/master/footer.jsp
--
diff --git a/hbase-server/src/main/resources/hbase-webapps/master/footer.jsp 
b/hbase-server/src/main/resources/hbase-webapps/master/footer.jsp
new file mode 100644
index 000..0aed242
--- /dev/null
+++ b/hbase-server/src/main/resources/hbase-webapps/master/footer.jsp
@@ -0,0 +1,24 @@
+<%--
+/**
+* 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.
+*/
+--%>
+
+
+
+  
+
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/hbase/blob/3b2b22b5/hbase-server/src/main/resources/hbase-webapps/master/header.jsp
--
diff --git a/hbase-server/src/main/resources/hbase-webapps/master/header.jsp 
b/hbase-server/src/main/resources/hbase-webapps/master/header.jsp
new file mode 100644
index 000..c7cbf3e
--- /dev/null
+++ b/hbase-server/src/main/resources/hbase-webapps/master/header.jsp
@@ -0,0 +1,67 @@
+<%--
+/**
+* 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

hbase git commit: HBASE-19315 Incorrect snapshot version is used for 2.0.0-beta-1

2017-11-21 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-2 f7331f9ce -> bcd367e29


HBASE-19315 Incorrect snapshot version is used for 2.0.0-beta-1

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

Branch: refs/heads/branch-2
Commit: bcd367e2935c6b2f85dcc16c63dbc1675cd0d51c
Parents: f7331f9
Author: Peter Somogyi 
Authored: Tue Nov 21 18:55:49 2017 +0100
Committer: Michael Stack 
Committed: Tue Nov 21 10:41:50 2017 -0800

--
 hbase-annotations/pom.xml| 2 +-
 hbase-archetypes/hbase-archetype-builder/pom.xml | 2 +-
 hbase-archetypes/hbase-client-project/pom.xml| 2 +-
 hbase-archetypes/hbase-shaded-client-project/pom.xml | 2 +-
 hbase-archetypes/pom.xml | 2 +-
 hbase-assembly/pom.xml   | 2 +-
 hbase-backup/pom.xml | 2 +-
 hbase-build-configuration/pom.xml| 2 +-
 hbase-build-support/hbase-error-prone/pom.xml| 4 ++--
 hbase-build-support/pom.xml  | 2 +-
 hbase-checkstyle/pom.xml | 4 ++--
 hbase-client/pom.xml | 2 +-
 hbase-common/pom.xml | 2 +-
 hbase-endpoint/pom.xml   | 2 +-
 hbase-examples/pom.xml   | 2 +-
 hbase-external-blockcache/pom.xml| 2 +-
 hbase-hadoop-compat/pom.xml  | 2 +-
 hbase-hadoop2-compat/pom.xml | 2 +-
 hbase-http/pom.xml   | 2 +-
 hbase-it/pom.xml | 2 +-
 hbase-mapreduce/pom.xml  | 2 +-
 hbase-metrics-api/pom.xml| 2 +-
 hbase-metrics/pom.xml| 2 +-
 hbase-procedure/pom.xml  | 2 +-
 hbase-protocol-shaded/pom.xml| 2 +-
 hbase-protocol/pom.xml   | 2 +-
 hbase-replication/pom.xml| 2 +-
 hbase-resource-bundle/pom.xml| 2 +-
 hbase-rest/pom.xml   | 2 +-
 hbase-rsgroup/pom.xml| 2 +-
 hbase-server/pom.xml | 2 +-
 hbase-shaded/hbase-shaded-check-invariants/pom.xml   | 2 +-
 hbase-shaded/hbase-shaded-client/pom.xml | 2 +-
 hbase-shaded/hbase-shaded-mapreduce/pom.xml  | 2 +-
 hbase-shaded/pom.xml | 2 +-
 hbase-shell/pom.xml  | 2 +-
 hbase-testing-util/pom.xml   | 2 +-
 hbase-thrift/pom.xml | 2 +-
 hbase-zookeeper/pom.xml  | 2 +-
 pom.xml  | 2 +-
 40 files changed, 42 insertions(+), 42 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/bcd367e2/hbase-annotations/pom.xml
--
diff --git a/hbase-annotations/pom.xml b/hbase-annotations/pom.xml
index 7f92a81..603f46f 100644
--- a/hbase-annotations/pom.xml
+++ b/hbase-annotations/pom.xml
@@ -23,7 +23,7 @@
   
 hbase
 org.apache.hbase
-2.0.0-beta-1.SNAPSHOT
+2.0.0-beta-1-SNAPSHOT
 ..
   
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/bcd367e2/hbase-archetypes/hbase-archetype-builder/pom.xml
--
diff --git a/hbase-archetypes/hbase-archetype-builder/pom.xml 
b/hbase-archetypes/hbase-archetype-builder/pom.xml
index a394e53..bcc0a83 100644
--- a/hbase-archetypes/hbase-archetype-builder/pom.xml
+++ b/hbase-archetypes/hbase-archetype-builder/pom.xml
@@ -25,7 +25,7 @@
   
 hbase-archetypes
 org.apache.hbase
-2.0.0-beta-1.SNAPSHOT
+2.0.0-beta-1-SNAPSHOT
 ..
   
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/bcd367e2/hbase-archetypes/hbase-client-project/pom.xml
--
diff --git a/hbase-archetypes/hbase-client-project/pom.xml 
b/hbase-archetypes/hbase-client-project/pom.xml
index a6135d1..9c8cd9b 100644
--- a/hbase-archetypes/hbase-client-project/pom.xml
+++ b/hbase-archetypes/hbase-client-project/pom.xml
@@ -26,7 +26,7 @@
   
 hbase-archetypes
 org.apache.hbase
-2.0.0-beta-1.SNAPSHOT
+2.0.0-beta-1-SNAPSHOT
 ..
   
   hbase-client-project


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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/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 bb1af63..3af5a4d 100644
--- a/apidocs/org/apache/hadoop/hbase/client/AsyncAdmin.html
+++ b/apidocs/org/apache/hadoop/hbase/client/AsyncAdmin.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":18,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"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":6,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":6,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":18,"i44":6,"i45":6,"i46":6,"i47":6,"i48":6,"i49":6,"i50":6,"i51":6,"i52":18,"i53":18,"i54":18,"i55":6,"i56":6,"i57":6,"i58":6,"i59":6,"i60":6,"i61":6,"i62":18,"i63":6,"i64":6,"i65":6,"i66":6,"i67":6,"i68":6,"i69":6,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":18,"i79":6,"i80":6,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":18,"i87":6,"i88":6,"i89":6,"i90":18,"i91":6,"i92":6,"i93":6,"i94":6,"i95":6,"i96":6,"i97":6,"i98":6,"i99":6,"i100":6,"i101":6,"i102":6,"i103":6,"i104":6,"i105":6,"i106":6,"i107":6,"i108":6,"i109":6,"i110":6,"i111":6,"i112":6,"i113":6,"i114":6,"i115":6,"i116":6,"i117":6,"i118":6,"i119":6,"i1
 
20":6,"i121":6,"i122":18,"i123":18,"i124":6,"i125":6,"i126":6,"i127":6,"i128":6,"i129":6,"i130":6,"i131":6,"i132":6,"i133":6,"i134":6,"i135":6,"i136":6};
+var methods = 
{"i0":6,"i1":6,"i2":18,"i3":6,"i4":6,"i5":6,"i6":18,"i7":6,"i8":6,"i9":6,"i10":6,"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":6,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":6,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":18,"i45":6,"i46":6,"i47":6,"i48":6,"i49":6,"i50":6,"i51":6,"i52":6,"i53":18,"i54":18,"i55":18,"i56":6,"i57":6,"i58":6,"i59":6,"i60":6,"i61":6,"i62":6,"i63":18,"i64":6,"i65":6,"i66":6,"i67":6,"i68":6,"i69":6,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":6,"i79":18,"i80":6,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":18,"i88":6,"i89":6,"i90":6,"i91":18,"i92":6,"i93":6,"i94":6,"i95":6,"i96":6,"i97":6,"i98":6,"i99":6,"i100":6,"i101":6,"i102":6,"i103":6,"i104":6,"i105":6,"i106":6,"i107":6,"i108":6,"i109":6,"i110":6,"i111":6,"i112":6,"i113":6,"i114":6,"i115":6,"i116":6,"i117":6,"i118":6,"i119":6,"i
 
120":6,"i121":6,"i122":6,"i123":18,"i124":18,"i125":6,"i126":6,"i127":6,"i128":6,"i129":6,"i130":6,"i131":6,"i132":6,"i133":6,"i134":6,"i135":6,"i136":6,"i137":6};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -141,7 +141,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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
+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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
 addReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringpeerId,
   ReplicationPeerConfigpeerConfig)
 Add a new replication peer for replicating data to slave 
cluster
@@ -149,105 +149,113 @@ 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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
+addReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringpeerId,
+  ReplicationPeerConfigpeerConfig,
+  booleanenabled)
+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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/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 2a27f99..a0091b9 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Admin.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Admin.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":6,"i1":6,"i2":6,"i3":50,"i4":6,"i5":6,"i6":18,"i7":18,"i8":6,"i9":6,"i10":6,"i11":50,"i12":50,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":38,"i25":38,"i26":38,"i27":38,"i28":6,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":50,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":38,"i46":6,"i47":6,"i48":6,"i49":6,"i50":6,"i51":6,"i52":6,"i53":38,"i54":6,"i55":6,"i56":38,"i57":38,"i58":6,"i59":38,"i60":18,"i61":6,"i62":6,"i63":6,"i64":38,"i65":38,"i66":50,"i67":18,"i68":6,"i69":6,"i70":6,"i71":38,"i72":38,"i73":6,"i74":50,"i75":6,"i76":6,"i77":6,"i78":38,"i79":38,"i80":18,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":6,"i88":6,"i89":6,"i90":6,"i91":6,"i92":18,"i93":6,"i94":18,"i95":6,"i96":38,"i97":6,"i98":6,"i99":6,"i100":38,"i101":50,"i102":50,"i103":18,"i104":6,"i105":6,"i106":6,"i107":18,"i108":18,"i109":6,"i110":38,"i111":38,"i112":38,"i113":38,"i114":6,"i115":6,"i116":6,
 
"i117":6,"i118":6,"i119":6,"i120":6,"i121":6,"i122":6,"i123":6,"i124":50,"i125":6,"i126":38,"i127":6,"i128":6,"i129":18,"i130":6,"i131":6,"i132":6,"i133":18,"i134":18,"i135":50,"i136":6,"i137":6,"i138":38,"i139":6,"i140":6,"i141":6,"i142":6,"i143":6,"i144":38,"i145":6,"i146":6,"i147":6,"i148":38,"i149":38,"i150":6,"i151":38,"i152":38,"i153":38,"i154":38,"i155":38,"i156":6,"i157":38,"i158":6,"i159":6,"i160":6,"i161":6,"i162":6,"i163":6,"i164":6,"i165":38,"i166":6,"i167":6,"i168":6,"i169":50,"i170":6,"i171":6,"i172":6,"i173":6,"i174":6,"i175":38,"i176":6,"i177":38,"i178":6,"i179":6,"i180":6,"i181":6,"i182":6,"i183":18,"i184":18,"i185":6,"i186":6,"i187":6,"i188":6,"i189":6,"i190":6,"i191":6,"i192":6,"i193":50,"i194":6,"i195":50,"i196":50,"i197":50,"i198":6,"i199":50,"i200":6,"i201":6,"i202":6,"i203":6,"i204":6,"i205":6,"i206":6,"i207":6,"i208":38,"i209":38,"i210":6,"i211":6,"i212":6,"i213":6,"i214":6,"i215":50,"i216":6,"i217":6,"i218":6,"i219":6,"i220":6,"i221":18};
+var methods = 
{"i0":6,"i1":6,"i2":6,"i3":50,"i4":6,"i5":6,"i6":18,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":50,"i13":50,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":38,"i26":38,"i27":38,"i28":38,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":6,"i36":50,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":38,"i47":6,"i48":6,"i49":6,"i50":6,"i51":6,"i52":6,"i53":6,"i54":38,"i55":6,"i56":6,"i57":38,"i58":38,"i59":6,"i60":38,"i61":6,"i62":6,"i63":6,"i64":6,"i65":38,"i66":38,"i67":50,"i68":6,"i69":6,"i70":6,"i71":6,"i72":38,"i73":38,"i74":6,"i75":50,"i76":6,"i77":6,"i78":6,"i79":38,"i80":38,"i81":18,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":6,"i88":6,"i89":6,"i90":6,"i91":6,"i92":6,"i93":18,"i94":6,"i95":18,"i96":6,"i97":38,"i98":6,"i99":6,"i100":6,"i101":38,"i102":50,"i103":50,"i104":18,"i105":6,"i106":6,"i107":6,"i108":18,"i109":6,"i110":6,"i111":38,"i112":38,"i113":38,"i114":38,"i115":6,"i116":6,"i11
 
7":6,"i118":6,"i119":6,"i120":6,"i121":6,"i122":6,"i123":6,"i124":6,"i125":50,"i126":6,"i127":38,"i128":6,"i129":6,"i130":18,"i131":6,"i132":6,"i133":6,"i134":6,"i135":6,"i136":6,"i137":6,"i138":38,"i139":6,"i140":6,"i141":6,"i142":6,"i143":6,"i144":38,"i145":6,"i146":6,"i147":6,"i148":38,"i149":38,"i150":6,"i151":38,"i152":38,"i153":38,"i154":38,"i155":38,"i156":6,"i157":38,"i158":6,"i159":6,"i160":6,"i161":6,"i162":6,"i163":6,"i164":6,"i165":38,"i166":6,"i167":6,"i168":6,"i169":50,"i170":6,"i171":6,"i172":6,"i173":6,"i174":6,"i175":38,"i176":6,"i177":38,"i178":6,"i179":6,"i180":6,"i181":6,"i182":6,"i183":6,"i184":6,"i185":6,"i186":6,"i187":6,"i188":6,"i189":6,"i190":6,"i191":6,"i192":6,"i193":50,"i194":6,"i195":50,"i196":50,"i197":50,"i198":6,"i199":50,"i200":6,"i201":6,"i202":6,"i203":6,"i204":6,"i205":6,"i206":6,"i207":6,"i208":38,"i209":38,"i210":6,"i211":6,"i212":6,"i213":6,"i214":6,"i215":50,"i216":6,"i217":6,"i218":6,"i219":6,"i220":6,"i221":6};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"],16:["t5","Default 
Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -106,7 +106,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Public
-public interface Admin
+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
 The administrative API for 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/apidocs/deprecated-list.html
--
diff --git a/apidocs/deprecated-list.html b/apidocs/deprecated-list.html
index b1d5b5f..12a7b96 100644
--- a/apidocs/deprecated-list.html
+++ b/apidocs/deprecated-list.html
@@ -1217,348 +1217,342 @@
 
 
 
-org.apache.hadoop.hbase.client.Admin.listReplicationPeers(String)
-since 2.0 version and will 
be removed in 3.0 version. Use
- Admin.listReplicationPeers(Pattern)
 instead.
-
-
-
 org.apache.hadoop.hbase.client.Admin.listSnapshots(String)
 since 2.0 version and will 
be removed in 3.0 version.
  Use Admin.listSnapshots(Pattern)
 instead.
 
 
-
+
 org.apache.hadoop.hbase.client.Admin.listTableDescriptorsByNamespace(String)
 since 2.0 version and will 
be removed in 3.0 version.
  use Admin.listTableDescriptorsByNamespace(byte[])
 
 
-
+
 org.apache.hadoop.hbase.client.Admin.listTableNames(String)
 since 2.0 version and will 
be removed in 3.0 version. Use
  Admin.listTableNames(Pattern)
 instead.
 
 
-
+
 org.apache.hadoop.hbase.client.Admin.listTableNames(String,
 boolean)
 since 2.0 version and will 
be removed in 3.0 version. Use
  Admin.listTableNames(Pattern,
 boolean) instead.
 
 
-
+
 org.apache.hadoop.hbase.client.Admin.listTables()
 since 2.0 version and will 
be removed in 3.0 version.
  Use Admin.listTableDescriptors().
 
 
-
+
 org.apache.hadoop.hbase.client.Admin.listTables(Pattern)
 since 2.0 version and will 
be removed in 3.0 version.
  Use Admin.listTableDescriptors(java.util.regex.Pattern).
 
 
-
+
 org.apache.hadoop.hbase.client.Admin.listTables(Pattern,
 boolean)
 since 2.0 version and will 
be removed in 3.0 version.
  Use Admin.listTableDescriptors(java.util.regex.Pattern,
 boolean).
 
 
-
+
 org.apache.hadoop.hbase.client.Admin.listTables(String)
 since 2.0 version and will 
be removed in 3.0 version. Use
  Admin.listTableDescriptors(Pattern)
 instead.
 
 
-
+
 org.apache.hadoop.hbase.client.Admin.listTables(String,
 boolean)
 since 2.0 version and will 
be removed in 3.0 version.
  Use Admin.listTableDescriptors(Pattern,
 boolean).
 
 
-
+
 org.apache.hadoop.hbase.client.Admin.listTableSnapshots(String,
 String)
 since 2.0 version and will 
be removed in 3.0 version.
  Use Admin.listTableSnapshots(Pattern,
 Pattern) instead.
 
 
-
+
 org.apache.hadoop.hbase.CellUtil.matchingColumn(Cell,
 byte[], int, int, byte[], int, int)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
 
 
-
+
 org.apache.hadoop.hbase.CellUtil.matchingFamily(Cell,
 byte[], int, int)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
 
 
-
+
 org.apache.hadoop.hbase.CellUtil.matchingQualifier(Cell,
 byte[], int, int)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
 
 
-
+
 org.apache.hadoop.hbase.CellUtil.matchingRow(Cell,
 byte[])
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
  Instead use CellUtil.matchingRows(Cell,
 byte[])
 
 
-
+
 org.apache.hadoop.hbase.CellUtil.matchingRow(Cell,
 Cell)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
  Instead use CellUtil.matchingRows(Cell,
 Cell)
 
 
-
+
 org.apache.hadoop.hbase.CellUtil.matchingType(Cell,
 Cell)
 As of HBase-2.0. Will be 
removed in HBase-3.0
 
 
-
+
 org.apache.hadoop.hbase.client.Admin.mergeRegions(byte[],
 byte[], boolean)
 Since 2.0. Will be removed 
in 3.0. Use
  Admin.mergeRegionsAsync(byte[],
 byte[], boolean) instead.
 
 
-
+
 org.apache.hadoop.hbase.client.Admin.modifyColumn(TableName,
 ColumnFamilyDescriptor)
 As of release 2.0.0.
  This will be removed in HBase 3.0.0.
  Use Admin.modifyColumnFamily(TableName,
 ColumnFamilyDescriptor).
 
 
-
+
 org.apache.hadoop.hbase.client.Admin.modifyTable(TableName,
 TableDescriptor)
 since 2.0 version and will 
be removed in 3.0 version.
  use Admin.modifyTable(TableDescriptor)
 
 
-
+
 org.apache.hadoop.hbase.client.Admin.modifyTableAsync(TableName,
 TableDescriptor)
 since 2.0 version and will 
be removed in 3.0 version.
  use Admin.modifyTableAsync(TableDescriptor)
 
 
-
+
 org.apache.hadoop.hbase.CellUtil.overlappingKeys(byte[],
 byte[], byte[], byte[])
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
 
 
-
+
 org.apache.hadoop.hbase.HRegionInfo.parseDelimitedFrom(byte[],
 int, int)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
  Use RegionInfo.parseDelimitedFrom(byte[],
 int, int).
 
 
-
+
 org.apache.hadoop.hbase.HRegionInfo.parseFrom(byte[])
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
  Use RegionInfo.parseFrom(byte[]).
 
 
-
+
 org.apache.hadoop.hbase.HRegionInfo.parseFrom(byte[],
 int, int)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
  Use RegionInfo.parseFrom(byte[],
 int, int).
 
 
-

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.AbortProcedureFuture.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.AbortProcedureFuture.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.AbortProcedureFuture.html
index 02e4554..d438f22 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.AbortProcedureFuture.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.AbortProcedureFuture.html
@@ -111,4067 +111,4061 @@
 103import 
org.apache.hadoop.util.StringUtils;
 104import 
org.apache.yetus.audience.InterfaceAudience;
 105import 
org.apache.yetus.audience.InterfaceStability;
-106
-107import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
-108import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
-109import 
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
-110import 
org.apache.hadoop.hbase.shaded.protobuf.RequestConverter;
-111import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos;
-112import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.AdminService;
-113import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearCompactionQueuesRequest;
-114import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearRegionBlockCacheRequest;
-115import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.CompactRegionRequest;
-116import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.FlushRegionRequest;
-117import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoRequest;
-118import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoResponse;
-119import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterRequest;
-120import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterResponse;
-121import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.StopServerRequest;
-122import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.UpdateConfigurationRequest;
-123import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;
-124import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceRequest;
-125import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceResponse;
-126import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
-127import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.ProcedureDescription;
-128import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionSpecifier.RegionSpecifierType;
-129import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.TableSchema;
-130import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos;
-131import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest;
-132import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse;
-133import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnRequest;
-134import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnResponse;
-135import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AssignRegionRequest;
-136import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ClearDeadServersRequest;
-137import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceRequest;
-138import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceResponse;
-139import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableRequest;
-140import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableResponse;
-141import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnRequest;
-142import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnResponse;
-143import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceRequest;
-144import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceResponse;
-145import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteSnapshotRequest;
-146import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableRequest;
-147import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableResponse;
-148import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableRequest;
-149import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableResponse;
-150import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.EnableTableRequest;
-151import 

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

2017-11-21 Thread git-site-role
Published site at .


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

Branch: refs/heads/asf-site
Commit: 1a6167068d7a85ed8a26d28ea5b01a5ac79dc566
Parents: af14937
Author: jenkins 
Authored: Tue Nov 21 15:17:25 2017 +
Committer: jenkins 
Committed: Tue Nov 21 15:17:25 2017 +

--
 acid-semantics.html | 4 +-
 apache_hbase_reference_guide.pdf| 47282 -
 apidocs/deprecated-list.html|   180 +-
 apidocs/index-all.html  |17 +-
 .../apache/hadoop/hbase/KeepDeletedCells.html   |19 +-
 .../hbase/class-use/KeepDeletedCells.html   | 6 +-
 .../hadoop/hbase/class-use/TableName.html   | 4 +-
 .../org/apache/hadoop/hbase/client/Admin.html   |   830 +-
 .../apache/hadoop/hbase/client/AsyncAdmin.html  |   452 +-
 .../hadoop/hbase/quotas/ThrottleType.html   | 4 +-
 .../class-use/ReplicationException.html | 4 +-
 .../class-use/ReplicationPeerConfig.html|22 +-
 .../class-use/ReplicationPeerDescription.html   |13 +-
 .../apache/hadoop/hbase/KeepDeletedCells.html   | 5 +-
 .../org/apache/hadoop/hbase/client/Admin.html   |  5199 +-
 .../apache/hadoop/hbase/client/AsyncAdmin.html  |  1249 +-
 .../client/ColumnFamilyDescriptorBuilder.html   |   975 +-
 book.html   |  2444 +-
 bulk-loads.html | 4 +-
 checkstyle-aggregate.html   | 10652 ++--
 checkstyle.rss  | 8 +-
 coc.html| 4 +-
 cygwin.html | 4 +-
 dependencies.html   | 4 +-
 dependency-convergence.html | 4 +-
 dependency-info.html| 4 +-
 dependency-management.html  | 4 +-
 devapidocs/constant-values.html | 6 +-
 devapidocs/deprecated-list.html |   256 +-
 devapidocs/index-all.html   |83 +-
 .../apache/hadoop/hbase/KeepDeletedCells.html   |19 +-
 devapidocs/org/apache/hadoop/hbase/Server.html  |52 +-
 .../hadoop/hbase/backup/package-tree.html   | 4 +-
 .../hbase/class-use/KeepDeletedCells.html   | 6 +-
 .../hadoop/hbase/class-use/ServerName.html  |14 +-
 .../hadoop/hbase/class-use/TableName.html   | 4 +-
 .../client/AbstractResponse.ResponseType.html   | 4 +-
 .../org/apache/hadoop/hbase/client/Admin.html   |   830 +-
 .../apache/hadoop/hbase/client/AsyncAdmin.html  |   452 +-
 .../hadoop/hbase/client/AsyncHBaseAdmin.html|19 +-
 .../client/AsyncRequestFutureImpl.Retry.html| 4 +-
 ...uilder.ModifyableColumnFamilyDescriptor.html |   104 +-
 .../ConnectionUtils.MasterlessConnection.html   | 6 +-
 ...nUtils.ShortCircuitingClusterConnection.html |16 +-
 .../hadoop/hbase/client/ConnectionUtils.html|62 +-
 .../client/HBaseAdmin.AbortProcedureFuture.html | 8 +-
 .../HBaseAdmin.AddColumnFamilyFuture.html   | 6 +-
 .../client/HBaseAdmin.CreateTableFuture.html|14 +-
 .../HBaseAdmin.DeleteColumnFamilyFuture.html| 6 +-
 .../client/HBaseAdmin.DeleteTableFuture.html|10 +-
 .../client/HBaseAdmin.DisableTableFuture.html   | 8 +-
 .../client/HBaseAdmin.EnableTableFuture.html| 8 +-
 .../HBaseAdmin.MergeTableRegionsFuture.html | 8 +-
 .../HBaseAdmin.ModifyColumnFamilyFuture.html| 6 +-
 .../client/HBaseAdmin.ModifyTableFuture.html|10 +-
 .../client/HBaseAdmin.NamespaceFuture.html  |12 +-
 ...in.ProcedureFuture.WaitForStateCallable.html | 8 +-
 .../client/HBaseAdmin.ProcedureFuture.html  |48 +-
 .../HBaseAdmin.RestoreSnapshotFuture.html   | 8 +-
 .../HBaseAdmin.SplitTableRegionFuture.html  | 8 +-
 ...n.TableFuture.TableWaitForStateCallable.html | 8 +-
 .../hbase/client/HBaseAdmin.TableFuture.html|30 +-
 .../client/HBaseAdmin.ThrowableAbortable.html   | 8 +-
 .../client/HBaseAdmin.TruncateTableFuture.html  |10 +-
 .../apache/hadoop/hbase/client/HBaseAdmin.html  |   729 +-
 .../hadoop/hbase/client/RawAsyncHBaseAdmin.html |17 +-
 .../client/RequestController.ReturnCode.html| 4 +-
 .../ZKAsyncRegistry.CuratorEventProcessor.html  | 4 +-
 .../hadoop/hbase/client/ZKAsyncRegistry.html|28 +-
 .../hbase/client/class-use/Connection.html  |68 +-
 .../hadoop/hbase/client/package-tree.html   |24 +-
 .../MasterCoprocessorEnvironment.html   |54 +-
 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/checkstyle-aggregate.html
--
diff --git a/checkstyle-aggregate.html b/checkstyle-aggregate.html
index f921724..c5930cb 100644
--- a/checkstyle-aggregate.html
+++ b/checkstyle-aggregate.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Checkstyle Results
 
@@ -289,7 +289,7 @@
 3430
 0
 0
-20897
+20881
 
 Files
 
@@ -1537,7 +1537,7 @@
 org/apache/hadoop/hbase/client/Admin.java
 0
 0
-116
+102
 
 org/apache/hadoop/hbase/client/Append.java
 0
@@ -1752,7 +1752,7 @@
 org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.java
 0
 0
-57
+56
 
 org/apache/hadoop/hbase/client/CompactType.java
 0
@@ -3009,9921 +3009,9916 @@
 0
 1
 
-org/apache/hadoop/hbase/coprocessor/MasterCoprocessorEnvironment.java
-0
-0
-1
-
 org/apache/hadoop/hbase/coprocessor/MasterObserver.java
 0
 0
 20
-
+
 org/apache/hadoop/hbase/coprocessor/MetricsCoprocessor.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/coprocessor/MultiRowMutationEndpoint.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/coprocessor/ObserverContext.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/coprocessor/ObserverContextImpl.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/coprocessor/ProtobufCoprocessorService.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/coprocessor/RegionCoprocessor.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/coprocessor/RegionCoprocessorEnvironment.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/coprocessor/RegionObserver.java
 0
 0
 24
-
+
 org/apache/hadoop/hbase/coprocessor/RegionServerCoprocessor.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/coprocessor/RegionServerObserver.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/coprocessor/SimpleRegionObserver.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/coprocessor/SingletonCoprocessorService.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/coprocessor/TestAsyncCoprocessorEndpoint.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/coprocessor/TestBatchCoprocessorEndpoint.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/coprocessor/TestClassLoading.java
 0
 0
 12
-
+
 org/apache/hadoop/hbase/coprocessor/TestCoprocessorConfiguration.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/coprocessor/TestCoprocessorEndpoint.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/coprocessor/TestCoprocessorHost.java
 0
 0
 8
-
+
 org/apache/hadoop/hbase/coprocessor/TestCoprocessorInterface.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/coprocessor/TestCoprocessorMetrics.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/coprocessor/TestCoprocessorServiceBackwardCompatibility.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/coprocessor/TestCoprocessorShortCircuitRPC.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/coprocessor/TestCoprocessorStop.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/coprocessor/TestCoprocessorTableEndpoint.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/coprocessor/TestCoreMasterCoprocessor.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/coprocessor/TestCoreRegionCoprocessor.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/coprocessor/TestCoreRegionServerCoprocessor.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/coprocessor/TestMasterCoprocessorExceptionWithAbort.java
 0
 0
 10
-
+
 org/apache/hadoop/hbase/coprocessor/TestMasterCoprocessorExceptionWithRemove.java
 0
 0
 8
-
+
 org/apache/hadoop/hbase/coprocessor/TestMasterObserver.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/coprocessor/TestNegativeMemStoreSizeWithSlowCoprocessor.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/coprocessor/TestOpenTableInCoprocessor.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/coprocessor/TestRegionObserverBypass.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/coprocessor/TestRegionObserverForAddingMutationsFromCoprocessors.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/coprocessor/TestRegionObserverInterface.java
 0
 0
 27
-
+
 org/apache/hadoop/hbase/coprocessor/TestRegionObserverScannerOpenHook.java
 0
 0
 7
-
+
 org/apache/hadoop/hbase/coprocessor/TestRegionObserverStacking.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/coprocessor/TestRegionServerCoprocessorEndpoint.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/coprocessor/TestRegionServerCoprocessorExceptionWithAbort.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/coprocessor/TestRegionServerCoprocessorExceptionWithRemove.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/coprocessor/TestRowProcessorEndpoint.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/coprocessor/TestSecureExport.java
 0
 0
 20
-
+
 org/apache/hadoop/hbase/coprocessor/TestWALObserver.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/coprocessor/WALCoprocessor.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/coprocessor/WALCoprocessorEnvironment.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/coprocessor/WALObserver.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/coprocessor/example/BulkDeleteEndpoint.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/coprocessor/example/ExampleMasterObserverWithMetrics.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/coprocessor/example/RefreshHFilesEndpoint.java
 0
 0
 2
-
+
 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/apidocs/src-html/org/apache/hadoop/hbase/client/Admin.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/client/Admin.html 
b/apidocs/src-html/org/apache/hadoop/hbase/client/Admin.html
index 063cf50..cb363f9 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/client/Admin.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/client/Admin.html
@@ -28,2630 +28,2615 @@
 020
 021import java.io.Closeable;
 022import java.io.IOException;
-023import java.util.ArrayList;
-024import java.util.Collection;
-025import java.util.EnumSet;
-026import java.util.List;
-027import java.util.Map;
-028import java.util.Set;
-029import java.util.TreeMap;
-030import java.util.concurrent.Future;
-031import java.util.regex.Pattern;
-032
-033import 
org.apache.hadoop.conf.Configuration;
-034import 
org.apache.hadoop.hbase.Abortable;
-035import 
org.apache.hadoop.hbase.CacheEvictionStats;
-036import 
org.apache.hadoop.hbase.ClusterStatus;
-037import 
org.apache.hadoop.hbase.ClusterStatus.Option;
-038import 
org.apache.hadoop.hbase.HRegionInfo;
-039import 
org.apache.hadoop.hbase.HTableDescriptor;
-040import 
org.apache.hadoop.hbase.NamespaceDescriptor;
-041import 
org.apache.hadoop.hbase.NamespaceNotFoundException;
-042import 
org.apache.hadoop.hbase.RegionLoad;
-043import 
org.apache.hadoop.hbase.ServerName;
-044import 
org.apache.hadoop.hbase.TableExistsException;
-045import 
org.apache.hadoop.hbase.TableName;
-046import 
org.apache.hadoop.hbase.TableNotFoundException;
-047import 
org.apache.yetus.audience.InterfaceAudience;
-048import 
org.apache.hadoop.hbase.client.replication.TableCFs;
-049import 
org.apache.hadoop.hbase.client.security.SecurityCapability;
-050import 
org.apache.hadoop.hbase.ipc.CoprocessorRpcChannel;
-051import 
org.apache.hadoop.hbase.quotas.QuotaFilter;
-052import 
org.apache.hadoop.hbase.quotas.QuotaRetriever;
-053import 
org.apache.hadoop.hbase.quotas.QuotaSettings;
-054import 
org.apache.hadoop.hbase.regionserver.wal.FailedLogCloseException;
-055import 
org.apache.hadoop.hbase.replication.ReplicationException;
-056import 
org.apache.hadoop.hbase.replication.ReplicationPeerConfig;
-057import 
org.apache.hadoop.hbase.replication.ReplicationPeerDescription;
-058import 
org.apache.hadoop.hbase.snapshot.HBaseSnapshotException;
-059import 
org.apache.hadoop.hbase.snapshot.RestoreSnapshotException;
-060import 
org.apache.hadoop.hbase.snapshot.SnapshotCreationException;
-061import 
org.apache.hadoop.hbase.snapshot.UnknownSnapshotException;
-062import 
org.apache.hadoop.hbase.util.Bytes;
-063import 
org.apache.hadoop.hbase.util.Pair;
-064
-065/**
-066 * The administrative API for HBase. 
Obtain an instance from {@link Connection#getAdmin()} and
-067 * call {@link #close()} when done.
-068 * pAdmin can be used to create, 
drop, list, enable and disable and otherwise modify tables,
-069 * as well as perform other 
administrative operations.
-070 *
-071 * @see ConnectionFactory
-072 * @see Connection
-073 * @see Table
-074 * @since 0.99.0
-075 */
-076@InterfaceAudience.Public
-077public interface Admin extends Abortable, 
Closeable {
-078  int getOperationTimeout();
-079
-080  @Override
-081  void abort(String why, Throwable e);
-082
-083  @Override
-084  boolean isAborted();
-085
-086  /**
-087   * @return Connection used by this 
object.
-088   */
-089  Connection getConnection();
-090
-091  /**
-092   * @param tableName Table to check.
-093   * @return 
codetrue/code if table exists already.
-094   * @throws IOException
-095   */
-096  boolean tableExists(TableName 
tableName) throws IOException;
-097
-098  /**
-099   * List all the userspace tables.
-100   *
-101   * @return an array of read-only 
HTableDescriptors
-102   * @throws IOException if a remote or 
network exception occurs
-103   * @deprecated since 2.0 version and 
will be removed in 3.0 version.
-104   * Use {@link 
#listTableDescriptors()}.
-105   * @see #listTableDescriptors()
-106   */
-107  @Deprecated
-108  HTableDescriptor[] listTables() throws 
IOException;
-109
-110  /**
-111   * List all the userspace tables.
-112   *
-113   * @return a list of TableDescriptors
-114   * @throws IOException if a remote or 
network exception occurs
-115   */
-116  ListTableDescriptor 
listTableDescriptors() throws IOException;
-117
-118  /**
-119   * List all the userspace tables that 
match the given pattern.
-120   *
-121   * @param pattern The compiled regular 
expression to match against
-122   * @return an array of read-only 
HTableDescriptors
-123   * @throws IOException if a remote or 
network exception occurs
-124   * @see #listTables()
-125   * @deprecated since 2.0 version and 
will be removed in 3.0 version.
-126   * Use {@link 
#listTableDescriptors(java.util.regex.Pattern)}.
-127   * @see 
#listTableDescriptors(Pattern)
-128   */
-129  @Deprecated
-130  HTableDescriptor[] 

hbase-site git commit: INFRA-10751 Empty commit

2017-11-21 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 1a6167068 -> c4da771cc


INFRA-10751 Empty commit


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

Branch: refs/heads/asf-site
Commit: c4da771cc032173438e68defec61ec58678553c6
Parents: 1a61670
Author: jenkins 
Authored: Tue Nov 21 15:18:04 2017 +
Committer: jenkins 
Committed: Tue Nov 21 15:18:04 2017 +

--

--




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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/apache_hbase_reference_guide.pdf
--
diff --git a/apache_hbase_reference_guide.pdf b/apache_hbase_reference_guide.pdf
index 9ff5f32..264f28c 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:20171120154525+00'00')
-/CreationDate (D:20171120154525+00'00')
+/ModDate (D:20171121144738+00'00')
+/CreationDate (D:20171121144738+00'00')
 >>
 endobj
 2 0 obj
 << /Type /Catalog
 /Pages 3 0 R
 /Names 26 0 R
-/Outlines 4337 0 R
-/PageLabels 4546 0 R
+/Outlines 4510 0 R
+/PageLabels 4734 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 672
-/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 202 0 R 209 0 R 218 0 R 226 0 R 231 0 
R 240 0 R 248 0 R 257 0 R 271 0 R 278 0 R 287 0 R 296 0 R 304 0 R 311 0 R 319 0 
R 325 0 R 332 0 R 339 0 R 347 0 R 356 0 R 366 0 R 378 0 R 387 0 R 394 0 R 401 0 
R 409 0 R 417 0 R 426 0 R 435 0 R 443 0 R 451 0 R 463 0 R 471 0 R 478 0 R 486 0 
R 494 0 R 502 0 R 511 0 R 516 0 R 519 0 R 524 0 R 528 0 R 544 0 R 554 0 R 559 0 
R 573 0 R 579 0 R 584 0 R 586 0 R 588 0 R 593 0 R 601 0 R 607 0 R 612 0 R 617 0 
R 628 0 R 639 0 R 644 0 R 652 0 R 656 0 R 660 0 R 662 0 R 677 0 R 691 0 R 701 0 
R 703 0 R 705 0 R 714 0 R 726 0 R 736 0 R 744 0 R 750 0 R 753 0 R 757 0 R 761 0 
R 764 0 R 767 0 R 769 0 R 772 0 R 776 0 R 778 0 R 783 0 R 787 0 R 792 0 R 796 0 
R 800 0 R 806 0 R 808 0 R 812 0 R 821 0 
 R 823 0 R 826 0 R 830 0 R 833 0 R 836 0 R 850 0 R 857 0 R 865 0 R 876 0 R 882 
0 R 894 0 R 898 0 R 901 0 R 905 0 R 908 0 R 913 0 R 922 0 R 930 0 R 934 0 R 938 
0 R 943 0 R 947 0 R 949 0 R 964 0 R 975 0 R 980 0 R 987 0 R 990 0 R 999 0 R 
1008 0 R 1012 0 R 1017 0 R 1022 0 R 1024 0 R 1026 0 R 1028 0 R 1038 0 R 1046 0 
R 1050 0 R 1057 0 R 1064 0 R 1072 0 R 1077 0 R 1082 0 R 1087 0 R 1095 0 R 1099 
0 R 1104 0 R 1106 0 R 1113 0 R 1119 0 R 1121 0 R 1128 0 R 1138 0 R 1142 0 R 
1144 0 R 1146 0 R 1150 0 R 1153 0 R 1158 0 R 1161 0 R 1173 0 R 1177 0 R 1183 0 
R 1191 0 R 1196 0 R 1200 0 R 1204 0 R 1206 0 R 1209 0 R 1212 0 R 1215 0 R 1220 
0 R 1224 0 R 1228 0 R 1233 0 R 1237 0 R 1241 0 R 1243 0 R 1253 0 R 1256 0 R 
1264 0 R 1273 0 R 1279 0 R 1283 0 R 1285 0 R 1295 0 R 1298 0 R 1304 0 R 1313 0 
R 1316 0 R 1323 0 R 1331 0 R 1333 0 R 1335 0 R 1344 0 R 1346 0 R 1348 0 R 1351 
0 R 1353 0 R 1355 0 R 1357 0 R 1359 0 R 1362 0 R 1366 0 R 1371 0 R 1373 0 R 
1375 0 R 1377 0 R 1382 0 R 1389 0 R 1395 0 R 1398 0 R 1400 0 
 R 1403 0 R 1407 0 R 1409 0 R 1412 0 R 1414 0 R 1416 0 R 1419 0 R 1424 0 R 1430 
0 R 1438 0 R 1452 0 R 1466 0 R 1469 0 R 1474 0 R 1487 0 R 1496 0 R 1510 0 R 
1516 0 R 1525 0 R 1540 0 R 1554 0 R 1566 0 R 1571 0 R 1577 0 R 1588 0 R 1594 0 
R 1599 0 R 1607 0 R 1610 0 R 1619 0 R 1626 0 R 1630 0 R 1643 0 R 1645 0 R 1651 
0 R 1655 0 R 1657 0 R 1665 0 R 1673 0 R 1677 0 R 1679 0 R 1681 0 R 1693 0 R 
1699 0 R 1708 0 R 1714 0 R 1728 0 R 1733 0 R 1742 0 R 1750 0 R 1756 0 R 1763 0 
R 1767 0 R 1770 0 R 1772 0 R 1780 0 R 1784 0 R 1790 0 R 1794 0 R 1802 0 R 1807 
0 R 1813 0 R 1818 0 R 1820 0 R 1829 0 R 1836 0 R 1842 0 R 1847 0 R 1851 0 R 
1854 0 R 1859 0 R 1865 0 R 1872 0 R 1874 0 R 1876 0 R 1879 0 R 1887 0 R 1890 0 
R 1897 0 R 1906 0 R 1909 0 R 1914 0 R 1916 0 R 1921 0 R 1924 0 R 1926 0 R 1931 
0 R 1941 0 R 1943 0 R 1945 0 R 1947 0 R 1949 0 R 1952 0 R 1954 0 R 1956 0 R 
1959 0 R 1961 0 R 1963 0 R 1967 0 R 1972 0 R 1981 0 R 1983 0 R 1985 0 R 1991 0 
R 1993 0 R 1999 0 R 2001 0 R 2003 0 R 2010 0 R 2015 0 R 2019 
 0 R 2023 0 R 2027 0 R 2029 0 R 2031 0 R 2035 0 R 2038 0 R 2040 0 R 2042 0 R 
2046 0 R 2048 0 R 2051 0 R 2053 0 R 2055 0 R 2057 0 R 2064 0 R 2067 0 R 2072 0 
R 2074 0 R 2076 0 R 2078 0 R 2080 0 R 2088 0 R 2099 0 R 2113 0 R 2124 0 R 2128 
0 R 2133 0 R 2137 0 R 2140 0 R 2145 0 R 2151 0 R 2153 0 R 2157 0 R 2159 0 R 
2161 0 R 2163 0 R 2167 0 R 2169 0 R 2182 0 R 2185 0 R 2193 0 R 2199 0 R 2211 0 
R 2225 0 R 2239 0 R 2256 0 R 2260 0 R 2262 0 R 2266 0 R 2284 0 R 2290 0 R 2302 
0 R 2306 0 R 2310 0 R 2319 0 R 2329 0 R 2334 0 R 2345 0 R 2358 0 R 2376 0 R 
2385 0 R 2388 0 R 2397 0 R 2415 0 R 2422 0 R 2425 0 R 2430 0 R 2434 0 R 2437 0 
R 2446 0 R 2455 0 R 2458 0 R 2460 0 R 2464 0 R 2479 0 R 2487 0 R 2492 0 R 2497 
0 R 2500 0 R 2502 0 R 2504 0 R 2506 0 R 2511 0 R 2524 0 R 2534 0 R 2543 0 R 
2551 0 R 2557 0 R 2567 0 R 2574 0 R 2580 0 R 2582 0 R 2592 0 R 2600 0 R 2609 0 
R 2614 0 R 2626 0 R 2630 0 R 2640 0 R 2648 0 R 2656 0 R 2663 0 R 2667 0 R 2671 
0 R 2675 0 R 2677 0 R 2683 0 R 2687 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/apidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html 
b/apidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html
index 9d535df..92c1c97 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html
@@ -507,259 +507,259 @@
 499   * @param peerId a short name that 
identifies the peer
 500   * @param peerConfig configuration for 
the replication slave cluster
 501   */
-502  CompletableFutureVoid 
addReplicationPeer(String peerId,
-503  ReplicationPeerConfig 
peerConfig);
-504
-505  /**
-506   * Remove a peer and stop the 
replication
-507   * @param peerId a short name that 
identifies the peer
-508   */
-509  CompletableFutureVoid 
removeReplicationPeer(String peerId);
-510
-511  /**
-512   * Restart the replication stream to 
the specified peer
-513   * @param peerId a short name that 
identifies the peer
-514   */
-515  CompletableFutureVoid 
enableReplicationPeer(String peerId);
-516
-517  /**
-518   * Stop the replication stream to the 
specified peer
-519   * @param peerId a short name that 
identifies the peer
-520   */
-521  CompletableFutureVoid 
disableReplicationPeer(String peerId);
-522
-523  /**
-524   * Returns the configured 
ReplicationPeerConfig for the specified peer
-525   * @param peerId a short name that 
identifies the peer
-526   * @return ReplicationPeerConfig for 
the peer wrapped by a {@link CompletableFuture}.
-527   */
-528  
CompletableFutureReplicationPeerConfig getReplicationPeerConfig(String 
peerId);
-529
-530  /**
-531   * Update the peerConfig for the 
specified peer
-532   * @param peerId a short name that 
identifies the peer
-533   * @param peerConfig new config for the 
peer
-534   */
-535  CompletableFutureVoid 
updateReplicationPeerConfig(String peerId,
-536  ReplicationPeerConfig 
peerConfig);
-537
-538  /**
-539   * Append the replicable table-cf 
config of the specified peer
-540   * @param peerId a short that 
identifies the cluster
-541   * @param tableCfs A map from tableName 
to column family names
-542   */
-543  CompletableFutureVoid 
appendReplicationPeerTableCFs(String peerId,
-544  MapTableName, ? extends 
CollectionString tableCfs);
-545
-546  /**
-547   * Remove some table-cfs from config of 
the specified peer
-548   * @param peerId a short name that 
identifies the cluster
-549   * @param tableCfs A map from tableName 
to column family names
-550   */
-551  CompletableFutureVoid 
removeReplicationPeerTableCFs(String peerId,
-552  MapTableName, ? extends 
CollectionString tableCfs);
-553
-554  /**
-555   * Return a list of replication 
peers.
-556   * @return a list of replication peers 
description. The return value will be wrapped by a
-557   * {@link CompletableFuture}.
-558   */
-559  
CompletableFutureListReplicationPeerDescription 
listReplicationPeers();
-560
-561  /**
-562   * Return a list of replication 
peers.
-563   * @param pattern The compiled regular 
expression to match peer id
-564   * @return a list of replication peers 
description. The return value will be wrapped by a
-565   * {@link CompletableFuture}.
-566   */
-567  
CompletableFutureListReplicationPeerDescription 
listReplicationPeers(Pattern pattern);
-568
-569  /**
-570   * Find all table and column families 
that are replicated from this cluster
-571   * @return the replicated table-cfs 
list of this cluster. The return value will be wrapped by a
-572   * {@link CompletableFuture}.
-573   */
-574  
CompletableFutureListTableCFs listReplicatedTableCFs();
-575
-576  /**
-577   * Enable a table's replication 
switch.
-578   * @param tableName name of the table
-579   */
-580  CompletableFutureVoid 
enableTableReplication(TableName tableName);
-581
-582  /**
-583   * Disable a table's replication 
switch.
-584   * @param tableName name of the table
-585   */
-586  CompletableFutureVoid 
disableTableReplication(TableName tableName);
-587
-588  /**
-589   * Take a snapshot for the given table. 
If the table is enabled, a FLUSH-type snapshot will be
-590   * taken. If the table is disabled, an 
offline snapshot is taken. Snapshots are considered unique
-591   * based on bthe name of the 
snapshot/b. Attempts to take a snapshot with the same name (even
-592   * a different type or with different 
parameters) will fail with a
-593   * {@link 
org.apache.hadoop.hbase.snapshot.SnapshotCreationException} indicating the 
duplicate
-594   * naming. Snapshot names follow the 
same naming constraints as tables in HBase. See
-595   * {@link 
org.apache.hadoop.hbase.TableName#isLegalFullyQualifiedTableName(byte[])}.
-596   * @param snapshotName name of the 
snapshot to be created
-597   * @param tableName name of the table 
for which snapshot 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.MasterEnvironmentForCoreCoprocessors.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.MasterEnvironmentForCoreCoprocessors.html
 
b/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.MasterEnvironmentForCoreCoprocessors.html
index 90fda95..47f9a8f 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.MasterEnvironmentForCoreCoprocessors.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.MasterEnvironmentForCoreCoprocessors.html
@@ -127,7 +127,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-private static class MasterCoprocessorHost.MasterEnvironmentForCoreCoprocessors
+private static class MasterCoprocessorHost.MasterEnvironmentForCoreCoprocessors
 extends MasterCoprocessorHost.MasterEnvironment
 implements HasMasterServices
 Special version of MasterEnvironment that exposes 
MasterServices for Core Coprocessors only.
@@ -207,7 +207,7 @@ implements MasterCoprocessorHost.MasterEnvironment
-getConnection,
 getMetricRegistryForMaster,
 getServerName,
 shutdown
+createConnection,
 getConnection,
 getMetricRegistryForMaster,
 getServerName,
 shutdown
 
 
 
@@ -250,7 +250,7 @@ implements 
 
 masterServices
-private finalMasterServices masterServices
+private finalMasterServices masterServices
 
 
 
@@ -267,7 +267,7 @@ implements 
 
 MasterEnvironmentForCoreCoprocessors
-publicMasterEnvironmentForCoreCoprocessors(MasterCoprocessorimpl,
+publicMasterEnvironmentForCoreCoprocessors(MasterCoprocessorimpl,
 intpriority,
 intseq,
 
org.apache.hadoop.conf.Configurationconf,
@@ -288,7 +288,7 @@ implements 
 
 getMasterServices
-publicMasterServicesgetMasterServices()
+publicMasterServicesgetMasterServices()
 
 Specified by:
 getMasterServicesin
 interfaceHasMasterServices

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.MasterObserverOperation.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.MasterObserverOperation.html
 
b/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.MasterObserverOperation.html
index 06d7dd3..e61be35 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.MasterObserverOperation.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.MasterObserverOperation.html
@@ -126,7 +126,7 @@
 
 
 
-abstract class MasterCoprocessorHost.MasterObserverOperation
+abstract class MasterCoprocessorHost.MasterObserverOperation
 extends CoprocessorHost.ObserverOperationWithoutResultMasterObserver
 
 
@@ -215,7 +215,7 @@ extends 
 
 MasterObserverOperation
-publicMasterObserverOperation()
+publicMasterObserverOperation()
 
 
 
@@ -224,7 +224,7 @@ extends 
 
 MasterObserverOperation
-publicMasterObserverOperation(booleanbypassable)
+publicMasterObserverOperation(booleanbypassable)
 
 
 
@@ -233,7 +233,7 @@ extends 
 
 MasterObserverOperation
-publicMasterObserverOperation(Useruser)
+publicMasterObserverOperation(Useruser)
 
 
 
@@ -242,7 +242,7 @@ extends 
 
 MasterObserverOperation
-publicMasterObserverOperation(Useruser,
+publicMasterObserverOperation(Useruser,
booleanbypassable)
 
 



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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/client/ConnectionUtils.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/ConnectionUtils.html 
b/devapidocs/org/apache/hadoop/hbase/client/ConnectionUtils.html
index 70f02bc..78b82db 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/ConnectionUtils.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/ConnectionUtils.html
@@ -414,7 +414,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 NO_NONCE_GENERATOR
-static finalNonceGenerator NO_NONCE_GENERATOR
+static finalNonceGenerator NO_NONCE_GENERATOR
 Dummy nonce generator for disabled nonces.
 
 
@@ -424,7 +424,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 MAX_BYTE_ARRAY
-static finalbyte[] MAX_BYTE_ARRAY
+static finalbyte[] MAX_BYTE_ARRAY
 
 
 
@@ -433,7 +433,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 SLEEP_DELTA_NS
-static finallong SLEEP_DELTA_NS
+static finallong SLEEP_DELTA_NS
 
 
 
@@ -442,7 +442,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 MY_ADDRESS
-private static finalhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String MY_ADDRESS
+private static finalhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String MY_ADDRESS
 
 
 
@@ -529,7 +529,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 createShortCircuitConnection
-public staticClusterConnectioncreateShortCircuitConnection(org.apache.hadoop.conf.Configurationconf,
+public staticClusterConnectioncreateShortCircuitConnection(org.apache.hadoop.conf.Configurationconf,
  http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html?is-external=true;
 title="class or interface in 
java.util.concurrent">ExecutorServicepool,
  Useruser,
  ServerNameserverName,
@@ -559,7 +559,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 setupMasterlessConnection
-public staticvoidsetupMasterlessConnection(org.apache.hadoop.conf.Configurationconf)
+public staticvoidsetupMasterlessConnection(org.apache.hadoop.conf.Configurationconf)
 Setup the connection class, so that it will not depend on 
master being online. Used for testing
 
 Parameters:
@@ -573,7 +573,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 retries2Attempts
-staticintretries2Attempts(intretries)
+staticintretries2Attempts(intretries)
 Return retires + 1. The returned value will be in range [1, 
Integer.MAX_VALUE].
 
 
@@ -583,7 +583,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 getStubKey
-statichttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringgetStubKey(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringserviceName,
+statichttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringgetStubKey(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringserviceName,
  ServerNameserverName,
  booleanhostnameCanChange)
 Get a unique key for the rpc stub to the given server.
@@ -595,7 +595,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 checkHasFamilies
-staticvoidcheckHasFamilies(Mutationmutation)
+staticvoidcheckHasFamilies(Mutationmutation)
 
 
 
@@ -604,7 +604,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 createClosestRowAfter
-staticbyte[]createClosestRowAfter(byte[]row)
+staticbyte[]createClosestRowAfter(byte[]row)
 Create the closest row after the specified row
 
 
@@ -614,7 +614,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 createCloseRowBefore
-staticbyte[]createCloseRowBefore(byte[]row)
+staticbyte[]createCloseRowBefore(byte[]row)
 Create a row before the specified row and very close to the 
specified row.
 
 
@@ -624,7 +624,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 isEmptyStartRow
-staticbooleanisEmptyStartRow(byte[]row)
+staticbooleanisEmptyStartRow(byte[]row)
 
 
 
@@ -633,7 +633,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 isEmptyStopRow
-staticbooleanisEmptyStopRow(byte[]row)
+staticbooleanisEmptyStopRow(byte[]row)
 
 
 
@@ -642,7 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/ConnectionUtils.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/ConnectionUtils.html 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/ConnectionUtils.html
index d309d87..1bddf29 100644
--- a/devapidocs/src-html/org/apache/hadoop/hbase/client/ConnectionUtils.html
+++ b/devapidocs/src-html/org/apache/hadoop/hbase/client/ConnectionUtils.html
@@ -135,368 +135,369 @@
 127   * localhost if the invocation target 
is 'this' server; save on network and protobuf
 128   * invocations.
 129   */
-130  @VisibleForTesting // Class is visible 
so can assert we are short-circuiting when expected.
-131  public static class 
ShortCircuitingClusterConnection extends ConnectionImplementation {
-132private final ServerName 
serverName;
-133private final 
AdminService.BlockingInterface localHostAdmin;
-134private final 
ClientService.BlockingInterface localHostClient;
-135
-136private 
ShortCircuitingClusterConnection(Configuration conf, ExecutorService pool, User 
user,
-137ServerName serverName, 
AdminService.BlockingInterface admin,
-138ClientService.BlockingInterface 
client)
-139throws IOException {
-140  super(conf, pool, user);
-141  this.serverName = serverName;
-142  this.localHostAdmin = admin;
-143  this.localHostClient = client;
-144}
-145
-146@Override
-147public AdminService.BlockingInterface 
getAdmin(ServerName sn) throws IOException {
-148  return serverName.equals(sn) ? 
this.localHostAdmin : super.getAdmin(sn);
-149}
-150
-151@Override
-152public 
ClientService.BlockingInterface getClient(ServerName sn) throws IOException {
-153  return serverName.equals(sn) ? 
this.localHostClient : super.getClient(sn);
-154}
-155
-156@Override
-157public MasterKeepAliveConnection 
getKeepAliveMasterService() throws MasterNotRunningException {
-158  if (this.localHostClient instanceof 
MasterService.BlockingInterface) {
-159return new 
ShortCircuitMasterConnection((MasterService.BlockingInterface)this.localHostClient);
-160  }
-161  return 
super.getKeepAliveMasterService();
-162}
-163  }
-164
-165  /**
-166   * Creates a short-circuit connection 
that can bypass the RPC layer (serialization,
-167   * deserialization, networking, etc..) 
when talking to a local server.
-168   * @param conf the current 
configuration
-169   * @param pool the thread pool to use 
for batch operations
-170   * @param user the user the connection 
is for
-171   * @param serverName the local server 
name
-172   * @param admin the admin interface of 
the local server
-173   * @param client the client interface 
of the local server
-174   * @return an short-circuit 
connection.
-175   * @throws IOException if IO failure 
occurred
-176   */
-177  public static ClusterConnection 
createShortCircuitConnection(final Configuration conf,
-178  ExecutorService pool, User user, 
final ServerName serverName,
-179  final 
AdminService.BlockingInterface admin, final ClientService.BlockingInterface 
client)
-180  throws IOException {
-181if (user == null) {
-182  user = 
UserProvider.instantiate(conf).getCurrent();
-183}
-184return new 
ShortCircuitingClusterConnection(conf, pool, user, serverName, admin, 
client);
-185  }
-186
-187  /**
-188   * Setup the connection class, so that 
it will not depend on master being online. Used for testing
-189   * @param conf configuration to set
-190   */
-191  @VisibleForTesting
-192  public static void 
setupMasterlessConnection(Configuration conf) {
-193
conf.set(ClusterConnection.HBASE_CLIENT_CONNECTION_IMPL, 
MasterlessConnection.class.getName());
-194  }
-195
-196  /**
-197   * Some tests shut down the master. But 
table availability is a master RPC which is performed on
-198   * region re-lookups.
-199   */
-200  static class MasterlessConnection 
extends ConnectionImplementation {
-201MasterlessConnection(Configuration 
conf, ExecutorService pool, User user) throws IOException {
-202  super(conf, pool, user);
-203}
-204
-205@Override
-206public boolean 
isTableDisabled(TableName tableName) throws IOException {
-207  // treat all tables as enabled
-208  return false;
-209}
-210  }
-211
-212  /**
-213   * Return retires + 1. The returned 
value will be in range [1, Integer.MAX_VALUE].
-214   */
-215  static int retries2Attempts(int 
retries) {
-216return Math.max(1, retries == 
Integer.MAX_VALUE ? Integer.MAX_VALUE : retries + 1);
-217  }
-218
-219  /**
-220   * Get a unique key for the rpc stub to 
the given server.
-221   */
-222  static String getStubKey(String 
serviceName, ServerName serverName, boolean hostnameCanChange) {
-223// Sometimes, servers go down and 
they come back up with the same hostname but a 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.WaitForStateCallable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.WaitForStateCallable.html
 
b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.WaitForStateCallable.html
index 70a898a..c0fe900 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.WaitForStateCallable.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.WaitForStateCallable.html
@@ -109,7 +109,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-protected static interface HBaseAdmin.ProcedureFuture.WaitForStateCallable
+protected static interface HBaseAdmin.ProcedureFuture.WaitForStateCallable
 
 
 
@@ -161,7 +161,7 @@ var activeTableTab = "activeTableTab";
 
 
 checkState
-booleancheckState(inttries)
+booleancheckState(inttries)
 throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
 
 Throws:
@@ -175,7 +175,7 @@ var activeTableTab = "activeTableTab";
 
 
 throwInterruptedException
-voidthrowInterruptedException()
+voidthrowInterruptedException()
 throws http://docs.oracle.com/javase/8/docs/api/java/io/InterruptedIOException.html?is-external=true;
 title="class or interface in java.io">InterruptedIOException
 
 Throws:
@@ -189,7 +189,7 @@ var activeTableTab = "activeTableTab";
 
 
 throwTimeoutException
-voidthrowTimeoutException(longelapsed)
+voidthrowTimeoutException(longelapsed)
 throws http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeoutException.html?is-external=true;
 title="class or interface in java.util.concurrent">TimeoutException
 
 Throws:

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.html 
b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.html
index 10e794d..eaf51e1 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ProcedureFuture.html
@@ -123,7 +123,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Private
  @InterfaceStability.Evolving
-protected static class HBaseAdmin.ProcedureFutureV
+protected static class HBaseAdmin.ProcedureFutureV
 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 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true;
 title="class or interface in java.util.concurrent">FutureV
 Future that waits on a procedure result.
@@ -328,7 +328,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 exception
-privatehttp://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutionException.html?is-external=true;
 title="class or interface in java.util.concurrent">ExecutionException exception
+privatehttp://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutionException.html?is-external=true;
 title="class or interface in java.util.concurrent">ExecutionException exception
 
 
 
@@ -337,7 +337,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 procResultFound
-privateboolean procResultFound
+privateboolean procResultFound
 
 
 
@@ -346,7 +346,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 done
-privateboolean done
+privateboolean done
 
 
 
@@ -355,7 +355,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 cancelled
-privateboolean cancelled
+privateboolean cancelled
 
 
 
@@ -364,7 +364,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 result
-privateV result
+privateV result
 
 
 
@@ -373,7 +373,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 admin
-private finalHBaseAdmin admin
+private finalHBaseAdmin admin
 
 
 
@@ -382,7 +382,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 procId
-private finalhttp://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true;
 title="class or interface in java.lang">Long procId
+private finalhttp://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true;
 title="class or interface in java.lang">Long procId
 
 
 
@@ -399,7 +399,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/util/concurren
 
 
 ProcedureFuture
-publicProcedureFuture(HBaseAdminadmin,
+publicProcedureFuture(HBaseAdminadmin,

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/checkstyle.rss
--
diff --git a/checkstyle.rss b/checkstyle.rss
index d2f4870..40aa3bd 100644
--- a/checkstyle.rss
+++ b/checkstyle.rss
@@ -26,7 +26,7 @@ under the License.
 2007 - 2017 The Apache Software Foundation
 
   File: 3430,
- Errors: 20897,
+ Errors: 20881,
  Warnings: 0,
  Infos: 0
   
@@ -22021,7 +22021,7 @@ under the License.
   0
 
 
-  116
+  102
 
   
   
@@ -31737,7 +31737,7 @@ under the License.
   0
 
 
-  57
+  56
 
   
   
@@ -37967,7 +37967,7 @@ under the License.
   0
 
 
-  1
+  0
 
   
   

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/coc.html
--
diff --git a/coc.html b/coc.html
index a85ef30..957a7d9 100644
--- a/coc.html
+++ b/coc.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  
   Code of Conduct Policy
@@ -380,7 +380,7 @@ email to mailto:priv...@hbase.apache.org;>the priv
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-11-20
+  Last Published: 
2017-11-21
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/cygwin.html
--
diff --git a/cygwin.html b/cygwin.html
index 5233113..c87bacb 100644
--- a/cygwin.html
+++ b/cygwin.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Installing Apache HBase (TM) on Windows using 
Cygwin
 
@@ -679,7 +679,7 @@ Now your HBase server is running, start 
coding and build that next
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-11-20
+  Last Published: 
2017-11-21
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/dependencies.html
--
diff --git a/dependencies.html b/dependencies.html
index fac0700..ed27e32 100644
--- a/dependencies.html
+++ b/dependencies.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Project Dependencies
 
@@ -445,7 +445,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-11-20
+  Last Published: 
2017-11-21
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/dependency-convergence.html
--
diff --git a/dependency-convergence.html b/dependency-convergence.html
index 60c2a85..72b54f6 100644
--- a/dependency-convergence.html
+++ b/dependency-convergence.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Reactor Dependency Convergence
 
@@ -1008,7 +1008,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-11-20
+  Last Published: 
2017-11-21
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/dependency-info.html
--
diff --git a/dependency-info.html b/dependency-info.html
index 0196739..bde311c 100644
--- a/dependency-info.html
+++ b/dependency-info.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Dependency Information
 
@@ -318,7 +318,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-11-20
+  Last Published: 
2017-11-21
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/dependency-management.html
--
diff --git a/dependency-management.html b/dependency-management.html
index f007abd..b5dc8a1 100644
--- a/dependency-management.html
+++ b/dependency-management.html
@@ -7,7 +7,7 @@
   
 
 
-
+ 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/apidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
--
diff --git 
a/apidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
 
b/apidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
index 6e8b661..82ffd2f 100644
--- 
a/apidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
+++ 
b/apidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
@@ -906,494 +906,495 @@
 898
 899@Override
 900public KeepDeletedCells 
getKeepDeletedCells() {
-901  return 
getStringOrDefault(KEEP_DELETED_CELLS_BYTES, KeepDeletedCells::valueOf, 
DEFAULT_KEEP_DELETED);
-902}
-903
-904/**
-905 * @param keepDeletedCells True if 
deleted rows should not be collected
-906 * immediately.
-907 * @return this (for chained 
invocation)
-908 */
-909public 
ModifyableColumnFamilyDescriptor setKeepDeletedCells(KeepDeletedCells 
keepDeletedCells) {
-910  return 
setValue(KEEP_DELETED_CELLS_BYTES, keepDeletedCells.name());
-911}
-912
-913/**
-914 * By default, HBase only consider 
timestamp in versions. So a previous Delete with higher ts
-915 * will mask a later Put with lower 
ts. Set this to true to enable new semantics of versions.
-916 * We will also consider mvcc in 
versions. See HBASE-15968 for details.
-917 */
-918public boolean isNewVersionBehavior() 
{
-919  return 
getStringOrDefault(NEW_VERSION_BEHAVIOR_BYTES,
-920  Boolean::parseBoolean, 
DEFAULT_NEW_VERSION_BEHAVIOR);
-921}
-922
-923public 
ModifyableColumnFamilyDescriptor setNewVersionBehavior(boolean 
newVersionBehavior) {
-924  return 
setValue(NEW_VERSION_BEHAVIOR_BYTES, Boolean.toString(newVersionBehavior));
-925}
-926
-927@Override
-928public int getTimeToLive() {
-929  return 
getStringOrDefault(TTL_BYTES, Integer::parseInt, DEFAULT_TTL);
-930}
-931
-932/**
-933 * @param timeToLive Time-to-live of 
cell contents, in seconds.
-934 * @return this (for chained 
invocation)
-935 */
-936public 
ModifyableColumnFamilyDescriptor setTimeToLive(int timeToLive) {
-937  return setValue(TTL_BYTES, 
Integer.toString(timeToLive));
-938}
-939
-940/**
-941 * @param timeToLive Time-to-live of 
cell contents, in seconds.
-942 * @return this (for chained 
invocation)
-943 * @throws 
org.apache.hadoop.hbase.exceptions.HBaseException
-944 */
-945public 
ModifyableColumnFamilyDescriptor setTimeToLive(String timeToLive) throws 
HBaseException {
-946  return 
setTimeToLive(Integer.parseInt(PrettyPrinter.valueOf(timeToLive, 
Unit.TIME_INTERVAL)));
-947}
-948
-949@Override
-950public int getMinVersions() {
-951  return 
getStringOrDefault(MIN_VERSIONS_BYTES, Integer::valueOf, 
DEFAULT_MIN_VERSIONS);
-952}
-953
-954/**
-955 * @param minVersions The minimum 
number of versions to keep. (used when
-956 * timeToLive is set)
-957 * @return this (for chained 
invocation)
-958 */
-959public 
ModifyableColumnFamilyDescriptor setMinVersions(int minVersions) {
-960  return setValue(MIN_VERSIONS_BYTES, 
Integer.toString(minVersions));
-961}
-962
-963@Override
-964public boolean isBlockCacheEnabled() 
{
-965  return 
getStringOrDefault(BLOCKCACHE_BYTES, Boolean::valueOf, DEFAULT_BLOCKCACHE);
-966}
-967
-968/**
-969 * @param blockCacheEnabled True if 
hfile DATA type blocks should be cached
-970 * (We always cache INDEX and BLOOM 
blocks; you cannot turn this off).
-971 * @return this (for chained 
invocation)
-972 */
-973public 
ModifyableColumnFamilyDescriptor setBlockCacheEnabled(boolean 
blockCacheEnabled) {
-974  return setValue(BLOCKCACHE_BYTES, 
Boolean.toString(blockCacheEnabled));
-975}
-976
-977@Override
-978public BloomType getBloomFilterType() 
{
-979  return 
getStringOrDefault(BLOOMFILTER_BYTES, BloomType::valueOf, 
DEFAULT_BLOOMFILTER);
-980}
-981
-982public 
ModifyableColumnFamilyDescriptor setBloomFilterType(final BloomType bt) {
-983  return setValue(BLOOMFILTER_BYTES, 
bt.name());
-984}
-985
-986@Override
-987public int getScope() {
-988  return 
getStringOrDefault(REPLICATION_SCOPE_BYTES, Integer::valueOf, 
DEFAULT_REPLICATION_SCOPE);
-989}
-990
-991/**
-992 * @param scope the scope tag
-993 * @return this (for chained 
invocation)
-994 */
-995public 
ModifyableColumnFamilyDescriptor setScope(int scope) {
-996  return 
setValue(REPLICATION_SCOPE_BYTES, Integer.toString(scope));
-997}
-998
-999@Override
-1000public boolean isCacheDataOnWrite() 
{
-1001  return 
getStringOrDefault(CACHE_DATA_ON_WRITE_BYTES, Boolean::valueOf, 
DEFAULT_CACHE_DATA_ON_WRITE);
-1002}
-1003
-1004

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/regionserver/HRegionServer.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/regionserver/HRegionServer.html 
b/devapidocs/org/apache/hadoop/hbase/regionserver/HRegionServer.html
index 3bd6537..9a11f10 100644
--- a/devapidocs/org/apache/hadoop/hbase/regionserver/HRegionServer.html
+++ b/devapidocs/org/apache/hadoop/hbase/regionserver/HRegionServer.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":9,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":9,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":9,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":10,"i52":10,"i53":10,"i54":10,"i55":10,"i56":10,"i57":10,"i58":10,"i59":10,"i60":10,"i61":10,"i62":10,"i63":10,"i64":10,"i65":10,"i66":10,"i67":10,"i68":10,"i69":10,"i70":10,"i71":10,"i72":10,"i73":10,"i74":10,"i75":10,"i76":10,"i77":10,"i78":10,"i79":10,"i80":10,"i81":10,"i82":10,"i83":10,"i84":10,"i85":10,"i86":10,"i87":10,"i88":10,"i89":10,"i90":10,"i91":10,"i92":10,"i93":10,"i94":10,"i95":10,"i96":10,"i97":10,"i98":10,"i99":10,"i100":10,"i101":10,"i102":10,"i103":10,"i104":10,"i105":10,"i106":10,"i107":10,"i108":10,"i109
 
":10,"i110":10,"i111":10,"i112":10,"i113":10,"i114":10,"i115":10,"i116":10,"i117":10,"i118":10,"i119":10,"i120":10,"i121":10,"i122":10,"i123":10,"i124":9,"i125":10,"i126":9,"i127":10,"i128":10,"i129":10,"i130":10,"i131":10,"i132":10,"i133":10,"i134":10,"i135":10,"i136":10,"i137":10,"i138":10,"i139":10,"i140":10,"i141":10,"i142":10,"i143":9,"i144":10,"i145":9,"i146":10,"i147":10,"i148":10,"i149":10,"i150":10,"i151":10,"i152":10,"i153":10,"i154":10,"i155":10,"i156":10,"i157":10,"i158":10,"i159":10,"i160":10,"i161":10,"i162":10,"i163":10,"i164":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":9,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":9,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":9,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":10,"i52":10,"i53":10,"i54":10,"i55":10,"i56":10,"i57":10,"i58":10,"i59":10,"i60":10,"i61":10,"i62":10,"i63":10,"i64":10,"i65":10,"i66":10,"i67":10,"i68":10,"i69":10,"i70":10,"i71":10,"i72":10,"i73":10,"i74":10,"i75":10,"i76":10,"i77":10,"i78":10,"i79":10,"i80":10,"i81":10,"i82":10,"i83":10,"i84":10,"i85":10,"i86":10,"i87":10,"i88":10,"i89":10,"i90":10,"i91":10,"i92":10,"i93":10,"i94":10,"i95":10,"i96":10,"i97":10,"i98":10,"i99":10,"i100":10,"i101":10,"i102":10,"i103":10,"i104":10,"i105":10,"i106":10,"i107":10,"i108":10,"i109
 
":10,"i110":10,"i111":10,"i112":10,"i113":10,"i114":10,"i115":10,"i116":10,"i117":10,"i118":10,"i119":10,"i120":10,"i121":10,"i122":10,"i123":10,"i124":10,"i125":9,"i126":10,"i127":9,"i128":10,"i129":10,"i130":10,"i131":10,"i132":10,"i133":10,"i134":10,"i135":10,"i136":10,"i137":10,"i138":10,"i139":10,"i140":10,"i141":10,"i142":10,"i143":10,"i144":9,"i145":10,"i146":9,"i147":10,"i148":10,"i149":10,"i150":10,"i151":10,"i152":10,"i153":10,"i154":10,"i155":10,"i156":10,"i157":10,"i158":10,"i159":10,"i160":10,"i161":10,"i162":10,"i163":10,"i164":10,"i165":10};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -787,10 +787,14 @@ implements 
+Connection
+createConnection(org.apache.hadoop.conf.Configurationconf)
+
+
 private void
 createMyEphemeralNode()
 
-
+
 private static void
 createNewReplicationInstance(org.apache.hadoop.conf.Configurationconf,
 HRegionServerserver,
@@ -800,449 +804,449 @@ implements Load the replication executorService objects, if any
 
 
-
+
 (package private) 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterStatusProtos.RegionLoad
 createRegionLoad(HRegionr,
 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterStatusProtos.RegionLoad.BuilderregionLoadBldr,
 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionSpecifier.BuilderregionSpecifier)
 
-
+
 org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterStatusProtos.RegionLoad
 createRegionLoad(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in 
java.lang">StringencodedRegionName)
 
-
+
 protected ServerName
 createRegionServerStatusStub()
 Get the current master from ZooKeeper 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/client/Admin.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/Admin.html 
b/devapidocs/org/apache/hadoop/hbase/client/Admin.html
index c3b029a..9e4fb11 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/Admin.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/Admin.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":6,"i1":6,"i2":6,"i3":50,"i4":6,"i5":6,"i6":18,"i7":18,"i8":6,"i9":6,"i10":6,"i11":50,"i12":50,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":38,"i25":38,"i26":38,"i27":38,"i28":6,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":50,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":38,"i46":6,"i47":6,"i48":6,"i49":6,"i50":6,"i51":6,"i52":6,"i53":38,"i54":6,"i55":6,"i56":38,"i57":38,"i58":6,"i59":38,"i60":18,"i61":6,"i62":6,"i63":6,"i64":38,"i65":38,"i66":50,"i67":18,"i68":6,"i69":6,"i70":6,"i71":38,"i72":38,"i73":6,"i74":50,"i75":6,"i76":6,"i77":6,"i78":38,"i79":38,"i80":18,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":6,"i88":6,"i89":6,"i90":6,"i91":6,"i92":18,"i93":6,"i94":18,"i95":6,"i96":38,"i97":6,"i98":6,"i99":6,"i100":38,"i101":50,"i102":50,"i103":18,"i104":6,"i105":6,"i106":6,"i107":18,"i108":18,"i109":6,"i110":38,"i111":38,"i112":38,"i113":38,"i114":6,"i115":6,"i116":6,
 
"i117":6,"i118":6,"i119":6,"i120":6,"i121":6,"i122":6,"i123":6,"i124":50,"i125":6,"i126":38,"i127":6,"i128":6,"i129":18,"i130":6,"i131":6,"i132":6,"i133":18,"i134":18,"i135":50,"i136":6,"i137":6,"i138":38,"i139":6,"i140":6,"i141":6,"i142":6,"i143":6,"i144":38,"i145":6,"i146":6,"i147":6,"i148":38,"i149":38,"i150":6,"i151":38,"i152":38,"i153":38,"i154":38,"i155":38,"i156":6,"i157":38,"i158":6,"i159":6,"i160":6,"i161":6,"i162":6,"i163":6,"i164":6,"i165":38,"i166":6,"i167":6,"i168":6,"i169":50,"i170":6,"i171":6,"i172":6,"i173":6,"i174":6,"i175":38,"i176":6,"i177":38,"i178":6,"i179":6,"i180":6,"i181":6,"i182":6,"i183":18,"i184":18,"i185":6,"i186":6,"i187":6,"i188":6,"i189":6,"i190":6,"i191":6,"i192":6,"i193":50,"i194":6,"i195":50,"i196":50,"i197":50,"i198":6,"i199":50,"i200":6,"i201":6,"i202":6,"i203":6,"i204":6,"i205":6,"i206":6,"i207":6,"i208":38,"i209":38,"i210":6,"i211":6,"i212":6,"i213":6,"i214":6,"i215":50,"i216":6,"i217":6,"i218":6,"i219":6,"i220":6,"i221":18};
+var methods = 
{"i0":6,"i1":6,"i2":6,"i3":50,"i4":6,"i5":6,"i6":18,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":50,"i13":50,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":38,"i26":38,"i27":38,"i28":38,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":6,"i36":50,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":38,"i47":6,"i48":6,"i49":6,"i50":6,"i51":6,"i52":6,"i53":6,"i54":38,"i55":6,"i56":6,"i57":38,"i58":38,"i59":6,"i60":38,"i61":6,"i62":6,"i63":6,"i64":6,"i65":38,"i66":38,"i67":50,"i68":6,"i69":6,"i70":6,"i71":6,"i72":38,"i73":38,"i74":6,"i75":50,"i76":6,"i77":6,"i78":6,"i79":38,"i80":38,"i81":18,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":6,"i88":6,"i89":6,"i90":6,"i91":6,"i92":6,"i93":18,"i94":6,"i95":18,"i96":6,"i97":38,"i98":6,"i99":6,"i100":6,"i101":38,"i102":50,"i103":50,"i104":18,"i105":6,"i106":6,"i107":6,"i108":18,"i109":6,"i110":6,"i111":38,"i112":38,"i113":38,"i114":38,"i115":6,"i116":6,"i11
 
7":6,"i118":6,"i119":6,"i120":6,"i121":6,"i122":6,"i123":6,"i124":6,"i125":50,"i126":6,"i127":38,"i128":6,"i129":6,"i130":18,"i131":6,"i132":6,"i133":6,"i134":6,"i135":6,"i136":6,"i137":6,"i138":38,"i139":6,"i140":6,"i141":6,"i142":6,"i143":6,"i144":38,"i145":6,"i146":6,"i147":6,"i148":38,"i149":38,"i150":6,"i151":38,"i152":38,"i153":38,"i154":38,"i155":38,"i156":6,"i157":38,"i158":6,"i159":6,"i160":6,"i161":6,"i162":6,"i163":6,"i164":6,"i165":38,"i166":6,"i167":6,"i168":6,"i169":50,"i170":6,"i171":6,"i172":6,"i173":6,"i174":6,"i175":38,"i176":6,"i177":38,"i178":6,"i179":6,"i180":6,"i181":6,"i182":6,"i183":6,"i184":6,"i185":6,"i186":6,"i187":6,"i188":6,"i189":6,"i190":6,"i191":6,"i192":6,"i193":50,"i194":6,"i195":50,"i196":50,"i197":50,"i198":6,"i199":50,"i200":6,"i201":6,"i202":6,"i203":6,"i204":6,"i205":6,"i206":6,"i207":6,"i208":38,"i209":38,"i210":6,"i211":6,"i212":6,"i213":6,"i214":6,"i215":50,"i216":6,"i217":6,"i218":6,"i219":6,"i220":6,"i221":6};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"],16:["t5","Default 
Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -110,7 +110,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Public
-public interface Admin
+public interface Admin
 extends Abortable, http://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. 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/replication/ReplicationPeersZKImpl.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/replication/ReplicationPeersZKImpl.html 
b/devapidocs/org/apache/hadoop/hbase/replication/ReplicationPeersZKImpl.html
index 4ae6165..eddf073 100644
--- a/devapidocs/org/apache/hadoop/hbase/replication/ReplicationPeersZKImpl.html
+++ b/devapidocs/org/apache/hadoop/hbase/replication/ReplicationPeersZKImpl.html
@@ -340,8 +340,9 @@ implements 
 void
-registerPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringid,
-ReplicationPeerConfigpeerConfig)
+registerPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringid,
+ReplicationPeerConfigpeerConfig,
+booleanenabled)
 Add a new remote slave cluster for replication.
 
 
@@ -380,6 +381,13 @@ implements 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#toString--;
 title="class or interface in java.lang">toString, 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/Object.html?is-external=true#wait-long-int-;
 title="class or interface in java.lang">wait
 
+
+
+
+
+Methods inherited from 
interfaceorg.apache.hadoop.hbase.replication.ReplicationPeers
+registerPeer
+
 
 
 
@@ -476,23 +484,25 @@ implements 
+
 
 
 
 
 registerPeer
 publicvoidregisterPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringid,
- ReplicationPeerConfigpeerConfig)
+ ReplicationPeerConfigpeerConfig,
+ booleanenabled)
   throws ReplicationException
-Description copied from 
interface:ReplicationPeers
+Description copied from 
interface:ReplicationPeers
 Add a new remote slave cluster for replication.
 
 Specified by:
-registerPeerin
 interfaceReplicationPeers
+registerPeerin
 interfaceReplicationPeers
 Parameters:
 id - a short that identifies the cluster
 peerConfig - configuration for the replication slave 
cluster
+enabled - peer state, true if ENABLED and false if 
DISABLED
 Throws:
 ReplicationException
 
@@ -504,7 +514,7 @@ implements 
 
 unregisterPeer
-publicvoidunregisterPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringid)
+publicvoidunregisterPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringid)
 throws ReplicationException
 Description copied from 
interface:ReplicationPeers
 Removes a remote slave cluster and stops the replication to 
it.
@@ -524,7 +534,7 @@ implements 
 
 enablePeer
-publicvoidenablePeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringid)
+publicvoidenablePeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringid)
 throws ReplicationException
 Description copied from 
interface:ReplicationPeers
 Restart the replication to the specified remote slave 
cluster.
@@ -544,7 +554,7 @@ implements 
 
 disablePeer

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/apidocs/org/apache/hadoop/hbase/quotas/ThrottleType.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/quotas/ThrottleType.html 
b/apidocs/org/apache/hadoop/hbase/quotas/ThrottleType.html
index 1eebccb..777b7a5 100644
--- a/apidocs/org/apache/hadoop/hbase/quotas/ThrottleType.html
+++ b/apidocs/org/apache/hadoop/hbase/quotas/ThrottleType.html
@@ -300,7 +300,7 @@ the order they are declared.
 
 
 values
-public staticThrottleType[]values()
+public staticThrottleType[]values()
 Returns an array containing the constants of this enum 
type, in
 the order they are declared.  This method may be used to iterate
 over the constants as follows:
@@ -320,7 +320,7 @@ for (ThrottleType c : ThrottleType.values())
 
 
 valueOf
-public staticThrottleTypevalueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
+public staticThrottleTypevalueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
 Returns the enum constant of this type with the specified 
name.
 The string must match exactly an identifier used to declare an
 enum constant in this type.  (Extraneous whitespace characters are 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/apidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationException.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationException.html
 
b/apidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationException.html
index 1b72585..b393166 100644
--- 
a/apidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationException.html
+++ 
b/apidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationException.html
@@ -109,14 +109,14 @@
 
 
 
-default void
+void
 Admin.appendReplicationPeerTableCFs(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringid,
  http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">MapTableName,? extends http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true;
 title="class or interface in java.util">Collectionhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in 
java.lang">StringtableCfs)
 Append the replicable table column family config from the 
specified peer.
 
 
 
-default void
+void
 Admin.removeReplicationPeerTableCFs(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringid,
  http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">MapTableName,? extends http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true;
 title="class or interface in java.util">Collectionhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in 
java.lang">StringtableCfs)
 Remove some table-cfs from config of the specified 
peer.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/apidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationPeerConfig.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationPeerConfig.html
 
b/apidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationPeerConfig.html
index cb37082..f937359 100644
--- 
a/apidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationPeerConfig.html
+++ 
b/apidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationPeerConfig.html
@@ -115,7 +115,7 @@
 
 
 
-default ReplicationPeerConfig
+ReplicationPeerConfig
 Admin.getReplicationPeerConfig(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringpeerId)
 Returns the configured ReplicationPeerConfig for the 
specified peer.
 
@@ -145,7 +145,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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
+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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html 
b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html
index 5cd7172..2f81057 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":9,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":42,"i27":42,"i28":42,"i29":42,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":42,"i50":10,"i51":10,"i52":10,"i53":10,"i54":10,"i55":10,"i56":10,"i57":10,"i58":10,"i59":10,"i60":10,"i61":10,"i62":10,"i63":10,"i64":10,"i65":10,"i66":10,"i67":10,"i68":10,"i69":10,"i70":10,"i71":10,"i72":10,"i73":10,"i74":10,"i75":10,"i76":10,"i77":10,"i78":10,"i79":9,"i80":10,"i81":10,"i82":9,"i83":10,"i84":10,"i85":10,"i86":10,"i87":10,"i88":10,"i89":10,"i90":10,"i91":10,"i92":10,"i93":41,"i94":10,"i95":10,"i96":10,"i97":10,"i98":10,"i99":10,"i100":42,"i101":10,"i102":10,"i103":10,"i104":10,"i105":10,"i106":10,"i107":10,"i108":10,"i109
 
":10,"i110":10,"i111":10,"i112":10,"i113":10,"i114":10,"i115":9,"i116":10,"i117":10,"i118":10,"i119":42,"i120":10,"i121":10,"i122":10,"i123":10,"i124":10,"i125":10,"i126":10,"i127":10,"i128":10,"i129":10,"i130":10,"i131":10,"i132":10,"i133":10,"i134":10,"i135":10,"i136":10,"i137":10,"i138":10,"i139":10,"i140":10,"i141":10,"i142":10,"i143":10,"i144":10,"i145":10,"i146":10,"i147":10,"i148":10,"i149":10,"i150":10,"i151":10,"i152":10,"i153":10,"i154":10,"i155":10,"i156":10,"i157":10,"i158":10,"i159":10,"i160":10,"i161":10,"i162":10,"i163":10,"i164":10,"i165":10,"i166":10,"i167":10,"i168":10,"i169":10,"i170":10,"i171":10,"i172":42,"i173":10,"i174":10,"i175":10,"i176":10,"i177":10,"i178":10,"i179":10,"i180":10,"i181":10,"i182":10,"i183":10,"i184":10,"i185":10,"i186":10,"i187":10,"i188":10,"i189":10,"i190":10,"i191":10,"i192":10,"i193":10,"i194":10,"i195":10,"i196":10,"i197":10,"i198":42,"i199":10,"i200":10,"i201":10,"i202":10,"i203":10,"i204":10,"i205":10,"i206":10,"i207":10,"i208":10,"i2
 
09":10,"i210":10,"i211":10,"i212":10,"i213":10,"i214":10,"i215":10,"i216":10,"i217":10,"i218":10,"i219":10,"i220":10,"i221":10,"i222":10,"i223":10,"i224":10,"i225":10,"i226":10,"i227":10,"i228":10,"i229":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":9,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":42,"i27":42,"i28":42,"i29":42,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":42,"i50":10,"i51":10,"i52":10,"i53":10,"i54":10,"i55":10,"i56":10,"i57":10,"i58":10,"i59":10,"i60":10,"i61":10,"i62":10,"i63":10,"i64":10,"i65":10,"i66":10,"i67":10,"i68":10,"i69":10,"i70":10,"i71":10,"i72":10,"i73":10,"i74":10,"i75":10,"i76":10,"i77":10,"i78":10,"i79":9,"i80":10,"i81":10,"i82":9,"i83":10,"i84":10,"i85":10,"i86":10,"i87":10,"i88":10,"i89":10,"i90":10,"i91":10,"i92":10,"i93":41,"i94":10,"i95":10,"i96":10,"i97":10,"i98":10,"i99":10,"i100":42,"i101":10,"i102":10,"i103":10,"i104":10,"i105":10,"i106":10,"i107":10,"i108":10,"i109
 
":10,"i110":10,"i111":10,"i112":10,"i113":10,"i114":10,"i115":9,"i116":10,"i117":10,"i118":10,"i119":42,"i120":10,"i121":10,"i122":10,"i123":10,"i124":10,"i125":10,"i126":10,"i127":10,"i128":10,"i129":10,"i130":10,"i131":10,"i132":10,"i133":10,"i134":10,"i135":10,"i136":10,"i137":10,"i138":10,"i139":10,"i140":10,"i141":10,"i142":10,"i143":10,"i144":10,"i145":10,"i146":10,"i147":10,"i148":10,"i149":10,"i150":10,"i151":10,"i152":10,"i153":10,"i154":10,"i155":10,"i156":10,"i157":10,"i158":10,"i159":10,"i160":10,"i161":10,"i162":10,"i163":10,"i164":10,"i165":10,"i166":10,"i167":10,"i168":10,"i169":10,"i170":10,"i171":42,"i172":10,"i173":10,"i174":10,"i175":10,"i176":10,"i177":10,"i178":10,"i179":10,"i180":10,"i181":10,"i182":10,"i183":10,"i184":10,"i185":10,"i186":10,"i187":10,"i188":10,"i189":10,"i190":10,"i191":10,"i192":10,"i193":10,"i194":10,"i195":10,"i196":10,"i197":42,"i198":10,"i199":10,"i200":10,"i201":10,"i202":10,"i203":10,"i204":10,"i205":10,"i206":10,"i207":10,"i208":10,"i2
 
09":10,"i210":10,"i211":10,"i212":10,"i213":10,"i214":10,"i215":10,"i216":10,"i217":10,"i218":10,"i219":10,"i220":10,"i221":10,"i222":10,"i223":10,"i224":10,"i225":10,"i226":10,"i227":10,"i228":10};
 var tabs = {65535:["t0","All 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/index-all.html
--
diff --git a/devapidocs/index-all.html b/devapidocs/index-all.html
index 093b020..b241fb0 100644
--- a/devapidocs/index-all.html
+++ b/devapidocs/index-all.html
@@ -2168,27 +2168,35 @@
 
 Add a new replication peer for replicating data to slave 
cluster.
 
+addReplicationPeer(String,
 ReplicationPeerConfig, boolean) - Method in interface 
org.apache.hadoop.hbase.client.Admin
+
+Add a new replication peer for replicating data to slave 
cluster.
+
 addReplicationPeer(String,
 ReplicationPeerConfig) - Method in interface 
org.apache.hadoop.hbase.client.AsyncAdmin
 
 Add a new replication peer for replicating data to slave 
cluster
 
-addReplicationPeer(String,
 ReplicationPeerConfig) - Method in class 
org.apache.hadoop.hbase.client.AsyncHBaseAdmin
+addReplicationPeer(String,
 ReplicationPeerConfig, boolean) - Method in interface 
org.apache.hadoop.hbase.client.AsyncAdmin
+
+Add a new replication peer for replicating data to slave 
cluster
+
+addReplicationPeer(String,
 ReplicationPeerConfig, boolean) - Method in class 
org.apache.hadoop.hbase.client.AsyncHBaseAdmin
 
-addReplicationPeer(String,
 ReplicationPeerConfig) - Method in class 
org.apache.hadoop.hbase.client.HBaseAdmin
+addReplicationPeer(String,
 ReplicationPeerConfig, boolean) - Method in class 
org.apache.hadoop.hbase.client.HBaseAdmin
 
-addReplicationPeer(String,
 ReplicationPeerConfig) - Method in class 
org.apache.hadoop.hbase.client.RawAsyncHBaseAdmin
+addReplicationPeer(String,
 ReplicationPeerConfig, boolean) - Method in class 
org.apache.hadoop.hbase.client.RawAsyncHBaseAdmin
 
 addReplicationPeer(RpcController,
 ReplicationProtos.AddReplicationPeerRequest) - Method in class 
org.apache.hadoop.hbase.client.ShortCircuitMasterConnection
 
-addReplicationPeer(String,
 ReplicationPeerConfig) - Method in class 
org.apache.hadoop.hbase.master.HMaster
+addReplicationPeer(String,
 ReplicationPeerConfig, boolean) - Method in class 
org.apache.hadoop.hbase.master.HMaster
 
 addReplicationPeer(RpcController,
 ReplicationProtos.AddReplicationPeerRequest) - Method in class 
org.apache.hadoop.hbase.master.MasterRpcServices
 
-addReplicationPeer(String,
 ReplicationPeerConfig) - Method in interface 
org.apache.hadoop.hbase.master.MasterServices
+addReplicationPeer(String,
 ReplicationPeerConfig, boolean) - Method in interface 
org.apache.hadoop.hbase.master.MasterServices
 
 Add a new replication peer for replicating data to slave 
cluster
 
-addReplicationPeer(String,
 ReplicationPeerConfig) - Method in class 
org.apache.hadoop.hbase.master.replication.ReplicationManager
+addReplicationPeer(String,
 ReplicationPeerConfig, boolean) - Method in class 
org.apache.hadoop.hbase.master.replication.ReplicationManager
 
 addRequiredOption(Option)
 - Method in class org.apache.hadoop.hbase.util.AbstractHBaseTool
 
@@ -16230,8 +16238,6 @@
 
 connection
 - Variable in class org.apache.hadoop.hbase.master.CatalogJanitor
 
-connection
 - Variable in class org.apache.hadoop.hbase.master.MasterCoprocessorHost.MasterEnvironment
-
 connection
 - Variable in class org.apache.hadoop.hbase.master.RegionPlacementMaintainer
 
 connection
 - Variable in class org.apache.hadoop.hbase.master.ServerManager
@@ -16244,10 +16250,6 @@
 
 connection
 - Variable in class org.apache.hadoop.hbase.regionserver.handler.RegionReplicaFlushHandler
 
-connection
 - Variable in class org.apache.hadoop.hbase.regionserver.RegionCoprocessorHost.RegionEnvironment
-
-connection
 - Variable in class org.apache.hadoop.hbase.regionserver.RegionServerCoprocessorHost.RegionServerEnvironment
-
 connection
 - Variable in class org.apache.hadoop.hbase.replication.regionserver.HFileReplicator
 
 connection
 - Variable in class org.apache.hadoop.hbase.replication.regionserver.RegionReplicaReplicationEndpoint
@@ -18600,6 +18602,18 @@
 
 Create a new Connection instance using the passed 
conf instance.
 
+createConnection(Configuration)
 - Method in interface org.apache.hadoop.hbase.coprocessor.MasterCoprocessorEnvironment
+
+Creates a cluster connection using the passed 
configuration.
+
+createConnection(Configuration)
 - Method in interface org.apache.hadoop.hbase.coprocessor.RegionCoprocessorEnvironment
+
+Creates a cluster connection using the passed 
configuration.
+
+createConnection(Configuration)
 - Method in interface org.apache.hadoop.hbase.coprocessor.RegionServerCoprocessorEnvironment
+
+Creates a cluster connection using the passed 
configuration.
+
 createConnection(ConnectionId)
 - Method in class org.apache.hadoop.hbase.ipc.AbstractRpcClient
 
 Not connected.
@@ -18610,6 +18624,18 @@
 
 createConnection(ConnectionId)
 - Method in class org.apache.hadoop.hbase.ipc.NettyRpcClient
 
+createConnection(Configuration)
 - Method in class org.apache.hadoop.hbase.master.MasterCoprocessorHost.MasterEnvironment
+

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.DisableTableFuture.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.DisableTableFuture.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.DisableTableFuture.html
index 02e4554..d438f22 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.DisableTableFuture.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.DisableTableFuture.html
@@ -111,4067 +111,4061 @@
 103import 
org.apache.hadoop.util.StringUtils;
 104import 
org.apache.yetus.audience.InterfaceAudience;
 105import 
org.apache.yetus.audience.InterfaceStability;
-106
-107import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
-108import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
-109import 
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
-110import 
org.apache.hadoop.hbase.shaded.protobuf.RequestConverter;
-111import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos;
-112import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.AdminService;
-113import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearCompactionQueuesRequest;
-114import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearRegionBlockCacheRequest;
-115import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.CompactRegionRequest;
-116import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.FlushRegionRequest;
-117import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoRequest;
-118import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoResponse;
-119import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterRequest;
-120import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterResponse;
-121import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.StopServerRequest;
-122import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.UpdateConfigurationRequest;
-123import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;
-124import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceRequest;
-125import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceResponse;
-126import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
-127import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.ProcedureDescription;
-128import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionSpecifier.RegionSpecifierType;
-129import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.TableSchema;
-130import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos;
-131import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest;
-132import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse;
-133import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnRequest;
-134import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnResponse;
-135import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AssignRegionRequest;
-136import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ClearDeadServersRequest;
-137import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceRequest;
-138import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceResponse;
-139import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableRequest;
-140import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableResponse;
-141import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnRequest;
-142import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnResponse;
-143import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceRequest;
-144import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceResponse;
-145import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteSnapshotRequest;
-146import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableRequest;
-147import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableResponse;
-148import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableRequest;
-149import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableResponse;
-150import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.EnableTableRequest;
-151import 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/client/AsyncAdmin.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/AsyncAdmin.html 
b/devapidocs/org/apache/hadoop/hbase/client/AsyncAdmin.html
index bb32f70..8cbd00e 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/AsyncAdmin.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/AsyncAdmin.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":18,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"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":6,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":6,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":18,"i44":6,"i45":6,"i46":6,"i47":6,"i48":6,"i49":6,"i50":6,"i51":6,"i52":18,"i53":18,"i54":18,"i55":6,"i56":6,"i57":6,"i58":6,"i59":6,"i60":6,"i61":6,"i62":18,"i63":6,"i64":6,"i65":6,"i66":6,"i67":6,"i68":6,"i69":6,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":18,"i79":6,"i80":6,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":18,"i87":6,"i88":6,"i89":6,"i90":18,"i91":6,"i92":6,"i93":6,"i94":6,"i95":6,"i96":6,"i97":6,"i98":6,"i99":6,"i100":6,"i101":6,"i102":6,"i103":6,"i104":6,"i105":6,"i106":6,"i107":6,"i108":6,"i109":6,"i110":6,"i111":6,"i112":6,"i113":6,"i114":6,"i115":6,"i116":6,"i117":6,"i118":6,"i119":6,"i1
 
20":6,"i121":6,"i122":18,"i123":18,"i124":6,"i125":6,"i126":6,"i127":6,"i128":6,"i129":6,"i130":6,"i131":6,"i132":6,"i133":6,"i134":6,"i135":6,"i136":6};
+var methods = 
{"i0":6,"i1":6,"i2":18,"i3":6,"i4":6,"i5":6,"i6":18,"i7":6,"i8":6,"i9":6,"i10":6,"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":6,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":6,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":18,"i45":6,"i46":6,"i47":6,"i48":6,"i49":6,"i50":6,"i51":6,"i52":6,"i53":18,"i54":18,"i55":18,"i56":6,"i57":6,"i58":6,"i59":6,"i60":6,"i61":6,"i62":6,"i63":18,"i64":6,"i65":6,"i66":6,"i67":6,"i68":6,"i69":6,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":6,"i79":18,"i80":6,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":18,"i88":6,"i89":6,"i90":6,"i91":18,"i92":6,"i93":6,"i94":6,"i95":6,"i96":6,"i97":6,"i98":6,"i99":6,"i100":6,"i101":6,"i102":6,"i103":6,"i104":6,"i105":6,"i106":6,"i107":6,"i108":6,"i109":6,"i110":6,"i111":6,"i112":6,"i113":6,"i114":6,"i115":6,"i116":6,"i117":6,"i118":6,"i119":6,"i
 
120":6,"i121":6,"i122":6,"i123":18,"i124":18,"i125":6,"i126":6,"i127":6,"i128":6,"i129":6,"i130":6,"i131":6,"i132":6,"i133":6,"i134":6,"i135":6,"i136":6,"i137":6};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -145,7 +145,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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
+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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
 addReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringpeerId,
   ReplicationPeerConfigpeerConfig)
 Add a new replication peer for replicating data to slave 
cluster
@@ -153,105 +153,113 @@ 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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
+addReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringpeerId,
+  ReplicationPeerConfigpeerConfig,
+  booleanenabled)
+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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/book.html
--
diff --git a/book.html b/book.html
index 14183f4..300459d 100644
--- a/book.html
+++ b/book.html
@@ -138,148 +138,166 @@
 75. Storing Medium-sized Objects (MOB)
 
 
+Backup and Restore
+
+76. Overview
+77. Terminology
+78. Planning
+79. First-time configuration steps
+80. Backup and Restore 
commands
+81. Administration of Backup Images
+82. Configuration keys
+83. Best Practices
+84. Scenario: Safeguarding Application 
Datasets on Amazon S3
+85. Security of Backup Data
+86. Technical Details of Incremental 
Backup and Restore
+87. A Warning on File System 
Growth
+88. Capacity Planning
+89. Limitations of the Backup and Restore 
Utility
+
+
 Apache HBase APIs
 
-76. Examples
+90. Examples
 
 
 Apache HBase External APIs
 
-77. REST
-78. Thrift
-79. C/C++ Apache HBase Client
-80. Using Java Data Objects (JDO) with HBase
-81. Scala
-82. Jython
+91. REST
+92. Thrift
+93. C/C++ Apache HBase Client
+94. Using Java Data Objects (JDO) with HBase
+95. Scala
+96. Jython
 
 
 Thrift API and Filter Language
 
-83. Filter Language
+97. Filter Language
 
 
 HBase and Spark
 
-84. Basic Spark
-85. Spark Streaming
-86. Bulk Load
-87. SparkSQL/DataFrames
+98. Basic Spark
+99. Spark Streaming
+100. Bulk Load
+101. SparkSQL/DataFrames
 
 
 Apache HBase Coprocessors
 
-88. Coprocessor Overview
-89. Types of Coprocessors
-90. Loading Coprocessors
-91. Examples
-92. Guidelines For 
Deploying A Coprocessor
-93. Restricting Coprocessor 
Usage
+102. Coprocessor Overview
+103. Types of Coprocessors
+104. Loading Coprocessors
+105. Examples
+106. Guidelines For 
Deploying A Coprocessor
+107. Restricting Coprocessor 
Usage
 
 
 Apache HBase Performance Tuning
 
-94. Operating System
-95. Network
-96. Java
-97. HBase Configurations
-98. ZooKeeper
-99. Schema Design
-100. HBase General Patterns
-101. Writing to HBase
-102. Reading from HBase
-103. Deleting from HBase
-104. HDFS
-105. Amazon EC2
-106. Collocating HBase and 
MapReduce
-107. Case Studies
+108. Operating System
+109. Network
+110. Java
+111. HBase Configurations
+112. ZooKeeper
+113. Schema Design
+114. HBase General Patterns
+115. Writing to HBase
+116. Reading from HBase
+117. Deleting from HBase
+118. HDFS
+119. Amazon EC2
+120. Collocating HBase and 
MapReduce
+121. Case Studies
 
 
 Troubleshooting and Debugging Apache HBase
 
-108. General Guidelines
-109. Logs
-110. Resources
-111. Tools
-112. Client
-113. MapReduce
-114. NameNode
-115. Network
-116. RegionServer
-117. Master
-118. ZooKeeper
-119. Amazon EC2
-120. HBase and Hadoop version issues
-121. IPC Configuration 
Conflicts with Hadoop
-122. HBase and HDFS
-123. Running unit or integration tests
-124. Case Studies
-125. Cryptographic Features
-126. Operating System 
Specific Issues
-127. JDK Issues
+122. General Guidelines
+123. Logs
+124. Resources
+125. Tools
+126. Client
+127. MapReduce
+128. NameNode
+129. Network
+130. RegionServer
+131. Master
+132. ZooKeeper
+133. Amazon EC2
+134. HBase and Hadoop version issues
+135. IPC Configuration 
Conflicts with Hadoop
+136. HBase and HDFS
+137. Running unit or integration tests
+138. Case Studies
+139. Cryptographic Features
+140. Operating System 
Specific Issues
+141. JDK Issues
 
 
 Apache HBase Case Studies
 
-128. Overview
-129. Schema Design
-130. Performance/Troubleshooting
+142. Overview
+143. Schema Design
+144. Performance/Troubleshooting
 
 
 Apache HBase Operational Management
 
-131. HBase Tools and Utilities
-132. Region Management
-133. Node Management
-134. HBase Metrics
-135. HBase Monitoring
-136. Cluster Replication
-137. Running 
Multiple Workloads On a Single Cluster
-138. HBase Backup
-139. HBase Snapshots
-140. Storing Snapshots in Microsoft Azure Blob 
Storage
-141. Capacity Planning and Region Sizing
-142. Table Rename
-143. RegionServer Grouping
+145. HBase Tools and Utilities
+146. Region Management
+147. Node Management
+148. HBase Metrics
+149. HBase Monitoring
+150. Cluster Replication
+151. Running 
Multiple Workloads On a Single Cluster
+152. HBase Backup
+153. HBase Snapshots
+154. Storing Snapshots in Microsoft Azure Blob 
Storage
+155. Capacity Planning and Region Sizing
+156. Table Rename
+157. RegionServer Grouping
 
 
 Building and Developing Apache HBase
 
-144. Getting Involved
-145. Apache HBase Repositories
-146. IDEs
-147. Building Apache HBase
-148. Releasing Apache HBase
-149. Voting on Release Candidates
-150. Generating the HBase Reference Guide
-151. Updating https://hbase.apache.org;>hbase.apache.org
-152. Tests
-153. Developer Guidelines
+158. Getting Involved
+159. Apache HBase Repositories
+160. IDEs
+161. Building Apache HBase
+162. Releasing Apache HBase
+163. Voting on Release Candidates
+164. Generating the HBase Reference Guide
+165. Updating https://hbase.apache.org;>hbase.apache.org
+166. Tests
+167. Developer Guidelines
 
 
 Unit Testing HBase Applications
 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
index 6e8b661..82ffd2f 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
@@ -906,494 +906,495 @@
 898
 899@Override
 900public KeepDeletedCells 
getKeepDeletedCells() {
-901  return 
getStringOrDefault(KEEP_DELETED_CELLS_BYTES, KeepDeletedCells::valueOf, 
DEFAULT_KEEP_DELETED);
-902}
-903
-904/**
-905 * @param keepDeletedCells True if 
deleted rows should not be collected
-906 * immediately.
-907 * @return this (for chained 
invocation)
-908 */
-909public 
ModifyableColumnFamilyDescriptor setKeepDeletedCells(KeepDeletedCells 
keepDeletedCells) {
-910  return 
setValue(KEEP_DELETED_CELLS_BYTES, keepDeletedCells.name());
-911}
-912
-913/**
-914 * By default, HBase only consider 
timestamp in versions. So a previous Delete with higher ts
-915 * will mask a later Put with lower 
ts. Set this to true to enable new semantics of versions.
-916 * We will also consider mvcc in 
versions. See HBASE-15968 for details.
-917 */
-918public boolean isNewVersionBehavior() 
{
-919  return 
getStringOrDefault(NEW_VERSION_BEHAVIOR_BYTES,
-920  Boolean::parseBoolean, 
DEFAULT_NEW_VERSION_BEHAVIOR);
-921}
-922
-923public 
ModifyableColumnFamilyDescriptor setNewVersionBehavior(boolean 
newVersionBehavior) {
-924  return 
setValue(NEW_VERSION_BEHAVIOR_BYTES, Boolean.toString(newVersionBehavior));
-925}
-926
-927@Override
-928public int getTimeToLive() {
-929  return 
getStringOrDefault(TTL_BYTES, Integer::parseInt, DEFAULT_TTL);
-930}
-931
-932/**
-933 * @param timeToLive Time-to-live of 
cell contents, in seconds.
-934 * @return this (for chained 
invocation)
-935 */
-936public 
ModifyableColumnFamilyDescriptor setTimeToLive(int timeToLive) {
-937  return setValue(TTL_BYTES, 
Integer.toString(timeToLive));
-938}
-939
-940/**
-941 * @param timeToLive Time-to-live of 
cell contents, in seconds.
-942 * @return this (for chained 
invocation)
-943 * @throws 
org.apache.hadoop.hbase.exceptions.HBaseException
-944 */
-945public 
ModifyableColumnFamilyDescriptor setTimeToLive(String timeToLive) throws 
HBaseException {
-946  return 
setTimeToLive(Integer.parseInt(PrettyPrinter.valueOf(timeToLive, 
Unit.TIME_INTERVAL)));
-947}
-948
-949@Override
-950public int getMinVersions() {
-951  return 
getStringOrDefault(MIN_VERSIONS_BYTES, Integer::valueOf, 
DEFAULT_MIN_VERSIONS);
-952}
-953
-954/**
-955 * @param minVersions The minimum 
number of versions to keep. (used when
-956 * timeToLive is set)
-957 * @return this (for chained 
invocation)
-958 */
-959public 
ModifyableColumnFamilyDescriptor setMinVersions(int minVersions) {
-960  return setValue(MIN_VERSIONS_BYTES, 
Integer.toString(minVersions));
-961}
-962
-963@Override
-964public boolean isBlockCacheEnabled() 
{
-965  return 
getStringOrDefault(BLOCKCACHE_BYTES, Boolean::valueOf, DEFAULT_BLOCKCACHE);
-966}
-967
-968/**
-969 * @param blockCacheEnabled True if 
hfile DATA type blocks should be cached
-970 * (We always cache INDEX and BLOOM 
blocks; you cannot turn this off).
-971 * @return this (for chained 
invocation)
-972 */
-973public 
ModifyableColumnFamilyDescriptor setBlockCacheEnabled(boolean 
blockCacheEnabled) {
-974  return setValue(BLOCKCACHE_BYTES, 
Boolean.toString(blockCacheEnabled));
-975}
-976
-977@Override
-978public BloomType getBloomFilterType() 
{
-979  return 
getStringOrDefault(BLOOMFILTER_BYTES, BloomType::valueOf, 
DEFAULT_BLOOMFILTER);
-980}
-981
-982public 
ModifyableColumnFamilyDescriptor setBloomFilterType(final BloomType bt) {
-983  return setValue(BLOOMFILTER_BYTES, 
bt.name());
-984}
-985
-986@Override
-987public int getScope() {
-988  return 
getStringOrDefault(REPLICATION_SCOPE_BYTES, Integer::valueOf, 
DEFAULT_REPLICATION_SCOPE);
-989}
-990
-991/**
-992 * @param scope the scope tag
-993 * @return this (for chained 
invocation)
-994 */
-995public 
ModifyableColumnFamilyDescriptor setScope(int scope) {
-996  return 
setValue(REPLICATION_SCOPE_BYTES, Integer.toString(scope));
-997}
-998
-999@Override
-1000public boolean isCacheDataOnWrite() 
{
-1001  return 
getStringOrDefault(CACHE_DATA_ON_WRITE_BYTES, Boolean::valueOf, 
DEFAULT_CACHE_DATA_ON_WRITE);
-1002}

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.html 
b/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.html
index 111eb57..675c3af 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.html
@@ -342,8 +342,9 @@ implements 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
-addReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringpeerId,
-  ReplicationPeerConfigpeerConfig)
+addReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringpeerId,
+  ReplicationPeerConfigpeerConfig,
+  booleanenabled)
 Add a new replication peer for replicating data to slave 
cluster
 
 
@@ -1373,7 +1374,7 @@ implements AsyncAdmin
-balance,
 getBackupMasters,
 getMaster,
 getMasterCoprocessors,
 getMasterInfoPort,
 getRegionServers,
 listDeadServers,
 listTableDescriptors,
 listTableNam
 es, snapshot,
 snapshot
+addReplicationPeer,
 balance,
 getBackupMasters,
 getMaster,
 getMasterCoprocessors,
 getMasterInfoPort,
 getRegionServers,
 listDeadServers,
 listTableDescriptors,
 listTableNames,
 snapshot,
 snapshot
 
 
 
@@ -2835,22 +2836,24 @@ implements 
+
 
 
 
 
 addReplicationPeer
 publichttp://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">VoidaddReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringpeerId,
-  ReplicationPeerConfigpeerConfig)
-Description copied from 
interface:AsyncAdmin
+  ReplicationPeerConfigpeerConfig,
+  booleanenabled)
+Description copied from 
interface:AsyncAdmin
 Add a new replication peer for replicating data to slave 
cluster
 
 Specified by:
-addReplicationPeerin
 interfaceAsyncAdmin
+addReplicationPeerin
 interfaceAsyncAdmin
 Parameters:
 peerId - a short name that identifies the peer
 peerConfig - configuration for the replication slave 
cluster
+enabled - peer state, true if ENABLED and false if 
DISABLED
 
 
 

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

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/client/ZKAsyncRegistry.CuratorEventProcessor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/ZKAsyncRegistry.CuratorEventProcessor.html
 

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

2017-11-21 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site af14937aa -> 1a6167068


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.NamespaceFuture.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.NamespaceFuture.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.NamespaceFuture.html
index 02e4554..d438f22 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.NamespaceFuture.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.NamespaceFuture.html
@@ -111,4067 +111,4061 @@
 103import 
org.apache.hadoop.util.StringUtils;
 104import 
org.apache.yetus.audience.InterfaceAudience;
 105import 
org.apache.yetus.audience.InterfaceStability;
-106
-107import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
-108import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
-109import 
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
-110import 
org.apache.hadoop.hbase.shaded.protobuf.RequestConverter;
-111import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos;
-112import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.AdminService;
-113import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearCompactionQueuesRequest;
-114import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearRegionBlockCacheRequest;
-115import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.CompactRegionRequest;
-116import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.FlushRegionRequest;
-117import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoRequest;
-118import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoResponse;
-119import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterRequest;
-120import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterResponse;
-121import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.StopServerRequest;
-122import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.UpdateConfigurationRequest;
-123import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;
-124import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceRequest;
-125import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceResponse;
-126import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
-127import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.ProcedureDescription;
-128import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionSpecifier.RegionSpecifierType;
-129import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.TableSchema;
-130import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos;
-131import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest;
-132import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse;
-133import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnRequest;
-134import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnResponse;
-135import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AssignRegionRequest;
-136import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ClearDeadServersRequest;
-137import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceRequest;
-138import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceResponse;
-139import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableRequest;
-140import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableResponse;
-141import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnRequest;
-142import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnResponse;
-143import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceRequest;
-144import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceResponse;
-145import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteSnapshotRequest;
-146import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableRequest;
-147import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableResponse;
-148import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableRequest;
-149import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableResponse;
-150import 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html
--
diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html
index 9d535df..92c1c97 100644
--- a/devapidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html
+++ b/devapidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html
@@ -507,259 +507,259 @@
 499   * @param peerId a short name that 
identifies the peer
 500   * @param peerConfig configuration for 
the replication slave cluster
 501   */
-502  CompletableFutureVoid 
addReplicationPeer(String peerId,
-503  ReplicationPeerConfig 
peerConfig);
-504
-505  /**
-506   * Remove a peer and stop the 
replication
-507   * @param peerId a short name that 
identifies the peer
-508   */
-509  CompletableFutureVoid 
removeReplicationPeer(String peerId);
-510
-511  /**
-512   * Restart the replication stream to 
the specified peer
-513   * @param peerId a short name that 
identifies the peer
-514   */
-515  CompletableFutureVoid 
enableReplicationPeer(String peerId);
-516
-517  /**
-518   * Stop the replication stream to the 
specified peer
-519   * @param peerId a short name that 
identifies the peer
-520   */
-521  CompletableFutureVoid 
disableReplicationPeer(String peerId);
-522
-523  /**
-524   * Returns the configured 
ReplicationPeerConfig for the specified peer
-525   * @param peerId a short name that 
identifies the peer
-526   * @return ReplicationPeerConfig for 
the peer wrapped by a {@link CompletableFuture}.
-527   */
-528  
CompletableFutureReplicationPeerConfig getReplicationPeerConfig(String 
peerId);
-529
-530  /**
-531   * Update the peerConfig for the 
specified peer
-532   * @param peerId a short name that 
identifies the peer
-533   * @param peerConfig new config for the 
peer
-534   */
-535  CompletableFutureVoid 
updateReplicationPeerConfig(String peerId,
-536  ReplicationPeerConfig 
peerConfig);
-537
-538  /**
-539   * Append the replicable table-cf 
config of the specified peer
-540   * @param peerId a short that 
identifies the cluster
-541   * @param tableCfs A map from tableName 
to column family names
-542   */
-543  CompletableFutureVoid 
appendReplicationPeerTableCFs(String peerId,
-544  MapTableName, ? extends 
CollectionString tableCfs);
-545
-546  /**
-547   * Remove some table-cfs from config of 
the specified peer
-548   * @param peerId a short name that 
identifies the cluster
-549   * @param tableCfs A map from tableName 
to column family names
-550   */
-551  CompletableFutureVoid 
removeReplicationPeerTableCFs(String peerId,
-552  MapTableName, ? extends 
CollectionString tableCfs);
-553
-554  /**
-555   * Return a list of replication 
peers.
-556   * @return a list of replication peers 
description. The return value will be wrapped by a
-557   * {@link CompletableFuture}.
-558   */
-559  
CompletableFutureListReplicationPeerDescription 
listReplicationPeers();
-560
-561  /**
-562   * Return a list of replication 
peers.
-563   * @param pattern The compiled regular 
expression to match peer id
-564   * @return a list of replication peers 
description. The return value will be wrapped by a
-565   * {@link CompletableFuture}.
-566   */
-567  
CompletableFutureListReplicationPeerDescription 
listReplicationPeers(Pattern pattern);
-568
-569  /**
-570   * Find all table and column families 
that are replicated from this cluster
-571   * @return the replicated table-cfs 
list of this cluster. The return value will be wrapped by a
-572   * {@link CompletableFuture}.
-573   */
-574  
CompletableFutureListTableCFs listReplicatedTableCFs();
-575
-576  /**
-577   * Enable a table's replication 
switch.
-578   * @param tableName name of the table
-579   */
-580  CompletableFutureVoid 
enableTableReplication(TableName tableName);
-581
-582  /**
-583   * Disable a table's replication 
switch.
-584   * @param tableName name of the table
-585   */
-586  CompletableFutureVoid 
disableTableReplication(TableName tableName);
-587
-588  /**
-589   * Take a snapshot for the given table. 
If the table is enabled, a FLUSH-type snapshot will be
-590   * taken. If the table is disabled, an 
offline snapshot is taken. Snapshots are considered unique
-591   * based on bthe name of the 
snapshot/b. Attempts to take a snapshot with the same name (even
-592   * a different type or with different 
parameters) will fail with a
-593   * {@link 
org.apache.hadoop.hbase.snapshot.SnapshotCreationException} indicating the 
duplicate
-594   * naming. Snapshot names follow the 
same naming constraints as tables in HBase. See
-595   * {@link 
org.apache.hadoop.hbase.TableName#isLegalFullyQualifiedTableName(byte[])}.
-596   * @param snapshotName name of the 
snapshot to be created
-597   * @param tableName name of the table 
for 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.html
index 6e8b661..82ffd2f 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.html
@@ -906,494 +906,495 @@
 898
 899@Override
 900public KeepDeletedCells 
getKeepDeletedCells() {
-901  return 
getStringOrDefault(KEEP_DELETED_CELLS_BYTES, KeepDeletedCells::valueOf, 
DEFAULT_KEEP_DELETED);
-902}
-903
-904/**
-905 * @param keepDeletedCells True if 
deleted rows should not be collected
-906 * immediately.
-907 * @return this (for chained 
invocation)
-908 */
-909public 
ModifyableColumnFamilyDescriptor setKeepDeletedCells(KeepDeletedCells 
keepDeletedCells) {
-910  return 
setValue(KEEP_DELETED_CELLS_BYTES, keepDeletedCells.name());
-911}
-912
-913/**
-914 * By default, HBase only consider 
timestamp in versions. So a previous Delete with higher ts
-915 * will mask a later Put with lower 
ts. Set this to true to enable new semantics of versions.
-916 * We will also consider mvcc in 
versions. See HBASE-15968 for details.
-917 */
-918public boolean isNewVersionBehavior() 
{
-919  return 
getStringOrDefault(NEW_VERSION_BEHAVIOR_BYTES,
-920  Boolean::parseBoolean, 
DEFAULT_NEW_VERSION_BEHAVIOR);
-921}
-922
-923public 
ModifyableColumnFamilyDescriptor setNewVersionBehavior(boolean 
newVersionBehavior) {
-924  return 
setValue(NEW_VERSION_BEHAVIOR_BYTES, Boolean.toString(newVersionBehavior));
-925}
-926
-927@Override
-928public int getTimeToLive() {
-929  return 
getStringOrDefault(TTL_BYTES, Integer::parseInt, DEFAULT_TTL);
-930}
-931
-932/**
-933 * @param timeToLive Time-to-live of 
cell contents, in seconds.
-934 * @return this (for chained 
invocation)
-935 */
-936public 
ModifyableColumnFamilyDescriptor setTimeToLive(int timeToLive) {
-937  return setValue(TTL_BYTES, 
Integer.toString(timeToLive));
-938}
-939
-940/**
-941 * @param timeToLive Time-to-live of 
cell contents, in seconds.
-942 * @return this (for chained 
invocation)
-943 * @throws 
org.apache.hadoop.hbase.exceptions.HBaseException
-944 */
-945public 
ModifyableColumnFamilyDescriptor setTimeToLive(String timeToLive) throws 
HBaseException {
-946  return 
setTimeToLive(Integer.parseInt(PrettyPrinter.valueOf(timeToLive, 
Unit.TIME_INTERVAL)));
-947}
-948
-949@Override
-950public int getMinVersions() {
-951  return 
getStringOrDefault(MIN_VERSIONS_BYTES, Integer::valueOf, 
DEFAULT_MIN_VERSIONS);
-952}
-953
-954/**
-955 * @param minVersions The minimum 
number of versions to keep. (used when
-956 * timeToLive is set)
-957 * @return this (for chained 
invocation)
-958 */
-959public 
ModifyableColumnFamilyDescriptor setMinVersions(int minVersions) {
-960  return setValue(MIN_VERSIONS_BYTES, 
Integer.toString(minVersions));
-961}
-962
-963@Override
-964public boolean isBlockCacheEnabled() 
{
-965  return 
getStringOrDefault(BLOCKCACHE_BYTES, Boolean::valueOf, DEFAULT_BLOCKCACHE);
-966}
-967
-968/**
-969 * @param blockCacheEnabled True if 
hfile DATA type blocks should be cached
-970 * (We always cache INDEX and BLOOM 
blocks; you cannot turn this off).
-971 * @return this (for chained 
invocation)
-972 */
-973public 
ModifyableColumnFamilyDescriptor setBlockCacheEnabled(boolean 
blockCacheEnabled) {
-974  return setValue(BLOCKCACHE_BYTES, 
Boolean.toString(blockCacheEnabled));
-975}
-976
-977@Override
-978public BloomType getBloomFilterType() 
{
-979  return 
getStringOrDefault(BLOOMFILTER_BYTES, BloomType::valueOf, 
DEFAULT_BLOOMFILTER);
-980}
-981
-982public 
ModifyableColumnFamilyDescriptor setBloomFilterType(final BloomType bt) {
-983  return setValue(BLOOMFILTER_BYTES, 
bt.name());
-984}
-985
-986@Override
-987public int getScope() {
-988  return 
getStringOrDefault(REPLICATION_SCOPE_BYTES, Integer::valueOf, 
DEFAULT_REPLICATION_SCOPE);
-989}
-990
-991/**
-992 * @param scope the scope tag
-993 * @return this (for chained 
invocation)
-994 */
-995public 
ModifyableColumnFamilyDescriptor setScope(int scope) {
-996  return 
setValue(REPLICATION_SCOPE_BYTES, Integer.toString(scope));
-997}
-998
-999@Override
-1000   

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.CreateTableFuture.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.CreateTableFuture.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.CreateTableFuture.html
index 02e4554..d438f22 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.CreateTableFuture.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.CreateTableFuture.html
@@ -111,4067 +111,4061 @@
 103import 
org.apache.hadoop.util.StringUtils;
 104import 
org.apache.yetus.audience.InterfaceAudience;
 105import 
org.apache.yetus.audience.InterfaceStability;
-106
-107import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
-108import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
-109import 
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
-110import 
org.apache.hadoop.hbase.shaded.protobuf.RequestConverter;
-111import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos;
-112import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.AdminService;
-113import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearCompactionQueuesRequest;
-114import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearRegionBlockCacheRequest;
-115import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.CompactRegionRequest;
-116import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.FlushRegionRequest;
-117import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoRequest;
-118import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoResponse;
-119import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterRequest;
-120import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterResponse;
-121import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.StopServerRequest;
-122import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.UpdateConfigurationRequest;
-123import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;
-124import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceRequest;
-125import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceResponse;
-126import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
-127import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.ProcedureDescription;
-128import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionSpecifier.RegionSpecifierType;
-129import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.TableSchema;
-130import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos;
-131import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest;
-132import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse;
-133import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnRequest;
-134import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnResponse;
-135import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AssignRegionRequest;
-136import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ClearDeadServersRequest;
-137import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceRequest;
-138import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceResponse;
-139import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableRequest;
-140import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableResponse;
-141import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnRequest;
-142import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnResponse;
-143import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceRequest;
-144import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceResponse;
-145import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteSnapshotRequest;
-146import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableRequest;
-147import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableResponse;
-148import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableRequest;
-149import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableResponse;
-150import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.EnableTableRequest;
-151import 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/replication/regionserver/ReplicationSyncUp.DummyServer.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/replication/regionserver/ReplicationSyncUp.DummyServer.html
 
b/devapidocs/org/apache/hadoop/hbase/replication/regionserver/ReplicationSyncUp.DummyServer.html
index fc410d2..8ff01e8 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/replication/regionserver/ReplicationSyncUp.DummyServer.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/replication/regionserver/ReplicationSyncUp.DummyServer.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -117,7 +117,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-static class ReplicationSyncUp.DummyServer
+static class ReplicationSyncUp.DummyServer
 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 Server
 
@@ -189,69 +189,73 @@ implements 
 
 
+Connection
+createConnection(org.apache.hadoop.conf.Configurationconf)
+
+
 ChoreService
 getChoreService()
 
-
+
 ClusterConnection
 getClusterConnection()
 Returns a reference to the servers' cluster 
connection.
 
 
-
+
 org.apache.hadoop.conf.Configuration
 getConfiguration()
 Gets the configuration object for this server.
 
 
-
+
 ClusterConnection
 getConnection()
 Returns a reference to the servers' connection.
 
 
-
+
 CoordinatedStateManager
 getCoordinatedStateManager()
 Get CoordinatedStateManager instance for this server.
 
 
-
+
 org.apache.hadoop.fs.FileSystem
 getFileSystem()
 
-
+
 MetaTableLocator
 getMetaTableLocator()
 Returns instance of MetaTableLocator
  running inside this server.
 
 
-
+
 ServerName
 getServerName()
 
-
+
 ZKWatcher
 getZooKeeper()
 Gets the ZooKeeper instance for this server.
 
 
-
+
 boolean
 isAborted()
 Check if the server or client was aborted.
 
 
-
+
 boolean
 isStopped()
 
-
+
 boolean
 isStopping()
 
-
+
 void
 stop(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringwhy)
 Stop this service.
@@ -285,7 +289,7 @@ implements 
 
 hostname
-http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String hostname
+http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String hostname
 
 
 
@@ -294,7 +298,7 @@ implements 
 
 zkw
-ZKWatcher zkw
+ZKWatcher zkw
 
 
 
@@ -311,7 +315,7 @@ implements 
 
 DummyServer
-DummyServer(ZKWatcherzkw)
+DummyServer(ZKWatcherzkw)
 
 
 
@@ -320,7 +324,7 @@ implements 
 
 DummyServer
-DummyServer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringhostname)
+DummyServer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringhostname)
 
 
 
@@ -337,7 +341,7 @@ implements 
 
 getConfiguration
-publicorg.apache.hadoop.conf.ConfigurationgetConfiguration()
+publicorg.apache.hadoop.conf.ConfigurationgetConfiguration()
 Description copied from 
interface:Server
 Gets the configuration object for this server.
 
@@ -352,7 +356,7 @@ implements 
 
 getZooKeeper
-publicZKWatchergetZooKeeper()
+publicZKWatchergetZooKeeper()
 Description copied from 
interface:Server
 Gets the ZooKeeper instance for this server.
 
@@ -367,7 +371,7 @@ implements 
 
 getCoordinatedStateManager
-publicCoordinatedStateManagergetCoordinatedStateManager()
+publicCoordinatedStateManagergetCoordinatedStateManager()
 Description copied from 
interface:Server
 Get CoordinatedStateManager instance for this server.
 
@@ -382,7 +386,7 @@ implements 
 
 getMetaTableLocator
-publicMetaTableLocatorgetMetaTableLocator()
+publicMetaTableLocatorgetMetaTableLocator()
 Description copied from 
interface:Server
 Returns instance of MetaTableLocator
  running inside this server. This MetaServerLocator is started and stopped by 
server, clients
@@ -401,7 +405,7 @@ implements 
 
 getServerName
-publicServerNamegetServerName()
+publicServerNamegetServerName()
 
 Specified by:
 getServerNamein
 interfaceServer
@@ -416,7 +420,7 @@ implements 
 
 abort
-publicvoidabort(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringwhy,

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/regionserver/RegionServerCoprocessorHost.RegionServerEnvironment.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/RegionServerCoprocessorHost.RegionServerEnvironment.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/RegionServerCoprocessorHost.RegionServerEnvironment.html
index ebdd9dc..6b1bf8d 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/RegionServerCoprocessorHost.RegionServerEnvironment.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/RegionServerCoprocessorHost.RegionServerEnvironment.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -150,20 +150,12 @@ implements Field and Description
 
 
-private Connection
-connection
-
-
 private MetricRegistry
 metricRegistry
 
-
-private OnlineRegions
-onlineRegions
-
 
-private ServerName
-serverName
+private RegionServerServices
+services
 
 
 
@@ -210,25 +202,31 @@ implements 
 Connection
+createConnection(org.apache.hadoop.conf.Configurationconf)
+Creates a cluster connection using the passed 
configuration.
+
+
+
+Connection
 getConnection()
 Be careful RPC'ing from a Coprocessor context.
 
 
-
+
 MetricRegistry
 getMetricRegistryForRegionServer()
 Returns a MetricRegistry that can be used to track metrics 
at the region server level.
 
 
-
+
 OnlineRegions
 getOnlineRegions()
 
-
+
 ServerName
 getServerName()
 
-
+
 void
 shutdown()
 Clean up the environment
@@ -279,31 +277,13 @@ implements MetricRegistry metricRegistry
 
 
-
-
-
-
-
-connection
-private finalConnection connection
-
-
-
-
-
-
-
-serverName
-private finalServerName serverName
-
-
-
+
 
 
 
 
-onlineRegions
-private finalOnlineRegions onlineRegions
+services
+private finalRegionServerServices services
 
 
 
@@ -320,7 +300,7 @@ implements 
 
 RegionServerEnvironment
-publicRegionServerEnvironment(RegionServerCoprocessorimpl,
+publicRegionServerEnvironment(RegionServerCoprocessorimpl,
intpriority,
intseq,
org.apache.hadoop.conf.Configurationconf,
@@ -341,7 +321,7 @@ implements 
 
 getOnlineRegions
-publicOnlineRegionsgetOnlineRegions()
+publicOnlineRegionsgetOnlineRegions()
 
 Specified by:
 getOnlineRegionsin
 interfaceRegionServerCoprocessorEnvironment
@@ -356,7 +336,7 @@ implements 
 
 getServerName
-publicServerNamegetServerName()
+publicServerNamegetServerName()
 
 Specified by:
 getServerNamein
 interfaceRegionServerCoprocessorEnvironment
@@ -371,7 +351,7 @@ implements 
 
 getConnection
-publicConnectiongetConnection()
+publicConnectiongetConnection()
 Description copied from 
interface:RegionServerCoprocessorEnvironment
 Be careful RPC'ing from a Coprocessor context.
  RPC's will fail, stall, retry, and/or crawl because the remote side is not 
online, is
@@ -380,8 +360,11 @@ implements RegionServerCoprocessorEnvironment.createConnection(Configuration).
 
 Specified by:
 getConnectionin
 interfaceRegionServerCoprocessorEnvironment
@@ -390,13 +373,41 @@ implements 
+
+
+
+
+createConnection
+publicConnectioncreateConnection(org.apache.hadoop.conf.Configurationconf)
+throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
+Description copied from 
interface:RegionServerCoprocessorEnvironment
+Creates a cluster connection using the passed configuration.
+ Using this Connection to get at a local resource -- say a Region that is 
on the local
+ Server or using Admin Interface from a Coprocessor hosted on the Master -- 
will result in a
+ short-circuit of the RPC framework to make a direct invocation avoiding RPC.
+ 
+ Note: HBase will NOT cache/maintain this Connection. If Coprocessors need to 
cache and reuse
+ this connection, it has to be done by Coprocessors. Also make sure to close 
it after use.
+
+Specified by:
+createConnectionin
 interfaceRegionServerCoprocessorEnvironment
+Parameters:
+conf - configuration
+Returns:
+Connection created using the passed conf.
+Throws:
+http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
+
+
+
 
 
 
 
 
 getMetricRegistryForRegionServer
-publicMetricRegistrygetMetricRegistryForRegionServer()
+publicMetricRegistrygetMetricRegistryForRegionServer()
 Description copied from 
interface:RegionServerCoprocessorEnvironment
 Returns a MetricRegistry that can be used to track metrics 
at the region server level.
 
@@ -416,7 +427,7 @@ implements 
 
 shutdown

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.AddColumnFamilyFuture.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.AddColumnFamilyFuture.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.AddColumnFamilyFuture.html
index 02e4554..d438f22 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.AddColumnFamilyFuture.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.AddColumnFamilyFuture.html
@@ -111,4067 +111,4061 @@
 103import 
org.apache.hadoop.util.StringUtils;
 104import 
org.apache.yetus.audience.InterfaceAudience;
 105import 
org.apache.yetus.audience.InterfaceStability;
-106
-107import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
-108import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
-109import 
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
-110import 
org.apache.hadoop.hbase.shaded.protobuf.RequestConverter;
-111import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos;
-112import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.AdminService;
-113import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearCompactionQueuesRequest;
-114import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearRegionBlockCacheRequest;
-115import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.CompactRegionRequest;
-116import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.FlushRegionRequest;
-117import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoRequest;
-118import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoResponse;
-119import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterRequest;
-120import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterResponse;
-121import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.StopServerRequest;
-122import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.UpdateConfigurationRequest;
-123import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;
-124import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceRequest;
-125import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceResponse;
-126import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
-127import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.ProcedureDescription;
-128import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionSpecifier.RegionSpecifierType;
-129import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.TableSchema;
-130import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos;
-131import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest;
-132import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse;
-133import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnRequest;
-134import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnResponse;
-135import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AssignRegionRequest;
-136import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ClearDeadServersRequest;
-137import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceRequest;
-138import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceResponse;
-139import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableRequest;
-140import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableResponse;
-141import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnRequest;
-142import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnResponse;
-143import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceRequest;
-144import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceResponse;
-145import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteSnapshotRequest;
-146import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableRequest;
-147import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableResponse;
-148import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableRequest;
-149import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableResponse;
-150import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.EnableTableRequest;
-151import 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/master/MasterRpcServices.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/master/MasterRpcServices.html 
b/devapidocs/org/apache/hadoop/hbase/master/MasterRpcServices.html
index babcebd..9e691e7 100644
--- a/devapidocs/org/apache/hadoop/hbase/master/MasterRpcServices.html
+++ b/devapidocs/org/apache/hadoop/hbase/master/MasterRpcServices.html
@@ -2176,7 +2176,7 @@ implements 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.Master
 
 
 removeReplicationPeer
-publicorg.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.RemoveReplicationPeerResponseremoveReplicationPeer(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcControllercontroller,
+publicorg.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.RemoveReplicationPeerResponseremoveReplicationPeer(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcControllercontroller,


org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.RemoveReplicationPeerRequestrequest)

 throws 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException
 
@@ -2193,7 +2193,7 @@ implements 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.Master
 
 
 enableReplicationPeer
-publicorg.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.EnableReplicationPeerResponseenableReplicationPeer(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcControllercontroller,
+publicorg.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.EnableReplicationPeerResponseenableReplicationPeer(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcControllercontroller,


org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.EnableReplicationPeerRequestrequest)

 throws 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException
 
@@ -2210,7 +2210,7 @@ implements 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.Master
 
 
 disableReplicationPeer
-publicorg.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.DisableReplicationPeerResponsedisableReplicationPeer(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcControllercontroller,
+publicorg.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.DisableReplicationPeerResponsedisableReplicationPeer(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcControllercontroller,

  
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.DisableReplicationPeerRequestrequest)

   throws 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException
 
@@ -2227,7 +2227,7 @@ implements 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.Master
 
 
 getReplicationPeerConfig
-publicorg.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.GetReplicationPeerConfigResponsegetReplicationPeerConfig(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcControllercontroller,
+publicorg.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.GetReplicationPeerConfigResponsegetReplicationPeerConfig(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcControllercontroller,

  
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.GetReplicationPeerConfigRequestrequest)

   throws 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException
 
@@ -2244,7 +2244,7 @@ implements 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.Master
 
 
 updateReplicationPeerConfig
-publicorg.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.UpdateReplicationPeerConfigResponseupdateReplicationPeerConfig(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcControllercontroller,

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.MergeTableRegionsFuture.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.MergeTableRegionsFuture.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.MergeTableRegionsFuture.html
index 02e4554..d438f22 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.MergeTableRegionsFuture.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.MergeTableRegionsFuture.html
@@ -111,4067 +111,4061 @@
 103import 
org.apache.hadoop.util.StringUtils;
 104import 
org.apache.yetus.audience.InterfaceAudience;
 105import 
org.apache.yetus.audience.InterfaceStability;
-106
-107import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
-108import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
-109import 
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
-110import 
org.apache.hadoop.hbase.shaded.protobuf.RequestConverter;
-111import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos;
-112import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.AdminService;
-113import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearCompactionQueuesRequest;
-114import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearRegionBlockCacheRequest;
-115import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.CompactRegionRequest;
-116import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.FlushRegionRequest;
-117import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoRequest;
-118import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoResponse;
-119import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterRequest;
-120import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterResponse;
-121import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.StopServerRequest;
-122import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.UpdateConfigurationRequest;
-123import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;
-124import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceRequest;
-125import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceResponse;
-126import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
-127import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.ProcedureDescription;
-128import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionSpecifier.RegionSpecifierType;
-129import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.TableSchema;
-130import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos;
-131import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest;
-132import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse;
-133import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnRequest;
-134import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnResponse;
-135import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AssignRegionRequest;
-136import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ClearDeadServersRequest;
-137import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceRequest;
-138import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceResponse;
-139import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableRequest;
-140import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableResponse;
-141import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnRequest;
-142import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnResponse;
-143import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceRequest;
-144import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceResponse;
-145import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteSnapshotRequest;
-146import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableRequest;
-147import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableResponse;
-148import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableRequest;
-149import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableResponse;
-150import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.EnableTableRequest;
-151import 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.DeleteTableFuture.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.DeleteTableFuture.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.DeleteTableFuture.html
index 02e4554..d438f22 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.DeleteTableFuture.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.DeleteTableFuture.html
@@ -111,4067 +111,4061 @@
 103import 
org.apache.hadoop.util.StringUtils;
 104import 
org.apache.yetus.audience.InterfaceAudience;
 105import 
org.apache.yetus.audience.InterfaceStability;
-106
-107import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
-108import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
-109import 
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
-110import 
org.apache.hadoop.hbase.shaded.protobuf.RequestConverter;
-111import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos;
-112import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.AdminService;
-113import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearCompactionQueuesRequest;
-114import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearRegionBlockCacheRequest;
-115import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.CompactRegionRequest;
-116import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.FlushRegionRequest;
-117import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoRequest;
-118import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoResponse;
-119import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterRequest;
-120import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterResponse;
-121import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.StopServerRequest;
-122import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.UpdateConfigurationRequest;
-123import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;
-124import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceRequest;
-125import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceResponse;
-126import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
-127import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.ProcedureDescription;
-128import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionSpecifier.RegionSpecifierType;
-129import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.TableSchema;
-130import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos;
-131import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest;
-132import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse;
-133import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnRequest;
-134import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnResponse;
-135import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AssignRegionRequest;
-136import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ClearDeadServersRequest;
-137import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceRequest;
-138import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceResponse;
-139import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableRequest;
-140import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableResponse;
-141import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnRequest;
-142import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnResponse;
-143import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceRequest;
-144import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceResponse;
-145import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteSnapshotRequest;
-146import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableRequest;
-147import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableResponse;
-148import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableRequest;
-149import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableResponse;
-150import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.EnableTableRequest;
-151import 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionServerCoprocessorEnvironment.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionServerCoprocessorEnvironment.html
 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionServerCoprocessorEnvironment.html
index de7ca87..c4b4770 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionServerCoprocessorEnvironment.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionServerCoprocessorEnvironment.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = {"i0":6,"i1":6,"i2":6,"i3":6};
+var methods = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -111,7 +111,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.LimitedPrivate(value="Coprocesssor")
  @InterfaceStability.Evolving
-public interface RegionServerCoprocessorEnvironment
+public interface RegionServerCoprocessorEnvironment
 extends CoprocessorEnvironmentRegionServerCoprocessor
 
 
@@ -133,21 +133,27 @@ extends 
 Connection
+createConnection(org.apache.hadoop.conf.Configurationconf)
+Creates a cluster connection using the passed 
configuration.
+
+
+
+Connection
 getConnection()
 Be careful RPC'ing from a Coprocessor context.
 
 
-
+
 MetricRegistry
 getMetricRegistryForRegionServer()
 Returns a MetricRegistry that can be used to track metrics 
at the region server level.
 
 
-
+
 OnlineRegions
 getOnlineRegions()
 
-
+
 ServerName
 getServerName()
 
@@ -179,7 +185,7 @@ extends 
 
 getServerName
-ServerNamegetServerName()
+ServerNamegetServerName()
 
 Returns:
 Hosting Server's ServerName
@@ -192,7 +198,7 @@ extends 
 
 getOnlineRegions
-OnlineRegionsgetOnlineRegions()
+OnlineRegionsgetOnlineRegions()
 
 Returns:
 Interface to Map of regions online on this RegionServer getServerName()}.
@@ -205,7 +211,7 @@ extends 
 
 getConnection
-ConnectiongetConnection()
+ConnectiongetConnection()
 Be careful RPC'ing from a Coprocessor context.
  RPC's will fail, stall, retry, and/or crawl because the remote side is not 
online, is
  struggling or it is on the other side of a network partition. Any use of 
Connection from
@@ -213,21 +219,49 @@ extends createConnection(Configuration).
 
 Returns:
 The host's Connection to the Cluster.
 
 
 
+
+
+
+
+
+createConnection
+ConnectioncreateConnection(org.apache.hadoop.conf.Configurationconf)
+ throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
+Creates a cluster connection using the passed configuration.
+ Using this Connection to get at a local resource -- say a Region that is 
on the local
+ Server or using Admin Interface from a Coprocessor hosted on the Master -- 
will result in a
+ short-circuit of the RPC framework to make a direct invocation avoiding RPC.
+ 
+ Note: HBase will NOT cache/maintain this Connection. If Coprocessors need to 
cache and reuse
+ this connection, it has to be done by Coprocessors. Also make sure to close 
it after use.
+
+Parameters:
+conf - configuration
+Returns:
+Connection created using the passed conf.
+Throws:
+http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
+
+
+
 
 
 
 
 
 getMetricRegistryForRegionServer
-MetricRegistrygetMetricRegistryForRegionServer()
+MetricRegistrygetMetricRegistryForRegionServer()
 Returns a MetricRegistry that can be used to track metrics 
at the region server level.
 
  See ExampleMasterObserverWithMetrics class in the hbase-examples modules 
for examples

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/filter/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/filter/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/filter/package-tree.html
index c3cd5e0..c33a20f 100644
--- a/devapidocs/org/apache/hadoop/hbase/filter/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/filter/package-tree.html
@@ -182,14 +182,14 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true;
 title="class or interface in java.lang">EnumE (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true;
 title="class or interface in java.lang">ComparableT, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true;
 title="class or interface in java.io">Serializable)
 
-org.apache.hadoop.hbase.filter.Filter.ReturnCode
-org.apache.hadoop.hbase.filter.CompareFilter.CompareOp
 org.apache.hadoop.hbase.filter.FilterWrapper.FilterRowRetCode

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/regionserver/RegionCoprocessorHost.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/RegionCoprocessorHost.html 
b/devapidocs/org/apache/hadoop/hbase/regionserver/RegionCoprocessorHost.html
index 6fad1ef..279693a 100644
--- a/devapidocs/org/apache/hadoop/hbase/regionserver/RegionCoprocessorHost.html
+++ b/devapidocs/org/apache/hadoop/hbase/regionserver/RegionCoprocessorHost.html
@@ -824,7 +824,7 @@ extends 
 
 rsServices
-RegionServerServices rsServices
+RegionServerServices rsServices
 The region server services
 
 
@@ -834,7 +834,7 @@ extends 
 
 region
-HRegion region
+HRegion region
 The region
 
 
@@ -844,7 +844,7 @@ extends 
 
 regionObserverGetter
-privateCoprocessorHost.ObserverGetterRegionCoprocessor,RegionObserver 
regionObserverGetter
+privateCoprocessorHost.ObserverGetterRegionCoprocessor,RegionObserver 
regionObserverGetter
 
 
 
@@ -853,7 +853,7 @@ extends 
 
 endpointObserverGetter
-privateCoprocessorHost.ObserverGetterRegionCoprocessor,EndpointObserver endpointObserverGetter
+privateCoprocessorHost.ObserverGetterRegionCoprocessor,EndpointObserver endpointObserverGetter
 
 
 
@@ -870,7 +870,7 @@ extends 
 
 RegionCoprocessorHost
-publicRegionCoprocessorHost(HRegionregion,
+publicRegionCoprocessorHost(HRegionregion,
  RegionServerServicesrsServices,
  
org.apache.hadoop.conf.Configurationconf)
 Constructor
@@ -896,7 +896,7 @@ extends 
 
 getTableCoprocessorAttrsFromSchema
-statichttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListRegionCoprocessorHost.TableCoprocessorAttributegetTableCoprocessorAttrsFromSchema(org.apache.hadoop.conf.Configurationconf,
+statichttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListRegionCoprocessorHost.TableCoprocessorAttributegetTableCoprocessorAttrsFromSchema(org.apache.hadoop.conf.Configurationconf,

 TableDescriptorhtd)
 
 
@@ -906,7 +906,7 @@ extends 
 
 testTableCoprocessorAttrs
-public staticvoidtestTableCoprocessorAttrs(org.apache.hadoop.conf.Configurationconf,
+public staticvoidtestTableCoprocessorAttrs(org.apache.hadoop.conf.Configurationconf,
  TableDescriptorhtd)
   throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
 Sanity check the table coprocessor attributes of the 
supplied schema. Will
@@ -926,7 +926,7 @@ extends 
 
 loadTableCoprocessors
-voidloadTableCoprocessors(org.apache.hadoop.conf.Configurationconf)
+voidloadTableCoprocessors(org.apache.hadoop.conf.Configurationconf)
 
 
 
@@ -935,7 +935,7 @@ extends 
 
 createEnvironment
-publicRegionCoprocessorHost.RegionEnvironmentcreateEnvironment(RegionCoprocessorinstance,
+publicRegionCoprocessorHost.RegionEnvironmentcreateEnvironment(RegionCoprocessorinstance,
  
intpriority,
  intseq,
  
org.apache.hadoop.conf.Configurationconf)
@@ -953,7 +953,7 @@ extends 
 
 checkAndGetInstance
-publicRegionCoprocessorcheckAndGetInstance(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true;
 title="class or interface in java.lang">Class?implClass)
+publicRegionCoprocessorcheckAndGetInstance(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true;
 title="class or interface in java.lang">Class?implClass)
   throws http://docs.oracle.com/javase/8/docs/api/java/lang/InstantiationException.html?is-external=true;
 title="class or interface in java.lang">InstantiationException,
  http://docs.oracle.com/javase/8/docs/api/java/lang/IllegalAccessException.html?is-external=true;
 title="class or interface in java.lang">IllegalAccessException
 Description copied from 
class:CoprocessorHost
@@ -977,7 +977,7 @@ extends 
 
 preOpen
-publicvoidpreOpen()
+publicvoidpreOpen()
  throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
 Invoked before a region open.
 
@@ -992,7 +992,7 @@ extends 
 
 postOpen
-publicvoidpostOpen()
+publicvoidpostOpen()
 Invoked after a region open
 
 
@@ -1002,7 +1002,7 @@ extends 
 
 preClose
-publicvoidpreClose(booleanabortRequested)
+publicvoidpreClose(booleanabortRequested)
   throws 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.EnableTableFuture.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.EnableTableFuture.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.EnableTableFuture.html
index 02e4554..d438f22 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.EnableTableFuture.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.EnableTableFuture.html
@@ -111,4067 +111,4061 @@
 103import 
org.apache.hadoop.util.StringUtils;
 104import 
org.apache.yetus.audience.InterfaceAudience;
 105import 
org.apache.yetus.audience.InterfaceStability;
-106
-107import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
-108import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
-109import 
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
-110import 
org.apache.hadoop.hbase.shaded.protobuf.RequestConverter;
-111import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos;
-112import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.AdminService;
-113import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearCompactionQueuesRequest;
-114import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearRegionBlockCacheRequest;
-115import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.CompactRegionRequest;
-116import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.FlushRegionRequest;
-117import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoRequest;
-118import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoResponse;
-119import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterRequest;
-120import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterResponse;
-121import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.StopServerRequest;
-122import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.UpdateConfigurationRequest;
-123import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;
-124import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceRequest;
-125import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceResponse;
-126import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
-127import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.ProcedureDescription;
-128import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionSpecifier.RegionSpecifierType;
-129import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.TableSchema;
-130import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos;
-131import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest;
-132import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse;
-133import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnRequest;
-134import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnResponse;
-135import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AssignRegionRequest;
-136import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ClearDeadServersRequest;
-137import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceRequest;
-138import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceResponse;
-139import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableRequest;
-140import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableResponse;
-141import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnRequest;
-142import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnResponse;
-143import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceRequest;
-144import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceResponse;
-145import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteSnapshotRequest;
-146import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableRequest;
-147import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableResponse;
-148import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableRequest;
-149import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableResponse;
-150import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.EnableTableRequest;
-151import 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/client/AsyncHBaseAdmin.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/AsyncHBaseAdmin.html 
b/devapidocs/org/apache/hadoop/hbase/client/AsyncHBaseAdmin.html
index 8ab4762..0ceca07 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/AsyncHBaseAdmin.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/AsyncHBaseAdmin.html
@@ -204,8 +204,9 @@ implements 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
-addReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringpeerId,
-  ReplicationPeerConfigpeerConfig)
+addReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringpeerId,
+  ReplicationPeerConfigpeerConfig,
+  booleanenabled)
 Add a new replication peer for replicating data to slave 
cluster
 
 
@@ -999,7 +1000,7 @@ implements AsyncAdmin
-balance,
 getBackupMasters,
 getMaster,
 getMasterCoprocessors,
 getMasterInfoPort,
 getRegionServers,
 listTableDescriptors,
 listTableNames,
 snapshot, snapshot
+addReplicationPeer,
 balance,
 getBackupMasters,
 getMaster,
 getMasterCoprocessors,
 getMasterInfoPort,
 getRegionServers,
 listTableDescriptors,
 listTableNames,
 snapshot,
 snapshot
 
 
 
@@ -2150,22 +2151,24 @@ implements 
+
 
 
 
 
 addReplicationPeer
-publichttp://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">VoidaddReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringpeerId,
-  ReplicationPeerConfigpeerConfig)
-Description copied from 
interface:AsyncAdmin
+publichttp://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">VoidaddReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringpeerId,
+  ReplicationPeerConfigpeerConfig,
+  booleanenabled)
+Description copied from 
interface:AsyncAdmin
 Add a new replication peer for replicating data to slave 
cluster
 
 Specified by:
-addReplicationPeerin
 interfaceAsyncAdmin
+addReplicationPeerin
 interfaceAsyncAdmin
 Parameters:
 peerId - a short name that identifies the peer
 peerConfig - configuration for the replication slave 
cluster
+enabled - peer state, true if ENABLED and false if 
DISABLED
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/client/AsyncRequestFutureImpl.Retry.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/AsyncRequestFutureImpl.Retry.html 
b/devapidocs/org/apache/hadoop/hbase/client/AsyncRequestFutureImpl.Retry.html
index 74b0bc0..0016c72 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/AsyncRequestFutureImpl.Retry.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/AsyncRequestFutureImpl.Retry.html
@@ -274,7 +274,7 @@ the order they are declared.
 
 
 values
-public staticAsyncRequestFutureImpl.Retry[]values()
+public staticAsyncRequestFutureImpl.Retry[]values()
 Returns an array containing the constants of this enum 
type, in
 the order they are declared.  This method may be used to iterate
 over the constants as follows:
@@ -294,7 +294,7 @@ for (AsyncRequestFutureImpl.Retry c : 
AsyncRequestFutureImpl.Retry.values())
 
 
 valueOf
-public staticAsyncRequestFutureImpl.RetryvalueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
+public staticAsyncRequestFutureImpl.RetryvalueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
 Returns the enum constant of this type with the specified 
name.
 The string must match exactly an identifier used to declare an
 enum constant in this type.  (Extraneous 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/bulk-loads.html
--
diff --git a/bulk-loads.html b/bulk-loads.html
index 23855d4..b5da26f 100644
--- a/bulk-loads.html
+++ b/bulk-loads.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase   
   Bulk Loads in Apache HBase (TM)
@@ -311,7 +311,7 @@ under the License. -->
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-11-20
+  Last Published: 
2017-11-21
 
 
 



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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/master/HMasterCommandLine.LocalHMaster.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/HMasterCommandLine.LocalHMaster.html
 
b/devapidocs/org/apache/hadoop/hbase/master/HMasterCommandLine.LocalHMaster.html
index 408bc10..010a1d0 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/HMasterCommandLine.LocalHMaster.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/HMasterCommandLine.LocalHMaster.html
@@ -247,14 +247,14 @@ extends 
 
 Methods inherited from classorg.apache.hadoop.hbase.master.HMaster
-abort,
 abortProcedure,
 addColumn,
 addReplicationPeer,
 balance,
 balance,
 balanceSwitch,
 canCreateBaseZNode, canUpdateTableDescriptor,
 checkIfShouldMoveSystemRegionAsync,
 checkInitialized,
 checkServiceStarted,
 checkTableModifiable,
 configureInfoServer,
 constructMaster,
 createMetaBootstrap,
 createNamespace,
 createQuotaSnapshotNotifier,
 createRpcServices,
 createServerManager,
 createSystemTable,
 createTable, decommissionRegionServers,
 deleteColumn,
 deleteNamespace,
 deleteTable,
 disableReplicationPeer,
 disableTable,
 enableReplicationPeer, enableTable,
 getAssignmentManager,
 getAverageLoad,
 getCatalogJanitor,
 getClientIdAuditPrefix,
 getClusterSchema,
 getClusterStatus,
 getClusterStatus, href="../../../../../org/apache/hadoop/hbase/master/HMaster.html#getClusterStatusWithoutCoprocessor--">getClusterStatusWithoutCoprocessor,
 > href="../../../../../org/apache/hadoop/hbase/master/HMaster.html#getClusterStatusWithoutCoprocessor-java.util.EnumSet-">getClusterStatusWithoutCoprocessor,
 > href="../../../../../org/apache/hadoop/hbase/master/HMaster.html#getDumpServlet--">getDumpServlet,
 > href="../../../../../org/apache/hadoop/hbase/master/HMaster.html#getFavoredNodesManager--">getFavoredNodesManager,
 > href="../../../../../org/apache/hadoop/hbase/master/HMaster.html#getHFileCleaner--">getHFileCleaner,
 > href="../../../../../org/apache/hadoop/hbase/master/HMaster.html#getInitializedEvent--">getInitializedEvent,
 > href="../../../../../org/apache/hadoop/hbase/master/HMaster.html#getLastMajorCompactionTimestamp-org.apache.hadoop.hbase.TableName-">getLastMajorCompactionTimestamp,
 > getLastMajorCompactionTimestampForRegion,
 getLoadBalancer,
 getLoadBalancerClassName,
 getLoadedCoprocessors,
 getLockManager,
 getLocks,
 getLogCleaner,
 getMasterActiveTime,
 get
 MasterCoprocessorHost, getMasterCoprocessors,
 getMasterFileSystem,
 getMasterFinishedInitializationTime,
 getMasterMetrics,
 getMasterProcedureExecutor,
 getMasterProcedureManagerHost,
 getMasterQuotaManager,
 getMasterRpcServices, getMasterStartTime,
 getMasterWalManager,
 getMergePlanCount,
 getMetaTableObserver,
 getMobCompactionState,
 getNamespace,
 getNamespaces,
 getNumWALFiles,
 getProcedures, getProcessName,
 getQuotaObserverChore,
 getRegionNormalizer,
 getRegionNormalizerTracker,
 getRegionServerFatalLogBuffer,
 getRegionServerInfoPort,
 getRegionServerVersion,
  getRemoteInetAddress,
 getReplicationPeerConfig,
 getServerCrashProcessingEnabledEvent,
 getServerManager,
 getServerName,
 getSnapshotManager,
 getSpaceQuotaSnapshotNotifier,
 getSplitOrMergeTrack
 er, getSplitPlanCount,
 getTableDescriptors,
 getTableRegionForRow,
 getTableStateManager,
 getWalProcedureStore,
 getZooKeeper,
 initClusterSchemaService,
 initializeZKBasedSystemTrackers,
  initQuotaManager,
 isActiveMaster,
 isBalancerOn,
 isCatalogJanitorEnabled,
 isCleanerChoreEnabled,
 isInitialized,
 isInMaintenanceMode,
 isNormalizerOn,
 isServ
 erCrashProcessingEnabled, isSplitOrMergeEnabled,
 listDecommissionedRegionServers,
 listReplicationPeers,
 listTableDescriptors,
 listTableDescriptorsByNamespace,
 listTableNames,
 listTableNamesByNamespace,
 login,
 main,
 mergeRegions,
 modifyColumn,
 modifyNamespace,
 modifyTable, move,
 normalizeRegions,
 recommissionRegionServer,
 recoverMeta,
 registerService,
 removeReplicationPeer,
 reportMobCompactionEnd,
 reportMobCompactionStart,
 requestMobCompaction,
 restoreSnapshot,
 setCatalogJanitorEnabled,
 setInitialized,
 setServerCrashProcessingEnabled,
 shu
 tdown, splitRegion,
 stopMaster,
 stopServiceThreads,
 truncateTable,
 updateConfigurationForSpaceQuotaObserver,
 updateReplicationPeerConfig,
 waitForMasterActive
+abort,
 abortProcedure,
 addColumn,
 addReplicationPeer,
 balance,
 balance,
 balanceSwitch,
 canCreateBaseZNode, canUpdateTableDescriptor,
 checkIfShouldMoveSystemRegionAsync,
 checkInitialized,
 checkServiceStarted,
 checkTableModifiable,
 configureInfoServer,
 constructMaster,
 createMetaBootstrap,
 createNamespace,
 createQuotaSnapshotNotifier,
 createRpcServices,
 createServerManager,
 createSystemTable,
 createTable, 
decommissionRegionServers,
 deleteColumn,
 deleteNamespace,
 deleteTable,
 disableReplicationPeer,
 disableTable,
 enableReplicationPeer, 
enableTable,
 getAssignmentManager,
 getAverageLoad,
 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/ConnectionUtils.MasterlessConnection.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/ConnectionUtils.MasterlessConnection.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/ConnectionUtils.MasterlessConnection.html
index d309d87..1bddf29 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/ConnectionUtils.MasterlessConnection.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/ConnectionUtils.MasterlessConnection.html
@@ -135,368 +135,369 @@
 127   * localhost if the invocation target 
is 'this' server; save on network and protobuf
 128   * invocations.
 129   */
-130  @VisibleForTesting // Class is visible 
so can assert we are short-circuiting when expected.
-131  public static class 
ShortCircuitingClusterConnection extends ConnectionImplementation {
-132private final ServerName 
serverName;
-133private final 
AdminService.BlockingInterface localHostAdmin;
-134private final 
ClientService.BlockingInterface localHostClient;
-135
-136private 
ShortCircuitingClusterConnection(Configuration conf, ExecutorService pool, User 
user,
-137ServerName serverName, 
AdminService.BlockingInterface admin,
-138ClientService.BlockingInterface 
client)
-139throws IOException {
-140  super(conf, pool, user);
-141  this.serverName = serverName;
-142  this.localHostAdmin = admin;
-143  this.localHostClient = client;
-144}
-145
-146@Override
-147public AdminService.BlockingInterface 
getAdmin(ServerName sn) throws IOException {
-148  return serverName.equals(sn) ? 
this.localHostAdmin : super.getAdmin(sn);
-149}
-150
-151@Override
-152public 
ClientService.BlockingInterface getClient(ServerName sn) throws IOException {
-153  return serverName.equals(sn) ? 
this.localHostClient : super.getClient(sn);
-154}
-155
-156@Override
-157public MasterKeepAliveConnection 
getKeepAliveMasterService() throws MasterNotRunningException {
-158  if (this.localHostClient instanceof 
MasterService.BlockingInterface) {
-159return new 
ShortCircuitMasterConnection((MasterService.BlockingInterface)this.localHostClient);
-160  }
-161  return 
super.getKeepAliveMasterService();
-162}
-163  }
-164
-165  /**
-166   * Creates a short-circuit connection 
that can bypass the RPC layer (serialization,
-167   * deserialization, networking, etc..) 
when talking to a local server.
-168   * @param conf the current 
configuration
-169   * @param pool the thread pool to use 
for batch operations
-170   * @param user the user the connection 
is for
-171   * @param serverName the local server 
name
-172   * @param admin the admin interface of 
the local server
-173   * @param client the client interface 
of the local server
-174   * @return an short-circuit 
connection.
-175   * @throws IOException if IO failure 
occurred
-176   */
-177  public static ClusterConnection 
createShortCircuitConnection(final Configuration conf,
-178  ExecutorService pool, User user, 
final ServerName serverName,
-179  final 
AdminService.BlockingInterface admin, final ClientService.BlockingInterface 
client)
-180  throws IOException {
-181if (user == null) {
-182  user = 
UserProvider.instantiate(conf).getCurrent();
-183}
-184return new 
ShortCircuitingClusterConnection(conf, pool, user, serverName, admin, 
client);
-185  }
-186
-187  /**
-188   * Setup the connection class, so that 
it will not depend on master being online. Used for testing
-189   * @param conf configuration to set
-190   */
-191  @VisibleForTesting
-192  public static void 
setupMasterlessConnection(Configuration conf) {
-193
conf.set(ClusterConnection.HBASE_CLIENT_CONNECTION_IMPL, 
MasterlessConnection.class.getName());
-194  }
-195
-196  /**
-197   * Some tests shut down the master. But 
table availability is a master RPC which is performed on
-198   * region re-lookups.
-199   */
-200  static class MasterlessConnection 
extends ConnectionImplementation {
-201MasterlessConnection(Configuration 
conf, ExecutorService pool, User user) throws IOException {
-202  super(conf, pool, user);
-203}
-204
-205@Override
-206public boolean 
isTableDisabled(TableName tableName) throws IOException {
-207  // treat all tables as enabled
-208  return false;
-209}
-210  }
-211
-212  /**
-213   * Return retires + 1. The returned 
value will be in range [1, Integer.MAX_VALUE].
-214   */
-215  static int retries2Attempts(int 
retries) {
-216return Math.max(1, retries == 
Integer.MAX_VALUE ? Integer.MAX_VALUE : retries + 1);
-217  }
-218
-219  /**
-220   * Get a unique key for the rpc stub to 
the given server.
-221   */
-222  static String getStubKey(String 
serviceName, ServerName serverName, boolean 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/ConnectionUtils.ShortCircuitingClusterConnection.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/ConnectionUtils.ShortCircuitingClusterConnection.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/ConnectionUtils.ShortCircuitingClusterConnection.html
index d309d87..1bddf29 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/ConnectionUtils.ShortCircuitingClusterConnection.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/ConnectionUtils.ShortCircuitingClusterConnection.html
@@ -135,368 +135,369 @@
 127   * localhost if the invocation target 
is 'this' server; save on network and protobuf
 128   * invocations.
 129   */
-130  @VisibleForTesting // Class is visible 
so can assert we are short-circuiting when expected.
-131  public static class 
ShortCircuitingClusterConnection extends ConnectionImplementation {
-132private final ServerName 
serverName;
-133private final 
AdminService.BlockingInterface localHostAdmin;
-134private final 
ClientService.BlockingInterface localHostClient;
-135
-136private 
ShortCircuitingClusterConnection(Configuration conf, ExecutorService pool, User 
user,
-137ServerName serverName, 
AdminService.BlockingInterface admin,
-138ClientService.BlockingInterface 
client)
-139throws IOException {
-140  super(conf, pool, user);
-141  this.serverName = serverName;
-142  this.localHostAdmin = admin;
-143  this.localHostClient = client;
-144}
-145
-146@Override
-147public AdminService.BlockingInterface 
getAdmin(ServerName sn) throws IOException {
-148  return serverName.equals(sn) ? 
this.localHostAdmin : super.getAdmin(sn);
-149}
-150
-151@Override
-152public 
ClientService.BlockingInterface getClient(ServerName sn) throws IOException {
-153  return serverName.equals(sn) ? 
this.localHostClient : super.getClient(sn);
-154}
-155
-156@Override
-157public MasterKeepAliveConnection 
getKeepAliveMasterService() throws MasterNotRunningException {
-158  if (this.localHostClient instanceof 
MasterService.BlockingInterface) {
-159return new 
ShortCircuitMasterConnection((MasterService.BlockingInterface)this.localHostClient);
-160  }
-161  return 
super.getKeepAliveMasterService();
-162}
-163  }
-164
-165  /**
-166   * Creates a short-circuit connection 
that can bypass the RPC layer (serialization,
-167   * deserialization, networking, etc..) 
when talking to a local server.
-168   * @param conf the current 
configuration
-169   * @param pool the thread pool to use 
for batch operations
-170   * @param user the user the connection 
is for
-171   * @param serverName the local server 
name
-172   * @param admin the admin interface of 
the local server
-173   * @param client the client interface 
of the local server
-174   * @return an short-circuit 
connection.
-175   * @throws IOException if IO failure 
occurred
-176   */
-177  public static ClusterConnection 
createShortCircuitConnection(final Configuration conf,
-178  ExecutorService pool, User user, 
final ServerName serverName,
-179  final 
AdminService.BlockingInterface admin, final ClientService.BlockingInterface 
client)
-180  throws IOException {
-181if (user == null) {
-182  user = 
UserProvider.instantiate(conf).getCurrent();
-183}
-184return new 
ShortCircuitingClusterConnection(conf, pool, user, serverName, admin, 
client);
-185  }
-186
-187  /**
-188   * Setup the connection class, so that 
it will not depend on master being online. Used for testing
-189   * @param conf configuration to set
-190   */
-191  @VisibleForTesting
-192  public static void 
setupMasterlessConnection(Configuration conf) {
-193
conf.set(ClusterConnection.HBASE_CLIENT_CONNECTION_IMPL, 
MasterlessConnection.class.getName());
-194  }
-195
-196  /**
-197   * Some tests shut down the master. But 
table availability is a master RPC which is performed on
-198   * region re-lookups.
-199   */
-200  static class MasterlessConnection 
extends ConnectionImplementation {
-201MasterlessConnection(Configuration 
conf, ExecutorService pool, User user) throws IOException {
-202  super(conf, pool, user);
-203}
-204
-205@Override
-206public boolean 
isTableDisabled(TableName tableName) throws IOException {
-207  // treat all tables as enabled
-208  return false;
-209}
-210  }
-211
-212  /**
-213   * Return retires + 1. The returned 
value will be in range [1, Integer.MAX_VALUE].
-214   */
-215  static int retries2Attempts(int 
retries) {
-216return Math.max(1, retries == 
Integer.MAX_VALUE ? Integer.MAX_VALUE : retries + 1);
-217  }
-218
-219  /**
-220   * Get a unique key for the rpc stub to 
the given server.
-221   */
-222  static String 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.html 
b/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.html
index 0c602d6..b5ae4ad 100644
--- a/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.html
+++ b/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.html
@@ -956,7 +956,7 @@ extends 
 
 masterServices
-privateMasterServices masterServices
+privateMasterServices masterServices
 
 
 
@@ -965,7 +965,7 @@ extends 
 
 masterObserverGetter
-privateCoprocessorHost.ObserverGetterMasterCoprocessor,MasterObserver 
masterObserverGetter
+privateCoprocessorHost.ObserverGetterMasterCoprocessor,MasterObserver 
masterObserverGetter
 
 
 
@@ -982,7 +982,7 @@ extends 
 
 MasterCoprocessorHost
-publicMasterCoprocessorHost(MasterServicesservices,
+publicMasterCoprocessorHost(MasterServicesservices,
  
org.apache.hadoop.conf.Configurationconf)
 
 
@@ -1000,7 +1000,7 @@ extends 
 
 createEnvironment
-publicMasterCoprocessorHost.MasterEnvironmentcreateEnvironment(MasterCoprocessorinstance,
+publicMasterCoprocessorHost.MasterEnvironmentcreateEnvironment(MasterCoprocessorinstance,
  
intpriority,
  intseq,
  
org.apache.hadoop.conf.Configurationconf)
@@ -1018,7 +1018,7 @@ extends 
 
 checkAndGetInstance
-publicMasterCoprocessorcheckAndGetInstance(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true;
 title="class or interface in java.lang">Class?implClass)
+publicMasterCoprocessorcheckAndGetInstance(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true;
 title="class or interface in java.lang">Class?implClass)
   throws http://docs.oracle.com/javase/8/docs/api/java/lang/InstantiationException.html?is-external=true;
 title="class or interface in java.lang">InstantiationException,
  http://docs.oracle.com/javase/8/docs/api/java/lang/IllegalAccessException.html?is-external=true;
 title="class or interface in java.lang">IllegalAccessException
 Description copied from 
class:CoprocessorHost
@@ -1042,7 +1042,7 @@ extends 
 
 preCreateNamespace
-publicvoidpreCreateNamespace(NamespaceDescriptorns)
+publicvoidpreCreateNamespace(NamespaceDescriptorns)
 throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
 
 Throws:
@@ -1056,7 +1056,7 @@ extends 
 
 postCreateNamespace
-publicvoidpostCreateNamespace(NamespaceDescriptorns)
+publicvoidpostCreateNamespace(NamespaceDescriptorns)
  throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
 
 Throws:
@@ -1070,7 +1070,7 @@ extends 
 
 preDeleteNamespace
-publicvoidpreDeleteNamespace(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringnamespaceName)
+publicvoidpreDeleteNamespace(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringnamespaceName)
 throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
 
 Throws:
@@ -1084,7 +1084,7 @@ extends 
 
 postDeleteNamespace
-publicvoidpostDeleteNamespace(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringnamespaceName)
+publicvoidpostDeleteNamespace(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringnamespaceName)
  throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
 
 Throws:
@@ -1098,7 +1098,7 @@ extends 
 
 preModifyNamespace
-publicvoidpreModifyNamespace(NamespaceDescriptorns)
+publicvoidpreModifyNamespace(NamespaceDescriptorns)
 throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
 
 Throws:
@@ -1112,7 +1112,7 @@ extends 
 
 postModifyNamespace
-publicvoidpostModifyNamespace(NamespaceDescriptorns)
+publicvoidpostModifyNamespace(NamespaceDescriptorns)
  throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/org/apache/hadoop/hbase/regionserver/RegionCoprocessorHost.RegionEnvironment.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/RegionCoprocessorHost.RegionEnvironment.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/RegionCoprocessorHost.RegionEnvironment.html
index 7c677eb..633f48d 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/RegionCoprocessorHost.RegionEnvironment.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/RegionCoprocessorHost.RegionEnvironment.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -149,24 +149,16 @@ implements Field and Description
 
 
-private Connection
-connection
-
-
 private MetricRegistry
 metricRegistry
 
-
-private OnlineRegions
-onlineRegions
-
 
 private Region
 region
 
 
-private ServerName
-serverName
+private RegionServerServices
+services
 
 
 (package private) http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentMap.html?is-external=true;
 title="class or interface in java.util.concurrent">ConcurrentMaphttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String,http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
@@ -221,37 +213,43 @@ implements 
 Connection
+createConnection(org.apache.hadoop.conf.Configurationconf)
+Creates a cluster connection using the passed 
configuration.
+
+
+
+Connection
 getConnection()
 Be careful RPC'ing from a Coprocessor context.
 
 
-
+
 MetricRegistry
 getMetricRegistryForRegionServer()
 Returns a MetricRegistry that can be used to track metrics 
at the region server level.
 
 
-
+
 OnlineRegions
 getOnlineRegions()
 
-
+
 Region
 getRegion()
 
-
+
 RegionInfo
 getRegionInfo()
 
-
+
 ServerName
 getServerName()
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentMap.html?is-external=true;
 title="class or interface in java.util.concurrent">ConcurrentMaphttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String,http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
 getSharedData()
 
-
+
 void
 shutdown()
 Clean up the environment
@@ -320,31 +318,13 @@ implements MetricRegistry metricRegistry
 
 
-
-
-
-
-
-connection
-private finalConnection connection
-
-
-
-
-
-
-
-serverName
-private finalServerName serverName
-
-
-
+
 
 
 
 
-onlineRegions
-private finalOnlineRegions onlineRegions
+services
+private finalRegionServerServices services
 
 
 
@@ -361,7 +341,7 @@ implements 
 
 RegionEnvironment
-publicRegionEnvironment(RegionCoprocessorimpl,
+publicRegionEnvironment(RegionCoprocessorimpl,
  intpriority,
  intseq,
  org.apache.hadoop.conf.Configurationconf,
@@ -390,7 +370,7 @@ implements 
 
 getRegion
-publicRegiongetRegion()
+publicRegiongetRegion()
 
 Specified by:
 getRegionin
 interfaceRegionCoprocessorEnvironment
@@ -405,7 +385,7 @@ implements 
 
 getOnlineRegions
-publicOnlineRegionsgetOnlineRegions()
+publicOnlineRegionsgetOnlineRegions()
 
 Specified by:
 getOnlineRegionsin
 interfaceRegionCoprocessorEnvironment
@@ -420,7 +400,7 @@ implements 
 
 getConnection
-publicConnectiongetConnection()
+publicConnectiongetConnection()
 Description copied from 
interface:RegionCoprocessorEnvironment
 Be careful RPC'ing from a Coprocessor context.
  RPC's will fail, stall, retry, and/or crawl because the remote side is not 
online, is
@@ -429,8 +409,11 @@ implements RegionCoprocessorEnvironment.createConnection(Configuration).
 
 Specified by:
 getConnectionin
 interfaceRegionCoprocessorEnvironment
@@ -439,13 +422,41 @@ implements 
+
+
+
+
+createConnection
+publicConnectioncreateConnection(org.apache.hadoop.conf.Configurationconf)
+throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
+Description copied from 
interface:RegionCoprocessorEnvironment
+Creates a cluster connection using the passed configuration.
+ Using this Connection to get at a local resource -- say a Region that is 
on the local
+ Server or using Admin Interface from a Coprocessor hosted on the Master -- 
will result in a
+ short-circuit of the RPC framework to make a direct invocation avoiding RPC.
+ 
+ Note: HBase will NOT 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/Admin.html
--
diff --git a/devapidocs/src-html/org/apache/hadoop/hbase/client/Admin.html 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/Admin.html
index 063cf50..cb363f9 100644
--- a/devapidocs/src-html/org/apache/hadoop/hbase/client/Admin.html
+++ b/devapidocs/src-html/org/apache/hadoop/hbase/client/Admin.html
@@ -28,2630 +28,2615 @@
 020
 021import java.io.Closeable;
 022import java.io.IOException;
-023import java.util.ArrayList;
-024import java.util.Collection;
-025import java.util.EnumSet;
-026import java.util.List;
-027import java.util.Map;
-028import java.util.Set;
-029import java.util.TreeMap;
-030import java.util.concurrent.Future;
-031import java.util.regex.Pattern;
-032
-033import 
org.apache.hadoop.conf.Configuration;
-034import 
org.apache.hadoop.hbase.Abortable;
-035import 
org.apache.hadoop.hbase.CacheEvictionStats;
-036import 
org.apache.hadoop.hbase.ClusterStatus;
-037import 
org.apache.hadoop.hbase.ClusterStatus.Option;
-038import 
org.apache.hadoop.hbase.HRegionInfo;
-039import 
org.apache.hadoop.hbase.HTableDescriptor;
-040import 
org.apache.hadoop.hbase.NamespaceDescriptor;
-041import 
org.apache.hadoop.hbase.NamespaceNotFoundException;
-042import 
org.apache.hadoop.hbase.RegionLoad;
-043import 
org.apache.hadoop.hbase.ServerName;
-044import 
org.apache.hadoop.hbase.TableExistsException;
-045import 
org.apache.hadoop.hbase.TableName;
-046import 
org.apache.hadoop.hbase.TableNotFoundException;
-047import 
org.apache.yetus.audience.InterfaceAudience;
-048import 
org.apache.hadoop.hbase.client.replication.TableCFs;
-049import 
org.apache.hadoop.hbase.client.security.SecurityCapability;
-050import 
org.apache.hadoop.hbase.ipc.CoprocessorRpcChannel;
-051import 
org.apache.hadoop.hbase.quotas.QuotaFilter;
-052import 
org.apache.hadoop.hbase.quotas.QuotaRetriever;
-053import 
org.apache.hadoop.hbase.quotas.QuotaSettings;
-054import 
org.apache.hadoop.hbase.regionserver.wal.FailedLogCloseException;
-055import 
org.apache.hadoop.hbase.replication.ReplicationException;
-056import 
org.apache.hadoop.hbase.replication.ReplicationPeerConfig;
-057import 
org.apache.hadoop.hbase.replication.ReplicationPeerDescription;
-058import 
org.apache.hadoop.hbase.snapshot.HBaseSnapshotException;
-059import 
org.apache.hadoop.hbase.snapshot.RestoreSnapshotException;
-060import 
org.apache.hadoop.hbase.snapshot.SnapshotCreationException;
-061import 
org.apache.hadoop.hbase.snapshot.UnknownSnapshotException;
-062import 
org.apache.hadoop.hbase.util.Bytes;
-063import 
org.apache.hadoop.hbase.util.Pair;
-064
-065/**
-066 * The administrative API for HBase. 
Obtain an instance from {@link Connection#getAdmin()} and
-067 * call {@link #close()} when done.
-068 * pAdmin can be used to create, 
drop, list, enable and disable and otherwise modify tables,
-069 * as well as perform other 
administrative operations.
-070 *
-071 * @see ConnectionFactory
-072 * @see Connection
-073 * @see Table
-074 * @since 0.99.0
-075 */
-076@InterfaceAudience.Public
-077public interface Admin extends Abortable, 
Closeable {
-078  int getOperationTimeout();
-079
-080  @Override
-081  void abort(String why, Throwable e);
-082
-083  @Override
-084  boolean isAborted();
-085
-086  /**
-087   * @return Connection used by this 
object.
-088   */
-089  Connection getConnection();
-090
-091  /**
-092   * @param tableName Table to check.
-093   * @return 
codetrue/code if table exists already.
-094   * @throws IOException
-095   */
-096  boolean tableExists(TableName 
tableName) throws IOException;
-097
-098  /**
-099   * List all the userspace tables.
-100   *
-101   * @return an array of read-only 
HTableDescriptors
-102   * @throws IOException if a remote or 
network exception occurs
-103   * @deprecated since 2.0 version and 
will be removed in 3.0 version.
-104   * Use {@link 
#listTableDescriptors()}.
-105   * @see #listTableDescriptors()
-106   */
-107  @Deprecated
-108  HTableDescriptor[] listTables() throws 
IOException;
-109
-110  /**
-111   * List all the userspace tables.
-112   *
-113   * @return a list of TableDescriptors
-114   * @throws IOException if a remote or 
network exception occurs
-115   */
-116  ListTableDescriptor 
listTableDescriptors() throws IOException;
-117
-118  /**
-119   * List all the userspace tables that 
match the given pattern.
-120   *
-121   * @param pattern The compiled regular 
expression to match against
-122   * @return an array of read-only 
HTableDescriptors
-123   * @throws IOException if a remote or 
network exception occurs
-124   * @see #listTables()
-125   * @deprecated since 2.0 version and 
will be removed in 3.0 version.
-126   * Use {@link 
#listTableDescriptors(java.util.regex.Pattern)}.
-127   * @see 
#listTableDescriptors(Pattern)
-128   */
-129  @Deprecated
-130  

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyTableFuture.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyTableFuture.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyTableFuture.html
index 02e4554..d438f22 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyTableFuture.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyTableFuture.html
@@ -111,4067 +111,4061 @@
 103import 
org.apache.hadoop.util.StringUtils;
 104import 
org.apache.yetus.audience.InterfaceAudience;
 105import 
org.apache.yetus.audience.InterfaceStability;
-106
-107import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
-108import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
-109import 
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
-110import 
org.apache.hadoop.hbase.shaded.protobuf.RequestConverter;
-111import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos;
-112import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.AdminService;
-113import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearCompactionQueuesRequest;
-114import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearRegionBlockCacheRequest;
-115import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.CompactRegionRequest;
-116import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.FlushRegionRequest;
-117import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoRequest;
-118import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoResponse;
-119import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterRequest;
-120import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterResponse;
-121import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.StopServerRequest;
-122import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.UpdateConfigurationRequest;
-123import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;
-124import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceRequest;
-125import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceResponse;
-126import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
-127import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.ProcedureDescription;
-128import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionSpecifier.RegionSpecifierType;
-129import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.TableSchema;
-130import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos;
-131import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest;
-132import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse;
-133import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnRequest;
-134import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnResponse;
-135import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AssignRegionRequest;
-136import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ClearDeadServersRequest;
-137import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceRequest;
-138import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceResponse;
-139import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableRequest;
-140import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableResponse;
-141import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnRequest;
-142import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnResponse;
-143import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceRequest;
-144import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceResponse;
-145import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteSnapshotRequest;
-146import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableRequest;
-147import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableResponse;
-148import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableRequest;
-149import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableResponse;
-150import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.EnableTableRequest;
-151import 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyColumnFamilyFuture.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyColumnFamilyFuture.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyColumnFamilyFuture.html
index 02e4554..d438f22 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyColumnFamilyFuture.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.ModifyColumnFamilyFuture.html
@@ -111,4067 +111,4061 @@
 103import 
org.apache.hadoop.util.StringUtils;
 104import 
org.apache.yetus.audience.InterfaceAudience;
 105import 
org.apache.yetus.audience.InterfaceStability;
-106
-107import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
-108import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
-109import 
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
-110import 
org.apache.hadoop.hbase.shaded.protobuf.RequestConverter;
-111import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos;
-112import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.AdminService;
-113import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearCompactionQueuesRequest;
-114import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearRegionBlockCacheRequest;
-115import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.CompactRegionRequest;
-116import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.FlushRegionRequest;
-117import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoRequest;
-118import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoResponse;
-119import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterRequest;
-120import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterResponse;
-121import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.StopServerRequest;
-122import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.UpdateConfigurationRequest;
-123import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;
-124import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceRequest;
-125import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceResponse;
-126import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
-127import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.ProcedureDescription;
-128import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionSpecifier.RegionSpecifierType;
-129import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.TableSchema;
-130import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos;
-131import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest;
-132import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse;
-133import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnRequest;
-134import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnResponse;
-135import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AssignRegionRequest;
-136import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ClearDeadServersRequest;
-137import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceRequest;
-138import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceResponse;
-139import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableRequest;
-140import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableResponse;
-141import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnRequest;
-142import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnResponse;
-143import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceRequest;
-144import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceResponse;
-145import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteSnapshotRequest;
-146import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableRequest;
-147import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableResponse;
-148import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableRequest;
-149import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableResponse;
-150import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.EnableTableRequest;
-151import 

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

2017-11-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1a616706/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.DeleteColumnFamilyFuture.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.DeleteColumnFamilyFuture.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.DeleteColumnFamilyFuture.html
index 02e4554..d438f22 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.DeleteColumnFamilyFuture.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/client/HBaseAdmin.DeleteColumnFamilyFuture.html
@@ -111,4067 +111,4061 @@
 103import 
org.apache.hadoop.util.StringUtils;
 104import 
org.apache.yetus.audience.InterfaceAudience;
 105import 
org.apache.yetus.audience.InterfaceStability;
-106
-107import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
-108import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
-109import 
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
-110import 
org.apache.hadoop.hbase.shaded.protobuf.RequestConverter;
-111import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos;
-112import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.AdminService;
-113import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearCompactionQueuesRequest;
-114import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.ClearRegionBlockCacheRequest;
-115import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.CompactRegionRequest;
-116import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.FlushRegionRequest;
-117import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoRequest;
-118import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoResponse;
-119import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterRequest;
-120import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.RollWALWriterResponse;
-121import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.StopServerRequest;
-122import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.UpdateConfigurationRequest;
-123import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;
-124import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceRequest;
-125import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceResponse;
-126import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
-127import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.ProcedureDescription;
-128import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.RegionSpecifier.RegionSpecifierType;
-129import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.TableSchema;
-130import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos;
-131import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest;
-132import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse;
-133import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnRequest;
-134import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnResponse;
-135import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AssignRegionRequest;
-136import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ClearDeadServersRequest;
-137import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceRequest;
-138import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceResponse;
-139import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableRequest;
-140import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableResponse;
-141import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnRequest;
-142import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnResponse;
-143import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceRequest;
-144import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceResponse;
-145import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteSnapshotRequest;
-146import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableRequest;
-147import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableResponse;
-148import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableRequest;
-149import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableResponse;
-150import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.EnableTableRequest;
-151import 

hbase git commit: HBASE-19301 Provide way for CPs to create short circuited connection with custom configurations.

2017-11-21 Thread anoopsamjohn
Repository: hbase
Updated Branches:
  refs/heads/branch-2 4df2dffba -> f7331f9ce


HBASE-19301 Provide way for CPs to create short circuited connection with 
custom configurations.


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

Branch: refs/heads/branch-2
Commit: f7331f9cebd590d7760924d2861a0e7a900a0101
Parents: 4df2dff
Author: anoopsamjohn 
Authored: Tue Nov 21 19:04:53 2017 +0530
Committer: anoopsamjohn 
Committed: Tue Nov 21 19:06:39 2017 +0530

--
 .../hadoop/hbase/client/ConnectionUtils.java|  1 +
 .../java/org/apache/hadoop/hbase/Server.java|  2 ++
 .../MasterCoprocessorEnvironment.java   | 33 +++-
 .../RegionCoprocessorEnvironment.java   | 24 --
 .../RegionServerCoprocessorEnvironment.java | 25 +--
 .../hbase/master/MasterCoprocessorHost.java | 15 +
 .../hbase/regionserver/HRegionServer.java   |  7 +
 .../regionserver/RegionCoprocessorHost.java | 21 +++--
 .../RegionServerCoprocessorHost.java| 19 +--
 .../regionserver/ReplicationSyncUp.java |  8 +
 .../hadoop/hbase/MockRegionServerServices.java  |  6 
 .../hbase/master/MockNoopMasterServices.java|  6 
 .../hadoop/hbase/master/MockRegionServer.java   |  6 
 .../hbase/master/TestActiveMasterManager.java   |  6 
 .../hbase/master/cleaner/TestHFileCleaner.java  |  6 
 .../master/cleaner/TestHFileLinkCleaner.java|  6 
 .../hbase/master/cleaner/TestLogsCleaner.java   |  6 
 .../cleaner/TestReplicationHFileCleaner.java|  6 
 .../regionserver/TestHeapMemoryManager.java |  7 +
 .../hbase/regionserver/TestSplitLogWorker.java  |  7 +
 .../hbase/regionserver/TestWALLockup.java   |  6 
 .../TestReplicationStateHBaseImpl.java  |  6 
 .../replication/TestReplicationStateZKImpl.java |  6 
 .../TestReplicationTrackerZKImpl.java   |  7 +
 .../TestReplicationSourceManager.java   |  6 
 .../security/token/TestTokenAuthentication.java | 10 ++
 .../apache/hadoop/hbase/util/MockServer.java|  6 
 27 files changed, 226 insertions(+), 38 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/f7331f9c/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
index 780dcf9..345fac6 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
@@ -127,6 +127,7 @@ public final class ConnectionUtils {
* localhost if the invocation target is 'this' server; save on network and 
protobuf
* invocations.
*/
+  // TODO This has to still do PB marshalling/unmarshalling stuff. Check 
how/whether we can avoid.
   @VisibleForTesting // Class is visible so can assert we are short-circuiting 
when expected.
   public static class ShortCircuitingClusterConnection extends 
ConnectionImplementation {
 private final ServerName serverName;

http://git-wip-us.apache.org/repos/asf/hbase/blob/f7331f9c/hbase-server/src/main/java/org/apache/hadoop/hbase/Server.java
--
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/Server.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/Server.java
index 0d9eba8..65c0322 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/Server.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/Server.java
@@ -53,6 +53,8 @@ public interface Server extends Abortable, Stoppable {
*/
   Connection getConnection();
 
+  Connection createConnection(Configuration conf) throws IOException;
+
   /**
* Returns a reference to the servers' cluster connection. Prefer {@link 
#getConnection()}.
*

http://git-wip-us.apache.org/repos/asf/hbase/blob/f7331f9c/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterCoprocessorEnvironment.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterCoprocessorEnvironment.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterCoprocessorEnvironment.java
index ab0eb6b..0331a0b 100644
--- 

hbase git commit: HBASE-19301 Provide way for CPs to create short circuited connection with custom configurations.

2017-11-21 Thread anoopsamjohn
Repository: hbase
Updated Branches:
  refs/heads/master 48cf4c7ab -> 984e0ecfc


HBASE-19301 Provide way for CPs to create short circuited connection with 
custom configurations.


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

Branch: refs/heads/master
Commit: 984e0ecfc41e286d779d1f99d59325d396b7f085
Parents: 48cf4c7a
Author: anoopsamjohn 
Authored: Tue Nov 21 19:04:53 2017 +0530
Committer: anoopsamjohn 
Committed: Tue Nov 21 19:04:53 2017 +0530

--
 .../hadoop/hbase/client/ConnectionUtils.java|  1 +
 .../java/org/apache/hadoop/hbase/Server.java|  2 ++
 .../MasterCoprocessorEnvironment.java   | 33 +++-
 .../RegionCoprocessorEnvironment.java   | 24 --
 .../RegionServerCoprocessorEnvironment.java | 25 +--
 .../hbase/master/MasterCoprocessorHost.java | 15 +
 .../hbase/regionserver/HRegionServer.java   |  7 +
 .../regionserver/RegionCoprocessorHost.java | 21 +++--
 .../RegionServerCoprocessorHost.java| 19 +--
 .../regionserver/ReplicationSyncUp.java |  8 +
 .../hadoop/hbase/MockRegionServerServices.java  |  6 
 .../hbase/master/MockNoopMasterServices.java|  6 
 .../hadoop/hbase/master/MockRegionServer.java   |  6 
 .../hbase/master/TestActiveMasterManager.java   |  6 
 .../hbase/master/cleaner/TestHFileCleaner.java  |  6 
 .../master/cleaner/TestHFileLinkCleaner.java|  6 
 .../hbase/master/cleaner/TestLogsCleaner.java   |  6 
 .../cleaner/TestReplicationHFileCleaner.java|  6 
 .../regionserver/TestHeapMemoryManager.java |  7 +
 .../hbase/regionserver/TestSplitLogWorker.java  |  7 +
 .../hbase/regionserver/TestWALLockup.java   |  6 
 .../TestReplicationStateHBaseImpl.java  |  6 
 .../replication/TestReplicationStateZKImpl.java |  6 
 .../TestReplicationTrackerZKImpl.java   |  7 +
 .../TestReplicationSourceManager.java   |  6 
 .../security/token/TestTokenAuthentication.java | 10 ++
 .../apache/hadoop/hbase/util/MockServer.java|  6 
 27 files changed, 226 insertions(+), 38 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/984e0ecf/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
index 780dcf9..345fac6 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionUtils.java
@@ -127,6 +127,7 @@ public final class ConnectionUtils {
* localhost if the invocation target is 'this' server; save on network and 
protobuf
* invocations.
*/
+  // TODO This has to still do PB marshalling/unmarshalling stuff. Check 
how/whether we can avoid.
   @VisibleForTesting // Class is visible so can assert we are short-circuiting 
when expected.
   public static class ShortCircuitingClusterConnection extends 
ConnectionImplementation {
 private final ServerName serverName;

http://git-wip-us.apache.org/repos/asf/hbase/blob/984e0ecf/hbase-server/src/main/java/org/apache/hadoop/hbase/Server.java
--
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/Server.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/Server.java
index 0d9eba8..65c0322 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/Server.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/Server.java
@@ -53,6 +53,8 @@ public interface Server extends Abortable, Stoppable {
*/
   Connection getConnection();
 
+  Connection createConnection(Configuration conf) throws IOException;
+
   /**
* Returns a reference to the servers' cluster connection. Prefer {@link 
#getConnection()}.
*

http://git-wip-us.apache.org/repos/asf/hbase/blob/984e0ecf/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterCoprocessorEnvironment.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterCoprocessorEnvironment.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterCoprocessorEnvironment.java
index ab0eb6b..0331a0b 100644
--- 

hbase git commit: HBASE-19313 Call blockUntilConnected when constructing ZKAsyncRegistry(temporary workaround)

2017-11-21 Thread zhangduo
Repository: hbase
Updated Branches:
  refs/heads/master 0e289a851 -> 48cf4c7ab


HBASE-19313 Call blockUntilConnected when constructing 
ZKAsyncRegistry(temporary workaround)


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

Branch: refs/heads/master
Commit: 48cf4c7abeb21e31a0b7701821ced3defe25ffb8
Parents: 0e289a8
Author: zhangduo 
Authored: Tue Nov 21 21:22:13 2017 +0800
Committer: zhangduo 
Committed: Tue Nov 21 21:28:54 2017 +0800

--
 .../java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java   | 6 ++
 1 file changed, 6 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/48cf4c7a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
index e36de01..e67153d 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
@@ -79,6 +79,12 @@ class ZKAsyncRegistry implements AsyncRegistry {
   
Threads.newDaemonThreadFactory(String.format("ZKClusterRegistry-0x%08x", 
hashCode(
 .build();
 this.zk.start();
+// TODO: temporary workaround for HBASE-19312, must be removed before 
2.0.0 release!
+try {
+  this.zk.blockUntilConnected();
+} catch (InterruptedException e) {
+  return;
+}
   }
 
   private interface CuratorEventProcessor {



hbase git commit: HBASE-19313 Call blockUntilConnected when constructing ZKAsyncRegistry(temporary workaround)

2017-11-21 Thread zhangduo
Repository: hbase
Updated Branches:
  refs/heads/branch-2 13209bce0 -> 4df2dffba


HBASE-19313 Call blockUntilConnected when constructing 
ZKAsyncRegistry(temporary workaround)


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

Branch: refs/heads/branch-2
Commit: 4df2dffbabc48cc03defe7bd98986e7946f84400
Parents: 13209bc
Author: zhangduo 
Authored: Tue Nov 21 21:22:13 2017 +0800
Committer: zhangduo 
Committed: Tue Nov 21 21:29:18 2017 +0800

--
 .../java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java   | 6 ++
 1 file changed, 6 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/4df2dffb/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
index e36de01..e67153d 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ZKAsyncRegistry.java
@@ -79,6 +79,12 @@ class ZKAsyncRegistry implements AsyncRegistry {
   
Threads.newDaemonThreadFactory(String.format("ZKClusterRegistry-0x%08x", 
hashCode(
 .build();
 this.zk.start();
+// TODO: temporary workaround for HBASE-19312, must be removed before 
2.0.0 release!
+try {
+  this.zk.blockUntilConnected();
+} catch (InterruptedException e) {
+  return;
+}
   }
 
   private interface CuratorEventProcessor {



hbase git commit: HBASE-19304 KEEP_DELETED_CELLS should ignore case

2017-11-21 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/master e1133d520 -> 0e289a851


HBASE-19304 KEEP_DELETED_CELLS should ignore case

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

Branch: refs/heads/master
Commit: 0e289a851bcfc3ef627784a89f7e1b0a6a40eb44
Parents: e1133d5
Author: Sergey Soldatov 
Authored: Tue Nov 21 20:39:37 2017 +0800
Committer: Chia-Ping Tsai 
Committed: Tue Nov 21 20:40:56 2017 +0800

--
 .../src/main/java/org/apache/hadoop/hbase/KeepDeletedCells.java   | 3 +++
 .../apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.java | 3 ++-
 2 files changed, 5 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/0e289a85/hbase-client/src/main/java/org/apache/hadoop/hbase/KeepDeletedCells.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/KeepDeletedCells.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/KeepDeletedCells.java
index 32b6aa7..dd19fa1 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/KeepDeletedCells.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/KeepDeletedCells.java
@@ -45,4 +45,7 @@ public enum KeepDeletedCells {
* time remove deleted cells after the TTL.
*/
   TTL;
+  public static KeepDeletedCells getValue(String val) {
+return valueOf(val.toUpperCase());
+  }
 }

http://git-wip-us.apache.org/repos/asf/hbase/blob/0e289a85/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.java
index 14f7381..c18e4de 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.java
@@ -898,7 +898,8 @@ public class ColumnFamilyDescriptorBuilder {
 
 @Override
 public KeepDeletedCells getKeepDeletedCells() {
-  return getStringOrDefault(KEEP_DELETED_CELLS_BYTES, 
KeepDeletedCells::valueOf, DEFAULT_KEEP_DELETED);
+  return getStringOrDefault(KEEP_DELETED_CELLS_BYTES,
+  KeepDeletedCells::getValue, DEFAULT_KEEP_DELETED);
 }
 
 /**



hbase git commit: HBASE-19304 KEEP_DELETED_CELLS should ignore case

2017-11-21 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/branch-2 c978f8ab2 -> 13209bce0


HBASE-19304 KEEP_DELETED_CELLS should ignore case

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

Branch: refs/heads/branch-2
Commit: 13209bce060e777ae1f5fd655142372a6f918eef
Parents: c978f8a
Author: Sergey Soldatov 
Authored: Tue Nov 21 20:39:37 2017 +0800
Committer: Chia-Ping Tsai 
Committed: Tue Nov 21 20:45:50 2017 +0800

--
 .../src/main/java/org/apache/hadoop/hbase/KeepDeletedCells.java   | 3 +++
 .../apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.java | 3 ++-
 2 files changed, 5 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/13209bce/hbase-client/src/main/java/org/apache/hadoop/hbase/KeepDeletedCells.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/KeepDeletedCells.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/KeepDeletedCells.java
index 32b6aa7..dd19fa1 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/KeepDeletedCells.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/KeepDeletedCells.java
@@ -45,4 +45,7 @@ public enum KeepDeletedCells {
* time remove deleted cells after the TTL.
*/
   TTL;
+  public static KeepDeletedCells getValue(String val) {
+return valueOf(val.toUpperCase());
+  }
 }

http://git-wip-us.apache.org/repos/asf/hbase/blob/13209bce/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.java
index 14f7381..c18e4de 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.java
@@ -898,7 +898,8 @@ public class ColumnFamilyDescriptorBuilder {
 
 @Override
 public KeepDeletedCells getKeepDeletedCells() {
-  return getStringOrDefault(KEEP_DELETED_CELLS_BYTES, 
KeepDeletedCells::valueOf, DEFAULT_KEEP_DELETED);
+  return getStringOrDefault(KEEP_DELETED_CELLS_BYTES,
+  KeepDeletedCells::getValue, DEFAULT_KEEP_DELETED);
 }
 
 /**