hbase git commit: HBASE-20870 Wrong HBase root dir in ITBLL's Search Tool

2018-07-19 Thread allan163
Repository: hbase
Updated Branches:
  refs/heads/master e66a6603e -> 03e596c66


HBASE-20870 Wrong HBase root dir in ITBLL's Search Tool


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

Branch: refs/heads/master
Commit: 03e596c6694a21768c51a3c52e1a032f51fd637c
Parents: e66a660
Author: Allan Yang 
Authored: Fri Jul 20 12:17:21 2018 +0800
Committer: Allan Yang 
Committed: Fri Jul 20 12:17:21 2018 +0800

--
 .../hadoop/hbase/IntegrationTestingUtility.java   | 14 +-
 .../org/apache/hadoop/hbase/HBaseTestingUtility.java  |  8 ++--
 2 files changed, 19 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/03e596c6/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
--
diff --git 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
index a1a81ed..a9e555e 100644
--- 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
+++ 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
@@ -131,8 +131,20 @@ public class IntegrationTestingUtility extends 
HBaseTestingUtility {
   }
 
   public void createDistributedHBaseCluster() throws IOException {
+//if it is a distributed HBase cluster, use the conf provided by classpath
+//to set hbase dir and fs.defaultFS.
+//Since when the super class HBaseTestingUtility initializing, it will
+//change hbase.rootdir to a local test dir.
+//we use "original.defaultFS" and "original.hbase.dir" to restore them.
 Configuration conf = getConfiguration();
-conf.set("fs.defaultFS", conf.get("original.defaultFS"));
+if (conf.get("original.defaultFS") != null) {
+  conf.set("fs.defaultFS", conf.get("original.defaultFS"));
+}
+if (conf.get("original.hbase.dir") != null) {
+  conf.set(HConstants.HBASE_DIR, conf.get("original.hbase.dir"));
+}
+LOG.debug("Setting {} to {} since it is a distributed cluster",
+HConstants.HBASE_DIR, conf.get(HConstants.HBASE_DIR));
 Class clusterManagerClass = 
conf.getClass(HBASE_CLUSTER_MANAGER_CLASS,
   DEFAULT_HBASE_CLUSTER_MANAGER_CLASS, ClusterManager.class);
 ClusterManager clusterManager = ReflectionUtils.newInstance(

http://git-wip-us.apache.org/repos/asf/hbase/blob/03e596c6/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
index c99d919..03d5d76 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
@@ -333,8 +333,12 @@ public class HBaseTestingUtility extends 
HBaseZKTestingUtility {
 ChecksumUtil.generateExceptionForChecksumFailureForTest(true);
 
 // Save this for when setting default file:// breaks things
-this.conf.set("original.defaultFS", this.conf.get("fs.defaultFS"));
-
+if (this.conf.get("fs.defaultFS") != null) {
+  this.conf.set("original.defaultFS", this.conf.get("fs.defaultFS"));
+}
+if (this.conf.get(HConstants.HBASE_DIR) != null) {
+  this.conf.set("original.hbase.dir", this.conf.get(HConstants.HBASE_DIR));
+}
 // Every cluster is a local cluster until we start DFS
 // Note that conf could be null, but this.conf will not be
 String dataTestDir = getDataTestDir().toString();



hbase git commit: HBASE-20870 Wrong HBase root dir in ITBLL's Search Tool

2018-07-19 Thread allan163
Repository: hbase
Updated Branches:
  refs/heads/branch-2.1 8461e8588 -> 679698a7f


HBASE-20870 Wrong HBase root dir in ITBLL's Search Tool


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

Branch: refs/heads/branch-2.1
Commit: 679698a7f29f566c47724be03f35694059abebee
Parents: 8461e85
Author: Allan Yang 
Authored: Fri Jul 20 11:30:43 2018 +0800
Committer: Allan Yang 
Committed: Fri Jul 20 11:31:21 2018 +0800

--
 .../hadoop/hbase/IntegrationTestingUtility.java   | 14 +-
 .../org/apache/hadoop/hbase/HBaseTestingUtility.java  |  8 ++--
 2 files changed, 19 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/679698a7/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
--
diff --git 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
index a1a81ed..a9e555e 100644
--- 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
+++ 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
@@ -131,8 +131,20 @@ public class IntegrationTestingUtility extends 
HBaseTestingUtility {
   }
 
   public void createDistributedHBaseCluster() throws IOException {
+//if it is a distributed HBase cluster, use the conf provided by classpath
+//to set hbase dir and fs.defaultFS.
+//Since when the super class HBaseTestingUtility initializing, it will
+//change hbase.rootdir to a local test dir.
+//we use "original.defaultFS" and "original.hbase.dir" to restore them.
 Configuration conf = getConfiguration();
-conf.set("fs.defaultFS", conf.get("original.defaultFS"));
+if (conf.get("original.defaultFS") != null) {
+  conf.set("fs.defaultFS", conf.get("original.defaultFS"));
+}
+if (conf.get("original.hbase.dir") != null) {
+  conf.set(HConstants.HBASE_DIR, conf.get("original.hbase.dir"));
+}
+LOG.debug("Setting {} to {} since it is a distributed cluster",
+HConstants.HBASE_DIR, conf.get(HConstants.HBASE_DIR));
 Class clusterManagerClass = 
conf.getClass(HBASE_CLUSTER_MANAGER_CLASS,
   DEFAULT_HBASE_CLUSTER_MANAGER_CLASS, ClusterManager.class);
 ClusterManager clusterManager = ReflectionUtils.newInstance(

http://git-wip-us.apache.org/repos/asf/hbase/blob/679698a7/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
index c99d919..03d5d76 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
@@ -333,8 +333,12 @@ public class HBaseTestingUtility extends 
HBaseZKTestingUtility {
 ChecksumUtil.generateExceptionForChecksumFailureForTest(true);
 
 // Save this for when setting default file:// breaks things
-this.conf.set("original.defaultFS", this.conf.get("fs.defaultFS"));
-
+if (this.conf.get("fs.defaultFS") != null) {
+  this.conf.set("original.defaultFS", this.conf.get("fs.defaultFS"));
+}
+if (this.conf.get(HConstants.HBASE_DIR) != null) {
+  this.conf.set("original.hbase.dir", this.conf.get(HConstants.HBASE_DIR));
+}
 // Every cluster is a local cluster until we start DFS
 // Note that conf could be null, but this.conf will not be
 String dataTestDir = getDataTestDir().toString();



hbase git commit: HBASE-20870 Wrong HBase root dir in ITBLL's Search Tool

2018-07-19 Thread allan163
Repository: hbase
Updated Branches:
  refs/heads/branch-2 37e5f5fb5 -> 1a6fae74b


HBASE-20870 Wrong HBase root dir in ITBLL's Search Tool


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

Branch: refs/heads/branch-2
Commit: 1a6fae74b5d3ab5e206a94dc494bdb5c4008a974
Parents: 37e5f5f
Author: Allan Yang 
Authored: Fri Jul 20 11:22:03 2018 +0800
Committer: Allan Yang 
Committed: Fri Jul 20 11:22:03 2018 +0800

--
 .../hadoop/hbase/IntegrationTestingUtility.java   | 14 +-
 .../org/apache/hadoop/hbase/HBaseTestingUtility.java  |  8 ++--
 2 files changed, 19 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/1a6fae74/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
--
diff --git 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
index a1a81ed..a9e555e 100644
--- 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
+++ 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
@@ -131,8 +131,20 @@ public class IntegrationTestingUtility extends 
HBaseTestingUtility {
   }
 
   public void createDistributedHBaseCluster() throws IOException {
+//if it is a distributed HBase cluster, use the conf provided by classpath
+//to set hbase dir and fs.defaultFS.
+//Since when the super class HBaseTestingUtility initializing, it will
+//change hbase.rootdir to a local test dir.
+//we use "original.defaultFS" and "original.hbase.dir" to restore them.
 Configuration conf = getConfiguration();
-conf.set("fs.defaultFS", conf.get("original.defaultFS"));
+if (conf.get("original.defaultFS") != null) {
+  conf.set("fs.defaultFS", conf.get("original.defaultFS"));
+}
+if (conf.get("original.hbase.dir") != null) {
+  conf.set(HConstants.HBASE_DIR, conf.get("original.hbase.dir"));
+}
+LOG.debug("Setting {} to {} since it is a distributed cluster",
+HConstants.HBASE_DIR, conf.get(HConstants.HBASE_DIR));
 Class clusterManagerClass = 
conf.getClass(HBASE_CLUSTER_MANAGER_CLASS,
   DEFAULT_HBASE_CLUSTER_MANAGER_CLASS, ClusterManager.class);
 ClusterManager clusterManager = ReflectionUtils.newInstance(

http://git-wip-us.apache.org/repos/asf/hbase/blob/1a6fae74/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
index c99d919..03d5d76 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
@@ -333,8 +333,12 @@ public class HBaseTestingUtility extends 
HBaseZKTestingUtility {
 ChecksumUtil.generateExceptionForChecksumFailureForTest(true);
 
 // Save this for when setting default file:// breaks things
-this.conf.set("original.defaultFS", this.conf.get("fs.defaultFS"));
-
+if (this.conf.get("fs.defaultFS") != null) {
+  this.conf.set("original.defaultFS", this.conf.get("fs.defaultFS"));
+}
+if (this.conf.get(HConstants.HBASE_DIR) != null) {
+  this.conf.set("original.hbase.dir", this.conf.get(HConstants.HBASE_DIR));
+}
 // Every cluster is a local cluster until we start DFS
 // Note that conf could be null, but this.conf will not be
 String dataTestDir = getDataTestDir().toString();



hbase git commit: HBASE-20870 Wrong HBase root dir in ITBLL's Search Tool

2018-07-19 Thread allan163
Repository: hbase
Updated Branches:
  refs/heads/branch-2.0 e0bd4a121 -> 4932d8101


HBASE-20870 Wrong HBase root dir in ITBLL's Search Tool


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

Branch: refs/heads/branch-2.0
Commit: 4932d8101a420164f6fbf418bdd252adb13f00b6
Parents: e0bd4a1
Author: Allan Yang 
Authored: Fri Jul 20 11:11:55 2018 +0800
Committer: Allan Yang 
Committed: Fri Jul 20 11:14:40 2018 +0800

--
 .../hadoop/hbase/IntegrationTestingUtility.java   | 14 +-
 .../org/apache/hadoop/hbase/HBaseTestingUtility.java  |  8 ++--
 2 files changed, 19 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/4932d810/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
--
diff --git 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
index a1a81ed..a9e555e 100644
--- 
a/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
+++ 
b/hbase-it/src/test/java/org/apache/hadoop/hbase/IntegrationTestingUtility.java
@@ -131,8 +131,20 @@ public class IntegrationTestingUtility extends 
HBaseTestingUtility {
   }
 
   public void createDistributedHBaseCluster() throws IOException {
+//if it is a distributed HBase cluster, use the conf provided by classpath
+//to set hbase dir and fs.defaultFS.
+//Since when the super class HBaseTestingUtility initializing, it will
+//change hbase.rootdir to a local test dir.
+//we use "original.defaultFS" and "original.hbase.dir" to restore them.
 Configuration conf = getConfiguration();
-conf.set("fs.defaultFS", conf.get("original.defaultFS"));
+if (conf.get("original.defaultFS") != null) {
+  conf.set("fs.defaultFS", conf.get("original.defaultFS"));
+}
+if (conf.get("original.hbase.dir") != null) {
+  conf.set(HConstants.HBASE_DIR, conf.get("original.hbase.dir"));
+}
+LOG.debug("Setting {} to {} since it is a distributed cluster",
+HConstants.HBASE_DIR, conf.get(HConstants.HBASE_DIR));
 Class clusterManagerClass = 
conf.getClass(HBASE_CLUSTER_MANAGER_CLASS,
   DEFAULT_HBASE_CLUSTER_MANAGER_CLASS, ClusterManager.class);
 ClusterManager clusterManager = ReflectionUtils.newInstance(

http://git-wip-us.apache.org/repos/asf/hbase/blob/4932d810/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
index a81ea47..d21442d 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/HBaseTestingUtility.java
@@ -333,8 +333,12 @@ public class HBaseTestingUtility extends 
HBaseZKTestingUtility {
 ChecksumUtil.generateExceptionForChecksumFailureForTest(true);
 
 // Save this for when setting default file:// breaks things
-this.conf.set("original.defaultFS", this.conf.get("fs.defaultFS"));
-
+if (this.conf.get("fs.defaultFS") != null) {
+  this.conf.set("original.defaultFS", this.conf.get("fs.defaultFS"));
+}
+if (this.conf.get(HConstants.HBASE_DIR) != null) {
+  this.conf.set("original.hbase.dir", this.conf.get(HConstants.HBASE_DIR));
+}
 // Every cluster is a local cluster until we start DFS
 // Note that conf could be null, but this.conf will not be
 String dataTestDir = getDataTestDir().toString();



hbase-site git commit: INFRA-10751 Empty commit

2018-07-19 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 0c6f447e0 -> 767291b81


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

Branch: refs/heads/asf-site
Commit: 767291b8188062c22e1f02e4cfbc35b96cf41d86
Parents: 0c6f447
Author: jenkins 
Authored: Fri Jul 20 02:00:28 2018 +
Committer: jenkins 
Committed: Fri Jul 20 02:00:28 2018 +

--

--




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

2018-07-19 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/org/apache/hadoop/hbase/NamespaceExistException.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/NamespaceExistException.html 
b/apidocs/org/apache/hadoop/hbase/NamespaceExistException.html
index ba2dc6f..e655215 100644
--- a/apidocs/org/apache/hadoop/hbase/NamespaceExistException.html
+++ b/apidocs/org/apache/hadoop/hbase/NamespaceExistException.html
@@ -1,6 +1,6 @@
 http://www.w3.org/TR/html4/loose.dtd;>
 
-
+
 
 
 
@@ -20,38 +20,38 @@
 //-->
 
 
-您的浏览器已禁用 JavaScript。
+JavaScript is disabled on your browser.
 
 
 
 
 
-跳过导航链接
+Skip navigation links
 
 
 
-
-概览
-程序包
-ç±»
-使用
-树
-已过时
-索引
-帮助
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
 
 
 
 
-上一个类
-下一个类
+PrevClass
+NextClass
 
 
-框架
-无框架
+Frames
+NoFrames
 
 
-所有类
+AllClasses
 
 
 
 
org.apache.hadoop.hbase
-

ç±» NamespaceExistException

+

Class NamespaceExistException

    -
  • https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"; title="java.lang中的类或接口">java.lang.Object
  • +
  • https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"; title="class or interface in java.lang">java.lang.Object
    • -
    • https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true"; title="java.lang中的类或接口">java.lang.Throwable
    • +
    • https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true"; title="class or interface in java.lang">java.lang.Throwable
      • -
      • https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true"; title="java.lang中的类或接口">java.lang.Exception
      • +
      • https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true"; title="class or interface in java.lang">java.lang.Exception
        • -
        • https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true"; title="java.io中的类或接口">java.io.IOException
        • +
        • https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true"; title="class or interface in java.io">java.io.IOException
          • -
          • org.apache.hadoop.hbase.HBaseIOException
          • +
          • [09/51] [partial] hbase-site git commit: Published site at e66a6603e36ecd67237ca16acd5e2de03f0d372d.
            http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/org/apache/hadoop/hbase/class-use/CellBuilder.html
            --
            diff --git a/apidocs/org/apache/hadoop/hbase/class-use/CellBuilder.html 
            b/apidocs/org/apache/hadoop/hbase/class-use/CellBuilder.html
            index 4729dfd..503a09a 100644
            --- a/apidocs/org/apache/hadoop/hbase/class-use/CellBuilder.html
            +++ b/apidocs/org/apache/hadoop/hbase/class-use/CellBuilder.html
            @@ -1,10 +1,10 @@
             http://www.w3.org/TR/html4/loose.dtd;>
             
            -
            +
             
             
             
            -接口 org.apache.hadoop.hbase.CellBuilder的使用 (Apache HBase 
            3.0.0-SNAPSHOT API)
            +Uses of Interface org.apache.hadoop.hbase.CellBuilder (Apache HBase 
            3.0.0-SNAPSHOT API)
             
             
             
            @@ -12,7 +12,7 @@
             
             
             
            -您的浏览器已禁用 JavaScript。
            +JavaScript is disabled on your browser.
             
             
             
             
             
            -跳过导航链接
            +Skip navigation links
             
             
             
            -
            -概览
            -程序包
            -ç±»
            -使用
            -树
            -已过时
            -索引
            -帮助
            +
            +Overview
            +Package
            +Class
            +Use
            +Tree
            +Deprecated
            +Index
            +Help
             
             
             
             
            -上一个
            -下一个
            +Prev
            +Next
             
             
            -框架
            -无框架
            +Frames
            +NoFrames
             
             
            -所有类
            +AllClasses
             
             
             
             
            -

            接口的使用
            org.apache.hadoop.hbase.CellBuilder

            +

            Uses of Interface
            org.apache.hadoop.hbase.CellBuilder

            • - - +
              使用CellBuilder的程序包  
              + - - + + @@ -94,70 +94,70 @@
            • -

              org.apache.hadoop.hbase中CellBuilder的使用

              -
            • Packages that use CellBuilder 
              程序包说明PackageDescription
              - +

              Uses of CellBuilder in org.apache.hadoop.hbase

              +
              返回CellBuilder的org.apache.hadoop.hbase中的方法 
              + - - + + - +
              Methods in org.apache.hadoop.hbase that return CellBuilder 
              限定符和类型方法和说明Modifier and TypeMethod and Description
              CellBuilder[36/51] [partial] hbase-site git commit: Published site at e66a6603e36ecd67237ca16acd5e2de03f0d372d.
              http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/org/apache/hadoop/hbase/CompareOperator.html
              --
              diff --git a/apidocs/org/apache/hadoop/hbase/CompareOperator.html 
              b/apidocs/org/apache/hadoop/hbase/CompareOperator.html
              index 0be1309..a79d066 100644
              --- a/apidocs/org/apache/hadoop/hbase/CompareOperator.html
              +++ b/apidocs/org/apache/hadoop/hbase/CompareOperator.html
              @@ -1,6 +1,6 @@
               http://www.w3.org/TR/html4/loose.dtd;>
               
              -
              +
               
               
               
              @@ -19,45 +19,45 @@
               }
               //-->
               var methods = {"i0":9,"i1":9};
              -var tabs = {65535:["t0","所有方法"],1:["t1","静态方法"],8:["t4","å…
              ·ä½“方法"]};
              +var tabs = {65535:["t0","All Methods"],1:["t1","Static 
              Methods"],8:["t4","Concrete Methods"]};
               var altColor = "altColor";
               var rowColor = "rowColor";
               var tableTab = "tableTab";
               var activeTableTab = "activeTableTab";
               
               
              -您的浏览器已禁用 JavaScript。
              +JavaScript is disabled on your browser.
               
               
               
               
               
              -跳过导航链接
              +Skip navigation links
               
               
               
              -
              -概览
              -程序包
              -ç±»
              -使用
              -树
              -已过时
              -索引
              -帮助
              +
              +Overview
              +Package
              +Class
              +Use
              +Tree
              +Deprecated
              +Index
              +Help
               
               
               
               
              -上一个类
              -下一个类
              +PrevClass
              +NextClass
               
               
              -框架
              -无框架
              +Frames
              +NoFrames
               
               
              -所有类
              +AllClasses
               
               
               
               
              org.apache.hadoop.hbase
              -

              枚举 CompareOperator

              +

              Enum CompareOperator


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

              http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/org/apache/hadoop/hbase/CellScanner.html
              --
              diff --git a/apidocs/org/apache/hadoop/hbase/CellScanner.html 
              b/apidocs/org/apache/hadoop/hbase/CellScanner.html
              index cfc18a3..3e4eab8 100644
              --- a/apidocs/org/apache/hadoop/hbase/CellScanner.html
              +++ b/apidocs/org/apache/hadoop/hbase/CellScanner.html
              @@ -1,6 +1,6 @@
               http://www.w3.org/TR/html4/loose.dtd;>
               
              -
              +
               
               
               
              @@ -19,45 +19,45 @@
               }
               //-->
               var methods = {"i0":6,"i1":6};
              -var tabs = 
              {65535:["t0","所有方法"],2:["t2","实例方法"],4:["t3","抽象方法"]};
              +var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
              Methods"],4:["t3","Abstract Methods"]};
               var altColor = "altColor";
               var rowColor = "rowColor";
               var tableTab = "tableTab";
               var activeTableTab = "activeTableTab";
               
               
              -您的浏览器已禁用 JavaScript。
              +JavaScript is disabled on your browser.
               
               
               
               
               
              -跳过导航链接
              +Skip navigation links
               
               
               
              -
              -概览
              -程序包
              -ç±»
              -使用
              -树
              -已过时
              -索引
              -帮助
              +
              +Overview
              +Package
              +Class
              +Use
              +Tree
              +Deprecated
              +Index
              +Help
               
               
               
               
              -上一个类
              -下一个类
              +PrevClass
              +NextClass
               
               
              -框架
              -无框架
              +Frames
              +NoFrames
               
               
              -所有类
              +AllClasses
               
               
               

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

              http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/org/apache/hadoop/hbase/class-use/CellScanner.html
              --
              diff --git a/apidocs/org/apache/hadoop/hbase/class-use/CellScanner.html 
              b/apidocs/org/apache/hadoop/hbase/class-use/CellScanner.html
              index dae577c..6b2e30c 100644
              --- a/apidocs/org/apache/hadoop/hbase/class-use/CellScanner.html
              +++ b/apidocs/org/apache/hadoop/hbase/class-use/CellScanner.html
              @@ -1,10 +1,10 @@
               http://www.w3.org/TR/html4/loose.dtd;>
               
              -
              +
               
               
               
              -接口 org.apache.hadoop.hbase.CellScanner的使用 (Apache HBase 
              3.0.0-SNAPSHOT API)
              +Uses of Interface org.apache.hadoop.hbase.CellScanner (Apache HBase 
              3.0.0-SNAPSHOT API)
               
               
               
              @@ -12,7 +12,7 @@
               
               
               
              -您的浏览器已禁用 JavaScript。
              +JavaScript is disabled on your browser.
               
               
               
               
               
              -跳过导航链接
              +Skip navigation links
               
               
               
              -
              -概览
              -程序包
              -ç±»
              -使用
              -树
              -已过时
              -索引
              -帮助
              +
              +Overview
              +Package
              +Class
              +Use
              +Tree
              +Deprecated
              +Index
              +Help
               
               
               
               
              -上一个
              -下一个
              +Prev
              +Next
               
               
              -框架
              -无框架
              +Frames
              +NoFrames
               
               
              -所有类
              +AllClasses
               
               
               
               
              -

              接口的使用
              org.apache.hadoop.hbase.CellScanner

              +

              Uses of Interface
              org.apache.hadoop.hbase.CellScanner

              • - - +
                使用CellScanner的程序包  
                + - - + + @@ -89,17 +89,7 @@ @@ -110,37 +100,37 @@ Table of Contents
              • -

                org.apache.hadoop.hbase中CellScanner的使用

                -
              • Packages that use CellScanner 
                程序包说明PackageDescription
                org.apache.hadoop.hbase.client -
                Provides HBase Client - -Table of Contents - - Overview -Example API Usage - - - Overview - To administer HBase, create and drop tables, list and alter tables, - use Admin.
                +
                Provides HBase Client
                - +

                Uses of CellScanner in org.apache.hadoop.hbase

                +
                返回CellScanner的org.apache.hadoop.hbase中的方法 
                +
                Methods in

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

                http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/constant-values.html
                --
                diff --git a/apidocs/constant-values.html b/apidocs/constant-values.html
                index e4111e8..595f2eb 100644
                --- a/apidocs/constant-values.html
                +++ b/apidocs/constant-values.html
                @@ -1,10 +1,10 @@
                 http://www.w3.org/TR/html4/loose.dtd;>
                 
                -
                +
                 
                 
                 
                -常量字段值 (Apache HBase 3.0.0-SNAPSHOT API)
                +Constant Field Values (Apache HBase 3.0.0-SNAPSHOT API)
                 
                 
                 
                @@ -12,7 +12,7 @@
                 
                 
                 
                -您的浏览器已禁用 JavaScript。
                +JavaScript is disabled on your browser.
                 
                 
                 
                 
                 
                -跳过导航链接
                +Skip navigation links
                 
                 
                 
                -
                -概览
                -程序包
                -ç±»
                -使用
                -树
                -已过时
                -索引
                -帮助
                +
                +Overview
                +Package
                +Class
                +Use
                +Tree
                +Deprecated
                +Index
                +Help
                 
                 
                 
                 
                -上一个
                -下一个
                +Prev
                +Next
                 
                 
                -框架
                -无框架
                +Frames
                +NoFrames
                 
                 
                -所有类
                +AllClasses
                 
                 
                 

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

                http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/org/apache/hadoop/hbase/class-use/HBaseIOException.html
                --
                diff --git a/apidocs/org/apache/hadoop/hbase/class-use/HBaseIOException.html 
                b/apidocs/org/apache/hadoop/hbase/class-use/HBaseIOException.html
                index c8387a5..3a6e532 100644
                --- a/apidocs/org/apache/hadoop/hbase/class-use/HBaseIOException.html
                +++ b/apidocs/org/apache/hadoop/hbase/class-use/HBaseIOException.html
                @@ -1,10 +1,10 @@
                 http://www.w3.org/TR/html4/loose.dtd;>
                 
                -
                +
                 
                 
                 
                -类 org.apache.hadoop.hbase.HBaseIOException的使用 (Apache HBase 
                3.0.0-SNAPSHOT API)
                +Uses of Class org.apache.hadoop.hbase.HBaseIOException (Apache HBase 
                3.0.0-SNAPSHOT API)
                 
                 
                 
                @@ -12,7 +12,7 @@
                 
                 
                 
                -您的浏览器已禁用 JavaScript。
                +JavaScript is disabled on your browser.
                 
                 
                 
                 
                 
                -跳过导航链接
                +Skip navigation links
                 
                 
                 
                -
                -概览
                -程序包
                -ç±»
                -使用
                -树
                -已过时
                -索引
                -帮助
                +
                +Overview
                +Package
                +Class
                +Use
                +Tree
                +Deprecated
                +Index
                +Help
                 
                 
                 
                 
                -上一个
                -下一个
                +Prev
                +Next
                 
                 
                -框架
                -无框架
                +Frames
                +NoFrames
                 
                 
                -所有类
                +AllClasses
                 
                 
                 
                 
                -

                类的使用
                org.apache.hadoop.hbase.HBaseIOException

                +

                Uses of Class
                org.apache.hadoop.hbase.HBaseIOException

                • - - +
                  使用HBaseIOException的程序包  
                  + - - + + @@ -89,33 +89,13 @@ @@ -156,54 +136,54 @@ Coprocessors are code that runs in-process on each region server.
                • -

                  org.apache.hadoop.hbase中

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

                  http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/index-all.html
                  --
                  diff --git a/apidocs/index-all.html b/apidocs/index-all.html
                  index 0d29995..56be882 100644
                  --- a/apidocs/index-all.html
                  +++ b/apidocs/index-all.html
                  @@ -1,10 +1,10 @@
                   http://www.w3.org/TR/html4/loose.dtd;>
                   
                  -
                  +
                   
                   
                   
                  -索引 (Apache HBase 3.0.0-SNAPSHOT API)
                  +Index (Apache HBase 3.0.0-SNAPSHOT API)
                   
                   
                   
                  @@ -12,7 +12,7 @@
                   
                   
                   
                  -您的浏览器已禁用 JavaScript。
                  +JavaScript is disabled on your browser.
                   
                   
                   
                   
                   
                  -跳过导航链接
                  +Skip navigation links
                   
                   
                   
                  -
                  -概览
                  -程序包
                  -ç±»
                  -使用
                  -树
                  -已过时
                  -索引
                  -帮助
                  +
                  +Overview
                  +Package
                  +Class
                  +Use
                  +Tree
                  +Deprecated
                  +Index
                  +Help
                   
                   
                   
                   
                  -上一个
                  -下一个
                  +Prev
                  +Next
                   
                   
                  -框架
                  -无框架
                  +Frames
                  +NoFrames
                   
                   
                  -所有类
                  +AllClasses
                   
                   
                   

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

                  http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/org/apache/hadoop/hbase/UnknownRegionException.html
                  --
                  diff --git a/apidocs/org/apache/hadoop/hbase/UnknownRegionException.html 
                  b/apidocs/org/apache/hadoop/hbase/UnknownRegionException.html
                  index 63a5803..215bfca 100644
                  --- a/apidocs/org/apache/hadoop/hbase/UnknownRegionException.html
                  +++ b/apidocs/org/apache/hadoop/hbase/UnknownRegionException.html
                  @@ -1,6 +1,6 @@
                   http://www.w3.org/TR/html4/loose.dtd;>
                   
                  -
                  +
                   
                   
                   
                  @@ -20,38 +20,38 @@
                   //-->
                   
                   
                  -您的浏览器已禁用 JavaScript。
                  +JavaScript is disabled on your browser.
                   
                   
                   
                   
                   
                  -跳过导航链接
                  +Skip navigation links
                   
                   
                   
                  -
                  -概览
                  -程序包
                  -ç±»
                  -使用
                  -树
                  -已过时
                  -索引
                  -帮助
                  +
                  +Overview
                  +Package
                  +Class
                  +Use
                  +Tree
                  +Deprecated
                  +Index
                  +Help
                   
                   
                   
                   
                  -上一个类
                  -下一个类
                  +PrevClass
                  +NextClass
                   
                   
                  -框架
                  -无框架
                  +Frames
                  +NoFrames
                   
                   
                  -所有类
                  +AllClasses
                   
                   
                   
                   
                  org.apache.hadoop.hbase
                  -

                  ç±» UnknownRegionException

                  +

                  Class UnknownRegionException

                  @@ -127,37 +127,37 @@ extends https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html
                • -

                  方法概要

                  -
                • Packages that use HBaseIOException 
                  程序包说明PackageDescription
                  org.apache.hadoop.hbase.client -
                  Provides HBase Client - -Table of Contents - - Overview -Example API Usage - - - Overview - To administer HBase, create and drop tables, list and alter tables, - use Admin.
                  +
                  Provides HBase Client
                  org.apache.hadoop.hbase.coprocessor -
                  Table of Contents - -Overview -Coprocessor -RegionObserver -Endpoint -Coprocessor loading - - -Overview -Coprocessors are code that runs in-process on each region server.
                  +
                  Table of Contents
                  -
                  所有方法

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

                  http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/org/apache/hadoop/hbase/Cell.html
                  --
                  diff --git a/apidocs/org/apache/hadoop/hbase/Cell.html 
                  b/apidocs/org/apache/hadoop/hbase/Cell.html
                  index d0f0a2a..f50a5d4 100644
                  --- a/apidocs/org/apache/hadoop/hbase/Cell.html
                  +++ b/apidocs/org/apache/hadoop/hbase/Cell.html
                  @@ -1,6 +1,6 @@
                   http://www.w3.org/TR/html4/loose.dtd;>
                   
                  -
                  +
                   
                   
                   
                  @@ -19,45 +19,45 @@
                   }
                   //-->
                   var methods = 
                  {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":38,"i10":38,"i11":38,"i12":38,"i13":6,"i14":18,"i15":38,"i16":6,"i17":6,"i18":6};
                  -var tabs = 
                  {65535:["t0","所有方法"],2:["t2","实例方法"],4:["t3","抽象方法"],16:["t5","默认方法"],32:["t6","已过时的方法"]};
                  +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";
                   var tableTab = "tableTab";
                   var activeTableTab = "activeTableTab";
                   
                   
                  -您的浏览器已禁用 JavaScript。
                  +JavaScript is disabled on your browser.
                   
                   
                   
                   
                   
                  -跳过导航链接
                  +Skip navigation links
                   
                   
                   
                  -
                  -概览
                  -程序包
                  -ç±»
                  -使用
                  -树
                  -已过时
                  -索引
                  -帮助
                  +
                  +Overview
                  +Package
                  +Class
                  +Use
                  +Tree
                  +Deprecated
                  +Index
                  +Help
                   
                   
                   
                   
                  -上一个类
                  -下一个类
                  +PrevClass
                  +NextClass
                   
                   
                  -框架
                  -无框架
                  +Frames
                  +NoFrames
                   
                   
                  -所有类
                  +AllClasses
                   
                   
                   
                   
                  org.apache.hadoop.hbase
                  -

                  接口 Cell

                  +

                  Interface Cell

                  @@ -149,12 +149,12 @@ public interface -

                  方法概要

                  - - +

                  Method Summary

                  +
                  所有方法 å®žä¾‹æ–¹æ³• æŠ½è±¡æ–¹æ³• é»˜è®¤æ–¹æ³• å·²è¿‡æ—¶çš„方法 
                  + - - + + @@ -202,7 +202,7 @@ public interface
                  All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods 
                  限定符和类型方法和说明Modifier and TypeMethod and Description
                  byte[]long

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

                  http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/allclasses-noframe.html
                  --
                  diff --git a/apidocs/allclasses-noframe.html b/apidocs/allclasses-noframe.html
                  index ee591d8..c389b59 100644
                  --- a/apidocs/allclasses-noframe.html
                  +++ b/apidocs/allclasses-noframe.html
                  @@ -1,419 +1,419 @@
                   http://www.w3.org/TR/html4/loose.dtd;>
                   
                  -
                  +
                   
                   
                   
                  -所有类 (Apache HBase 3.0.0-SNAPSHOT API)
                  +All Classes (Apache HBase 3.0.0-SNAPSHOT API)
                   
                   
                   
                   
                  -所有类
                  +AllClasses
                   
                   
                  -AccessDeniedException
                  -Address
                  -Admin
                  -AdvancedScanResultConsumer
                  -AdvancedScanResultConsumer.ScanController
                  -AdvancedScanResultConsumer.ScanResumer
                  -Append
                  -AsyncAdmin
                  -AsyncAdminBuilder
                  -AsyncBufferedMutator
                  -AsyncBufferedMutatorBuilder
                  -AsyncConnection
                  -AsyncTable
                  -AsyncTable.CoprocessorCallback
                  -AsyncTableBuilder
                  -AsyncTableRegionLocator
                  -Attributes
                  -AuthUtil
                  -BadAuthException
                  -BigDecimalComparator
                  -BinaryComparator
                  -BinaryPrefixComparator
                  -BitComparator
                  -BitComparator.BitwiseOp
                  -BloomType
                  -BufferedMutator
                  -BufferedMutator.ExceptionListener
                  -BufferedMutatorParams
                  -ByteArrayComparable
                  -ByteBufferOutputStream
                  -ByteBufferUtils
                  -ByteRange
                  -ByteRangeUtils
                  -Bytes
                  -Bytes.ByteArrayComparator
                  -Bytes.RowEndKeyComparator
                  -CacheEvictionStats
                  -CallCancelledException
                  -CallDroppedException
                  -CallerDisconnectedException
                  -CallQueueTooBigException
                  -CallTimeoutException
                  -Cell
                  -CellBuilder
                  -CellBuilderFactory
                  -CellBuilderType
                  -CellComparator
                  -CellCounter
                  -CellCreator
                  -CellScannable
                  -CellScanner
                  -CellScannerButNoCodecException
                  -CellSerialization
                  -CellSortReducer
                  -CellUtil
                  -ChoreService
                  -Cipher
                  -CipherProvider
                  -Client
                  -ClientBackoffPolicy
                  -ClockOutOfSyncException
                  -Cluster
                  -ClusterMetrics
                  -ClusterStatus
                  -ColumnCountGetFilter
                  -ColumnFamilyDescriptor
                  -ColumnFamilyDescriptorBuilder
                  -ColumnPaginationFilter
                  -ColumnPrefixFilter
                  -ColumnRangeFilter
                  -ColumnValueFilter
                  -CompactionState
                  -CompactType
                  -CompareFilter
                  -CompareFilter.CompareOp
                  -CompareOperator
                  -ConfigurationUtil
                  -Connection
                  -ConnectionClosingException
                  -ConnectionFactory
                  -Consistency
                  -Constants
                  -Context
                  -CoprocessorDescriptor
                  -CoprocessorDescriptorBuilder
                  -CoprocessorException
                  -CoprocessorRpcChannel
                  -CopyTable
                  -CorruptedSnapshotException
                  -Counter
                  -CryptoCipherProvider
                  -Cursor
                  -DataBlockEncoding
                  -DataType
                  -Decryptor
                  -DefaultCipherProvider
                  -Delete
                  -DependentColumnFilter
                  -DoNotRetryIOException
                  -DoNotRetryRegionException
                  -DroppedSnapshotException
                  -Durability
                  -Encryption
                  -Encryption.Context
                  -Encryptor
                  -EntityLock
                  -ExponentialClientBackoffPolicy
                  -Export
                  -ExportSnapshot
                  -ExportSnapshotException
                  -FailedLogCloseException
                  -FailedSanityCheckException
                  -FailedServerException
                  -FailedSyncBeforeLogCloseException
                  -FallbackDisallowedException
                  -FamilyFilter
                  -FatalConnectionException
                  -FileSystemVersionException
                  -Filter
                  -Filter.ReturnCode
                  -FilterList
                  -FilterList.Operator
                  -FirstKeyOnlyFilter
                  -FirstKeyValueMatchingQualifiersFilter
                  -FixedLengthWrapper
                  -ForeignException
                  -FuzzyRowFilter
                  -Get
                  -GroupingTableMap
                  -GroupingTableMapper
                  -HBaseConfiguration
                  -HBaseInterfaceAudience
                  -HBaseIOException
                  -HBaseSnapshotException
                  -HColumnDescriptor
                  -HConstants
                  -HFileOutputFormat2
                  -HRegionInfo
                  -HRegionLocation
                  -HRegionPartitioner
                  -HRegionPartitioner
                  -HTableDescriptor
                  -HTableMultiplexer
                  -HTableMultiplexer.HTableMultiplexerStatus
                  -IdentityTableMap
                  -IdentityTableMapper
                  -IdentityTableReduce
                  -IdentityTableReducer
                  -ImmutableBytesWritable
                  -ImmutableBytesWritable.Comparator
                  -Import
                  -ImportTsv
                  -InclusiveStopFilter
                  -IncompatibleFilterException
                  -Increment
                  -InvalidFamilyOperationException
                  -InvalidRowFilterException
                  -IsolationLevel
                  -JsonMapper
                  -KeepDeletedCells
                  -KeyOnlyFilter
                  -KeyProvider
                  -KeyStoreKeyProvider
                  -LeaseException
                  -LeaseNotRecoveredException
                  -LoadIncrementalHFiles
                  -LoadIncrementalHFiles.LoadQueueItem
                  -LocalHBaseCluster
                  -LongComparator
                  -LossyCounting
                  -MasterNotRunningException
                  -MasterSwitchType
                  -MD5Hash
                  -MemoryCompactionPolicy
                  -MergeRegionException
                  -MiniZooKeeperCluster
                  -MobCompactPartitionPolicy
                  -MobConstants
                  -MultiActionResultTooLarge
                  -MultipleColumnPrefixFilter
                  -MultiRowRangeFilter
                  -MultiRowRangeFilter.RowRange
                  -MultiTableHFileOutputFormat
                  -MultiTableInputFormat
                  -MultiTableInputFormatBase
                  -MultiTableOutputFormat
                  -MultiTableSnapshotInputFormat
                  -MultiTableSnapshotInputFormat
                  -Mutation
                  -MutationSerialization
                  -NamespaceDescriptor
                  -NamespaceDescriptor.Builder
                  -NamespaceExistException
                  -NamespaceNotFoundException
                  -NettyRpcClientConfigHelper
                  -NoServerForRegionException
                  -NoSuchColumnFamilyException
                  -NotAllMetaRegionsOnlineException
                  -NotServingRegionException
                  -NullComparator
                  -Operation
                  -OperationWithAttributes
                  -Order
                  -OrderedBlob
                  -OrderedBlobVar
                  -OrderedBytes
                  -OrderedBytesBase
                  -OrderedFloat32
                  -OrderedFloat64
                  -OrderedInt16
                  -OrderedInt32
                  -OrderedInt64
                  -OrderedInt8
                  -OrderedNumeric
                  -OrderedString
                  -PageFilter
                  -Pair
                  -PairOfSameType
                  -ParseConstants
                  -ParseFilter
                  -PBType
                  -PleaseHoldException
                  -PositionedByteRange
                  -PreemptiveFastFailException
                  -PrefixFilter
                  -Put
                  -PutCombiner
                  -PutSortReducer
                  

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

                  http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/org/apache/hadoop/hbase/MasterNotRunningException.html
                  --
                  diff --git a/apidocs/org/apache/hadoop/hbase/MasterNotRunningException.html 
                  b/apidocs/org/apache/hadoop/hbase/MasterNotRunningException.html
                  index f6b49a7..23a0240 100644
                  --- a/apidocs/org/apache/hadoop/hbase/MasterNotRunningException.html
                  +++ b/apidocs/org/apache/hadoop/hbase/MasterNotRunningException.html
                  @@ -1,6 +1,6 @@
                   http://www.w3.org/TR/html4/loose.dtd;>
                   
                  -
                  +
                   
                   
                   
                  @@ -20,38 +20,38 @@
                   //-->
                   
                   
                  -您的浏览器已禁用 JavaScript。
                  +JavaScript is disabled on your browser.
                   
                   
                   
                   
                   
                  -跳过导航链接
                  +Skip navigation links
                   
                   
                   
                  -
                  -概览
                  -程序包
                  -ç±»
                  -使用
                  -树
                  -已过时
                  -索引
                  -帮助
                  +
                  +Overview
                  +Package
                  +Class
                  +Use
                  +Tree
                  +Deprecated
                  +Index
                  +Help
                   
                   
                   
                   
                  -上一个类
                  -下一个类
                  +PrevClass
                  +NextClass
                   
                   
                  -框架
                  -无框架
                  +Frames
                  +NoFrames
                   
                   
                  -所有类
                  +AllClasses
                   
                   
                   
                   
                  org.apache.hadoop.hbase
                  -

                  ç±» MasterNotRunningException

                  +

                  Class MasterNotRunningException

                    -
                  • https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"; title="java.lang中的类或接口">java.lang.Object
                  • +
                  • https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true"; title="class or interface in java.lang">java.lang.Object
                    • -
                    • https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true"; title="java.lang中的类或接口">java.lang.Throwable
                    • +
                    • https://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true"; title="class or interface in java.lang">java.lang.Throwable
                      • -
                      • https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true"; title="java.lang中的类或接口">java.lang.Exception
                      • +
                      • https://docs.oracle.com/javase/8/docs/api/java/lang/Exception.html?is-external=true"; title="class or interface in java.lang">java.lang.Exception
                        • -
                        • https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true"; title="java.io中的类或接口">java.io.IOException
                        • +
                        • https://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true"; title="class or interface in java.io">java.io.IOException
                          • -
                          • org.apache.hadoop.hbase.HBaseIOException
                          • +
                          • [50/51] [partial] hbase-site git commit: Published site at e66a6603e36ecd67237ca16acd5e2de03f0d372d.
                            http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apache_hbase_reference_guide.pdf
                            --
                            diff --git a/apache_hbase_reference_guide.pdf b/apache_hbase_reference_guide.pdf
                            index da70f46..d67a327 100644
                            --- a/apache_hbase_reference_guide.pdf
                            +++ b/apache_hbase_reference_guide.pdf
                            @@ -5,8 +5,8 @@
                             /Author (Apache HBase Team)
                             /Creator (Asciidoctor PDF 1.5.0.alpha.15, based on Prawn 2.2.2)
                             /Producer (Apache HBase Team)
                            -/ModDate (D:20180720082544-06'00')
                            -/CreationDate (D:20180720092821-06'00')
                            +/ModDate (D:20180720013941+00'00')
                            +/CreationDate (D:20180720015517+00'00')
                             >>
                             endobj
                             2 0 obj
                            
                            
                            

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

                            http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/org/apache/hadoop/hbase/HRegionInfo.html
                            --
                            diff --git a/apidocs/org/apache/hadoop/hbase/HRegionInfo.html 
                            b/apidocs/org/apache/hadoop/hbase/HRegionInfo.html
                            index cb3cceb..1655e52 100644
                            --- a/apidocs/org/apache/hadoop/hbase/HRegionInfo.html
                            +++ b/apidocs/org/apache/hadoop/hbase/HRegionInfo.html
                            @@ -1,6 +1,6 @@
                             http://www.w3.org/TR/html4/loose.dtd;>
                             
                            -
                            +
                             
                             
                             
                            @@ -19,45 +19,45 @@
                             }
                             //-->
                             var methods = 
                            {"i0":41,"i1":42,"i2":42,"i3":42,"i4":41,"i5":42,"i6":42,"i7":42,"i8":42,"i9":42,"i10":42,"i11":42,"i12":42,"i13":42,"i14":42,"i15":41,"i16":41,"i17":42,"i18":41,"i19":42,"i20":41,"i21":42,"i22":41,"i23":42,"i24":42,"i25":42,"i26":42,"i27":42,"i28":42,"i29":41,"i30":41,"i31":41,"i32":41,"i33":41,"i34":42,"i35":42,"i36":42,"i37":42,"i38":42};
                            -var tabs = 
                            {65535:["t0","所有方法"],1:["t1","静态方法"],2:["t2","实例方法"],8:["t4","å
                            …·ä½“方法"],32:["t6","已过时的方法"]};
                            +var tabs = {65535:["t0","All Methods"],1:["t1","Static 
                            Methods"],2:["t2","Instance Methods"],8:["t4","Concrete 
                            Methods"],32:["t6","Deprecated Methods"]};
                             var altColor = "altColor";
                             var rowColor = "rowColor";
                             var tableTab = "tableTab";
                             var activeTableTab = "activeTableTab";
                             
                             
                            -您的浏览器已禁用 JavaScript。
                            +JavaScript is disabled on your browser.
                             
                             
                             
                             
                             
                            -跳过导航链接
                            +Skip navigation links
                             
                             
                             
                            -
                            -概览
                            -程序包
                            -ç±»
                            -使用
                            -树
                            -已过时
                            -索引
                            -帮助
                            +
                            +Overview
                            +Package
                            +Class
                            +Use
                            +Tree
                            +Deprecated
                            +Index
                            +Help
                             
                             
                             
                             
                            -上一个类
                            -下一个类
                            +PrevClass
                            +NextClass
                             
                             
                            -框架
                            -无框架
                            +Frames
                            +NoFrames
                             
                             
                            -所有类
                            +AllClasses
                             
                             
                             

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

                            http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/index.html
                            --
                            diff --git a/apidocs/index.html b/apidocs/index.html
                            index bc6cc62..35f78d4 100644
                            --- a/apidocs/index.html
                            +++ b/apidocs/index.html
                            @@ -1,6 +1,6 @@
                             http://www.w3.org/TR/html4/frameset.dtd;>
                             
                            -
                            +
                             
                             
                             
                            @@ -61,16 +61,16 @@
                             
                             
                             
                            -
                            -
                            +
                            +
                             
                            -
                            +
                             
                             
                            -您的浏览器已禁用 JavaScript。
                            +JavaScript is disabled on your browser.
                             
                            -框架预警
                            -请使用框架功能查看此文档。如果看到此消息, 
                            则表明您使用的是不支持框架的 Web 客户机。链接到非框架版本。
                            +Frame Alert
                            +This document is designed to be viewed using the frames feature. If you see 
                            this message, you are using a non-frame-capable web client. Link to Non-frame version.
                             
                             
                             
                            
                            http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/org/apache/hadoop/hbase/AuthUtil.html
                            --
                            diff --git a/apidocs/org/apache/hadoop/hbase/AuthUtil.html 
                            b/apidocs/org/apache/hadoop/hbase/AuthUtil.html
                            index 6a42536..58f6135 100644
                            --- a/apidocs/org/apache/hadoop/hbase/AuthUtil.html
                            +++ b/apidocs/org/apache/hadoop/hbase/AuthUtil.html
                            @@ -1,6 +1,6 @@
                             http://www.w3.org/TR/html4/loose.dtd;>
                             
                            -
                            +
                             
                             
                             
                            @@ -19,45 +19,45 @@
                             }
                             //-->
                             var methods = {"i0":9};
                            -var tabs = {65535:["t0","所有方法"],1:["t1","静态方法"],8:["t4","å…
                            ·ä½“方法"]};
                            +var tabs = {65535:["t0","All Methods"],1:["t1","Static 
                            Methods"],8:["t4","Concrete Methods"]};
                             var altColor = "altColor";
                             var rowColor = "rowColor";
                             var tableTab = "tableTab";
                             var activeTableTab = "activeTableTab";
                             
                             
                            -您的浏览器已禁用 JavaScript。
                            +JavaScript is disabled on your browser.
                             
                             
                             
                             
                             
                            -跳过导航链接
                            +Skip navigation links
                             
                             
                             
                            -
                            -概览
                            -程序包
                            -ç±»
                            -使用
                            -树
                            -已过时
                            -索引
                            -帮助
                            +
                            +Overview
                            +Package
                            +Class
                            +Use
                            +Tree
                            +Deprecated
                            +Index
                            +Help
                             
                             
                             
                             
                            -上一个类
                            -下一个类
                            +PrevClass
                            +NextClass
                             
                             
                            -框架
                            -无框架
                            +Frames
                            +NoFrames
                             
                             
                            -所有类
                            +AllClasses
                             
                             
                             
                             
                            org.apache.hadoop.hbase
                            -

                            ç±» AuthUtil

                            +

                            Class AuthUtil

                            Utility methods for helping with security tasks. Downstream users may rely on this class to handle authenticating via keytab where long running services need access to a secure HBase cluster. @@ -157,15 +157,15 @@ extends

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

                            http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/com/google/protobuf/package-frame.html
                            --
                            diff --git a/apidocs/com/google/protobuf/package-frame.html 
                            b/apidocs/com/google/protobuf/package-frame.html
                            index d8785ab..af80cd1 100644
                            --- a/apidocs/com/google/protobuf/package-frame.html
                            +++ b/apidocs/com/google/protobuf/package-frame.html
                            @@ -1,6 +1,6 @@
                             http://www.w3.org/TR/html4/loose.dtd;>
                             
                            -
                            +
                             
                             
                             
                            
                            http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0c6f447e/apidocs/com/google/protobuf/package-summary.html
                            --
                            diff --git a/apidocs/com/google/protobuf/package-summary.html 
                            b/apidocs/com/google/protobuf/package-summary.html
                            index 4bf1f3d..3d5ae01 100644
                            --- a/apidocs/com/google/protobuf/package-summary.html
                            +++ b/apidocs/com/google/protobuf/package-summary.html
                            @@ -1,6 +1,6 @@
                             http://www.w3.org/TR/html4/loose.dtd;>
                             
                            -
                            +
                             
                             
                             
                            @@ -20,38 +20,38 @@
                             //-->
                             
                             
                            -您的浏览器已禁用 JavaScript。
                            +JavaScript is disabled on your browser.
                             
                             
                             
                             
                             
                            -跳过导航链接
                            +Skip navigation links
                             
                             
                             
                            -
                            -概览
                            -程序包
                            -ç±»
                            -使用
                            -树
                            -已过时
                            -索引
                            -帮助
                            +
                            +Overview
                            +Package
                            +Class
                            +Use
                            +Tree
                            +Deprecated
                            +Index
                            +Help
                             
                             
                             
                             
                            -上一个程序包
                            -下一个程序包
                            
                            +PrevPackage
                            +NextPackage
                             
                             
                            -框架
                            -无框架
                            +Frames
                            +NoFrames
                             
                             
                            -所有类
                            +AllClasses
                             
                             
                             
                             
                            -

                            程序包 com.google.protobuf

                            +

                            Package com.google.protobuf