hbase git commit: HBASE-13868 Correct "Disable automatic splitting" section in HBase book

2017-09-09 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/master 78d9b7ffa -> d22a05084


HBASE-13868 Correct "Disable automatic splitting" section in HBase book


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

Branch: refs/heads/master
Commit: d22a05084ae18bdf27471e6d59d86f51c9d8721c
Parents: 78d9b7f
Author: Chia-Ping Tsai 
Authored: Sat Sep 9 05:46:38 2017 +0800
Committer: Chia-Ping Tsai 
Committed: Sat Sep 9 15:00:22 2017 +0800

--
 src/main/asciidoc/_chapters/configuration.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/d22a0508/src/main/asciidoc/_chapters/configuration.adoc
--
diff --git a/src/main/asciidoc/_chapters/configuration.adoc 
b/src/main/asciidoc/_chapters/configuration.adoc
index 23d1f8f..423ee6b 100644
--- a/src/main/asciidoc/_chapters/configuration.adoc
+++ b/src/main/asciidoc/_chapters/configuration.adoc
@@ -788,7 +788,7 @@ Manual splitting can mitigate region creation and movement 
under load.
 It also makes it so region boundaries are known and invariant (if you disable 
region splitting). If you use manual splits, it is easier doing staggered, 
time-based major compactions to spread out your network IO load.
 
 .Disable Automatic Splitting
-To disable automatic splitting, set `hbase.hregion.max.filesize` to a very 
large value, such as `100 GB` It is not recommended to set it to its absolute 
maximum value of `Long.MAX_VALUE`.
+To disable automatic splitting, you can set region split policy in either 
cluster configuration or table configuration to be 
`org.apache.hadoop.hbase.regionserver.DisabledRegionSplitPolicy`
 
 .Automatic Splitting Is Recommended
 [NOTE]



hbase git commit: HBASE-18718 Document the coprocessor.Export

2017-09-09 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/master d22a05084 -> d782ae820


HBASE-18718 Document the coprocessor.Export


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

Branch: refs/heads/master
Commit: d782ae820f7226d14757ba664da91e532babe309
Parents: d22a050
Author: Chia-Ping Tsai 
Authored: Sat Sep 9 15:16:14 2017 +0800
Committer: Chia-Ping Tsai 
Committed: Sat Sep 9 15:16:14 2017 +0800

--
 src/main/asciidoc/_chapters/ops_mgt.adoc | 46 ++-
 1 file changed, 45 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/d782ae82/src/main/asciidoc/_chapters/ops_mgt.adoc
--
diff --git a/src/main/asciidoc/_chapters/ops_mgt.adoc 
b/src/main/asciidoc/_chapters/ops_mgt.adoc
index 771e3be..4a9815c 100644
--- a/src/main/asciidoc/_chapters/ops_mgt.adoc
+++ b/src/main/asciidoc/_chapters/ops_mgt.adoc
@@ -444,12 +444,56 @@ See Jonathan Hsieh's 
link:https://blog.cloudera.com/blog/2012/06/online-hbase-ba
 === Export
 
 Export is a utility that will dump the contents of table to HDFS in a sequence 
file.
-Invoke via:
+The Export can be run via a Coprocessor Endpoint or MapReduce. Invoke via:
 
+*mapreduce-based Export*
 
 $ bin/hbase org.apache.hadoop.hbase.mapreduce.Export   
[ [ []]]
 
 
+*endpoint-based Export*
+
+$ bin/hbase org.apache.hadoop.hbase.coprocessor.Export   
[ [ []]]
+
+
+*The Comparison of Endpoint-based Export And Mapreduce-based Export*
+|===
+||Endpoint-based Export|Mapreduce-based Export
+
+|HBase version requirement
+|2.0+
+|0.2.1+
+
+|Maven dependency
+|hbase-endpoint
+|hbase-mapreduce (2.0+), hbase-server(prior to 2.0)
+
+|Requirement before dump
+|mount the endpoint.Export on the target table
+|deploy the MapReduce framework
+
+|Read latency
+|low, directly read the data from region
+|normal, traditional RPC scan
+
+|Read Scalability
+|depend on number of regions
+|depend on number of mappers (see TableInputFormatBase#getSplits)
+
+|Timeout
+|operation timeout. configured by hbase.client.operation.timeout
+|scan timeout. configured by hbase.client.scanner.timeout.period
+
+|Permission requirement
+|READ, EXECUTE
+|READ
+
+|Fault tolerance
+|no
+|depend on MapReduce
+|===
+
+
 NOTE: To see usage instructions, run the command with no options. Available 
options include
 specifying column families and applying filters during the export.
 



hbase git commit: HBASE-18783 Declare the builder of ClusterStatus as IA.Private, and remove the Writables from ClusterStatus

2017-09-09 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/master d782ae820 -> 64fe24e68


HBASE-18783 Declare the builder of ClusterStatus as IA.Private, and remove the 
Writables from ClusterStatus


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

Branch: refs/heads/master
Commit: 64fe24e687a7255f0d2867625b62c6ba7737c5d5
Parents: d782ae8
Author: Chia-Ping Tsai 
Authored: Sat Sep 9 04:39:57 2017 +0800
Committer: Chia-Ping Tsai 
Committed: Sat Sep 9 15:51:32 2017 +0800

--
 .../org/apache/hadoop/hbase/ClusterStatus.java  | 29 
 1 file changed, 12 insertions(+), 17 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/64fe24e6/hbase-client/src/main/java/org/apache/hadoop/hbase/ClusterStatus.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ClusterStatus.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ClusterStatus.java
index d12ad0d..c116bb4 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/ClusterStatus.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/ClusterStatus.java
@@ -27,11 +27,9 @@ import java.util.Map;
 
 import org.apache.hadoop.hbase.classification.InterfaceAudience;
 import org.apache.hadoop.hbase.master.RegionState;
-import org.apache.hadoop.io.VersionedWritable;
 
 import com.google.common.base.Objects;
 
-
 /**
  * Status information on the HBase cluster.
  * 
@@ -70,17 +68,9 @@ import com.google.common.base.Objects;
  * 
  */
 @InterfaceAudience.Public
-public class ClusterStatus extends VersionedWritable {
-  /**
-   * Version for object serialization.  Incremented for changes in serialized
-   * representation.
-   * 
-   *   0 Initial version
-   *   1 Added cluster ID
-   *   2 Added Map of ServerName to ServerLoad
-   *   3 Added master and backupMasters
-   * 
-   */
+public class ClusterStatus {
+
+  // TODO: remove this in 3.0
   private static final byte VERSION = 2;
 
   private String hbaseVersion;
@@ -209,8 +199,7 @@ public class ClusterStatus extends VersionedWritable {
 }
 ClusterStatus other = (ClusterStatus) o;
 //TODO Override the equals() methods in ServerLoad.
-return (getVersion() == other.getVersion()) &&
-  Objects.equal(getHBaseVersion(), other.getHBaseVersion()) &&
+return Objects.equal(getHBaseVersion(), other.getHBaseVersion()) &&
   Objects.equal(this.liveServers, other.liveServers) &&
   getDeadServerNames().containsAll(other.getDeadServerNames()) &&
   Arrays.equals(getMasterCoprocessors(), other.getMasterCoprocessors()) &&
@@ -222,11 +211,16 @@ public class ClusterStatus extends VersionedWritable {
* @see java.lang.Object#hashCode()
*/
   public int hashCode() {
-return VERSION + Objects.hashCode(hbaseVersion, liveServers, deadServers,
+return Objects.hashCode(hbaseVersion, liveServers, deadServers,
   master, backupMasters);
   }
 
-  /** @return the object version number */
+  /**
+   *
+   * @return the object version number
+   * @deprecated As of release 2.0.0, this will be removed in HBase 3.0.0
+   */
+  @Deprecated
   public byte getVersion() {
 return VERSION;
   }
@@ -369,6 +363,7 @@ public class ClusterStatus extends VersionedWritable {
   /**
* Builder for construct a ClusterStatus.
*/
+  @InterfaceAudience.Private
   public static class Builder {
 private String hbaseVersion = null;
 private Map liveServers = null;



hbase git commit: HBASE-18783 Declare the builder of ClusterStatus as IA.Private, and remove the Writables from ClusterStatus

2017-09-09 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/branch-2 6970c1e9e -> 26b009f1d


HBASE-18783 Declare the builder of ClusterStatus as IA.Private, and remove the 
Writables from ClusterStatus


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

Branch: refs/heads/branch-2
Commit: 26b009f1d101ab3a73d6e262d911ee0d177a0055
Parents: 6970c1e
Author: Chia-Ping Tsai 
Authored: Sat Sep 9 04:39:57 2017 +0800
Committer: Chia-Ping Tsai 
Committed: Sat Sep 9 15:55:21 2017 +0800

--
 .../org/apache/hadoop/hbase/ClusterStatus.java  | 29 
 1 file changed, 12 insertions(+), 17 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/26b009f1/hbase-client/src/main/java/org/apache/hadoop/hbase/ClusterStatus.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ClusterStatus.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ClusterStatus.java
index d12ad0d..c116bb4 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/ClusterStatus.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/ClusterStatus.java
@@ -27,11 +27,9 @@ import java.util.Map;
 
 import org.apache.hadoop.hbase.classification.InterfaceAudience;
 import org.apache.hadoop.hbase.master.RegionState;
-import org.apache.hadoop.io.VersionedWritable;
 
 import com.google.common.base.Objects;
 
-
 /**
  * Status information on the HBase cluster.
  * 
@@ -70,17 +68,9 @@ import com.google.common.base.Objects;
  * 
  */
 @InterfaceAudience.Public
-public class ClusterStatus extends VersionedWritable {
-  /**
-   * Version for object serialization.  Incremented for changes in serialized
-   * representation.
-   * 
-   *   0 Initial version
-   *   1 Added cluster ID
-   *   2 Added Map of ServerName to ServerLoad
-   *   3 Added master and backupMasters
-   * 
-   */
+public class ClusterStatus {
+
+  // TODO: remove this in 3.0
   private static final byte VERSION = 2;
 
   private String hbaseVersion;
@@ -209,8 +199,7 @@ public class ClusterStatus extends VersionedWritable {
 }
 ClusterStatus other = (ClusterStatus) o;
 //TODO Override the equals() methods in ServerLoad.
-return (getVersion() == other.getVersion()) &&
-  Objects.equal(getHBaseVersion(), other.getHBaseVersion()) &&
+return Objects.equal(getHBaseVersion(), other.getHBaseVersion()) &&
   Objects.equal(this.liveServers, other.liveServers) &&
   getDeadServerNames().containsAll(other.getDeadServerNames()) &&
   Arrays.equals(getMasterCoprocessors(), other.getMasterCoprocessors()) &&
@@ -222,11 +211,16 @@ public class ClusterStatus extends VersionedWritable {
* @see java.lang.Object#hashCode()
*/
   public int hashCode() {
-return VERSION + Objects.hashCode(hbaseVersion, liveServers, deadServers,
+return Objects.hashCode(hbaseVersion, liveServers, deadServers,
   master, backupMasters);
   }
 
-  /** @return the object version number */
+  /**
+   *
+   * @return the object version number
+   * @deprecated As of release 2.0.0, this will be removed in HBase 3.0.0
+   */
+  @Deprecated
   public byte getVersion() {
 return VERSION;
   }
@@ -369,6 +363,7 @@ public class ClusterStatus extends VersionedWritable {
   /**
* Builder for construct a ClusterStatus.
*/
+  @InterfaceAudience.Private
   public static class Builder {
 private String hbaseVersion = null;
 private Map liveServers = null;



hbase git commit: HBASE-18662 The default values for many configuration items in the code are not consistent with hbase-default.xml

2017-09-09 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/branch-2 26b009f1d -> 89f978beb


HBASE-18662 The default values for many configuration items in the code are not 
consistent with hbase-default.xml

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

Branch: refs/heads/branch-2
Commit: 89f978beb8710e410dbc509162a4349dbb52e5fb
Parents: 26b009f
Author: Yun Zhao 
Authored: Sat Sep 9 18:10:04 2017 +0800
Committer: Chia-Ping Tsai 
Committed: Sat Sep 9 18:11:14 2017 +0800

--
 .../apache/hadoop/hbase/client/ConnectionConfiguration.java  | 2 +-
 .../src/main/java/org/apache/hadoop/hbase/HConstants.java| 8 
 hbase-common/src/main/resources/hbase-default.xml| 2 +-
 .../main/java/org/apache/hadoop/hbase/rest/RESTServer.java   | 3 ++-
 .../main/java/org/apache/hadoop/hbase/http/HttpServer.java   | 8 
 .../main/java/org/apache/hadoop/hbase/ipc/RpcExecutor.java   | 2 +-
 .../hbase/master/normalizer/RegionNormalizerChore.java   | 2 +-
 .../java/org/apache/hadoop/hbase/regionserver/HStore.java| 2 +-
 .../apache/hadoop/hbase/regionserver/RegionSplitPolicy.java  | 3 ++-
 .../org/apache/hadoop/hbase/regionserver/wal/FSHLog.java | 2 +-
 .../main/java/org/apache/hadoop/hbase/util/FSHDFSUtils.java  | 4 ++--
 src/main/asciidoc/_chapters/hbase-default.adoc   | 7 ---
 12 files changed, 24 insertions(+), 21 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/89f978be/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
index 6727929..ec3733d 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
@@ -31,7 +31,7 @@ public class ConnectionConfiguration {
   public static final String WRITE_BUFFER_SIZE_KEY = 
"hbase.client.write.buffer";
   public static final long WRITE_BUFFER_SIZE_DEFAULT = 2097152;
   public static final String MAX_KEYVALUE_SIZE_KEY = 
"hbase.client.keyvalue.maxsize";
-  public static final int MAX_KEYVALUE_SIZE_DEFAULT = -1;
+  public static final int MAX_KEYVALUE_SIZE_DEFAULT = 10485760;
 
   private final long writeBufferSize;
   private final int metaOperationTimeout;

http://git-wip-us.apache.org/repos/asf/hbase/blob/89f978be/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
--
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
index 8ed3508..dc9e4e0 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
@@ -244,7 +244,7 @@ public final class HConstants {
   public static final String ZK_SESSION_TIMEOUT = "zookeeper.session.timeout";
 
   /** Default value for ZooKeeper session timeout */
-  public static final int DEFAULT_ZK_SESSION_TIMEOUT = 180 * 1000;
+  public static final int DEFAULT_ZK_SESSION_TIMEOUT = 90 * 1000;
 
   /** Parameter name for port region server listens on. */
   public static final String REGIONSERVER_PORT = "hbase.regionserver.port";
@@ -752,7 +752,7 @@ public final class HConstants {
   /**
* Default value of {@link #HBASE_CLIENT_MAX_PERSERVER_TASKS}.
*/
-  public static final int DEFAULT_HBASE_CLIENT_MAX_PERSERVER_TASKS = 2;
+  public static final int DEFAULT_HBASE_CLIENT_MAX_PERSERVER_TASKS = 5;
 
   /**
* The maximum number of concurrent connections the client will maintain to 
a single
@@ -798,7 +798,7 @@ public final class HConstants {
   /**
* Default value of {@link #HBASE_CLIENT_RETRIES_NUMBER}.
*/
-  public static final int DEFAULT_HBASE_CLIENT_RETRIES_NUMBER = 31;
+  public static final int DEFAULT_HBASE_CLIENT_RETRIES_NUMBER = 35;
 
   /**
* Parameter name to set the default scanner caching for all clients.
@@ -1356,7 +1356,7 @@ public final class HConstants {
 
   public static final String SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT =
   "hbase.snapshot.restore.take.failsafe.snapshot";
-  public static final boolean DEFAULT_SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT 
= false;
+  public static final boolean DEFAULT_SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT 
= true;
 
   public static final String SNAPSHOT_R

hbase git commit: HBASE-18662 The default values for many configuration items in the code are not consistent with hbase-default.xml

2017-09-09 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/master 64fe24e68 -> 603503570


HBASE-18662 The default values for many configuration items in the code are not 
consistent with hbase-default.xml

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

Branch: refs/heads/master
Commit: 60350357076af2312706e13ad193c0596ee9f340
Parents: 64fe24e
Author: Yun Zhao 
Authored: Sat Sep 9 18:10:04 2017 +0800
Committer: Chia-Ping Tsai 
Committed: Sat Sep 9 18:14:34 2017 +0800

--
 .../apache/hadoop/hbase/client/ConnectionConfiguration.java  | 2 +-
 .../src/main/java/org/apache/hadoop/hbase/HConstants.java| 8 
 hbase-common/src/main/resources/hbase-default.xml| 2 +-
 .../main/java/org/apache/hadoop/hbase/rest/RESTServer.java   | 3 ++-
 .../main/java/org/apache/hadoop/hbase/http/HttpServer.java   | 8 
 .../main/java/org/apache/hadoop/hbase/ipc/RpcExecutor.java   | 2 +-
 .../hbase/master/normalizer/RegionNormalizerChore.java   | 2 +-
 .../java/org/apache/hadoop/hbase/regionserver/HStore.java| 2 +-
 .../apache/hadoop/hbase/regionserver/RegionSplitPolicy.java  | 3 ++-
 .../org/apache/hadoop/hbase/regionserver/wal/FSHLog.java | 2 +-
 .../main/java/org/apache/hadoop/hbase/util/FSHDFSUtils.java  | 4 ++--
 src/main/asciidoc/_chapters/hbase-default.adoc   | 7 ---
 12 files changed, 24 insertions(+), 21 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/60350357/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
index 6727929..ec3733d 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
@@ -31,7 +31,7 @@ public class ConnectionConfiguration {
   public static final String WRITE_BUFFER_SIZE_KEY = 
"hbase.client.write.buffer";
   public static final long WRITE_BUFFER_SIZE_DEFAULT = 2097152;
   public static final String MAX_KEYVALUE_SIZE_KEY = 
"hbase.client.keyvalue.maxsize";
-  public static final int MAX_KEYVALUE_SIZE_DEFAULT = -1;
+  public static final int MAX_KEYVALUE_SIZE_DEFAULT = 10485760;
 
   private final long writeBufferSize;
   private final int metaOperationTimeout;

http://git-wip-us.apache.org/repos/asf/hbase/blob/60350357/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
--
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
index dd7e5ce..55878c6 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
@@ -229,7 +229,7 @@ public final class HConstants {
   public static final String ZK_SESSION_TIMEOUT = "zookeeper.session.timeout";
 
   /** Default value for ZooKeeper session timeout */
-  public static final int DEFAULT_ZK_SESSION_TIMEOUT = 180 * 1000;
+  public static final int DEFAULT_ZK_SESSION_TIMEOUT = 90 * 1000;
 
   /** Parameter name for port region server listens on. */
   public static final String REGIONSERVER_PORT = "hbase.regionserver.port";
@@ -719,7 +719,7 @@ public final class HConstants {
   /**
* Default value of {@link #HBASE_CLIENT_MAX_PERSERVER_TASKS}.
*/
-  public static final int DEFAULT_HBASE_CLIENT_MAX_PERSERVER_TASKS = 2;
+  public static final int DEFAULT_HBASE_CLIENT_MAX_PERSERVER_TASKS = 5;
 
   /**
* The maximum number of concurrent connections the client will maintain to 
a single
@@ -765,7 +765,7 @@ public final class HConstants {
   /**
* Default value of {@link #HBASE_CLIENT_RETRIES_NUMBER}.
*/
-  public static final int DEFAULT_HBASE_CLIENT_RETRIES_NUMBER = 31;
+  public static final int DEFAULT_HBASE_CLIENT_RETRIES_NUMBER = 35;
 
   /**
* Parameter name to set the default scanner caching for all clients.
@@ -1309,7 +1309,7 @@ public final class HConstants {
 
   public static final String SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT =
   "hbase.snapshot.restore.take.failsafe.snapshot";
-  public static final boolean DEFAULT_SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT 
= false;
+  public static final boolean DEFAULT_SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT 
= true;
 
   public static final String SNAPSHOT_RESTO

hbase git commit: Revert "HBASE-18662 The default values for many configuration items in the code are not consistent with hbase-default.xml" need more checks This reverts commit 60350357076af2312706e1

2017-09-09 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/master 603503570 -> 2359ef518


Revert "HBASE-18662 The default values for many configuration items in the code 
are not consistent with hbase-default.xml"
need more checks
This reverts commit 60350357076af2312706e13ad193c0596ee9f340.


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

Branch: refs/heads/master
Commit: 2359ef518a0863bc5307add7931aa8a0f9cad004
Parents: 6035035
Author: Chia-Ping Tsai 
Authored: Sat Sep 9 22:54:38 2017 +0800
Committer: Chia-Ping Tsai 
Committed: Sat Sep 9 22:54:38 2017 +0800

--
 .../apache/hadoop/hbase/client/ConnectionConfiguration.java  | 2 +-
 .../src/main/java/org/apache/hadoop/hbase/HConstants.java| 8 
 hbase-common/src/main/resources/hbase-default.xml| 2 +-
 .../main/java/org/apache/hadoop/hbase/rest/RESTServer.java   | 3 +--
 .../main/java/org/apache/hadoop/hbase/http/HttpServer.java   | 8 
 .../main/java/org/apache/hadoop/hbase/ipc/RpcExecutor.java   | 2 +-
 .../hbase/master/normalizer/RegionNormalizerChore.java   | 2 +-
 .../java/org/apache/hadoop/hbase/regionserver/HStore.java| 2 +-
 .../apache/hadoop/hbase/regionserver/RegionSplitPolicy.java  | 3 +--
 .../org/apache/hadoop/hbase/regionserver/wal/FSHLog.java | 2 +-
 .../main/java/org/apache/hadoop/hbase/util/FSHDFSUtils.java  | 4 ++--
 src/main/asciidoc/_chapters/hbase-default.adoc   | 7 +++
 12 files changed, 21 insertions(+), 24 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/2359ef51/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
index ec3733d..6727929 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
@@ -31,7 +31,7 @@ public class ConnectionConfiguration {
   public static final String WRITE_BUFFER_SIZE_KEY = 
"hbase.client.write.buffer";
   public static final long WRITE_BUFFER_SIZE_DEFAULT = 2097152;
   public static final String MAX_KEYVALUE_SIZE_KEY = 
"hbase.client.keyvalue.maxsize";
-  public static final int MAX_KEYVALUE_SIZE_DEFAULT = 10485760;
+  public static final int MAX_KEYVALUE_SIZE_DEFAULT = -1;
 
   private final long writeBufferSize;
   private final int metaOperationTimeout;

http://git-wip-us.apache.org/repos/asf/hbase/blob/2359ef51/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
--
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
index 55878c6..dd7e5ce 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
@@ -229,7 +229,7 @@ public final class HConstants {
   public static final String ZK_SESSION_TIMEOUT = "zookeeper.session.timeout";
 
   /** Default value for ZooKeeper session timeout */
-  public static final int DEFAULT_ZK_SESSION_TIMEOUT = 90 * 1000;
+  public static final int DEFAULT_ZK_SESSION_TIMEOUT = 180 * 1000;
 
   /** Parameter name for port region server listens on. */
   public static final String REGIONSERVER_PORT = "hbase.regionserver.port";
@@ -719,7 +719,7 @@ public final class HConstants {
   /**
* Default value of {@link #HBASE_CLIENT_MAX_PERSERVER_TASKS}.
*/
-  public static final int DEFAULT_HBASE_CLIENT_MAX_PERSERVER_TASKS = 5;
+  public static final int DEFAULT_HBASE_CLIENT_MAX_PERSERVER_TASKS = 2;
 
   /**
* The maximum number of concurrent connections the client will maintain to 
a single
@@ -765,7 +765,7 @@ public final class HConstants {
   /**
* Default value of {@link #HBASE_CLIENT_RETRIES_NUMBER}.
*/
-  public static final int DEFAULT_HBASE_CLIENT_RETRIES_NUMBER = 35;
+  public static final int DEFAULT_HBASE_CLIENT_RETRIES_NUMBER = 31;
 
   /**
* Parameter name to set the default scanner caching for all clients.
@@ -1309,7 +1309,7 @@ public final class HConstants {
 
   public static final String SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT =
   "hbase.snapshot.restore.take.failsafe.snapshot";
-  public static final boolean DEFAULT_SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT 
= true;
+  public static final boolean DEFAULT_SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNA

hbase git commit: Revert "HBASE-18662 The default values for many configuration items in the code are not consistent with hbase-default.xml" need more checks This reverts commit 89f978beb8710e410dbc50

2017-09-09 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/branch-2 89f978beb -> 1ee492373


Revert "HBASE-18662 The default values for many configuration items in the code 
are not consistent with hbase-default.xml"
need more checks
This reverts commit 89f978beb8710e410dbc509162a4349dbb52e5fb.


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

Branch: refs/heads/branch-2
Commit: 1ee49237306f7ac119719a6dde421ad4aa85b98b
Parents: 89f978b
Author: Chia-Ping Tsai 
Authored: Sat Sep 9 22:55:33 2017 +0800
Committer: Chia-Ping Tsai 
Committed: Sat Sep 9 22:55:33 2017 +0800

--
 .../apache/hadoop/hbase/client/ConnectionConfiguration.java  | 2 +-
 .../src/main/java/org/apache/hadoop/hbase/HConstants.java| 8 
 hbase-common/src/main/resources/hbase-default.xml| 2 +-
 .../main/java/org/apache/hadoop/hbase/rest/RESTServer.java   | 3 +--
 .../main/java/org/apache/hadoop/hbase/http/HttpServer.java   | 8 
 .../main/java/org/apache/hadoop/hbase/ipc/RpcExecutor.java   | 2 +-
 .../hbase/master/normalizer/RegionNormalizerChore.java   | 2 +-
 .../java/org/apache/hadoop/hbase/regionserver/HStore.java| 2 +-
 .../apache/hadoop/hbase/regionserver/RegionSplitPolicy.java  | 3 +--
 .../org/apache/hadoop/hbase/regionserver/wal/FSHLog.java | 2 +-
 .../main/java/org/apache/hadoop/hbase/util/FSHDFSUtils.java  | 4 ++--
 src/main/asciidoc/_chapters/hbase-default.adoc   | 7 +++
 12 files changed, 21 insertions(+), 24 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/1ee49237/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
index ec3733d..6727929 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionConfiguration.java
@@ -31,7 +31,7 @@ public class ConnectionConfiguration {
   public static final String WRITE_BUFFER_SIZE_KEY = 
"hbase.client.write.buffer";
   public static final long WRITE_BUFFER_SIZE_DEFAULT = 2097152;
   public static final String MAX_KEYVALUE_SIZE_KEY = 
"hbase.client.keyvalue.maxsize";
-  public static final int MAX_KEYVALUE_SIZE_DEFAULT = 10485760;
+  public static final int MAX_KEYVALUE_SIZE_DEFAULT = -1;
 
   private final long writeBufferSize;
   private final int metaOperationTimeout;

http://git-wip-us.apache.org/repos/asf/hbase/blob/1ee49237/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
--
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
index dc9e4e0..8ed3508 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
@@ -244,7 +244,7 @@ public final class HConstants {
   public static final String ZK_SESSION_TIMEOUT = "zookeeper.session.timeout";
 
   /** Default value for ZooKeeper session timeout */
-  public static final int DEFAULT_ZK_SESSION_TIMEOUT = 90 * 1000;
+  public static final int DEFAULT_ZK_SESSION_TIMEOUT = 180 * 1000;
 
   /** Parameter name for port region server listens on. */
   public static final String REGIONSERVER_PORT = "hbase.regionserver.port";
@@ -752,7 +752,7 @@ public final class HConstants {
   /**
* Default value of {@link #HBASE_CLIENT_MAX_PERSERVER_TASKS}.
*/
-  public static final int DEFAULT_HBASE_CLIENT_MAX_PERSERVER_TASKS = 5;
+  public static final int DEFAULT_HBASE_CLIENT_MAX_PERSERVER_TASKS = 2;
 
   /**
* The maximum number of concurrent connections the client will maintain to 
a single
@@ -798,7 +798,7 @@ public final class HConstants {
   /**
* Default value of {@link #HBASE_CLIENT_RETRIES_NUMBER}.
*/
-  public static final int DEFAULT_HBASE_CLIENT_RETRIES_NUMBER = 35;
+  public static final int DEFAULT_HBASE_CLIENT_RETRIES_NUMBER = 31;
 
   /**
* Parameter name to set the default scanner caching for all clients.
@@ -1356,7 +1356,7 @@ public final class HConstants {
 
   public static final String SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT =
   "hbase.snapshot.restore.take.failsafe.snapshot";
-  public static final boolean DEFAULT_SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT 
= true;
+  public static final boolean DEFAULT_SNAPSHOT_RESTORE_TAKE_FAILSAFE

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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/org/apache/hadoop/hbase/package-tree.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/package-tree.html 
b/apidocs/org/apache/hadoop/hbase/package-tree.html
index ba71783..21a2ebd 100644
--- a/apidocs/org/apache/hadoop/hbase/package-tree.html
+++ b/apidocs/org/apache/hadoop/hbase/package-tree.html
@@ -85,6 +85,7 @@
 org.apache.hadoop.hbase.CellBuilderFactory
 org.apache.hadoop.hbase.CellUtil
 org.apache.hadoop.hbase.ChoreService
+org.apache.hadoop.hbase.ClusterStatus
 org.apache.hadoop.conf.Configuration (implements 
java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Iterable.html?is-external=true";
 title="class or interface in java.lang">Iterable, 
org.apache.hadoop.io.Writable)
 
 org.apache.hadoop.hbase.HBaseConfiguration
@@ -99,7 +100,6 @@
 org.apache.hadoop.hbase.LocalHBaseCluster
 org.apache.hadoop.hbase.NamespaceDescriptor
 org.apache.hadoop.hbase.NamespaceDescriptor.Builder
-org.apache.hadoop.hbase.ProcedureInfo 
(implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable)
 org.apache.hadoop.hbase.RegionLoad
 org.apache.hadoop.hbase.ScheduledChore 
(implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.html?is-external=true";
 title="class or interface in java.lang">Runnable)
 org.apache.hadoop.hbase.ServerLoad
@@ -156,11 +156,6 @@
 
 
 
-org.apache.hadoop.io.VersionedWritable (implements 
org.apache.hadoop.io.Writable)
-
-org.apache.hadoop.hbase.ClusterStatus
-
-
 
 
 
@@ -178,9 +173,9 @@
 
 org.apache.hadoop.hbase.MemoryCompactionPolicy
 org.apache.hadoop.hbase.KeepDeletedCells
+org.apache.hadoop.hbase.CompareOperator
 org.apache.hadoop.hbase.ProcedureState
 org.apache.hadoop.hbase.CellBuilderType
-org.apache.hadoop.hbase.CompareOperator
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/org/apache/hadoop/hbase/package-use.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/package-use.html 
b/apidocs/org/apache/hadoop/hbase/package-use.html
index 54d1cc3..79371c4 100644
--- a/apidocs/org/apache/hadoop/hbase/package-use.html
+++ b/apidocs/org/apache/hadoop/hbase/package-use.html
@@ -250,44 +250,39 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 NamespaceDescriptor.Builder 
 
 
-ProcedureInfo
-Procedure information
-
-
-
 ProcedureState
 POJO representing Procedure State
 
 
-
+
 RegionLoad
 Encapsulates per-region load metrics.
 
 
-
+
 RetryImmediatelyException 
 
-
+
 ScheduledChore
 ScheduledChore is a task performed on a period in 
hbase.
 
 
-
+
 ServerLoad
 This class is used for exporting current state of load on a 
RegionServer.
 
 
-
+
 ServerName
 Name of a particular incarnation of an HBase Server.
 
 
-
+
 Stoppable
 Implementers are Stoppable.
 
 
-
+
 TableName
 Immutable POJO class for representing a table name.
 
@@ -370,36 +365,31 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-ProcedureInfo
-Procedure information
-
-
-
 RegionException
 Thrown when something happens related to region 
handling.
 
 
-
+
 RegionLoad
 Encapsulates per-region load metrics.
 
 
-
+
 ServerName
 Name of a particular incarnation of an HBase Server.
 
 
-
+
 TableExistsException
 Thrown when a table exists but should not
 
 
-
+
 TableName
 Immutable POJO class for representing a table name.
 
 
-
+
 TableNotFoundException
 Thrown when a table can not be located
 
@@ -511,6 +501,11 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
  
 
 
+
+CompareOperator
+Generic set of comparison operators.
+
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/org/apache/hadoop/hbase/security/class-use/User.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/security/class-use/User.html 
b/apidocs/org/apache/hadoop/hbase/security/class-use/User.html
index 38099a9..f0eeedf 100644
--- a/apidocs/org/apache/hadoop/hbase/security/class-use/User.html
+++ b/apidocs/org/apache/hadoop/hbase/security/class-use/User.html
@@ -125,13 +125,6 @@
User user) 
 
 
-static boolean
-ProcedureInfo.isProcedureOwner(ProcedureInfo procInfo,
-User user)
-Check if the user is this procedure's owner
-
-
-
 HTableDescriptor
 HTableDescriptor.setOwner(User owner)
 Deprecated. 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/overview-tree.html
--
diff --git a/apidocs/overview-tree.html b/apidocs/overview-tree.html
index 33b044c..69629e2 100644
--- a/apidocs/overview-tree.html
+++ b/apidocs/overview-tree.html
@@ -195,6 +195,7 @@
 org.apache.hadoop.hbase.io.crypt

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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/org/apache/hadoop/hbase/filter/ParseFilter.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/filter/ParseFilter.html 
b/apidocs/org/apache/hadoop/hbase/filter/ParseFilter.html
index dfdd182..40fa469 100644
--- a/apidocs/org/apache/hadoop/hbase/filter/ParseFilter.html
+++ b/apidocs/org/apache/hadoop/hbase/filter/ParseFilter.html
@@ -18,8 +18,8 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":10,"i11":9,"i12":9,"i13":9,"i14":10,"i15":10,"i16":9,"i17":9,"i18":10,"i19":10,"i20":10,"i21":9,"i22":10,"i23":9,"i24":9};
-var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var methods = 
{"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":41,"i9":41,"i10":9,"i11":10,"i12":9,"i13":9,"i14":9,"i15":10,"i16":10,"i17":9,"i18":9,"i19":10,"i20":10,"i21":10,"i22":9,"i23":10,"i24":9,"i25":9};
+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";
@@ -110,7 +110,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Public
-public class ParseFilter
+public class ParseFilter
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 This class allows a user to specify a filter via a string
  The string is parsed using the methods of this class and
@@ -149,7 +149,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 Method Summary
 
-All Methods Static Methods Instance Methods Concrete Methods 
+All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
 
 Modifier and Type
 Method and Description
@@ -209,10 +209,22 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 static CompareFilter.CompareOp
 createCompareOp(byte[] compareOpAsByteArray)
-Takes a compareOperator symbol as a byte array and returns 
the corresponding CompareOperator
+Deprecated. 
+Since 2.0
+ 
+
 
 
 
+static CompareOperator
+createCompareOperator(byte[] compareOpAsByteArray)
+Deprecated. 
+Since 2.0
+ 
+
+
+
+
 static byte[]
 createUnescapdArgument(byte[] filterStringAsByteArray,
   int argumentStartIndex,
@@ -220,76 +232,76 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 Removes the single quote escaping a single quote - thus it 
returns an unescaped argument
 
 
-
+
 byte[]
 extractFilterSimpleExpression(byte[] filterStringAsByteArray,
  int filterExpressionStartOffset)
 Extracts a simple filter expression from the filter string 
given by the user
 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String>
 getAllFilters()
 Returns all known filters
 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in java.util">ArrayList
 getFilterArguments(byte[] filterStringAsByteArray)
 Returns the arguments of the filter from the filter 
string
 
 
-
+
 static byte[]
 getFilterName(byte[] filterStringAsByteArray)
 Returns the filter name given a simple filter 
expression
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">SetString>
 getSupportedFilters()
 Return a Set of filters supported by the Filter 
Language
 
 
-
+
 boolean
 hasHigherPriority(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer a,
  http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer b)
 Returns which operator has higher precedence
 
 
-
+
 static boolean
 isQuoteUnescaped(byte[] array,
 int quoteIndex)
 Returns a boolean indicating whether the quote was escaped 
or not
 
 
-
+
 static byte[][]
 parseComparator(byte[] comparator)
 Splits a column in comparatorType:comparatorValue form into 
separate byte arrays
 
 
-
+
 Filter
 parseFilterString(byte[] filterStringAsByteArray)
 Parses the filterString and constructs a filter using 
it
 
 
-
+
 Filter
 parseFilter

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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/src-html/org/apache/hadoop/hbase/filter/ValueFilter.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/filter/ValueFilter.html 
b/apidocs/src-html/org/apache/hadoop/hbase/filter/ValueFilter.html
index 8e53392..22ad865 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/filter/ValueFilter.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/filter/ValueFilter.html
@@ -31,103 +31,116 @@
 023import java.util.ArrayList;
 024
 025import org.apache.hadoop.hbase.Cell;
-026import 
org.apache.hadoop.hbase.classification.InterfaceAudience;
-027import 
org.apache.hadoop.hbase.exceptions.DeserializationException;
-028import 
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
-029import 
org.apache.hadoop.hbase.shaded.protobuf.generated.FilterProtos;
-030import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.InvalidProtocolBufferException;
-031
-032/**
-033 * This filter is used to filter based on 
column value. It takes an
-034 * operator (equal, greater, not equal, 
etc) and a byte [] comparator for the
-035 * cell value.
-036 * 

-037 * This filter can be wrapped with {@link WhileMatchFilter} and {@link SkipFilter} -038 * to add more control. -039 *

-040 * Multiple filters can be combined using {@link FilterList}. -041 *

-042 * To test the value of a single qualifier when scanning multiple qualifiers, -043 * use {@link SingleColumnValueFilter}. -044 */ -045@InterfaceAudience.Public -046public class ValueFilter extends CompareFilter { -047 -048 /** -049 * Constructor. -050 * @param valueCompareOp the compare op for value matching -051 * @param valueComparator the comparator for value matching -052 */ -053 public ValueFilter(final CompareOp valueCompareOp, -054 final ByteArrayComparable valueComparator) { -055super(valueCompareOp, valueComparator); -056 } -057 -058 @Override -059 public ReturnCode filterKeyValue(Cell v) { -060if (compareValue(this.compareOp, this.comparator, v)) { -061 return ReturnCode.SKIP; -062} -063return ReturnCode.INCLUDE; -064 } -065 -066 public static Filter createFilterFromArguments(ArrayList filterArguments) { -067@SuppressWarnings("rawtypes") // for arguments -068ArrayList arguments = CompareFilter.extractArguments(filterArguments); -069CompareOp compareOp = (CompareOp)arguments.get(0); -070ByteArrayComparable comparator = (ByteArrayComparable)arguments.get(1); -071return new ValueFilter(compareOp, comparator); -072 } -073 -074 /** -075 * @return The filter serialized using pb -076 */ -077 public byte [] toByteArray() { -078FilterProtos.ValueFilter.Builder builder = -079 FilterProtos.ValueFilter.newBuilder(); -080 builder.setCompareFilter(super.convert()); -081return builder.build().toByteArray(); -082 } -083 -084 /** -085 * @param pbBytes A pb serialized {@link ValueFilter} instance -086 * @return An instance of {@link ValueFilter} made from bytes -087 * @throws DeserializationException -088 * @see #toByteArray +026import org.apache.hadoop.hbase.CompareOperator; +027import org.apache.hadoop.hbase.classification.InterfaceAudience; +028import org.apache.hadoop.hbase.exceptions.DeserializationException; +029import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil; +030import org.apache.hadoop.hbase.shaded.protobuf.generated.FilterProtos; +031import org.apache.hadoop.hbase.shaded.com.google.protobuf.InvalidProtocolBufferException; +032 +033/** +034 * This filter is used to filter based on column value. It takes an +035 * operator (equal, greater, not equal, etc) and a byte [] comparator for the +036 * cell value. +037 *

+038 * This filter can be wrapped with {@link WhileMatchFilter} and {@link SkipFilter} +039 * to add more control. +040 *

+041 * Multiple filters can be combined using {@link FilterList}. +042 *

+043 * To test the value of a single qualifier when scanning multiple qualifiers, +044 * use {@link SingleColumnValueFilter}. +045 */ +046@InterfaceAudience.Public +047public class ValueFilter extends CompareFilter { +048 +049 /** +050 * Constructor. +051 * @param valueCompareOp the compare op for value matching +052 * @param valueComparator the comparator for value matching +053 * @deprecated Since 2.0.0. Will be removed in 3.0.0. +054 * Use {@link #ValueFilter(CompareOperator, ByteArrayComparable)} +055 */ +056 public ValueFilter(final CompareOp valueCompareOp, +057 final ByteArrayComparable valueComparator) { +058super(valueCompareOp, valueComparator); +059 } +060 +061 /** +062 * Constructor. +063 * @param valueCompareOp the compare op for value matching +064 * @param valueComparator the comparator for value matching +065 */ +066 public ValueFilter(final CompareOperator valueCompareOp, +067


hbase-site git commit: INFRA-10751 Empty commit

2017-09-09 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 1490b3abd -> 5da1e1854


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

Branch: refs/heads/asf-site
Commit: 5da1e185473324b497b4ab0042bcc0f68c366722
Parents: 1490b3a
Author: jenkins 
Authored: Sat Sep 9 15:14:14 2017 +
Committer: jenkins 
Committed: Sat Sep 9 15:14:14 2017 +

--

--




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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/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 d615a4c..d3817e7 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/AsyncHBaseAdmin.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/AsyncHBaseAdmin.html
@@ -114,7 +114,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Private
-public class AsyncHBaseAdmin
+public class AsyncHBaseAdmin
 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 AsyncAdmin
 The implementation of AsyncAdmin.
@@ -423,7 +423,7 @@ 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">CompletableFuture
-getClusterStatus(ClusterStatus.Options options) 
+getClusterStatus(http://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true";
 title="class or interface in java.util">EnumSet options) 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
@@ -450,89 +450,101 @@ 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">CompletableFutureString>
+getLocks()
+List locks.
+
+
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
 getNamespaceDescriptor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
 Get a namespace descriptor by name
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
 getOnlineRegions(ServerName serverName)
 Get all the online regions on a region server.
 
 
-
+
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureString>
+getProcedures()
+List procedures
+
+
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
 getQuota(QuotaFilter filter)
 List the quotas based on the filter.
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
 getRegionLoads(ServerName serverName,
   http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional tableName)
 Get a list of RegionLoad of all regions hosted on a 
region seerver for a table.
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
 getReplicationPeerConfig(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String peerId)
 Returns the configured ReplicationPeerConfig for the 
specified peer
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
 getSecurityCapabilities() 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">Com

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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.AbortProcedureFuture.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.AbortProcedureFuture.html
 
b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.AbortProcedureFuture.html
index 2b991b6..caae6fd 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.AbortProcedureFuture.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.AbortProcedureFuture.html
@@ -122,7 +122,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-private static class HBaseAdmin.AbortProcedureFuture
+private static class HBaseAdmin.AbortProcedureFuture
 extends HBaseAdmin.ProcedureFutureBoolean>
 
 
@@ -235,7 +235,7 @@ extends 
 
 isAbortInProgress
-private boolean isAbortInProgress
+private boolean isAbortInProgress
 
 
 
@@ -252,7 +252,7 @@ extends 
 
 AbortProcedureFuture
-public AbortProcedureFuture(HBaseAdmin admin,
+public AbortProcedureFuture(HBaseAdmin admin,
 http://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true";
 title="class or interface in java.lang">Long procId,
 http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in 
java.lang">Boolean abortProcResponse)
 
@@ -271,7 +271,7 @@ extends 
 
 get
-public http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean get(long timeout,
+public http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean get(long timeout,
http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in java.util.concurrent">TimeUnit unit)
 throws http://docs.oracle.com/javase/8/docs/api/java/lang/InterruptedException.html?is-external=true";
 title="class or interface in java.lang">InterruptedException,
http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutionException.html?is-external=true";
 title="class or interface in java.util.concurrent">ExecutionException,

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.AddColumnFamilyFuture.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.AddColumnFamilyFuture.html
 
b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.AddColumnFamilyFuture.html
index 4754535..2876ca5 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.AddColumnFamilyFuture.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.AddColumnFamilyFuture.html
@@ -132,7 +132,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-private static class HBaseAdmin.AddColumnFamilyFuture
+private static class HBaseAdmin.AddColumnFamilyFuture
 extends HBaseAdmin.ModifyTableFuture
 
 
@@ -246,7 +246,7 @@ extends 
 
 AddColumnFamilyFuture
-public AddColumnFamilyFuture(HBaseAdmin admin,
+public AddColumnFamilyFuture(HBaseAdmin admin,
  TableName tableName,
  
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnResponse response)
 
@@ -265,7 +265,7 @@ extends 
 
 getOperationType
-public http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String getOperationType()
+public http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String getOperationType()
 
 Overrides:
 getOperationType in
 class HBaseAdmin.ModifyTableFuture

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.CreateTableFuture.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.CreateTableFuture.html 
b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.CreateTableFuture.html
index b1f488a..f9cf9f1 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.CreateTableFuture.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.CreateTableFuture.html
@@ -127,7 +127,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-private static class HBaseAdmin.CreateTableFuture
+private static class HBaseAdmin.CreateTableFuture
 extends HBaseAdmin.TableFutureVoid>
 
 
@@ -268,7 +268,7 @@ extends 
 
 desc
-private final

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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/index-all.html
--
diff --git a/apidocs/index-all.html b/apidocs/index-all.html
index c9ec83e..a0cb93a 100644
--- a/apidocs/index-all.html
+++ b/apidocs/index-all.html
@@ -1360,8 +1360,6 @@
  
 clone()
 - Method in class org.apache.hadoop.hbase.client.BufferedMutatorParams
  
-clone() - 
Method in class org.apache.hadoop.hbase.ProcedureInfo
- 
 cloneFamily(Cell)
 - Static method in class org.apache.hadoop.hbase.CellUtil
  
 cloneQualifier(Cell)
 - Static method in class org.apache.hadoop.hbase.CellUtil
@@ -1722,6 +1720,13 @@
 compare(byte[],
 int, int, byte[], int, int) - Method in class 
org.apache.hadoop.hbase.util.Bytes.RowEndKeyComparator
  
 compareFamily(CompareFilter.CompareOp,
 ByteArrayComparable, Cell) - Method in class 
org.apache.hadoop.hbase.filter.CompareFilter
+
+Deprecated.
+Since 2.0.0. Will be 
removed in 3.0.0.
+ Use CompareFilter.compareFamily(CompareOperator,
 ByteArrayComparable, Cell)
+
+
+compareFamily(CompareOperator,
 ByteArrayComparable, Cell) - Method in class 
org.apache.hadoop.hbase.filter.CompareFilter
  
 CompareFilter - Class in org.apache.hadoop.hbase.filter
 
@@ -1729,27 +1734,45 @@
 
 CompareFilter(CompareFilter.CompareOp,
 ByteArrayComparable) - Constructor for class 
org.apache.hadoop.hbase.filter.CompareFilter
 
+Deprecated.
+Since 2.0.0. Will be 
removed in 3.0.0. Use other constructor.
+
+
+CompareFilter(CompareOperator,
 ByteArrayComparable) - Constructor for class 
org.apache.hadoop.hbase.filter.CompareFilter
+
 Constructor.
 
 CompareFilter.CompareOp - Enum in org.apache.hadoop.hbase.filter
 
-Comparison operators.
+Deprecated.
+since 2.0.0. Will be 
removed in 3.0.0. Use CompareOperator 
instead.
+
 
-compareOp
 - Variable in class org.apache.hadoop.hbase.filter.CompareFilter
- 
-compareOp
 - Variable in class org.apache.hadoop.hbase.filter.SingleColumnValueFilter
- 
 CompareOperator 
- Enum in org.apache.hadoop.hbase
 
 Generic set of comparison operators.
 
 compareQualifier(CompareFilter.CompareOp,
 ByteArrayComparable, Cell) - Method in class 
org.apache.hadoop.hbase.filter.CompareFilter
+
+Deprecated.
+Since 2.0.0. Will be 
removed in 3.0.0.
+ Use CompareFilter.compareQualifier(CompareOperator,
 ByteArrayComparable, Cell)
+
+
+compareQualifier(CompareOperator,
 ByteArrayComparable, Cell) - Method in class 
org.apache.hadoop.hbase.filter.CompareFilter
  
 compareResults(Result,
 Result) - Static method in class org.apache.hadoop.hbase.client.Result
 
 Does a deep comparison of two Results, down to the byte 
arrays.
 
 compareRow(CompareFilter.CompareOp,
 ByteArrayComparable, Cell) - Method in class 
org.apache.hadoop.hbase.filter.CompareFilter
+
+Deprecated.
+Since 2.0.0. Will be 
removed in 3.0.0.
+ Use CompareFilter.compareRow(CompareOperator,
 ByteArrayComparable, Cell)
+
+
+compareRow(CompareOperator,
 ByteArrayComparable, Cell) - Method in class 
org.apache.hadoop.hbase.filter.CompareFilter
  
 compareTo(Row)
 - Method in class org.apache.hadoop.hbase.client.Get
  
@@ -1854,6 +1877,13 @@
 Lexicographically compare two arrays.
 
 compareValue(CompareFilter.CompareOp,
 ByteArrayComparable, Cell) - Method in class 
org.apache.hadoop.hbase.filter.CompareFilter
+
+Deprecated.
+Since 2.0.0. Will be 
removed in 3.0.0.
+ Use CompareFilter.compareValue(CompareOperator,
 ByteArrayComparable, Cell)
+
+
+compareValue(CompareOperator,
 ByteArrayComparable, Cell) - Method in class 
org.apache.hadoop.hbase.filter.CompareFilter
  
 compareVersion(String,
 String) - Static method in class org.apache.hadoop.hbase.util.VersionInfo
  
@@ -2427,7 +2457,17 @@
 
 createCompareOp(byte[])
 - Static method in class org.apache.hadoop.hbase.filter.ParseFilter
 
-Takes a compareOperator symbol as a byte array and returns 
the corresponding CompareOperator
+Deprecated.
+Since 2.0
+ 
+
+
+createCompareOperator(byte[])
 - Static method in class org.apache.hadoop.hbase.filter.ParseFilter
+
+Deprecated.
+Since 2.0
+ 
+
 
 createCompleteResult(Iterable)
 - Static method in class org.apache.hadoop.hbase.client.Result
 
@@ -3788,6 +3828,14 @@
 
 DependentColumnFilter(byte[],
 byte[], boolean, CompareFilter.CompareOp, ByteArrayComparable) - 
Constructor for class org.apache.hadoop.hbase.filter.DependentColumnFilter
 
+Deprecated.
+Since 2.0.0. Will be 
removed in 3.0.0. Use
+ DependentColumnFilter.DependentColumnFilter(byte[],
 byte[], boolean, CompareOperator, ByteArrayComparable)
+ instead.
+
+
+DependentColumnFilter(byte[],
 byte[], boolean, CompareOperator, ByteArrayComparable) - 
Constructor for class org.apache.hadoop.hbase.filter.DependentColumnFilter
+
 Build a dependent column filter with value checking
  dependent column varies will be compared using the supplied
  compareOp and comparator, for usage of which
@@ -4667,8 +4715,6 @@
 
 Execute a transaction method given a complete URI.
 
-executionTime()
 - Method in class org.apache.hado

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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/src-html/org/apache/hadoop/hbase/client/Table.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/client/Table.html 
b/apidocs/src-html/org/apache/hadoop/hbase/client/Table.html
index 5a6e98e..86cae08 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/client/Table.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/client/Table.html
@@ -142,585 +142,584 @@
 134   */
 135   void batchCallback(
 136final List 
actions, final Object[] results, final Batch.Callback callback
-137  )
-138throws IOException, 
InterruptedException;
-139
-140  /**
-141   * Extracts certain cells from a given 
row.
-142   * @param get The object that specifies 
what data to fetch and from which row.
-143   * @return The data coming from the 
specified row, if it exists.  If the row
-144   * specified doesn't exist, the {@link 
Result} instance returned won't
-145   * contain any {@link 
org.apache.hadoop.hbase.KeyValue}, as indicated by {@link Result#isEmpty()}.
-146   * @throws IOException if a remote or 
network exception occurs.
-147   * @since 0.20.0
-148   */
-149  Result get(Get get) throws 
IOException;
-150
-151  /**
-152   * Extracts certain cells from the 
given rows, in batch.
-153   *
-154   * @param gets The objects that specify 
what data to fetch and from which rows.
-155   * @return The data coming from the 
specified rows, if it exists.  If the row specified doesn't
-156   * exist, the {@link Result} instance 
returned won't contain any {@link
-157   * org.apache.hadoop.hbase.KeyValue}, 
as indicated by {@link Result#isEmpty()}. If there are any
-158   * failures even after retries, there 
will be a null in the results array for those Gets, AND an
-159   * exception will be thrown. The 
ordering of the Result array corresponds to the order of the
-160   * list of Get requests.
-161   * @throws IOException if a remote or 
network exception occurs.
-162   * @since 0.90.0
-163   */
-164  Result[] get(List gets) 
throws IOException;
-165
-166  /**
-167   * Returns a scanner on the current 
table as specified by the {@link Scan}
-168   * object.
-169   * Note that the passed {@link Scan}'s 
start row and caching properties
-170   * maybe changed.
-171   *
-172   * @param scan A configured {@link 
Scan} object.
-173   * @return A scanner.
-174   * @throws IOException if a remote or 
network exception occurs.
-175   * @since 0.20.0
-176   */
-177  ResultScanner getScanner(Scan scan) 
throws IOException;
-178
-179  /**
-180   * Gets a scanner on the current table 
for the given family.
-181   *
-182   * @param family The column family to 
scan.
-183   * @return A scanner.
-184   * @throws IOException if a remote or 
network exception occurs.
-185   * @since 0.20.0
-186   */
-187  ResultScanner getScanner(byte[] family) 
throws IOException;
-188
-189  /**
-190   * Gets a scanner on the current table 
for the given family and qualifier.
-191   *
-192   * @param family The column family to 
scan.
-193   * @param qualifier The column 
qualifier to scan.
-194   * @return A scanner.
-195   * @throws IOException if a remote or 
network exception occurs.
-196   * @since 0.20.0
-197   */
-198  ResultScanner getScanner(byte[] family, 
byte[] qualifier) throws IOException;
+137  ) throws IOException, 
InterruptedException;
+138
+139  /**
+140   * Extracts certain cells from a given 
row.
+141   * @param get The object that specifies 
what data to fetch and from which row.
+142   * @return The data coming from the 
specified row, if it exists.  If the row
+143   * specified doesn't exist, the {@link 
Result} instance returned won't
+144   * contain any {@link 
org.apache.hadoop.hbase.KeyValue}, as indicated by {@link Result#isEmpty()}.
+145   * @throws IOException if a remote or 
network exception occurs.
+146   * @since 0.20.0
+147   */
+148  Result get(Get get) throws 
IOException;
+149
+150  /**
+151   * Extracts certain cells from the 
given rows, in batch.
+152   *
+153   * @param gets The objects that specify 
what data to fetch and from which rows.
+154   * @return The data coming from the 
specified rows, if it exists.  If the row specified doesn't
+155   * exist, the {@link Result} instance 
returned won't contain any {@link
+156   * org.apache.hadoop.hbase.KeyValue}, 
as indicated by {@link Result#isEmpty()}. If there are any
+157   * failures even after retries, there 
will be a null in the results array for those Gets, AND an
+158   * exception will be thrown. The 
ordering of the Result array corresponds to the order of the
+159   * list of Get requests.
+160   * @throws IOException if a remote or 
network exception occurs.
+161   * @since 0.90.0
+162   */
+163  Result[] get(List gets) 
throws IOException;
+164
+165  /**
+166   * Returns a scanner on the current 
table as specified by the {@link Scan}
+167   * object.
+168   * Note th

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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/src-html/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
--
diff --git 
a/apidocs/src-html/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
 
b/apidocs/src-html/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
index 54e0624..d815b66 100644
--- 
a/apidocs/src-html/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
+++ 
b/apidocs/src-html/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
@@ -30,490 +30,615 @@
 022import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
 023import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceRequest;
 024import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceResponse;
-025import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.*;
-026import 
org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.GetQuotaStatesRequest;
-027import 
org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.GetQuotaStatesResponse;
-028import 
org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.GetSpaceQuotaRegionSizesRequest;
-029import 
org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.GetSpaceQuotaRegionSizesResponse;
-030import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.AddReplicationPeerRequest;
-031import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.AddReplicationPeerResponse;
-032import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.DisableReplicationPeerRequest;
-033import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.DisableReplicationPeerResponse;
-034import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.EnableReplicationPeerRequest;
-035import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.EnableReplicationPeerResponse;
-036import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.GetReplicationPeerConfigRequest;
-037import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.GetReplicationPeerConfigResponse;
-038import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.ListReplicationPeersRequest;
-039import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.ListReplicationPeersResponse;
-040import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.RemoveReplicationPeerRequest;
-041import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.RemoveReplicationPeerResponse;
-042import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.UpdateReplicationPeerConfigRequest;
-043import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.UpdateReplicationPeerConfigResponse;
-044
-045/**
-046 * A short-circuit connection that can 
bypass the RPC layer (serialization, deserialization,
-047 * networking, etc..) when talking to a 
local master
-048 */
-049@InterfaceAudience.Public
-050public class ShortCircuitMasterConnection 
implements MasterKeepAliveConnection {
-051
-052  private final 
MasterService.BlockingInterface stub;
-053
-054  public 
ShortCircuitMasterConnection(MasterService.BlockingInterface stub) {
-055this.stub = stub;
-056  }
-057
-058  @Override
-059  public UnassignRegionResponse 
unassignRegion(RpcController controller,
-060  UnassignRegionRequest request) 
throws ServiceException {
-061return 
stub.unassignRegion(controller, request);
-062  }
-063
-064  @Override
-065  public TruncateTableResponse 
truncateTable(RpcController controller, TruncateTableRequest request)
-066  throws ServiceException {
-067return stub.truncateTable(controller, 
request);
-068  }
-069
-070  @Override
-071  public StopMasterResponse 
stopMaster(RpcController controller, StopMasterRequest request)
-072  throws ServiceException {
-073return stub.stopMaster(controller, 
request);
-074  }
-075
-076  @Override
-077  public SnapshotResponse 
snapshot(RpcController controller, SnapshotRequest request)
-078  throws ServiceException {
-079return stub.snapshot(controller, 
request);
-080  }
-081
-082  @Override
-083  public ShutdownResponse 
shutdown(RpcController controller, ShutdownRequest request)
-084  throws ServiceException {
-085return stub.shutdown(controller, 
request);
-086  }
-087
-088  @Override
-089  public SetSplitOrMergeEnabledResponse 
setSplitOrMergeEnabled(RpcController controller,
-090  SetSplitOrMergeEnabledRequest 
request) throws ServiceException {
-091return 
stub.setSplitOrMergeEnabled(controller, request);
-092  }
-093
-094  @Override
-095  public SetQuotaResponse 
setQuota(RpcController controller, SetQuotaRequest request)
-096  throws ServiceException {
-097return stub.setQuota(controller, 
request);

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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/ClusterStatus.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/ClusterStatus.html 
b/devapidocs/org/apache/hadoop/hbase/ClusterStatus.html
index 6c58afa..57b75f2 100644
--- a/devapidocs/org/apache/hadoop/hbase/ClusterStatus.html
+++ b/devapidocs/org/apache/hadoop/hbase/ClusterStatus.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":42,"i8":10,"i9":10,"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":9,"i24":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":42,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":42,"i21":10,"i22":10,"i23":9,"i24":10};
 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";
@@ -100,27 +100,18 @@ var activeTableTab = "activeTableTab";
 http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-org.apache.hadoop.io.VersionedWritable
-
-
 org.apache.hadoop.hbase.ClusterStatus
 
 
 
-
-
 
 
 
-
-All Implemented Interfaces:
-org.apache.hadoop.io.Writable
-
 
 
 @InterfaceAudience.Public
-public class ClusterStatus
-extends org.apache.hadoop.io.VersionedWritable
+public class ClusterStatus
+extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 Status information on the HBase cluster.
  
  ClusterStatus provides clients with information such as:
@@ -137,26 +128,23 @@ extends org.apache.hadoop.io.VersionedWritable
  Regions in transition at master
  The unique cluster ID
  
- ClusterStatus.Options provides a 
way to filter out infos which unwanted.
- The following codes will retrieve all the cluster information.
+ ClusterStatus.Option provides a 
way to get desired ClusterStatus information.
+ The following codes will get all the cluster information.
  
  
  // Original version still works
  Admin admin = connection.getAdmin();
  ClusterStatus status = admin.getClusterStatus();
  // or below, a new version which has the same effects
- ClusterStatus status = admin.getClusterStatus(Options.defaultOptions());
+ ClusterStatus status = admin.getClusterStatus(EnumSet.allOf(Option.class));
  
  
- If information about dead servers and master coprocessors are unwanted,
+ If information about live servers is the only wanted.
  then codes in the following way:
  
  
  Admin admin = connection.getAdmin();
- ClusterStatus status = admin.getClusterStatus(
-Options.defaultOptions()
-   .excludeDeadServers()
-   .excludeMasterCoprocessors());
+ ClusterStatus status = 
admin.getClusterStatus(EnumSet.of(Option.LIVE_SERVERS));
  
  
 
@@ -185,8 +173,8 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 static class 
-ClusterStatus.Options
-Options provides a way to filter out unwanted 
information.
+ClusterStatus.Option
+Kinds of ClusterStatus
 
 
 
@@ -242,9 +230,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 private static byte
-VERSION
-Version for object serialization.
-
+VERSION 
 
 
 
@@ -381,7 +367,11 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 byte
-getVersion() 
+getVersion()
+Deprecated. 
+As of release 2.0.0, this 
will be removed in HBase 3.0.0
+
+
 
 
 int
@@ -401,13 +391,6 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 
-
-
-
-Methods inherited from 
class org.apache.hadoop.io.VersionedWritable
-readFields, write
-
-
 
 
 
@@ -434,15 +417,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 VERSION
-private static final byte VERSION
-Version for object serialization.  Incremented for changes 
in serialized
- representation.
- 
-   0 Initial version
-   1 Added cluster ID
-   2 Added Map of ServerName to ServerLoad
-   3 Added master and backupMasters
- 
+private static final byte VERSION
 
 See Also:
 Constant
 Field Values
@@ -455,7 +430,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 hbaseVersion
-private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hbaseVersion
+private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hbaseVersion
 
 
 
@@ -464,7 +439,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 liveServers
-private http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java

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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html 
b/apidocs/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
index a2db1fc..dfc10e3 100644
--- a/apidocs/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
+++ b/apidocs/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
@@ -110,7 +110,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Public
-public class ShortCircuitMasterConnection
+public class ShortCircuitMasterConnection
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 A short-circuit connection that can bypass the RPC layer 
(serialization, deserialization,
  networking, etc..) when talking to a local master
@@ -274,120 +274,120 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.MajorCompactionTimestampForRegionRequest request) 
 
 
+org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetLocksResponse
+getLocks(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
+
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetLocksRequest request) 
+
+
 org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetNamespaceDescriptorResponse
 getNamespaceDescriptor(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
   
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetNamespaceDescriptorRequest request) 
 
-
+
 org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetProcedureResultResponse
 getProcedureResult(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
   
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetProcedureResultRequest request) 
 
-
+
+org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetProceduresResponse
+getProcedures(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
+ 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetProceduresRequest request) 
+
+
 org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.GetQuotaStatesResponse
 getQuotaStates(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
   
org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.GetQuotaStatesRequest request) 
 
-
+
 org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.GetReplicationPeerConfigResponse
 getReplicationPeerConfig(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
 
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.GetReplicationPeerConfigRequest request) 
 
-
+
 org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetSchemaAlterStatusResponse
 getSchemaAlterStatus(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetSchemaAlterStatusRequest request) 
 
-
+
 org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SecurityCapabilitiesResponse
 getSecurityCapabilities(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,

org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SecurityCapabilitiesRequest request) 
 
-
+
 org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.GetSpaceQuotaRegionSizesResponse
 getSpaceQuotaRegionSizes(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
 
org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.GetSpaceQuotaRegionSizesRequest request) 
 
-
+
 org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetTableDescriptorsResponse
 getTableDescriptors(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,

org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetTableDescriptorsRequest request) 
 
-
+
 org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetTableNamesResponse
 getTableNames(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
  
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetTableNamesRequest request) 
 
-
+
 org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetTableStateResponse
 getTableState(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
  
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetTableStateRequest request) 

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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/org/apache/hadoop/hbase/client/Table.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Table.html 
b/apidocs/org/apache/hadoop/hbase/client/Table.html
index d1b58c5..40bb951 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Table.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Table.html
@@ -690,7 +690,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 get
-Result get(Get get)
+Result get(Get get)
 throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Extracts certain cells from a given row.
 
@@ -713,7 +713,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 get
-Result[] get(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List gets)
+Result[] get(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List gets)
   throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Extracts certain cells from the given rows, in batch.
 
@@ -738,7 +738,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 getScanner
-ResultScanner getScanner(Scan scan)
+ResultScanner getScanner(Scan scan)
   throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Returns a scanner on the current table as specified by the 
Scan
  object.
@@ -762,7 +762,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 getScanner
-ResultScanner getScanner(byte[] family)
+ResultScanner getScanner(byte[] family)
   throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Gets a scanner on the current table for the given 
family.
 
@@ -783,7 +783,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 getScanner
-ResultScanner getScanner(byte[] family,
+ResultScanner getScanner(byte[] family,
  byte[] qualifier)
   throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Gets a scanner on the current table for the given family 
and qualifier.
@@ -806,7 +806,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 put
-void put(Put put)
+void put(Put put)
   throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Puts some data in the table.
 
@@ -825,7 +825,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 put
-void put(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List puts)
+void put(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List puts)
   throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Puts some data in the table, in batch.
  
@@ -846,7 +846,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 checkAndPut
-boolean checkAndPut(byte[] row,
+boolean checkAndPut(byte[] row,
 byte[] family,
 byte[] qualifier,
 byte[] value,
@@ -876,7 +876,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 checkAndPut
 http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
-boolean checkAndPut(byte[] row,
+boolean checkAndPut(byte[] row,
 byte[] family,
 byte[] qualifier,
 CompareFilter.CompareOp compareOp,
@@ -914,7 +914,7 @@ boolean 
 
 checkAndPut
-boolean checkAndPut(byte[] row,
+boolean checkAndPut(byte[] row,
 byte[] family,
 byte[] qualifier,
 CompareOperator op,
@@ -950,7 +950,7 @@ boolean 
 
 delete
-void delete(Delete delete)
+void delete(Delete delete)
  throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Deletes the specified cells/row.
 
@@ -969,7 +969,7 @@ boolean 
 
 delete
-void delete(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 ti

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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/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 12691dd..cf4f591 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":41,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":42,"i22":42,"i23":42,"i24":42,"i25":10,"i26":10,"i27":10,"i28":10,"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":42,"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":9,"i78":10,"i79":10,"i80":9,"i81":10,"i82":10,"i83":10,"i84":10,"i85":10,"i86":10,"i87":10,"i88":10,"i89":10,"i90":41,"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":9,"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":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":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,"i229":10,"i230":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":41,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":42,"i22":42,"i23":42,"i24":42,"i25":10,"i26":10,"i27":10,"i28":10,"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":42,"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":9,"i78":10,"i79":10,"i80":9,"i81":10,"i82":10,"i83":10,"i84":10,"i85":10,"i86":10,"i87":10,"i88":10,"i89":10,"i90":41,"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":9,"i114":10,"i115":10,"i116":10,"i117":10,"i118":10,"i119":10,"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":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,"i229":10,"i230":10};
 var tabs = {65535:["t0"

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

2017-09-09 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site f8a3cc55a -> 1490b3abd


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/ObserverContext.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/ObserverContext.html 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/ObserverContext.html
index a7d1b84..b116f5c 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/ObserverContext.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/ObserverContext.html
@@ -779,12 +779,19 @@
 
 
 default void
+MasterObserver.postGetLocks(ObserverContext ctx,
+http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List lockedResources)
+Called after a getLocks request has been processed.
+
+
+
+default void
 MasterObserver.postGetNamespaceDescriptor(ObserverContext ctx,
   NamespaceDescriptor ns)
 Called after a getNamespaceDescriptor request has been 
processed.
 
 
-
+
 default void
 RegionObserver.postGetOp(ObserverContext c,
  Get get,
@@ -792,6 +799,13 @@
 Called after the client performs a Get
 
 
+
+default void
+MasterObserver.postGetProcedures(ObserverContext ctx,
+ http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List> procList)
+Called after a getProcedures request has been 
processed.
+
+
 
 default void
 MasterObserver.postGetReplicationPeerConfig(ObserverContext ctx,
@@ -847,25 +861,11 @@
 
 
 default void
-MasterObserver.postListLocks(ObserverContext ctx,
- http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List lockInfoList)
-Called after a listLocks request has been processed.
-
-
-
-default void
 MasterObserver.postListNamespaceDescriptors(ObserverContext ctx,
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List descriptors)
 Called after a listNamespaceDescriptors request has been 
processed.
 
 
-
-default void
-MasterObserver.postListProcedures(ObserverContext ctx,
-  http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List procInfoList)
-Called after a listProcedures request has been 
processed.
-
-
 
 default void
 MasterObserver.postListReplicationPeers(ObserverContext ctx,
@@ -1085,11 +1085,11 @@
 
 
 default void
-MasterObserver.postRequestLock(ObserverContext ctx,
+MasterObserver.postRequestLock(ObserverContext ctx,
http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String namespace,
TableName tableName,
HRegionInfo[] regionInfos,
-   LockProcedure.LockType type,
+   LockType type,
http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String description)
 Called after new LockProcedure is queued.
 
@@ -1921,12 +1921,18 @@
 
 
 default void
+MasterObserver.preGetLocks(ObserverContext ctx)
+Called before a getLocks request has been processed.
+
+
+
+default void
 MasterObserver.preGetNamespaceDescriptor(ObserverContext ctx,
  http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String namespace)
 Called before a getNamespaceDescriptor request has been 
processed.
 
 
-
+
 default void
 RegionObserver.preGetOp(ObserverContext c,
 Get get,
@@ -1934,6 +1940,12 @@
 Called before the client performs a Get
 
 
+
+default void
+MasterObserver.preGetProcedures(ObserverContext ctx)
+Called before a getProcedures request has been 
processed.
+
+
 
 default void
 MasterObserver.preGetReplicationPeerConfig(ObserverContext ctx,
@@ -1987,23 +1999,11 @@
 
 
 default void
-MasterObserver.preListLocks(ObserverContext ctx)
-Called before a listLocks request has been processed.
-
-
-
-default void
 MasterObserver.preListNamespaceDescriptors(ObserverC

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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/src-html/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.html
--
diff --git 
a/apidocs/src-html/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.html 
b/apidocs/src-html/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.html
index d770002..4263e95 100644
--- 
a/apidocs/src-html/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.html
+++ 
b/apidocs/src-html/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.html
@@ -33,372 +33,430 @@
 025import org.apache.hadoop.hbase.Cell;
 026import 
org.apache.hadoop.hbase.CellComparator;
 027import 
org.apache.hadoop.hbase.CellUtil;
-028import 
org.apache.hadoop.hbase.classification.InterfaceAudience;
-029import 
org.apache.hadoop.hbase.exceptions.DeserializationException;
-030import 
org.apache.hadoop.hbase.filter.CompareFilter.CompareOp;
-031import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.InvalidProtocolBufferException;
-032import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.UnsafeByteOperations;
-033import 
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
-034import 
org.apache.hadoop.hbase.shaded.protobuf.generated.FilterProtos;
-035import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
-036import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.CompareType;
-037import 
org.apache.hadoop.hbase.util.Bytes;
-038
-039import 
org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions;
-040
-041/**
-042 * This filter is used to filter cells 
based on value. It takes a {@link CompareFilter.CompareOp}
-043 * operator (equal, greater, not equal, 
etc), and either a byte [] value or
-044 * a ByteArrayComparable.
-045 * 

-046 * If we have a byte [] value then we just do a lexicographic compare. For -047 * example, if passed value is 'b' and cell has 'a' and the compare operator -048 * is LESS, then we will filter out this cell (return true). If this is not -049 * sufficient (eg you want to deserialize a long and then compare it to a fixed -050 * long value), then you can pass in your own comparator instead. -051 *

-052 * You must also specify a family and qualifier. Only the value of this column -053 * will be tested. When using this filter on a -054 * {@link org.apache.hadoop.hbase.CellScanner} with specified -055 * inputs, the column to be tested should also be added as input (otherwise -056 * the filter will regard the column as missing). -057 *

-058 * To prevent the entire row from being emitted if the column is not found -059 * on a row, use {@link #setFilterIfMissing}. -060 * Otherwise, if the column is found, the entire row will be emitted only if -061 * the value passes. If the value fails, the row will be filtered out. -062 *

-063 * In order to test values of previous versions (timestamps), set -064 * {@link #setLatestVersionOnly} to false. The default is true, meaning that -065 * only the latest version's value is tested and all previous versions are ignored. -066 *

-067 * To filter based on the value of all scanned columns, use {@link ValueFilter}. -068 */ -069@InterfaceAudience.Public -070public class SingleColumnValueFilter extends FilterBase { -071 -072 protected byte [] columnFamily; -073 protected byte [] columnQualifier; -074 protected CompareOp compareOp; -075 protected org.apache.hadoop.hbase.filter.ByteArrayComparable comparator; -076 protected boolean foundColumn = false; -077 protected boolean matchedColumn = false; -078 protected boolean filterIfMissing = false; -079 protected boolean latestVersionOnly = true; -080 -081 /** -082 * Constructor for binary compare of the value of a single column. If the -083 * column is found and the condition passes, all columns of the row will be -084 * emitted. If the condition fails, the row will not be emitted. -085 *

-086 * Use the filterIfColumnMissing flag to set whether the rest of the columns -087 * in a row will be emitted if the specified column to check is not found in -088 * the row. -089 * -090 * @param family name of column family -091 * @param qualifier name of column qualifier -092 * @param compareOp operator -093 * @param value value to compare column values against -094 */ -095 public SingleColumnValueFilter(final byte [] family, final byte [] qualifier, -096 final CompareOp compareOp, final byte[] value) { -097this(family, qualifier, compareOp, new org.apache.hadoop.hbase.filter.BinaryComparator(value)); -098 } -099 -100 /** -101 * Constructor for binary compare of the value of a single column. If the -102 * column is found and the condition passes, all columns of the row will be -103 * emitted. If the condition fails, the row will not be emitted. -104 *

-105 * Use the filterIfColumnMissing flag to set whether the rest of the columns -106 * in a ro


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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apache_hbase_reference_guide.pdf
--
diff --git a/apache_hbase_reference_guide.pdf b/apache_hbase_reference_guide.pdf
index 5255040..81ba70a 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:20170908144633+00'00')
-/CreationDate (D:20170908144633+00'00')
+/ModDate (D:20170909144641+00'00')
+/CreationDate (D:20170909144641+00'00')
 >>
 endobj
 2 0 obj
 << /Type /Catalog
 /Pages 3 0 R
 /Names 26 0 R
-/Outlines 4310 0 R
-/PageLabels 4518 0 R
+/Outlines 4314 0 R
+/PageLabels 4522 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 663
-/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 150 0 R 160 0 
R 169 0 R 180 0 R 184 0 R 186 0 R 190 0 R 201 0 R 208 0 R 217 0 R 225 0 R 231 0 
R 239 0 R 248 0 R 261 0 R 270 0 R 277 0 R 286 0 R 295 0 R 302 0 R 309 0 R 317 0 
R 323 0 R 331 0 R 338 0 R 347 0 R 356 0 R 367 0 R 378 0 R 386 0 R 393 0 R 401 0 
R 408 0 R 416 0 R 425 0 R 434 0 R 441 0 R 449 0 R 462 0 R 469 0 R 477 0 R 484 0 
R 493 0 R 501 0 R 508 0 R 513 0 R 518 0 R 523 0 R 539 0 R 549 0 R 554 0 R 568 0 
R 574 0 R 579 0 R 581 0 R 583 0 R 588 0 R 596 0 R 602 0 R 607 0 R 613 0 R 624 0 
R 637 0 R 656 0 R 671 0 R 682 0 R 684 0 R 686 0 R 694 0 R 706 0 R 715 0 R 725 0 
R 731 0 R 734 0 R 738 0 R 743 0 R 746 0 R 749 0 R 751 0 R 754 0 R 758 0 R 760 0 
R 765 0 R 769 0 R 774 0 R 779 0 R 782 0 R 788 0 R 790 0 R 794 0 R 803 0 R 805 0 
R 808 0 R 811 0 R 814 0 R 817 0 R 831 0 
 R 838 0 R 847 0 R 858 0 R 864 0 R 876 0 R 880 0 R 883 0 R 887 0 R 890 0 R 895 
0 R 904 0 R 912 0 R 916 0 R 920 0 R 925 0 R 929 0 R 931 0 R 946 0 R 957 0 R 963 
0 R 969 0 R 972 0 R 980 0 R 988 0 R 992 0 R 998 0 R 1003 0 R 1005 0 R 1007 0 R 
1009 0 R 1020 0 R 1028 0 R 1032 0 R 1039 0 R 1047 0 R 1055 0 R 1059 0 R 1065 0 
R 1070 0 R 1078 0 R 1083 0 R 1088 0 R 1090 0 R 1096 0 R 1102 0 R 1104 0 R  
0 R 1121 0 R 1125 0 R 1127 0 R 1129 0 R 1133 0 R 1136 0 R 1141 0 R 1144 0 R 
1156 0 R 1160 0 R 1166 0 R 1173 0 R 1178 0 R 1182 0 R 1186 0 R 1188 0 R 1191 0 
R 1194 0 R 1197 0 R 1201 0 R 1205 0 R 1209 0 R 1214 0 R 1218 0 R 1221 0 R 1223 
0 R 1235 0 R 1238 0 R 1246 0 R 1255 0 R 1261 0 R 1265 0 R 1267 0 R 1277 0 R 
1280 0 R 1286 0 R 1294 0 R 1297 0 R 1304 0 R 1313 0 R 1315 0 R 1317 0 R 1327 0 
R 1329 0 R 1331 0 R 1334 0 R 1336 0 R 1338 0 R 1340 0 R 1342 0 R 1345 0 R 1349 
0 R 1354 0 R 1356 0 R 1358 0 R 1360 0 R 1365 0 R 1372 0 R 1377 0 R 1380 0 R 
1382 0 R 1385 0 R 1389 0 R 1391 0 R 1394 0 R 1396 0 R 1398
  0 R 1401 0 R 1406 0 R 1411 0 R 1420 0 R 1434 0 R 1446 0 R 1449 0 R 1453 0 R 
1467 0 R 1476 0 R 1490 0 R 1496 0 R 1504 0 R 1519 0 R 1533 0 R 1545 0 R 1550 0 
R 1556 0 R 1567 0 R 1573 0 R 1579 0 R 1587 0 R 1590 0 R 1599 0 R 1606 0 R 1610 
0 R 1623 0 R 1625 0 R 1631 0 R 1637 0 R 1641 0 R 1649 0 R 1658 0 R 1662 0 R 
1664 0 R 1666 0 R 1679 0 R 1685 0 R 1693 0 R 1700 0 R 1714 0 R 1719 0 R 1728 0 
R 1736 0 R 1742 0 R 1749 0 R 1753 0 R 1756 0 R 1758 0 R 1764 0 R 1770 0 R 1776 
0 R 1780 0 R 1788 0 R 1793 0 R 1799 0 R 1804 0 R 1806 0 R 1814 0 R 1822 0 R 
1828 0 R 1833 0 R 1837 0 R 1840 0 R 1845 0 R 1850 0 R 1857 0 R 1859 0 R 1861 0 
R 1864 0 R 1872 0 R 1875 0 R 1882 0 R 1892 0 R 1895 0 R 1900 0 R 1902 0 R 1907 
0 R 1910 0 R 1912 0 R 1917 0 R 1927 0 R 1929 0 R 1931 0 R 1933 0 R 1935 0 R 
1938 0 R 1940 0 R 1942 0 R 1945 0 R 1947 0 R 1949 0 R 1953 0 R 1957 0 R 1966 0 
R 1968 0 R 1970 0 R 1976 0 R 1978 0 R 1983 0 R 1985 0 R 1987 0 R 1994 0 R 1999 
0 R 2003 0 R 2007 0 R 2011 0 R 2013 0 R 2015 0 R 2019 0 R 20
 22 0 R 2024 0 R 2026 0 R 2030 0 R 2032 0 R 2035 0 R 2037 0 R 2039 0 R 2041 0 R 
2048 0 R 2051 0 R 2056 0 R 2058 0 R 2060 0 R 2062 0 R 2064 0 R 2072 0 R 2083 0 
R 2097 0 R 2108 0 R 2112 0 R 2117 0 R 2121 0 R 2124 0 R 2129 0 R 2135 0 R 2137 
0 R 2141 0 R 2143 0 R 2145 0 R 2147 0 R 2151 0 R 2153 0 R 2166 0 R 2169 0 R 
2177 0 R 2183 0 R 2195 0 R 2209 0 R 2223 0 R 2240 0 R 2244 0 R 2246 0 R 2250 0 
R 2268 0 R 2274 0 R 2286 0 R 2290 0 R 2294 0 R 2303 0 R 2313 0 R 2318 0 R 2329 
0 R 2342 0 R 2361 0 R 2370 0 R 2373 0 R 2382 0 R 2400 0 R 2407 0 R 2410 0 R 
2415 0 R 2419 0 R 2422 0 R 2431 0 R 2440 0 R 2443 0 R 2445 0 R 2449 0 R 2464 0 
R 2472 0 R 2477 0 R 2481 0 R 2485 0 R 2487 0 R 2489 0 R 2491 0 R 2496 0 R 2509 
0 R 2519 0 R 2528 0 R 2537 0 R 2543 0 R 2554 0 R 2561 0 R 2567 0 R 2569 0 R 
2579 0 R 2587 0 R 2597 0 R 2601 0 R 2612 0 R 2616 0 R 2626 0 R 2634 0 R 2642 0 
R 2648 0 R 2652 0 R 2656 0 R 2660 0 R 2662 0 R 2668 0 R 2672 0 R 2676 0 R 2682 
0 R 2688 0 R 2691 0 R 2697 0 R 27

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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/org/apache/hadoop/hbase/filter/CompareFilter.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/filter/CompareFilter.html 
b/apidocs/org/apache/hadoop/hbase/filter/CompareFilter.html
index df033b9..07e2abb 100644
--- a/apidocs/org/apache/hadoop/hbase/filter/CompareFilter.html
+++ b/apidocs/org/apache/hadoop/hbase/filter/CompareFilter.html
@@ -18,8 +18,8 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":9,"i5":10,"i6":10,"i7":10,"i8":10};
-var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
+var methods = 
{"i0":42,"i1":10,"i2":42,"i3":10,"i4":42,"i5":10,"i6":42,"i7":10,"i8":9,"i9":10,"i10":10,"i11":10,"i12":42,"i13":10};
+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";
@@ -160,7 +160,9 @@ extends org.apache.hadoop.hbase.filter.FilterBase
 
 static class 
 CompareFilter.CompareOp
-Comparison operators.
+Deprecated. 
+since 2.0.0. Will be 
removed in 3.0.0. Use CompareOperator 
instead.
+
 
 
 
@@ -190,8 +192,8 @@ extends org.apache.hadoop.hbase.filter.FilterBase
 comparator 
 
 
-protected CompareFilter.CompareOp
-compareOp 
+protected CompareOperator
+op 
 
 
 
@@ -217,6 +219,14 @@ extends org.apache.hadoop.hbase.filter.FilterBase
 
 CompareFilter(CompareFilter.CompareOp compareOp,
  ByteArrayComparable comparator)
+Deprecated. 
+Since 2.0.0. Will be 
removed in 3.0.0. Use other constructor.
+
+
+
+
+CompareFilter(CompareOperator op,
+ ByteArrayComparable comparator)
 Constructor.
 
 
@@ -230,7 +240,7 @@ extends org.apache.hadoop.hbase.filter.FilterBase
 
 Method Summary
 
-All Methods Static Methods Instance Methods Concrete Methods 
+All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods 
 
 Modifier and Type
 Method and Description
@@ -239,45 +249,97 @@ extends org.apache.hadoop.hbase.filter.FilterBase
 protected boolean
 compareFamily(CompareFilter.CompareOp compareOp,
  ByteArrayComparable comparator,
- Cell cell) 
+ Cell cell)
+Deprecated. 
+Since 2.0.0. Will be 
removed in 3.0.0.
+ Use compareFamily(CompareOperator,
 ByteArrayComparable, Cell)
+
+
 
 
 protected boolean
+compareFamily(CompareOperator op,
+ ByteArrayComparable comparator,
+ Cell cell) 
+
+
+protected boolean
 compareQualifier(CompareFilter.CompareOp compareOp,
 ByteArrayComparable comparator,
+Cell cell)
+Deprecated. 
+Since 2.0.0. Will be 
removed in 3.0.0.
+ Use compareQualifier(CompareOperator,
 ByteArrayComparable, Cell)
+
+
+
+
+protected boolean
+compareQualifier(CompareOperator op,
+ByteArrayComparable comparator,
 Cell cell) 
 
-
+
 protected boolean
 compareRow(CompareFilter.CompareOp compareOp,
   ByteArrayComparable comparator,
+  Cell cell)
+Deprecated. 
+Since 2.0.0. Will be 
removed in 3.0.0.
+ Use compareRow(CompareOperator,
 ByteArrayComparable, Cell)
+
+
+
+
+protected boolean
+compareRow(CompareOperator op,
+  ByteArrayComparable comparator,
   Cell cell) 
 
-
+
 protected boolean
 compareValue(CompareFilter.CompareOp compareOp,
 ByteArrayComparable comparator,
+Cell cell)
+Deprecated. 
+Since 2.0.0. Will be 
removed in 3.0.0.
+ Use compareValue(CompareOperator,
 ByteArrayComparable, Cell)
+
+
+
+
+protected boolean
+compareValue(CompareOperator op,
+ByteArrayComparable comparator,
 Cell cell) 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in java.util">ArrayListObject>
 extractArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
-
+
 boolean
 filterRowKey(Cell cell)
 Filters a row based on the row key.
 
 
-
+
 ByteArrayComparable
 getComparator() 
 
-
+
+CompareOperator
+getCompareOperator() 
+
+
 CompareFilter.CompareOp
-getOperator() 
+getOperator()
+Deprecated. 
+since 2.0.0. Will be 
removed in 3.0.0. Use getCompareOperator()
 instead.
+
+
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 toString()
 Return filter's info for debugging and logging 
purpose.
@@ -319,13 +381,13 @@ extends org.apache.hadoop.hbase.filter.FilterBase
 
 
 Field Detail
-
+
 
 
 
 
-compareOp
-protected CompareFilter.CompareOp compareOp
+op
+pro

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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/ClusterStatus.html 
b/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
index 83f1f43..67155d7 100644
--- a/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
+++ b/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":42,"i8":10,"i9":10,"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":9,"i23":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":42,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":42,"i20":10,"i21":10,"i22":9,"i23":10};
 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";
@@ -100,27 +100,18 @@ var activeTableTab = "activeTableTab";
 http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-org.apache.hadoop.io.VersionedWritable
-
-
 org.apache.hadoop.hbase.ClusterStatus
 
 
 
-
-
 
 
 
-
-All Implemented Interfaces:
-org.apache.hadoop.io.Writable
-
 
 
 @InterfaceAudience.Public
-public class ClusterStatus
-extends org.apache.hadoop.io.VersionedWritable
+public class ClusterStatus
+extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 Status information on the HBase cluster.
  
  ClusterStatus provides clients with information such as:
@@ -137,26 +128,23 @@ extends org.apache.hadoop.io.VersionedWritable
  Regions in transition at master
  The unique cluster ID
  
- ClusterStatus.Options provides a way to filter out 
infos which unwanted.
- The following codes will retrieve all the cluster information.
+ ClusterStatus.Option provides a way to get desired 
ClusterStatus information.
+ The following codes will get all the cluster information.
  
  
  // Original version still works
  Admin admin = connection.getAdmin();
  ClusterStatus status = admin.getClusterStatus();
  // or below, a new version which has the same effects
- ClusterStatus status = admin.getClusterStatus(Options.defaultOptions());
+ ClusterStatus status = admin.getClusterStatus(EnumSet.allOf(Option.class));
  
  
- If information about dead servers and master coprocessors are unwanted,
+ If information about live servers is the only wanted.
  then codes in the following way:
  
  
  Admin admin = connection.getAdmin();
- ClusterStatus status = admin.getClusterStatus(
-Options.defaultOptions()
-   .excludeDeadServers()
-   .excludeMasterCoprocessors());
+ ClusterStatus status = 
admin.getClusterStatus(EnumSet.of(Option.LIVE_SERVERS));
  
  
 
@@ -293,7 +281,11 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 byte
-getVersion() 
+getVersion()
+Deprecated. 
+As of release 2.0.0, this 
will be removed in HBase 3.0.0
+
+
 
 
 int
@@ -313,13 +305,6 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 
-
-
-
-Methods inherited from 
class org.apache.hadoop.io.VersionedWritable
-readFields, write
-
-
 
 
 
@@ -347,7 +332,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 ClusterStatus
 http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
-public ClusterStatus(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hbaseVersion,
+public ClusterStatus(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hbaseVersion,
  http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String clusterid,
  http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map servers,
  http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection deadServers,
@@ -375,7 +360,7 @@ public 
 
 getDeadServerNames
-public http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection getDeadServerNames()
+public http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?i

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

2017-09-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/src-html/org/apache/hadoop/hbase/ClusterStatus.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/ClusterStatus.html 
b/apidocs/src-html/org/apache/hadoop/hbase/ClusterStatus.html
index 09abf56..ecd0db0 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/ClusterStatus.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/ClusterStatus.html
@@ -35,8 +35,8 @@
 027
 028import 
org.apache.hadoop.hbase.classification.InterfaceAudience;
 029import 
org.apache.hadoop.hbase.master.RegionState;
-030import 
org.apache.hadoop.io.VersionedWritable;
-031
+030
+031import com.google.common.base.Objects;
 032
 033/**
 034 * Status information on the HBase 
cluster.
@@ -55,586 +55,403 @@
 047 * 
  • Regions in transition at master
  • 048 *
  • The unique cluster ID
  • 049 * -050 * {@link Options} provides a way to filter out infos which unwanted. -051 * The following codes will retrieve all the cluster information. +050 * {@link Option} provides a way to get desired ClusterStatus information. +051 * The following codes will get all the cluster information. 052 *
     053 * {@code
     054 * // Original version still works
     055 * Admin admin = connection.getAdmin();
     056 * ClusterStatus status = 
    admin.getClusterStatus();
     057 * // or below, a new version which has 
    the same effects
    -058 * ClusterStatus status = 
    admin.getClusterStatus(Options.defaultOptions());
    +058 * ClusterStatus status = 
    admin.getClusterStatus(EnumSet.allOf(Option.class));
     059 * }
     060 * 
    -061 * If information about dead servers and master coprocessors are unwanted, +061 * If information about live servers is the only wanted. 062 * then codes in the following way: 063 *
     064 * {@code
     065 * Admin admin = connection.getAdmin();
    -066 * ClusterStatus status = 
    admin.getClusterStatus(
    -067 *
    Options.defaultOptions()
    -068 *   
    .excludeDeadServers()
    -069 *   
    .excludeMasterCoprocessors());
    -070 * }
    -071 * 
    -072 */ -073@InterfaceAudience.Public -074public class ClusterStatus extends VersionedWritable { -075 /** -076 * Version for object serialization. Incremented for changes in serialized -077 * representation. -078 *
    -079 *
    0
    Initial version
    -080 *
    1
    Added cluster ID
    -081 *
    2
    Added Map of ServerName to ServerLoad
    -082 *
    3
    Added master and backupMasters
    -083 *
    -084 */ -085 private static final byte VERSION = 2; -086 -087 private String hbaseVersion; -088 private Map liveServers; -089 private Collection deadServers; -090 private ServerName master; -091 private Collection backupMasters; -092 private List intransition; -093 private String clusterId; -094 private String[] masterCoprocessors; -095 private Boolean balancerOn; -096 -097 /** -098 * Use {@link ClusterStatus.Builder} to construct a ClusterStatus instead. -099 * @deprecated As of release 2.0.0, this will be removed in HBase 3.0.0 -100 * (HBASE-15511;). -101 */ -102 @Deprecated -103 public ClusterStatus(final String hbaseVersion, final String clusterid, -104 final Map servers, -105 final Collection deadServers, -106 final ServerName master, -107 final Collection backupMasters, -108 final List rit, -109 final String[] masterCoprocessors, -110 final Boolean balancerOn) { -111// TODO: make this constructor private -112this.hbaseVersion = hbaseVersion; -113this.liveServers = servers; -114this.deadServers = deadServers; -115this.master = master; -116this.backupMasters = backupMasters; -117this.intransition = rit; -118this.clusterId = clusterid; -119this.masterCoprocessors = masterCoprocessors; -120this.balancerOn = balancerOn; -121 } -122 -123 /** -124 * @return the names of region servers on the dead list -125 */ -126 public Collection getDeadServerNames() { -127if (deadServers == null) { -128 return Collections.emptyList(); -129} -130return Collections.unmodifiableCollection(deadServers); -131 } -132 -133 /** -134 * @return the number of region servers in the cluster -135 */ -136 public int getServersSize() { -137return liveServers != null ? liveServers.size() : 0; +066 * ClusterStatus status = admin.getClusterStatus(EnumSet.of(Option.LIVE_SERVERS)); +067 * } +068 *
    +069 */ +070@InterfaceAudience.Public +071public class ClusterStatus { +072 +073 // TODO: remove this in 3.0 +074 private static final byte VERSI

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/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 b2f4152..0c4f8a8 100644
    --- a/apidocs/src-html/org/apache/hadoop/hbase/client/Admin.html
    +++ b/apidocs/src-html/org/apache/hadoop/hbase/client/Admin.html
    @@ -30,21 +30,21 @@
     022import java.io.IOException;
     023import java.util.ArrayList;
     024import java.util.Collection;
    -025import java.util.List;
    -026import java.util.Map;
    -027import java.util.Set;
    -028import java.util.concurrent.Future;
    -029import java.util.regex.Pattern;
    -030
    -031import 
    org.apache.hadoop.conf.Configuration;
    -032import 
    org.apache.hadoop.hbase.Abortable;
    -033import 
    org.apache.hadoop.hbase.ClusterStatus;
    -034import 
    org.apache.hadoop.hbase.ClusterStatus.Options;
    -035import 
    org.apache.hadoop.hbase.HRegionInfo;
    -036import 
    org.apache.hadoop.hbase.HTableDescriptor;
    -037import 
    org.apache.hadoop.hbase.NamespaceDescriptor;
    -038import 
    org.apache.hadoop.hbase.NamespaceNotFoundException;
    -039import 
    org.apache.hadoop.hbase.ProcedureInfo;
    +025import java.util.EnumSet;
    +026import java.util.List;
    +027import java.util.Map;
    +028import java.util.Set;
    +029import java.util.concurrent.Future;
    +030import java.util.regex.Pattern;
    +031
    +032import 
    org.apache.hadoop.conf.Configuration;
    +033import 
    org.apache.hadoop.hbase.Abortable;
    +034import 
    org.apache.hadoop.hbase.ClusterStatus;
    +035import 
    org.apache.hadoop.hbase.ClusterStatus.Option;
    +036import 
    org.apache.hadoop.hbase.HRegionInfo;
    +037import 
    org.apache.hadoop.hbase.HTableDescriptor;
    +038import 
    org.apache.hadoop.hbase.NamespaceDescriptor;
    +039import 
    org.apache.hadoop.hbase.NamespaceNotFoundException;
     040import 
    org.apache.hadoop.hbase.RegionLoad;
     041import 
    org.apache.hadoop.hbase.ServerName;
     042import 
    org.apache.hadoop.hbase.TableExistsException;
    @@ -54,2217 +54,2226 @@
     046import 
    org.apache.hadoop.hbase.client.replication.TableCFs;
     047import 
    org.apache.hadoop.hbase.client.security.SecurityCapability;
     048import 
    org.apache.hadoop.hbase.ipc.CoprocessorRpcChannel;
    -049import 
    org.apache.hadoop.hbase.procedure2.LockInfo;
    -050import 
    org.apache.hadoop.hbase.quotas.QuotaFilter;
    -051import 
    org.apache.hadoop.hbase.quotas.QuotaRetriever;
    -052import 
    org.apache.hadoop.hbase.quotas.QuotaSettings;
    -053import 
    org.apache.hadoop.hbase.regionserver.wal.FailedLogCloseException;
    -054import 
    org.apache.hadoop.hbase.replication.ReplicationException;
    -055import 
    org.apache.hadoop.hbase.replication.ReplicationPeerConfig;
    -056import 
    org.apache.hadoop.hbase.replication.ReplicationPeerDescription;
    -057import 
    org.apache.hadoop.hbase.snapshot.HBaseSnapshotException;
    -058import 
    org.apache.hadoop.hbase.snapshot.RestoreSnapshotException;
    -059import 
    org.apache.hadoop.hbase.snapshot.SnapshotCreationException;
    -060import 
    org.apache.hadoop.hbase.snapshot.UnknownSnapshotException;
    -061import 
    org.apache.hadoop.hbase.util.Pair;
    -062
    -063/**
    -064 * The administrative API for HBase. 
    Obtain an instance from an {@link Connection#getAdmin()} and
    -065 * call {@link #close()} afterwards.
    -066 * 

    Admin can be used to create, drop, list, enable and disable tables, add and drop table -067 * column families and other administrative operations. -068 * -069 * @see ConnectionFactory -070 * @see Connection -071 * @see Table -072 * @since 0.99.0 -073 */ -074@InterfaceAudience.Public -075public interface Admin extends Abortable, Closeable { -076 int getOperationTimeout(); -077 -078 @Override -079 void abort(String why, Throwable e); -080 -081 @Override -082 boolean isAborted(); -083 -084 /** -085 * @return Connection used by this object. -086 */ -087 Connection getConnection(); -088 -089 /** -090 * @param tableName Table to check. -091 * @return True if table exists already. -092 * @throws IOException -093 */ -094 boolean tableExists(final TableName tableName) throws IOException; -095 -096 /** -097 * List all the userspace tables. -098 * -099 * @return - returns an array of read-only HTableDescriptors -100 * @throws IOException if a remote or network exception occurs -101 * @deprecated since 2.0 version and will be removed in 3.0 version. -102 * use {@link #listTableDescriptors()} -103 */ -104 @Deprecated -105 HTableDescriptor[] listTables() throws IOException; -106 -107 /** -108 * List all the userspace tables. -109 * -110 * @return - returns a list of TableDescriptors -111 * @throws IOException if a remote or network exception occurs -112 */ -113 List listTableDescriptors() throws IOException; -114 -115 /** -116 * List all the userspace tables matching the given pattern. -117 * -118 * @param pattern The compiled regular expression to match against -119 * @return - returns an array of read-only HTabl


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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/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 341730a..9043e21 100644
    --- a/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.html
    +++ b/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.html
    @@ -114,7 +114,7 @@ var activeTableTab = "activeTableTab";
     
     
     @InterfaceAudience.Private
    -public class RawAsyncHBaseAdmin
    +public class RawAsyncHBaseAdmin
     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 AsyncAdmin
     The implementation of AsyncAdmin.
    @@ -628,7 +628,7 @@ 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">CompletableFuture
    -getClusterStatus(ClusterStatus.Options options) 
    +getClusterStatus(http://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true";
     title="class or interface in java.util">EnumSet options) 
     
     
     http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">CompletableFuture
    @@ -655,127 +655,139 @@ 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">CompletableFutureString>
    +getLocks()
    +List locks.
    +
    +
    +
     http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">CompletableFuture
     getNamespaceDescriptor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String name)
     Get a namespace descriptor by name
     
     
    -
    +
     http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">CompletableFutureList>
     getOnlineRegions(ServerName serverName)
     Get all the online regions on a region server.
     
     
    -
    +
     private void
     getProcedureResult(long procId,
       http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">CompletableFutureVoid> future) 
     
    -
    +
    +http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">CompletableFutureString>
    +getProcedures()
    +List procedures
    +
    +
    +
     http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">CompletableFutureList>
     getQuota(QuotaFilter filter)
     List the quotas based on the filter.
     
     
    -
    +
     private http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">CompletableFuture
     getRegionInfo(byte[] regionNameOrEncodedRegionName)
     Get the region info for the passed region name.
     
     
    -
    +
     http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">CompletableFutureList>
     getRegionLoads(ServerName serverName,
       http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
     title="class or interface in java.util">Optional tableName)
     Get a list of RegionLoad of all regions hosted on a 
    region seerver for a table.
     
     
    -
    +
     (package private) http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">CompletableFuture
     getRegionLocation(byte[] regionNam

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/src-html/org/apache/hadoop/hbase/HConstants.html
    --
    diff --git a/apidocs/src-html/org/apache/hadoop/hbase/HConstants.html 
    b/apidocs/src-html/org/apache/hadoop/hbase/HConstants.html
    index d016536..00eeb2a 100644
    --- a/apidocs/src-html/org/apache/hadoop/hbase/HConstants.html
    +++ b/apidocs/src-html/org/apache/hadoop/hbase/HConstants.html
    @@ -237,7 +237,7 @@
     229  public static final String 
    ZK_SESSION_TIMEOUT = "zookeeper.session.timeout";
     230
     231  /** Default value for ZooKeeper session 
    timeout */
    -232  public static final int 
    DEFAULT_ZK_SESSION_TIMEOUT = 180 * 1000;
    +232  public static final int 
    DEFAULT_ZK_SESSION_TIMEOUT = 90 * 1000;
     233
     234  /** Parameter name for port region 
    server listens on. */
     235  public static final String 
    REGIONSERVER_PORT = "hbase.regionserver.port";
    @@ -727,7 +727,7 @@
     719  /**
     720   * Default value of {@link 
    #HBASE_CLIENT_MAX_PERSERVER_TASKS}.
     721   */
    -722  public static final int 
    DEFAULT_HBASE_CLIENT_MAX_PERSERVER_TASKS = 2;
    +722  public static final int 
    DEFAULT_HBASE_CLIENT_MAX_PERSERVER_TASKS = 5;
     723
     724  /**
     725   * The maximum number of concurrent 
    connections the client will maintain to a single
    @@ -773,7 +773,7 @@
     765  /**
     766   * Default value of {@link 
    #HBASE_CLIENT_RETRIES_NUMBER}.
     767   */
    -768  public static final int 
    DEFAULT_HBASE_CLIENT_RETRIES_NUMBER = 31;
    +768  public static final int 
    DEFAULT_HBASE_CLIENT_RETRIES_NUMBER = 35;
     769
     770  /**
     771   * Parameter name to set the default 
    scanner caching for all clients.
    @@ -1317,7 +1317,7 @@
     1309
     1310  public static final String 
    SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT =
     1311  
    "hbase.snapshot.restore.take.failsafe.snapshot";
    -1312  public static final boolean 
    DEFAULT_SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT = false;
    +1312  public static final boolean 
    DEFAULT_SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT = true;
     1313
     1314  public static final String 
    SNAPSHOT_RESTORE_FAILSAFE_NAME =
     1315  
    "hbase.snapshot.restore.failsafe.name";
    
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/src-html/org/apache/hadoop/hbase/ProcedureInfo.html
    --
    diff --git a/apidocs/src-html/org/apache/hadoop/hbase/ProcedureInfo.html 
    b/apidocs/src-html/org/apache/hadoop/hbase/ProcedureInfo.html
    deleted file mode 100644
    index 03e7132..000
    --- a/apidocs/src-html/org/apache/hadoop/hbase/ProcedureInfo.html
    +++ /dev/null
    @@ -1,287 +0,0 @@
    -http://www.w3.org/TR/html4/loose.dtd";>
    -
    -
    -Source code
    -
    -
    -
    -
    -001/**
    -002 * Licensed to the Apache Software 
    Foundation (ASF) under one
    -003 * or more contributor license 
    agreements.  See the NOTICE file
    -004 * distributed with this work for 
    additional information
    -005 * regarding copyright ownership.  The 
    ASF licenses this file
    -006 * to you under the Apache License, 
    Version 2.0 (the
    -007 * "License"); you may not use this file 
    except in compliance
    -008 * with the License.  You may obtain a 
    copy of the License at
    -009 *
    -010 * 
    http://www.apache.org/licenses/LICENSE-2.0
    -011 *
    -012 * Unless required by applicable law or 
    agreed to in writing, software
    -013 * distributed under the License is 
    distributed on an "AS IS" BASIS,
    -014 * WITHOUT WARRANTIES OR CONDITIONS OF 
    ANY KIND, either express or implied.
    -015 * See the License for the specific 
    language governing permissions and
    -016 * limitations under the License.
    -017 */
    -018
    -019package org.apache.hadoop.hbase;
    -020
    -021import java.io.IOException;
    -022
    -023import 
    org.apache.hadoop.hbase.classification.InterfaceAudience;
    -024import 
    org.apache.hadoop.hbase.security.User;
    -025import 
    org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
    -026import 
    org.apache.hadoop.hbase.util.NonceKey;
    -027import 
    org.apache.hadoop.util.StringUtils;
    -028
    -029/**
    -030 * Procedure information
    -031 */
    -032@InterfaceAudience.Public
    -033public class ProcedureInfo implements 
    Cloneable {
    -034  private final long procId;
    -035  private final String procName;
    -036  private final String procOwner;
    -037  private final ProcedureState 
    procState;
    -038  private final long parentId;
    -039  private final NonceKey nonceKey;
    -040  private final IOException exception;
    -041  private final long lastUpdate;
    -042  private final long submittedTime;
    -043  private final byte[] result;
    -044
    -045  private long clientAckTime = -1;
    -046
    -047  @InterfaceAudience.Private
    -048  public ProcedureInfo(
    -049  final long procId,
    -050  final String procName,
    -051  final String procOwner,
    -052  final ProcedureState procState,
    -053  final long parentId,
    -054  final NonceKey nonceKey,
    -055  final IOException exception,
    -056  final long lastUpdate,
    -057  final long submittedTime,
    -058  final byte[] result) {
    -059this.procId = procId;
    -060this.procName = procName;
    -061this.procOwner = procOwn

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/allclasses-frame.html
    --
    diff --git a/apidocs/allclasses-frame.html b/apidocs/allclasses-frame.html
    index 5fad7c6..df9995b 100644
    --- a/apidocs/allclasses-frame.html
    +++ b/apidocs/allclasses-frame.html
    @@ -230,7 +230,6 @@
     PositionedByteRange
     PreemptiveFastFailException
     PrefixFilter
    -ProcedureInfo
     ProcedureState
     Put
     PutCombiner
    
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/allclasses-noframe.html
    --
    diff --git a/apidocs/allclasses-noframe.html b/apidocs/allclasses-noframe.html
    index 958adb2..d8e3e3f 100644
    --- a/apidocs/allclasses-noframe.html
    +++ b/apidocs/allclasses-noframe.html
    @@ -230,7 +230,6 @@
     PositionedByteRange
     PreemptiveFastFailException
     PrefixFilter
    -ProcedureInfo
     ProcedureState
     Put
     PutCombiner
    
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/constant-values.html
    --
    diff --git a/apidocs/constant-values.html b/apidocs/constant-values.html
    index 6d727a9..2e36c77 100644
    --- a/apidocs/constant-values.html
    +++ b/apidocs/constant-values.html
    @@ -777,7 +777,7 @@
     
     public static final int
     DEFAULT_HBASE_CLIENT_MAX_PERSERVER_TASKS
    -2
    +5
     
     
     
    @@ -812,7 +812,7 @@
     
     public static final int
     DEFAULT_HBASE_CLIENT_RETRIES_NUMBER
    -31
    +35
     
     
     
    @@ -1043,7 +1043,7 @@
     
     public static final boolean
     DEFAULT_SNAPSHOT_RESTORE_TAKE_FAILSAFE_SNAPSHOT
    -false
    +true
     
     
     
    @@ -1099,7 +1099,7 @@
     
     public static final int
     DEFAULT_ZK_SESSION_TIMEOUT
    -18
    +9
     
     
     
    
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/deprecated-list.html
    --
    diff --git a/apidocs/deprecated-list.html b/apidocs/deprecated-list.html
    index a95c297..d67c324 100644
    --- a/apidocs/deprecated-list.html
    +++ b/apidocs/deprecated-list.html
    @@ -74,6 +74,7 @@
     Contents
     
     Deprecated Classes
    +Deprecated Enums
     Deprecated Exceptions
     Deprecated Fields
     Deprecated Methods
    @@ -131,6 +132,26 @@
     
     
     
    +
    +
    +
    +
    +
    +
    +Deprecated Enums 
    +
    +Enum and Description
    +
    +
    +
    +org.apache.hadoop.hbase.filter.CompareFilter.CompareOp
    +since 2.0.0. Will be 
    removed in 3.0.0. Use CompareOperator 
    instead.
    +
    +
    +
    +
    +
    +
     
     
     
    @@ -323,6 +344,30 @@
     
     
     
    +org.apache.hadoop.hbase.filter.CompareFilter.compareFamily(CompareFilter.CompareOp,
     ByteArrayComparable, Cell)
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use CompareFilter.compareFamily(CompareOperator,
     ByteArrayComparable, Cell)
    +
    +
    +
    +org.apache.hadoop.hbase.filter.CompareFilter.compareQualifier(CompareFilter.CompareOp,
     ByteArrayComparable, Cell)
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use CompareFilter.compareQualifier(CompareOperator,
     ByteArrayComparable, Cell)
    +
    +
    +
    +org.apache.hadoop.hbase.filter.CompareFilter.compareRow(CompareFilter.CompareOp,
     ByteArrayComparable, Cell)
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use CompareFilter.compareRow(CompareOperator,
     ByteArrayComparable, Cell)
    +
    +
    +
    +org.apache.hadoop.hbase.filter.CompareFilter.compareValue(CompareFilter.CompareOp,
     ByteArrayComparable, Cell)
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use CompareFilter.compareValue(CompareOperator,
     ByteArrayComparable, Cell)
    +
    +
    +
     org.apache.hadoop.hbase.mapreduce.CellCreator.create(byte[],
     int, int, byte[], int, int, byte[], int, int, long, byte[], int, int, 
    String)
     
     
    @@ -374,6 +419,18 @@
     
     
     
    +org.apache.hadoop.hbase.filter.ParseFilter.createCompareOp(byte[])
    +Since 2.0
    + 
    +
    +
    +
    +org.apache.hadoop.hbase.filter.ParseFilter.createCompareOperator(byte[])
    +Since 2.0
    + 
    +
    +
    +
     org.apache.hadoop.hbase.client.Admin.deleteColumn(TableName,
     byte[])
     As of release 2.0.0.
      (https://issues.apache.org/jira/browse/HBASE-1989";>HBASE-1989).
    @@ -526,6 +583,16 @@
     
     
     
    +org.apache.hadoop.hbase.filter.CompareFilter.getOperator()
    +since 2.0.0. Will be 
    removed in 3.0.0. Use CompareFilter.getCompareOperator()
     instead.
    +
    +
    +
    +org.apache.hadoop.hbase.filter.SingleColumnValueFilter.getOperator()
    +since 2.0.0. Will be 
    removed in 3.0.0. Use SingleColumnValueFilter.getCompareOperator()
     instead.
    +
    +
    +
     org.apache.hadoop.hbase.HTableDescriptor.getOwnerString()
     
     
    @@ -649,90 +716,95 @@
     
     
     
    +org.apache.hadoop.hbase.ClusterStatus.getVersion()
    +As of release 2.0.0, this 
    will be removed in HBase 3.0.0
    +
    +
    +
     org.apache.hadoop.hbase.mapreduce.TableMapReduceUtil.initCredentialsForCluster(Job,
     String)
     Since 1.2.0, use TableMapReduceUtil.initCredentialsForCluster(Job,
     Configuration) instead.
     
     
    -
    +
     org.apache.hadoop.hbase.client.Get.isClosestRowBefore()
     since 2.0.0 and will be 
    removed in 3.0.0
     
     
    -
    +
     org.apache.hadoop.hbase.HColumnDescriptor.isLegalFamilyName(byte[])
     Use ColumnFamilyDescriptorBuilder.isLegalColumnFamilyName(byte[]).
     
     
    -
    +
     org.apache.hadoop.hbase.client.Result.isPartial()
     the wo

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/index-all.html
    --
    diff --git a/devapidocs/index-all.html b/devapidocs/index-all.html
    index 10debf0..ba4383a 100644
    --- a/devapidocs/index-all.html
    +++ b/devapidocs/index-all.html
    @@ -2528,8 +2528,6 @@
      
     addVersionDelete(Cell)
     - Method in class org.apache.hadoop.hbase.security.visibility.VisibilityNewVersionBehaivorTracker.VisibilityDeleteVersionsNode
      
    -addWaitingProcedure(LockInfo.WaitingProcedure)
     - Method in class org.apache.hadoop.hbase.procedure2.LockInfo
    - 
     addWAL(WAL)
     - Method in class org.apache.hadoop.hbase.regionserver.LogRoller
      
     addWALFiles(List,
     String, String) - Method in class 
    org.apache.hadoop.hbase.backup.impl.BackupSystemTable
    @@ -3123,6 +3121,8 @@
      
     appendHisto
     - Variable in class org.apache.hadoop.hbase.regionserver.MetricsRegionServerSourceImpl
      
    +appendJRuby(StringBuilder,
     Object) - Static method in class org.apache.hadoop.hbase.util.JRubyFormat
    + 
     appendKeyTo(Cell,
     byte[], int) - Static method in class org.apache.hadoop.hbase.KeyValueUtil
      
     appendKeyTo(Cell,
     ByteBuffer, int) - Static method in class 
    org.apache.hadoop.hbase.KeyValueUtil
    @@ -7052,6 +7052,8 @@
      
     builder
     - Variable in class org.apache.hadoop.hbase.procedure.ProcedureMember
      
    +builder
     - Variable in class org.apache.hadoop.hbase.procedure2.ProcedureUtil.StateSerializer
    + 
     Builder()
     - Constructor for class org.apache.hadoop.hbase.regionserver.ScannerContext.Builder
      
     Builder(boolean)
     - Constructor for class org.apache.hadoop.hbase.regionserver.ScannerContext.Builder
    @@ -7912,7 +7914,7 @@
      
     cacheBlocks
     - Variable in class org.apache.hadoop.hbase.rest.model.ScannerModel
      
    -cacheBlockWithWait(BlockCacheKey,
     Cacheable, boolean, boolean) - Method in class 
    org.apache.hadoop.hbase.io.hfile.bucket.BucketCache
    +cacheBlockWithWait(BlockCacheKey,
     Cacheable, boolean, boolean, boolean) - Method in class 
    org.apache.hadoop.hbase.io.hfile.bucket.BucketCache
     
     Cache the block to ramCache
     
    @@ -11887,8 +11889,6 @@
      
     clientAckTime
     - Variable in class org.apache.hadoop.hbase.procedure2.ProcedureExecutor.CompletedProcedureRetainer
      
    -clientAckTime
     - Variable in class org.apache.hadoop.hbase.ProcedureInfo
    - 
     clientAddress
     - Variable in class org.apache.hadoop.hbase.monitoring.MonitoredRPCHandlerImpl
      
     ClientAsyncPrefetchScanner - Class in org.apache.hadoop.hbase.client
    @@ -12020,8 +12020,6 @@
     
     clone()
     - Method in class org.apache.hadoop.hbase.monitoring.MonitoredTaskImpl
      
    -clone() - 
    Method in class org.apache.hadoop.hbase.ProcedureInfo
    - 
     cloneAndAddTags(Cell,
     List) - Static method in class 
    org.apache.hadoop.hbase.KeyValue
     
     Create a new KeyValue by copying existing cell and adding 
    new tags
    @@ -13094,9 +13092,9 @@
     
     Builder for construct a ClusterStatus.
     
    -ClusterStatus.Options - Class in org.apache.hadoop.hbase
    +ClusterStatus.Option - Enum in org.apache.hadoop.hbase
     
    -Options provides a way to filter out unwanted 
    information.
    +Kinds of ClusterStatus
     
     ClusterStatusChore - Class in org.apache.hadoop.hbase.master.balancer
     
    @@ -14377,11 +14375,11 @@
     
     compare(CoprocessorEnvironment,
     CoprocessorEnvironment) - Method in class 
    org.apache.hadoop.hbase.coprocessor.CoprocessorHost.EnvironmentPriorityComparator
      
    -compare(CompareFilter.CompareOp,
     int) - Method in class org.apache.hadoop.hbase.filter.CompareFilter
    +compare(CompareFilter.CompareOp,
     int) - Static method in class org.apache.hadoop.hbase.filter.CompareFilter
      
    -compare(HDFSBlocksDistribution.HostAndWeight,
     HDFSBlocksDistribution.HostAndWeight) - Method in class 
    org.apache.hadoop.hbase.HDFSBlocksDistribution.HostAndWeight.WeightComparator
    +compare(CompareOperator,
     int) - Static method in class org.apache.hadoop.hbase.filter.CompareFilter
      
    -compare(Cacheable,
     Cacheable) - Method in class org.apache.hadoop.hbase.io.hfile.LruBlockCache
    +compare(HDFSBlocksDistribution.HostAndWeight,
     HDFSBlocksDistribution.HostAndWeight) - Method in class 
    org.apache.hadoop.hbase.HDFSBlocksDistribution.HostAndWeight.WeightComparator
      
     compare(byte[],
     int, int, byte[], int, int) - Method in class 
    org.apache.hadoop.hbase.io.ImmutableBytesWritable.Comparator
      
    @@ -14451,6 +14449,8 @@
      
     compare(byte[],
     int, int, byte[], int, int) - Method in class 
    org.apache.hadoop.hbase.util.Bytes.RowEndKeyComparator
      
    +compareCacheBlock(Cacheable,
     Cacheable) - Static method in class 
    org.apache.hadoop.hbase.io.hfile.BlockCacheUtil
    + 
     compareCellKeysWithinRow(Cell,
     Cell) - Static method in class org.apache.hadoop.hbase.mapreduce.SyncTable.SyncMapper
     
     Compare families, qualifiers, and timestamps of the given 
    Cells.
    @@ -14498,6 +14498,13 @@
     Compare cell's column family against given comparator
     
     compareFamily(CompareFilter.CompareOp,
     ByteArrayComparable, Cell) - Method in class 
    org.apache.hadoop.hbase.filter.CompareFilter
    +
    +Deprecated.
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use C

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/checkstyle.rss
    --
    diff --git a/checkstyle.rss b/checkstyle.rss
    index 53190b1..6c678dc 100644
    --- a/checkstyle.rss
    +++ b/checkstyle.rss
    @@ -25,8 +25,8 @@ under the License.
     en-us
     ©2007 - 2017 The Apache Software Foundation
     
    -  File: 2039,
    - Errors: 12943,
    +  File: 2043,
    + Errors: 12909,
      Warnings: 0,
      Infos: 0
       
    @@ -573,7 +573,7 @@ under the License.
       0
     
     
    -  2
    +  3
     
       
       
    @@ -2225,7 +2225,7 @@ under the License.
       0
     
     
    -  7
    +  9
     
       
       
    @@ -2323,7 +2323,7 @@ under the License.
       0
     
     
    -  122
    +  123
     
       
       
    @@ -3462,20 +3462,6 @@ under the License.
       
       
     
    -  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.ProcedureInfo.java";>org/apache/hadoop/hbase/ProcedureInfo.java
    -
    -
    -  0
    -
    -
    -  0
    -
    -
    -  0
    -
    -  
    -  
    -
       http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.io.hfile.CacheConfig.java";>org/apache/hadoop/hbase/io/hfile/CacheConfig.java
     
     
    @@ -4591,7 +4577,7 @@ under the License.
       0
     
     
    -  21
    +  25
     
       
       
    @@ -4983,7 +4969,7 @@ under the License.
       0
     
     
    -  2
    +  1
     
       
       
    @@ -5011,7 +4997,7 @@ under the License.
       0
     
     
    -  14
    +  12
     
       
       
    @@ -5767,7 +5753,7 @@ under the License.
       0
     
     
    -  8
    +  10
     
       
       
    @@ -6579,7 +6565,7 @@ under the License.
       0
     
     
    -  5
    +  6
     
       
       
    @@ -7228,6 +7214,20 @@ under the License.
       
       
     
    +  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.protobuf.ProtobufMessageConverter.java";>org/apache/hadoop/hbase/protobuf/ProtobufMessageConverter.java
    +
    +
    +  0
    +
    +
    +  0
    +
    +
    +  1
    +
    +  
    +  
    +
       http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.ipc.SimpleRpcServerResponder.java";>org/apache/hadoop/hbase/ipc/SimpleRpcServerResponder.java
     
     
    @@ -8217,7 +8217,7 @@ under the License.
       0
     
     
    -  125
    +  114
     
       
       
    @@ -9463,7 +9463,7 @@ under the License.
       0
     
     
    -  6
    +  7
     
       
       
    @@ -9547,7 +9547,7 @@ under the License.
       0
     
     
    -  8
    +  3
     
       
       
    @@ -9771,7 +9771,7 @@ under the License.
       0
     
     
    -  4
    +  2
     
       
       
    @@ -10415,7 +10415,7 @@ under the License.
       0
     
     
    -  32
    +  24
     
       
       
    @@ -11269,7 +11269,7 @@ under the License.
       0
     
     
    -  13
    +  14
     
       
       
    @@ -11745,7 +11745,7 @@ under the License.
       0
     
     
    -  1
    +  2
     
      

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/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 43348c4..c7f10a7 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":38,"i10":18,"i11":6,"i12":18,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":18,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":18,"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":18,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":18,"i48":6,"i49":6,"i50":6,"i51":18,"i52":6,"i53":18,"i54":6,"i55":6,"i56":6,"i57":6,"i58":6,"i59":6,"i60":6,"i61":6,"i62":6,"i63":6,"i64":6,"i65":6,"i66":6,"i67":18,"i68":6,"i69":6,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":18,"i77":6,"i78":18,"i79":6,"i80":18,"i81":6,"i82":18,"i83":6,"i84":6,"i85":18,"i86":6,"i87":18,"i88":6,"i89":6,"i90":6,"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":18,"i114":18,"i115":6,"i116":6,"i117":18,"i118":6,"
     i119":6,"i120":6,"i121":6,"i122":6,"i123":6,"i124":6,"i125":6,"i126":6};
    +var methods = 
    {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":18,"i6":6,"i7":6,"i8":6,"i9":38,"i10":18,"i11":6,"i12":18,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":18,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":18,"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":18,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":6,"i48":18,"i49":6,"i50":6,"i51":6,"i52":6,"i53":18,"i54":6,"i55":18,"i56":6,"i57":6,"i58":6,"i59":6,"i60":6,"i61":6,"i62":6,"i63":6,"i64":6,"i65":6,"i66":6,"i67":6,"i68":6,"i69":18,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":18,"i77":6,"i78":18,"i79":6,"i80":18,"i81":6,"i82":18,"i83":6,"i84":6,"i85":18,"i86":6,"i87":18,"i88":6,"i89":6,"i90":6,"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":18,"i114":18,"i115":6,"i116":6,"i117":18,"i118":6,"
     i119":6,"i120":6,"i121":6,"i122":6,"i123":6,"i124":6,"i125":6,"i126":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 AsyncAdmin
    +public interface AsyncAdmin
     The asynchronous administrative API for HBase.
      
      This feature is still under development, so marked as IA.Private. Will change 
    to public when
    @@ -409,7 +409,7 @@ public interface 
     http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">CompletableFuture
    -getClusterStatus(ClusterStatus.Options options) 
    +getClusterStatus(http://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true";
     title="class or interface in java.util">EnumSet options) 
     
     
     http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">CompletableFuture
    @@ -436,103 +436,115 @@ 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">CompletableFutureString>
    +getLocks()
    +List locks.
    +
    +
    +
     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">CompletableFuture
     getMaster() 
     
    -
    +
     http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">CompletableFuture
     getNamespaceDescriptor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String name)
     Get a namespace descriptor by name
     
     
    -
    +
     http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">C

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/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 9084eb0..908f7d9 100644
    --- a/apidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html
    +++ b/apidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdmin.html
    @@ -27,1105 +27,1104 @@
     019
     020import java.util.List;
     021import java.util.Collection;
    -022import java.util.Map;
    -023import java.util.Optional;
    -024import java.util.Set;
    -025import 
    java.util.concurrent.CompletableFuture;
    -026import java.util.function.Function;
    -027import java.util.regex.Pattern;
    -028
    -029import 
    org.apache.hadoop.hbase.ClusterStatus;
    -030import 
    org.apache.hadoop.hbase.ClusterStatus.Options;
    -031import 
    org.apache.hadoop.hbase.HRegionInfo;
    -032import 
    org.apache.hadoop.hbase.ProcedureInfo;
    +022import java.util.EnumSet;
    +023import java.util.Map;
    +024import java.util.Optional;
    +025import java.util.Set;
    +026import 
    java.util.concurrent.CompletableFuture;
    +027import java.util.function.Function;
    +028import java.util.regex.Pattern;
    +029
    +030import 
    org.apache.hadoop.hbase.ClusterStatus;
    +031import 
    org.apache.hadoop.hbase.ClusterStatus.Option;
    +032import 
    org.apache.hadoop.hbase.HRegionInfo;
     033import 
    org.apache.hadoop.hbase.RegionLoad;
     034import 
    org.apache.hadoop.hbase.ServerName;
     035import 
    org.apache.hadoop.hbase.NamespaceDescriptor;
     036import 
    org.apache.hadoop.hbase.TableName;
     037import 
    org.apache.hadoop.hbase.classification.InterfaceAudience;
    -038import 
    org.apache.hadoop.hbase.procedure2.LockInfo;
    -039import 
    org.apache.hadoop.hbase.quotas.QuotaFilter;
    -040import 
    org.apache.hadoop.hbase.quotas.QuotaSettings;
    -041import 
    org.apache.hadoop.hbase.client.RawAsyncTable.CoprocessorCallable;
    -042import 
    org.apache.hadoop.hbase.client.replication.TableCFs;
    -043import 
    org.apache.hadoop.hbase.client.security.SecurityCapability;
    -044import 
    org.apache.hadoop.hbase.replication.ReplicationPeerConfig;
    -045import 
    org.apache.hadoop.hbase.replication.ReplicationPeerDescription;
    -046import 
    org.apache.hadoop.hbase.util.Pair;
    -047
    -048import com.google.protobuf.RpcChannel;
    -049
    -050/**
    -051 * The asynchronous administrative API 
    for HBase.
    -052 * 

    -053 * This feature is still under development, so marked as IA.Private. Will change to public when -054 * done. Use it with caution. -055 * @since 2.0.0 -056 */ -057@InterfaceAudience.Public -058public interface AsyncAdmin { -059 -060 /** -061 * @param tableName Table to check. -062 * @return True if table exists already. The return value will be wrapped by a -063 * {@link CompletableFuture}. -064 */ -065 CompletableFuture tableExists(TableName tableName); -066 -067 /** -068 * List all the userspace tables. -069 * @return - returns a list of TableDescriptors wrapped by a {@link CompletableFuture}. -070 * @see #listTables(Optional, boolean) -071 */ -072 default CompletableFuture> listTables() { -073return listTables(Optional.empty(), false); -074 } -075 -076 /** -077 * List all the tables matching the given pattern. -078 * @param pattern The compiled regular expression to match against -079 * @param includeSysTables False to match only against userspace tables -080 * @return - returns a list of TableDescriptors wrapped by a {@link CompletableFuture}. -081 */ -082 CompletableFuture> listTables(Optional pattern, -083 boolean includeSysTables); -084 -085 /** -086 * List all of the names of userspace tables. -087 * @return a list of table names wrapped by a {@link CompletableFuture}. -088 * @see #listTableNames(Optional, boolean) -089 */ -090 default CompletableFuture> listTableNames() { -091return listTableNames(Optional.empty(), false); -092 } -093 -094 /** -095 * List all of the names of userspace tables. -096 * @param pattern The regular expression to match against -097 * @param includeSysTables False to match only against userspace tables -098 * @return a list of table names wrapped by a {@link CompletableFuture}. -099 */ -100 CompletableFuture> listTableNames(Optional pattern, -101 boolean includeSysTables); -102 -103 /** -104 * Method for getting the tableDescriptor -105 * @param tableName as a {@link TableName} -106 * @return the read-only tableDescriptor wrapped by a {@link CompletableFuture}. -107 */ -108 CompletableFuture getTableDescriptor(TableName tableName); -109 -110 /** -111 * Creates a new table. -112 * @param desc table descriptor for table -113 */ -114 default CompletableFuture createTable(TableDescriptor desc) { -115return createTable(desc, Optional.empty()); -116 } -11


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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/checkstyle-aggregate.html
    --
    diff --git a/checkstyle-aggregate.html b/checkstyle-aggregate.html
    index e3c916b..1928d4a 100644
    --- a/checkstyle-aggregate.html
    +++ b/checkstyle-aggregate.html
    @@ -7,7 +7,7 @@
       
     
     
    -
    +
     
     Apache HBase – Checkstyle Results
     
    @@ -286,10 +286,10 @@
      Warnings
      Errors
     
    -2039
    +2043
     0
     0
    -12943
    +12909
     
     Files
     
    @@ -782,7 +782,7 @@
     org/apache/hadoop/hbase/client/Admin.java
     0
     0
    -83
    +84
     
     org/apache/hadoop/hbase/client/Append.java
     0
    @@ -832,7 +832,7 @@
     org/apache/hadoop/hbase/client/AsyncHBaseAdmin.java
     0
     0
    -8
    +3
     
     org/apache/hadoop/hbase/client/AsyncMasterRequestRpcRetryingCaller.java
     0
    @@ -1122,7 +1122,7 @@
     org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.java
     0
     0
    -125
    +114
     
     org/apache/hadoop/hbase/client/RawAsyncTable.java
     0
    @@ -1287,7 +1287,7 @@
     org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.java
     0
     0
    -2
    +1
     
     org/apache/hadoop/hbase/client/SimpleRequestController.java
     0
    @@ -1847,12 +1847,12 @@
     org/apache/hadoop/hbase/filter/CompareFilter.java
     0
     0
    -21
    +25
     
     org/apache/hadoop/hbase/filter/DependentColumnFilter.java
     0
     0
    -8
    +10
     
     org/apache/hadoop/hbase/filter/FamilyFilter.java
     0
    @@ -1937,7 +1937,7 @@
     org/apache/hadoop/hbase/filter/ParseFilter.java
     0
     0
    -37
    +47
     
     org/apache/hadoop/hbase/filter/PrefixFilter.java
     0
    @@ -1962,17 +1962,17 @@
     org/apache/hadoop/hbase/filter/RowFilter.java
     0
     0
    -6
    +5
     
     org/apache/hadoop/hbase/filter/SingleColumnValueExcludeFilter.java
     0
     0
    -14
    +21
     
     org/apache/hadoop/hbase/filter/SingleColumnValueFilter.java
     0
     0
    -29
    +20
     
     org/apache/hadoop/hbase/filter/SkipFilter.java
     0
    @@ -1992,7 +1992,7 @@
     org/apache/hadoop/hbase/filter/ValueFilter.java
     0
     0
    -6
    +7
     
     org/apache/hadoop/hbase/filter/WhileMatchFilter.java
     0
    @@ -2282,7 +2282,7 @@
     org/apache/hadoop/hbase/io/hfile/BlockCacheUtil.java
     0
     0
    -23
    +24
     
     org/apache/hadoop/hbase/io/hfile/BlockCachesIterator.java
     0
    @@ -2402,7 +2402,7 @@
     org/apache/hadoop/hbase/io/hfile/LruBlockCache.java
     0
     0
    -13
    +14
     
     org/apache/hadoop/hbase/io/hfile/LruCachedBlock.java
     0
    @@ -2437,7 +2437,7 @@
     org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.java
     0
     0
    -43
    +54
     
     org/apache/hadoop/hbase/io/hfile/bucket/ByteBufferIOEngine.java
     0
    @@ -3117,7 +3117,7 @@
     org/apache/hadoop/hbase/master/HMaster.java
     0
     0
    -254
    +256
     
     org/apache/hadoop/hbase/master/HMasterCommandLine.java
     0
    @@ -3162,7 +3162,7 @@
     org/apache/hadoop/hbase/master/MasterRpcServices.java
     0
     0
    -20
    +16
     
     org/apache/hadoop/hbase/master/MasterServices.java
     0
    @@ -3297,7 +3297,7 @@
     org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.java
     0
     0
    -85
    +83
     
     org/apache/hadoop/hbase/master/assignment/RegionStateStore.java
     0
    @@ -3317,12 +3317,12 @@
     org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java
     0
     0
    -81
    +80
     
     org/apache/hadoop/hbase/master/assignment/UnassignProcedure.java
     0
     0
    -9
    +7
     
     org/apache/hadoop/hbase/master/assignment/Util.java
     0
    @@ -3432,7 +3432,7 @@
     org/apache/hadoop/hbase/master/locking/LockManager.java
     0
     0
    -4
    +2
     
     org/apache/hadoop/hbase/master/locking/LockProcedure.java
     0
    @@ -3522,7 +3522,7 @@
     org/apache/hadoop/hbase/master/procedure/MasterProcedureScheduler.java
     0
     0
    -32
    +24
     
     org/apache/hadoop/hbase/master/procedure/MasterProcedureUtil.java
     0
    @@ -3544,320 +3544,330 @@
     0
     45
     
    +org/apache/hadoop/hbase/master/procedure/ProcedureDescriber.java
    +0
    +0
    +1
    +
     org/apache/hadoop/hbase/master/procedure/ProcedureSyncWait.java
     0
     0
     46
    -
    +
     org/apache/hadoop/hbase/master/procedure/RSProcedureDispatcher.java
     0
     0
     6
    -
    +
     org/apache/hadoop/hbase/master/procedure/RecoverMetaProcedure.java
     0
     0
    -2
    -
    +3
    +
     org/apache/hadoop/hbase/master/procedure/RestoreSnapshotProcedure.java
     0
     0
     4
    -
    +
     org/apache/hadoop/hbase/master/procedure/ServerCrashProcedure.java
     0
     0
    -56
    -
    +57
    +
     org/apache/hadoop/hbase/master/procedure/TruncateTableProcedure.java
     0
     0
     1
    -
    +
     org/apache/hadoop/hbase/master/replication/ReplicationManager.java
     0
     0
     3
    -
    +
     org/apache/hadoop/hbase/master/snapshot/DisabledTableSnapshotHandler.java
     0
     0
     1
    -
    +
     org/apache/hadoop/hbase/master/snapshot/EnabledTableSnapshotHandler.java
     0
     0
     3
    -
    +
     org/apache/hadoop/hbase/master/snapshot/MasterSnapshotVerifier.java
     0
     0
     5
    -
    +
     org/apache/hadoop/hbase/master/snapshot/SnapshotFileCache.java
     0
     0
     4
    -
    +
     org/apache/hadoop/hbase/master/snapshot/SnapshotHFileCleaner.java
     0
     0
     1
    -
    +
     org/apache/hadoop/hbase/master/snapshot/SnapshotManager.java
     0
     0
     17
    -
    +
     org/apache/hadoop/hbase/master/snapshot/TakeSnapshotHandler.java
     0
     0
    -6
    -
    +3
    +
     org/apache/hadoop/hbase/metrics/BaseSourceImpl.java
     0
     0
     8
    -
    +
     org/apache/hadoop/hbase/metrics/Interns.java
     0
     0
     1
    -
    +
     org/apache/hadoop/hbase/metrics/MetricRegistriesLoader.java
     0
     0
     2
    -
    +
     org/apache/hadoop/hbase/metrics/MetricSet.java
     0
     0
     1
    -
    +
     org/apache/hadoop/hbase/metrics/MetricsInfoI

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/coprocessor/MasterObserver.html
    --
    diff --git a/devapidocs/org/apache/hadoop/hbase/coprocessor/MasterObserver.html 
    b/devapidocs/org/apache/hadoop/hbase/coprocessor/MasterObserver.html
    index c93b04a..0ae745c 100644
    --- a/devapidocs/org/apache/hadoop/hbase/coprocessor/MasterObserver.html
    +++ b/devapidocs/org/apache/hadoop/hbase/coprocessor/MasterObserver.html
    @@ -111,7 +111,7 @@ var activeTableTab = "activeTableTab";
     
     @InterfaceAudience.LimitedPrivate(value="Coprocesssor")
      @InterfaceStability.Evolving
    -public interface MasterObserver
    +public interface MasterObserver
     extends Coprocessor
     Defines coprocessor hooks for interacting with operations 
    on the
      HMaster 
    process.
    @@ -517,19 +517,33 @@ extends 
     
     default void
    +postGetLocks(ObserverContext ctx,
    +http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List lockedResources)
    +Called after a getLocks request has been processed.
    +
    +
    +
    +default void
     postGetNamespaceDescriptor(ObserverContext ctx,
       NamespaceDescriptor ns)
     Called after a getNamespaceDescriptor request has been 
    processed.
     
     
    -
    +
    +default void
    +postGetProcedures(ObserverContext ctx,
    + http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List> procList)
    +Called after a getProcedures request has been 
    processed.
    +
    +
    +
     default void
     postGetReplicationPeerConfig(ObserverContext ctx,
     http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String peerId)
     Called after get the configured ReplicationPeerConfig for 
    the specified peer
     
     
    -
    +
     default void
     postGetTableDescriptors(ObserverContext ctx,
    http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List tableNamesList,
    @@ -538,7 +552,7 @@ extends Called after a getTableDescriptors request has been 
    processed.
     
     
    -
    +
     default void
     postGetTableNames(ObserverContext ctx,
      http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List descriptors,
    @@ -546,27 +560,13 @@ extends Called after a getTableNames request has been 
    processed.
     
     
    -
    -default void
    -postListLocks(ObserverContext ctx,
    - http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List lockInfoList)
    -Called after a listLocks request has been processed.
    -
    -
    -
    +
     default void
     postListNamespaceDescriptors(ObserverContext ctx,
     http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List descriptors)
     Called after a listNamespaceDescriptors request has been 
    processed.
     
     
    -
    -default void
    -postListProcedures(ObserverContext ctx,
    -  http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List procInfoList)
    -Called after a listProcedures request has been 
    processed.
    -
    -
     
     default void
     postListReplicationPeers(ObserverContext ctx,
    @@ -720,11 +720,11 @@ extends 
     
     default void
    -postRequestLock(ObserverContext ctx,
    +postRequestLock(ObserverContext ctx,
    http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String namespace,
    TableName tableName,
    HRegionInfo[] regionInfos,
    -   LockProcedure.LockType type,
    +   LockType type,
    http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String description)
     Called after new LockProcedure is queued.
     
    @@ -1154,19 +1154,31 @@ extends 
     
     default void
    +preGetLocks(ObserverContext ctx)
    +Called before a getLocks request has been processed.
    +
    +
    +
    +default void
     preGetNamespaceDescriptor(ObserverContext ctx,
      http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">Stri

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/deprecated-list.html
    --
    diff --git a/devapidocs/deprecated-list.html b/devapidocs/deprecated-list.html
    index f9c5e11..aab0aaf 100644
    --- a/devapidocs/deprecated-list.html
    +++ b/devapidocs/deprecated-list.html
    @@ -75,6 +75,7 @@
     
     Deprecated Interfaces
     Deprecated Classes
    +Deprecated Enums
     Deprecated Exceptions
     Deprecated Fields
     Deprecated Methods
    @@ -131,65 +132,60 @@
     org.apache.hadoop.hbase.HColumnDescriptor
     
     
    -org.apache.hadoop.hbase.regionserver.wal.HLogPrettyPrinter
    -use the "hbase wal" 
    command
    -
    -
    -
     org.apache.hadoop.hbase.HTableDescriptor
     As of release 2.0.0, this 
    will be removed in HBase 3.0.0.
      Use TableDescriptorBuilder to 
    build HTableDescriptor.
     
     
    -
    +
     org.apache.hadoop.hbase.client.ImmutableHColumnDescriptor
     
    -
    +
     org.apache.hadoop.hbase.client.ImmutableHTableDescriptor
     
    -
    +
     org.apache.hadoop.hbase.KeyValue.KVComparator
     : Use CellComparator.
     
     
    -
    +
     org.apache.hadoop.hbase.KeyValue.MetaComparator
     : CellComparator.META_COMPARATOR
     to be used
     
     
    -
    +
     org.apache.hadoop.hbase.KeyValue.RawBytesComparator
     Not to be used for any 
    comparsions
     
     
    -
    +
     org.apache.hadoop.hbase.mapreduce.LoadIncrementalHFiles
     As of release 2.0.0, this 
    will be removed in HBase 3.0.0. Use
      LoadIncrementalHFiles 
    instead.
     
     
    -
    +
     org.apache.hadoop.hbase.mapreduce.LoadIncrementalHFiles.LoadQueueItem
     As of release 2.0.0, this 
    will be removed in HBase 3.0.0. Use
      LoadIncrementalHFiles.LoadQueueItem
     instead.
     
     
    -
    +
     org.apache.hadoop.hbase.client.replication.ReplicationAdmin
     use Admin instead.
     
     
    -
    +
     org.apache.hadoop.hbase.security.access.SecureBulkLoadEndpoint
     As of release 2.0.0, this 
    will be removed in HBase 3.0.0
     
     
    -
    +
     org.apache.hadoop.hbase.zookeeper.ZKLeaderManager
     Not used
     
     
    -
    +
     org.apache.hadoop.hbase.zookeeper.ZKUtil.NodeAndData
     Unused
     
    @@ -198,6 +194,26 @@
     
     
     
    +
    +
    +
    +
    +
    +
    +Deprecated Enums 
    +
    +Enum and Description
    +
    +
    +
    +org.apache.hadoop.hbase.filter.CompareFilter.CompareOp
    +since 2.0.0. Will be 
    removed in 3.0.0. Use CompareOperator 
    instead.
    +
    +
    +
    +
    +
    +
     
     
     
    @@ -515,10 +531,34 @@
     
     
     
    +org.apache.hadoop.hbase.filter.CompareFilter.compareFamily(CompareFilter.CompareOp,
     ByteArrayComparable, Cell)
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use CompareFilter.compareFamily(CompareOperator,
     ByteArrayComparable, Cell)
    +
    +
    +
     org.apache.hadoop.hbase.KeyValue.RawBytesComparator.compareFlatKey(byte[],
     int, int, byte[], int, int)
     Since 0.99.2.
     
     
    +
    +org.apache.hadoop.hbase.filter.CompareFilter.compareQualifier(CompareFilter.CompareOp,
     ByteArrayComparable, Cell)
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use CompareFilter.compareQualifier(CompareOperator,
     ByteArrayComparable, Cell)
    +
    +
    +
    +org.apache.hadoop.hbase.filter.CompareFilter.compareRow(CompareFilter.CompareOp,
     ByteArrayComparable, Cell)
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use CompareFilter.compareRow(CompareOperator,
     ByteArrayComparable, Cell)
    +
    +
    +
    +org.apache.hadoop.hbase.filter.CompareFilter.compareValue(CompareFilter.CompareOp,
     ByteArrayComparable, Cell)
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use CompareFilter.compareValue(CompareOperator,
     ByteArrayComparable, Cell)
    +
    +
     
     org.apache.hadoop.hbase.mapreduce.CellCreator.create(byte[],
     int, int, byte[], int, int, byte[], int, int, long, byte[], int, int, 
    String)
     
    @@ -583,6 +623,18 @@
     
     
     
    +org.apache.hadoop.hbase.filter.ParseFilter.createCompareOp(byte[])
    +Since 2.0
    + 
    +
    +
    +
    +org.apache.hadoop.hbase.filter.ParseFilter.createCompareOperator(byte[])
    +Since 2.0
    + 
    +
    +
    +
     org.apache.hadoop.hbase.client.Admin.deleteColumn(TableName,
     byte[])
     As of release 2.0.0.
      (https://issues.apache.org/jira/browse/HBASE-1989";>HBASE-1989).
    @@ -849,6 +901,16 @@
     
     
     
    +org.apache.hadoop.hbase.filter.CompareFilter.getOperator()
    +since 2.0.0. Will be 
    removed in 3.0.0. Use CompareFilter.getCompareOperator()
     instead.
    +
    +
    +
    +org.apache.hadoop.hbase.filter.SingleColumnValueFilter.getOperator()
    +since 2.0.0. Will be 
    removed in 3.0.0. Use SingleColumnValueFilter.getCompareOperator()
     instead.
    +
    +
    +
     org.apache.hadoop.hbase.HTableDescriptor.getOwnerString()
     
     
    @@ -1062,135 +1124,140 @@
     
     
     
    +org.apache.hadoop.hbase.ClusterStatus.getVersion()
    +As of release 2.0.0, this 
    will be removed in HBase 3.0.0
    +
    +
    +
     org.apache.hadoop.hbase.mapreduce.TableMapReduceUtil.initCredentialsForCluster(Job,
     String)
     Since 1.2.0, use TableMapReduceUtil.initCredentialsForCluster(Job,
     Configuration) instead.
     
     
    -
    +
     org.apache.hadoop.hbase.regionserver.HRegion.initialize()
     use 
    HRegion.createHRegion() or HRegion.openHRegion()
     
     
    -
    +
     org.apache.hadoop.hbase.client.Get.isClosestRowBefore()
     since 2.0.0 and will be 
    removed in 3.0.0
     
     
    -
    +
     org.apache.hadoop.hbase.KeyValue.iscreate(InputStream)
     
    -
    +
     org.apache.hadoop.hbase.client.ClusterConnection.isDeadServer(ServerName)
     internal method, do n

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
    --
    diff --git 
    a/devapidocs/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html 
    b/devapidocs/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
    index c368914..a73c02f 100644
    --- 
    a/devapidocs/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
    +++ 
    b/devapidocs/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
    @@ -114,7 +114,7 @@ var activeTableTab = "activeTableTab";
     
     
     @InterfaceAudience.Public
    -public class ShortCircuitMasterConnection
    +public class ShortCircuitMasterConnection
     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 MasterKeepAliveConnection
     A short-circuit connection that can bypass the RPC layer 
    (serialization, deserialization,
    @@ -298,120 +298,120 @@ implements 
    +org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetLocksResponse
    +getLocks(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
    +
    org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetLocksRequest request) 
    +
    +
     org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetNamespaceDescriptorResponse
     getNamespaceDescriptor(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
       
    org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetNamespaceDescriptorRequest request) 
     
    -
    +
     org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetProcedureResultResponse
     getProcedureResult(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
       
    org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetProcedureResultRequest request) 
     
    -
    +
    +org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetProceduresResponse
    +getProcedures(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
    + 
    org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetProceduresRequest request) 
    +
    +
     org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.GetQuotaStatesResponse
     getQuotaStates(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
       
    org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.GetQuotaStatesRequest request) 
     
    -
    +
     org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.GetReplicationPeerConfigResponse
     getReplicationPeerConfig(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
     
    org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.GetReplicationPeerConfigRequest request) 
     
    -
    +
     org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetSchemaAlterStatusResponse
     getSchemaAlterStatus(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
     
    org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetSchemaAlterStatusRequest request) 
     
    -
    +
     org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SecurityCapabilitiesResponse
     getSecurityCapabilities(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
    
    org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.SecurityCapabilitiesRequest request) 
     
    -
    +
     org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.GetSpaceQuotaRegionSizesResponse
     getSpaceQuotaRegionSizes(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
     
    org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.GetSpaceQuotaRegionSizesRequest request) 
     
    -
    +
     org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetTableDescriptorsResponse
     getTableDescriptors(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
    
    org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetTableDescriptorsRequest request) 
     
    -
    +
     org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetTableNamesResponse
     getTableNames(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
      
    org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetTableNamesRequest request) 
     
    -
    +
     org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetTableStateResponse
     getTableState(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
      
    org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetTableStateRequest request) 
     
    -
    +
     org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.IsBalancerEnabledResponse
     isBalancerEnabled(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
      
    org.a

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/ClusterStatus.Builder.html
    --
    diff --git a/devapidocs/org/apache/hadoop/hbase/ClusterStatus.Builder.html 
    b/devapidocs/org/apache/hadoop/hbase/ClusterStatus.Builder.html
    index 82f88dc..56e55fc 100644
    --- a/devapidocs/org/apache/hadoop/hbase/ClusterStatus.Builder.html
    +++ b/devapidocs/org/apache/hadoop/hbase/ClusterStatus.Builder.html
    @@ -50,7 +50,7 @@ var activeTableTab = "activeTableTab";
     
     
     Prev Class
    -Next Class
    +Next Class
     
     
     Frames
    @@ -113,7 +113,8 @@ var activeTableTab = "activeTableTab";
     
     
     
    -public static class ClusterStatus.Builder
    +@InterfaceAudience.Private
    +public static class ClusterStatus.Builder
     extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
     title="class or interface in java.lang">Object
     Builder for construct a ClusterStatus.
     
    @@ -272,7 +273,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
     
     
     hbaseVersion
    -private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String hbaseVersion
    +private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String hbaseVersion
     
     
     
    @@ -281,7 +282,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
     
     
     liveServers
    -private http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
     title="class or interface in java.util">Map liveServers
    +private http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
     title="class or interface in java.util">Map liveServers
     
     
     
    @@ -290,7 +291,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
     
     
     deadServers
    -private http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
     title="class or interface in java.util">Collection deadServers
    +private http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
     title="class or interface in java.util">Collection deadServers
     
     
     
    @@ -299,7 +300,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
     
     
     master
    -private ServerName master
    +private ServerName master
     
     
     
    @@ -308,7 +309,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
     
     
     backupMasters
    -private http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
     title="class or interface in java.util">Collection backupMasters
    +private http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
     title="class or interface in java.util">Collection backupMasters
     
     
     
    @@ -317,7 +318,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
     
     
     intransition
    -private http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List intransition
    +private http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List intransition
     
     
     
    @@ -326,7 +327,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
     
     
     clusterId
    -private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String clusterId
    +private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String clusterId
     
     
     
    @@ -335,7 +336,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
     
     
     masterCoprocessors
    -private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String[] masterCoprocessors
    +private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String[] masterCoprocessors
     
     
     
    @@ -344,7 +345,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
     
     
     balancerOn
    -private http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
     title="class or interface in java.lang">Boolean balancerOn
    +private http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
     title="class or interface in java.lang">Boolean balancerOn
     
     
     
    @@ -361,7 +362,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
     
     
     Builder
    -private Builder()
    +private Builder()
     
     
     
    @@ -378,7 +379,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
     
     
     setHBaseVersion
    -public ClusterStatus.Builder setHBaseVersion(http://docs.oracle.com/javase/8/docs/api/java/lang/Stri

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/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 21b6ca6..6bb5984 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":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":38,"i18":38,"i19":38,"i20":38,"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":38,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":38,"i48":38,"i49":6,"i50":6,"i51":18,"i52":6,"i53":6,"i54":6,"i55":38,"i56":38,"i57":6,"i58":6,"i59":18,"i60":6,"i61":6,"i62":6,"i63":38,"i64":38,"i65":6,"i66":6,"i67":6,"i68":6,"i69":38,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":6,"i79":6,"i80":6,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":6,"i88":18,"i89":6,"i90":38,"i91":38,"i92":38,"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":18,"i113":18,"i114":18,"i115":6,"i116":6,"i117":6,"i118"
     
    :6,"i119":6,"i120":6,"i121":6,"i122":6,"i123":6,"i124":6,"i125":6,"i126":38,"i127":6,"i128":6,"i129":6,"i130":6,"i131":6,"i132":6,"i133":38,"i134":38,"i135":38,"i136":38,"i137":38,"i138":6,"i139":6,"i140":6,"i141":6,"i142":6,"i143":6,"i144":6,"i145":6,"i146":38,"i147":6,"i148":6,"i149":50,"i150":6,"i151":6,"i152":6,"i153":6,"i154":6,"i155":38,"i156":6,"i157":38,"i158":6,"i159":6,"i160":6,"i161":6,"i162":18,"i163":18,"i164":6,"i165":6,"i166":6,"i167":6,"i168":6,"i169":6,"i170":6,"i171":6,"i172":6,"i173":6,"i174":6,"i175":6,"i176":6,"i177":6,"i178":6,"i179":6,"i180":6,"i181":6,"i182":6,"i183":6,"i184":6,"i185":38,"i186":38,"i187":6,"i188":6,"i189":6,"i190":6,"i191":6,"i192":6,"i193":6,"i194":6,"i195":6,"i196":6,"i197":18};
    +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":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":38,"i18":38,"i19":38,"i20":38,"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":38,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":38,"i48":38,"i49":6,"i50":6,"i51":18,"i52":6,"i53":6,"i54":6,"i55":38,"i56":38,"i57":6,"i58":6,"i59":18,"i60":6,"i61":6,"i62":6,"i63":38,"i64":38,"i65":6,"i66":6,"i67":6,"i68":6,"i69":38,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":6,"i79":6,"i80":6,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":6,"i88":6,"i89":6,"i90":18,"i91":6,"i92":38,"i93":38,"i94":38,"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":18,"i113":18,"i114":18,"i115":6,"i116":6,"i117":6,"i118"
     
    :6,"i119":6,"i120":6,"i121":6,"i122":6,"i123":6,"i124":6,"i125":6,"i126":38,"i127":6,"i128":6,"i129":6,"i130":6,"i131":6,"i132":6,"i133":38,"i134":38,"i135":38,"i136":38,"i137":38,"i138":6,"i139":6,"i140":6,"i141":6,"i142":6,"i143":6,"i144":6,"i145":6,"i146":38,"i147":6,"i148":6,"i149":50,"i150":6,"i151":6,"i152":6,"i153":6,"i154":6,"i155":38,"i156":6,"i157":38,"i158":6,"i159":6,"i160":6,"i161":6,"i162":18,"i163":18,"i164":6,"i165":6,"i166":6,"i167":6,"i168":6,"i169":6,"i170":6,"i171":6,"i172":6,"i173":6,"i174":6,"i175":6,"i176":6,"i177":6,"i178":6,"i179":6,"i180":6,"i181":6,"i182":6,"i183":6,"i184":6,"i185":38,"i186":38,"i187":6,"i188":6,"i189":6,"i190":6,"i191":6,"i192":6,"i193":6,"i194":6,"i195":6,"i196":6,"i197":18};
     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. Obtain an instance from 
    an Connection.getAdmin()
     and
      call close()
     afterwards.
    @@ -669,12 +669,14 @@ extends 
     ClusterStatus
    -getClusterStatus() 
    +getClusterStatus()
    +Get whole cluster status, containing status about:
    +
     
     
     ClusterStatus
    -getClusterStatus(ClusterStatus.Options options)
    -Get cluster status with options to filter out unwanted 
    status.
    +getClusterStatus(http://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true";
     title="class or interface 

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/client/Table.html
    --
    diff --git a/devapidocs/org/apache/hadoop/hbase/client/Table.html 
    b/devapidocs/org/apache/hadoop/hbase/client/Table.html
    index 007483b..665c89a 100644
    --- a/devapidocs/org/apache/hadoop/hbase/client/Table.html
    +++ b/devapidocs/org/apache/hadoop/hbase/client/Table.html
    @@ -690,7 +690,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
     
     
     get
    -Result get(Get get)
    +Result get(Get get)
     throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
     title="class or interface in java.io">IOException
     Extracts certain cells from a given row.
     
    @@ -713,7 +713,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
     
     
     get
    -Result[] get(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List gets)
    +Result[] get(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List gets)
       throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
     title="class or interface in java.io">IOException
     Extracts certain cells from the given rows, in batch.
     
    @@ -738,7 +738,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
     
     
     getScanner
    -ResultScanner getScanner(Scan scan)
    +ResultScanner getScanner(Scan scan)
       throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
     title="class or interface in java.io">IOException
     Returns a scanner on the current table as specified by the 
    Scan
      object.
    @@ -762,7 +762,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
     
     
     getScanner
    -ResultScanner getScanner(byte[] family)
    +ResultScanner getScanner(byte[] family)
       throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
     title="class or interface in java.io">IOException
     Gets a scanner on the current table for the given 
    family.
     
    @@ -783,7 +783,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
     
     
     getScanner
    -ResultScanner getScanner(byte[] family,
    +ResultScanner getScanner(byte[] family,
      byte[] qualifier)
       throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
     title="class or interface in java.io">IOException
     Gets a scanner on the current table for the given family 
    and qualifier.
    @@ -806,7 +806,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
     
     
     put
    -void put(Put put)
    +void put(Put put)
       throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
     title="class or interface in java.io">IOException
     Puts some data in the table.
     
    @@ -825,7 +825,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
     
     
     put
    -void put(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List puts)
    +void put(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List puts)
       throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
     title="class or interface in java.io">IOException
     Puts some data in the table, in batch.
      
    @@ -846,7 +846,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
     
     
     checkAndPut
    -boolean checkAndPut(byte[] row,
    +boolean checkAndPut(byte[] row,
     byte[] family,
     byte[] qualifier,
     byte[] value,
    @@ -876,7 +876,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
     
     checkAndPut
     http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
     title="class or interface in java.lang">@Deprecated
    -boolean checkAndPut(byte[] row,
    +boolean checkAndPut(byte[] row,
     byte[] family,
     byte[] qualifier,
     CompareFilter.CompareOp compareOp,
    @@ -914,7 +914,7 @@ boolean 
     
     checkAndPut
    -boolean checkAndPut(byte[] row,
    +boolean checkAndPut(byte[] row,
     byte[] family,
     byte[] qualifier,
     CompareOperator op,
    @@ -950,7 +950,7 @@ boolean 
     
     delete
    -void delete(Delete delete)
    +void delete(Delete delete)
      throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
     title="class or interface in java.io">IOException
     Deletes the specified cells/row.
     
    @@ -969,7 +969,7 @@ boolean 
     
     delete
    -void delete(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-exte

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/org/apache/hadoop/hbase/client/MasterSwitchType.html
    --
    diff --git a/apidocs/org/apache/hadoop/hbase/client/MasterSwitchType.html 
    b/apidocs/org/apache/hadoop/hbase/client/MasterSwitchType.html
    index 66a73ba..4f0add4 100644
    --- a/apidocs/org/apache/hadoop/hbase/client/MasterSwitchType.html
    +++ b/apidocs/org/apache/hadoop/hbase/client/MasterSwitchType.html
    @@ -234,7 +234,7 @@ the order they are declared.
     
     
     values
    -public static MasterSwitchType[] values()
    +public static MasterSwitchType[] 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:
    @@ -254,7 +254,7 @@ for (MasterSwitchType c : MasterSwitchType.values())
     
     
     valueOf
    -public static MasterSwitchType valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String name)
    +public static MasterSwitchType valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String name)
     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 
    
    
    

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/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 90aac08..6913a1e 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":38,"i10":18,"i11":6,"i12":18,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":18,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":18,"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":18,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":18,"i48":6,"i49":6,"i50":6,"i51":18,"i52":6,"i53":18,"i54":6,"i55":6,"i56":6,"i57":6,"i58":6,"i59":6,"i60":6,"i61":6,"i62":6,"i63":6,"i64":6,"i65":6,"i66":6,"i67":18,"i68":6,"i69":6,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":18,"i77":6,"i78":18,"i79":6,"i80":18,"i81":6,"i82":18,"i83":6,"i84":6,"i85":18,"i86":6,"i87":18,"i88":6,"i89":6,"i90":6,"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":18,"i114":18,"i115":6,"i116":6,"i117":18,"i118":6,"
     i119":6,"i120":6,"i121":6,"i122":6,"i123":6,"i124":6,"i125":6,"i126":6};
    +var methods = 
    {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":18,"i6":6,"i7":6,"i8":6,"i9":38,"i10":18,"i11":6,"i12":18,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":18,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":18,"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":18,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":6,"i48":18,"i49":6,"i50":6,"i51":6,"i52":6,"i53":18,"i54":6,"i55":18,"i56":6,"i57":6,"i58":6,"i59":6,"i60":6,"i61":6,"i62":6,"i63":6,"i64":6,"i65":6,"i66":6,"i67":6,"i68":6,"i69":18,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":18,"i77":6,"i78":18,"i79":6,"i80":18,"i81":6,"i82":18,"i83":6,"i84":6,"i85":18,"i86":6,"i87":18,"i88":6,"i89":6,"i90":6,"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":18,"i114":18,"i115":6,"i116":6,"i117":18,"i118":6,"
     i119":6,"i120":6,"i121":6,"i122":6,"i123":6,"i124":6,"i125":6,"i126":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";
    @@ -102,7 +102,7 @@ var activeTableTab = "activeTableTab";
     
     
     @InterfaceAudience.Public
    -public interface AsyncAdmin
    +public interface AsyncAdmin
     The asynchronous administrative API for HBase.
      
      This feature is still under development, so marked as IA.Private. Will change 
    to public when
    @@ -405,7 +405,7 @@ public interface 
     http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">CompletableFuture
    -getClusterStatus(org.apache.hadoop.hbase.ClusterStatus.Options options) 
    +getClusterStatus(http://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true";
     title="class or interface in 
    java.util">EnumSet options) 
     
     
     http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">CompletableFuture
    @@ -432,103 +432,115 @@ 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">CompletableFutureString>
    +getLocks()
    +List locks.
    +
    +
    +
     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">CompletableFuture
     getMaster() 
     
    -
    +
     http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent">CompletableFuture
     getNamespaceDescriptor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String name)
     Get a namespace descriptor by name
     
     
    -
    +
     http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or in

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/client/MasterKeepAliveConnection.html
    --
    diff --git 
    a/devapidocs/org/apache/hadoop/hbase/client/MasterKeepAliveConnection.html 
    b/devapidocs/org/apache/hadoop/hbase/client/MasterKeepAliveConnection.html
    index 88bd4de..b974566 100644
    --- a/devapidocs/org/apache/hadoop/hbase/client/MasterKeepAliveConnection.html
    +++ b/devapidocs/org/apache/hadoop/hbase/client/MasterKeepAliveConnection.html
    @@ -148,7 +148,7 @@ extends 
    org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.MasterSer
     
     
     Methods inherited from 
    interface org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.MasterService.BlockingInterface
    -abortProcedure, addColumn, addReplicationPeer, assignRegion, balance, 
    createNamespace, createTable, deleteColumn, deleteNamespace, deleteSnapshot, 
    deleteTable, disableReplicationPeer, disableTable, drainRegionServers, 
    enableCatalogJanitor, enableReplicationPeer, enableTable, execMasterService, 
    execProcedure, execProcedureWithRet, getClusterStatus, getCompletedSnapshots, 
    getLastMajorCompactionTimestamp, getLastMajorCompactionTimestampForRegion, 
    getNamespaceDescriptor, getProcedureResult, getQuotaStates, 
    getReplicationPeerConfig, getSchemaAlterStatus, getSecurityCapabilities, 
    getSpaceQuotaRegionSizes, getTableDescriptors, getTableNames, getTableState, 
    isBalancerEnabled, isCatalogJanitorEnabled, isCleanerChoreEnabled, 
    isMasterInMaintenanceMode, isMasterRunning, isNormalizerEnabled, 
    isProcedureDone, isSnapshotDone, isSplitOrMergeEnabled, 
    listDrainingRegionServers, listLocks, listNamespaceDescriptors, listProcedures, 
    listReplicationPeers, listTableDescriptorsByNamespace, listTableN
     amesByNamespace, mergeTableRegions, modifyColumn, modifyNamespace, 
    modifyTable, moveRegion, normalize, offlineRegion, 
    removeDrainFromRegionServers, removeReplicationPeer, restoreSnapshot, 
    runCatalogScan, runCleanerChore, setBalancerRunning, setCleanerChoreRunning, 
    setNormalizerRunning, setQuota, setSplitOrMergeEnabled, shutdown, snapshot, 
    splitRegion, stopMaster, truncateTable, unassignRegion, 
    updateReplicationPeerConfig
    +abortProcedure, addColumn, addReplicationPeer, assignRegion, balance, 
    createNamespace, createTable, deleteColumn, deleteNamespace, deleteSnapshot, 
    deleteTable, disableReplicationPeer, disableTable, drainRegionServers, 
    enableCatalogJanitor, enableReplicationPeer, enableTable, execMasterService, 
    execProcedure, execProcedureWithRet, getClusterStatus, getCompletedSnapshots, 
    getLastMajorCompactionTimestamp, getLastMajorCompactionTimestampForRegion, 
    getLocks, getNamespaceDescriptor, getProcedureResult, getProcedures, 
    getQuotaStates, getReplicationPeerConfig, getSchemaAlterStatus, 
    getSecurityCapabilities, getSpaceQuotaRegionSizes, getTableDescriptors, 
    getTableNames, getTableState, isBalancerEnabled, isCatalogJanitorEnabled, 
    isCleanerChoreEnabled, isMasterInMaintenanceMode, isMasterRunning, 
    isNormalizerEnabled, isProcedureDone, isSnapshotDone, isSplitOrMergeEnabled, 
    listDrainingRegionServers, listNamespaceDescriptors, listReplicationPeers, 
    listTableDescriptorsByNamespace, listTableNam
     esByNamespace, mergeTableRegions, modifyColumn, modifyNamespace, modifyTable, 
    moveRegion, normalize, offlineRegion, removeDrainFromRegionServers, 
    removeReplicationPeer, restoreSnapshot, runCatalogScan, runCleanerChore, 
    setBalancerRunning, setCleanerChoreRunning, setNormalizerRunning, setQuota, 
    setSplitOrMergeEnabled, shutdown, snapshot, splitRegion, stopMaster, 
    truncateTable, unassignRegion, updateReplicationPeerConfig
     
     
     
    
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.AddColumnFamilyProcedureBiConsumer.html
    --
    diff --git 
    a/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.AddColumnFamilyProcedureBiConsumer.html
     
    b/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.AddColumnFamilyProcedureBiConsumer.html
    index 45cf2dc..f963df2 100644
    --- 
    a/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.AddColumnFamilyProcedureBiConsumer.html
    +++ 
    b/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.AddColumnFamilyProcedureBiConsumer.html
    @@ -127,7 +127,7 @@ var activeTableTab = "activeTableTab";
     
     
     
    -private class RawAsyncHBaseAdmin.AddColumnFamilyProcedureBiConsumer
    +private class RawAsyncHBaseAdmin.AddColumnFamilyProcedureBiConsumer
     extends RawAsyncHBaseAdmin.TableProcedureBiConsumer
     
     
    @@ -240,7 +240,7 @@ extends 
     
     AddColumnFamilyProcedureBiConsumer
    -AddColumnFamilyProcedureBiConsumer(AsyncAdmin admin,
    +AddColumnFamilyProcedureBiConsumer(AsyncAdmin admin,
    TableName tableName)
     
     
    @@ -258,7 +258,7 @@ extends 
     
     getOperationType
    -http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=t

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
    --
    diff --git a/apidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html 
    b/apidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
    index 2ae26f2..67c0535 100644
    --- a/apidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
    +++ b/apidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
    @@ -93,6 +93,13 @@
     
     
     
    +org.apache.hadoop.hbase.filter
    +
    +Provides row-level filters applied to HRegion scan results 
    during calls to
    + ResultScanner.next().
    +
    +
    +
     org.apache.hadoop.hbase.rest.client
      
     
    @@ -210,6 +217,189 @@ the order they are declared.
     
     
     
    +
    +
    +
    +Uses of CompareOperator in org.apache.hadoop.hbase.filter
    +
    +Fields in org.apache.hadoop.hbase.filter
     declared as CompareOperator 
    +
    +Modifier and Type
    +Field and Description
    +
    +
    +
    +protected CompareOperator
    +CompareFilter.op 
    +
    +
    +protected CompareOperator
    +SingleColumnValueFilter.op 
    +
    +
    +
    +
    +Methods in org.apache.hadoop.hbase.filter
     that return CompareOperator 
    +
    +Modifier and Type
    +Method and Description
    +
    +
    +
    +static CompareOperator
    +ParseFilter.createCompareOperator(byte[] compareOpAsByteArray)
    +Deprecated. 
    +Since 2.0
    + 
    +
    +
    +
    +
    +CompareOperator
    +CompareFilter.getCompareOperator() 
    +
    +
    +CompareOperator
    +SingleColumnValueFilter.getCompareOperator() 
    +
    +
    +
    +
    +Methods in org.apache.hadoop.hbase.filter
     with parameters of type CompareOperator 
    +
    +Modifier and Type
    +Method and Description
    +
    +
    +
    +protected boolean
    +CompareFilter.compareFamily(CompareOperator op,
    + ByteArrayComparable comparator,
    + Cell cell) 
    +
    +
    +protected boolean
    +CompareFilter.compareQualifier(CompareOperator op,
    +ByteArrayComparable comparator,
    +Cell cell) 
    +
    +
    +protected boolean
    +CompareFilter.compareRow(CompareOperator op,
    +  ByteArrayComparable comparator,
    +  Cell cell) 
    +
    +
    +protected boolean
    +CompareFilter.compareValue(CompareOperator op,
    +ByteArrayComparable comparator,
    +Cell cell) 
    +
    +
    +
    +
    +Constructors in org.apache.hadoop.hbase.filter
     with parameters of type CompareOperator 
    +
    +Constructor and Description
    +
    +
    +
    +CompareFilter(CompareOperator op,
    + ByteArrayComparable comparator)
    +Constructor.
    +
    +
    +
    +DependentColumnFilter(byte[] family,
    + byte[] qualifier,
    + boolean dropDependentColumn,
    + CompareOperator op,
    + ByteArrayComparable valueComparator)
    +Build a dependent column filter with value checking
    + dependent column varies will be compared using the supplied
    + compareOp and comparator, for usage of which
    + refer to CompareFilter
    +
    +
    +
    +FamilyFilter(CompareOperator op,
    +ByteArrayComparable familyComparator)
    +Constructor.
    +
    +
    +
    +QualifierFilter(CompareOperator op,
    +   ByteArrayComparable qualifierComparator)
    +Constructor.
    +
    +
    +
    +RowFilter(CompareOperator op,
    + ByteArrayComparable rowComparator)
    +Constructor.
    +
    +
    +
    +SingleColumnValueExcludeFilter(byte[] family,
    +  byte[] qualifier,
    +  CompareOperator op,
    +  byte[] value)
    +Constructor for binary compare of the value of a single 
    column.
    +
    +
    +
    +SingleColumnValueExcludeFilter(byte[] family,
    +  byte[] qualifier,
    +  CompareOperator op,
    +  ByteArrayComparable comparator)
    +Constructor for binary compare of the value of a single 
    column.
    +
    +
    +
    +SingleColumnValueExcludeFilter(byte[] family,
    +  byte[] qualifier,
    +  CompareOperator op,
    +  ByteArrayComparable comparator,
    +  boolean filterIfMissing,
    +  boolean latestVersionOnly)
    +Constructor for protobuf deserialization only.
    +
    +
    +
    +SingleColumnValueFilter(byte[] family,
    +   byte[] qualifier,
    +   CompareOperator op,
    +   byte[] value)
    +Constructor for binary compare of the value of a single 
    column.
    +
    +
    +
    +SingleColumnValueFilter(byte[] family,
    +   byte[] qualifier,
    +   CompareOperator op,
    +   ByteArrayComparable comparator)
    +Constructor for binary compare of the value of a single 
    column.
    +
    +
    +
    +SingleColumnValueFilter(byte[] family,
    +   byte[] qualifier,
    +   CompareOperator op,
    +   ByteArrayComparable comparator,
    +   boolean filterIfMissing,
    +   boolean latestVersionOnly)
    +Constructor for protobuf deserialization only.
    +
    +
    +
    +ValueFilter(CompareOperator valueCompareOp,
    +   ByteArrayComparable valueComparator)
    +Constructor.
    +
    +
    +
    +
    

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
    --
    diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html 
    b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
    index 24565ef..5dc23c2 100644
    --- a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
    +++ b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
    @@ -2956,12 +2956,34 @@ service.
     protected boolean
     CompareFilter.compareFamily(CompareFilter.CompareOp compareOp,
      ByteArrayComparable comparator,
    - Cell cell) 
    + Cell cell)
    +Deprecated. 
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use CompareFilter.compareFamily(CompareOperator,
     ByteArrayComparable, Cell)
    +
    +
     
     
     protected boolean
    +CompareFilter.compareFamily(CompareOperator op,
    + ByteArrayComparable comparator,
    + Cell cell) 
    +
    +
    +protected boolean
     CompareFilter.compareQualifier(CompareFilter.CompareOp compareOp,
     ByteArrayComparable comparator,
    +Cell cell)
    +Deprecated. 
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use CompareFilter.compareQualifier(CompareOperator,
     ByteArrayComparable, Cell)
    +
    +
    +
    +
    +protected boolean
    +CompareFilter.compareQualifier(CompareOperator op,
    +ByteArrayComparable comparator,
     Cell cell) 
     
     
    @@ -2974,12 +2996,34 @@ service.
     protected boolean
     CompareFilter.compareRow(CompareFilter.CompareOp compareOp,
       ByteArrayComparable comparator,
    -  Cell cell) 
    +  Cell cell)
    +Deprecated. 
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use CompareFilter.compareRow(CompareOperator,
     ByteArrayComparable, Cell)
    +
    +
     
     
     protected boolean
    +CompareFilter.compareRow(CompareOperator op,
    +  ByteArrayComparable comparator,
    +  Cell cell) 
    +
    +
    +protected boolean
     CompareFilter.compareValue(CompareFilter.CompareOp compareOp,
     ByteArrayComparable comparator,
    +Cell cell)
    +Deprecated. 
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use CompareFilter.compareValue(CompareOperator,
     ByteArrayComparable, Cell)
    +
    +
    +
    +
    +protected boolean
    +CompareFilter.compareValue(CompareOperator op,
    +ByteArrayComparable comparator,
     Cell cell) 
     
     
    
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/class-use/ClusterStatus.Option.html
    --
    diff --git 
    a/devapidocs/org/apache/hadoop/hbase/class-use/ClusterStatus.Option.html 
    b/devapidocs/org/apache/hadoop/hbase/class-use/ClusterStatus.Option.html
    new file mode 100644
    index 000..cb6a7b0
    --- /dev/null
    +++ b/devapidocs/org/apache/hadoop/hbase/class-use/ClusterStatus.Option.html
    @@ -0,0 +1,238 @@
    +http://www.w3.org/TR/html4/loose.dtd";>
    +
    +
    +
    +
    +
    +Uses of Class org.apache.hadoop.hbase.ClusterStatus.Option (Apache 
    HBase 3.0.0-SNAPSHOT API)
    +
    +
    +
    +
    +
    +
    +
    +JavaScript is disabled on your browser.
    +
    +
    +
    +
    +
    +Skip navigation links
    +
    +
    +
    +
    +Overview
    +Package
    +Class
    +Use
    +Tree
    +Deprecated
    +Index
    +Help
    +
    +
    +
    +
    +Prev
    +Next
    +
    +
    +Frames
    +No Frames
    +
    +
    +All Classes
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +Uses of Classorg.apache.hadoop.hbase.ClusterStatus.Option
    +
    +
    +
    +
    +
    +Packages that use ClusterStatus.Option 
    +
    +Package
    +Description
    +
    +
    +
    +org.apache.hadoop.hbase
    + 
    +
    +
    +org.apache.hadoop.hbase.client
    +
    +Provides HBase Client
    +
    +
    +
    +org.apache.hadoop.hbase.master
    + 
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +Uses of ClusterStatus.Option in org.apache.hadoop.hbase
    +
    +Methods in org.apache.hadoop.hbase
     that return ClusterStatus.Option 
    +
    +Modifier and Type
    +Method and Description
    +
    +
    +
    +static ClusterStatus.Option
    +ClusterStatus.Option.valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String name)
    +Returns the enum constant of this type with the specified 
    name.
    +
    +
    +
    +static ClusterStatus.Option[]
    +ClusterStatus.Option.values()
    +Returns an array containing the constants of this enum 
    type, in
    +the order they are declared.
    +
    +
    +
    +
    +
    +
    +
    +
    +Uses of ClusterStatus.Option in org.apache.hadoop.hbase.client
    +
    +Method parameters in org.apache.hadoop.hbase.client
     with type arguments of type ClusterStatus.Option 
    +
    +Modifier and Type
    +Method and Description
    +
    +
    +
    +http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
     title="class or interface in java.util.concurrent

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/org/apache/hadoop/hbase/filter/ValueFilter.html
    --
    diff --git a/apidocs/org/apache/hadoop/hbase/filter/ValueFilter.html 
    b/apidocs/org/apache/hadoop/hbase/filter/ValueFilter.html
    index 8d8d759..b895047 100644
    --- a/apidocs/org/apache/hadoop/hbase/filter/ValueFilter.html
    +++ b/apidocs/org/apache/hadoop/hbase/filter/ValueFilter.html
    @@ -125,7 +125,7 @@ var activeTableTab = "activeTableTab";
     
     
     @InterfaceAudience.Public
    -public class ValueFilter
    +public class ValueFilter
     extends CompareFilter
     This filter is used to filter based on column value. It 
    takes an
      operator (equal, greater, not equal, etc) and a byte [] comparator for the
    @@ -177,7 +177,7 @@ extends CompareFilter
    -comparator,
     compareOp
    +comparator,
     op
     
     
     
    @@ -202,6 +202,15 @@ extends 
     ValueFilter(CompareFilter.CompareOp valueCompareOp,
    ByteArrayComparable valueComparator)
    +Deprecated. 
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use ValueFilter(CompareOperator,
     ByteArrayComparable)
    +
    +
    +
    +
    +ValueFilter(CompareOperator valueCompareOp,
    +   ByteArrayComparable valueComparator)
     Constructor.
     
     
    @@ -246,7 +255,7 @@ extends CompareFilter
    -compareFamily,
     compareQualifier,
     compareRow,
     compareValue,
     extractArguments,
     filterRowKey,
     getComparator,
     getOperator,
     toString
    +compareFamily,
     compareFamily,
     compareQualifier,
     compareQualifier,
     compareRow,
     compareRow,
     compareValue,
     compareValue,
     extractArguments, filterRowKey,
     getComparator,
     getCompareOperator,
     getOperator,
     toString
     
     
     
    @@ -286,10 +295,28 @@ extends 
     
     
    +
    +
    +ValueFilter
    +public ValueFilter(CompareFilter.CompareOp valueCompareOp,
    +   ByteArrayComparable valueComparator)
    +Deprecated. Since 2.0.0. Will be removed in 3.0.0.
    + Use ValueFilter(CompareOperator,
     ByteArrayComparable)
    +Constructor.
    +
    +Parameters:
    +valueCompareOp - the compare op for value matching
    +valueComparator - the comparator for value matching
    +
    +
    +
    +
    +
    +
     
     
     ValueFilter
    -public ValueFilter(CompareFilter.CompareOp valueCompareOp,
    +public ValueFilter(CompareOperator valueCompareOp,
    ByteArrayComparable valueComparator)
     Constructor.
     
    @@ -313,7 +340,7 @@ extends 
     
     filterKeyValue
    -public Filter.ReturnCode filterKeyValue(Cell v)
    +public Filter.ReturnCode filterKeyValue(Cell v)
     Description copied from 
    class: Filter
     A way to filter based on the column family, column 
    qualifier and/or the column value. Return
      code is described below. This allows filters to filter only certain number of 
    columns, then
    @@ -347,7 +374,7 @@ extends 
     
     createFilterFromArguments
    -public static Filter createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
     title="class or interface in 
    java.util">ArrayList filterArguments)
    +public static Filter createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
     title="class or interface in 
    java.util">ArrayList filterArguments)
     
     
     
    @@ -356,7 +383,7 @@ extends 
     
     toByteArray
    -public byte[] toByteArray()
    +public byte[] toByteArray()
     Description copied from 
    class: org.apache.hadoop.hbase.filter.FilterBase
     Return length 0 byte array for Filters that don't require 
    special serialization
     
    @@ -373,7 +400,7 @@ extends 
     
     parseFrom
    -public static ValueFilter parseFrom(byte[] pbBytes)
    +public static ValueFilter parseFrom(byte[] pbBytes)
      throws 
    org.apache.hadoop.hbase.exceptions.DeserializationException
     
     Parameters:
    
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/org/apache/hadoop/hbase/filter/class-use/ByteArrayComparable.html
    --
    diff --git 
    a/apidocs/org/apache/hadoop/hbase/filter/class-use/ByteArrayComparable.html 
    b/apidocs/org/apache/hadoop/hbase/filter/class-use/ByteArrayComparable.html
    index 4d8d0ab..88f0501 100644
    --- a/apidocs/org/apache/hadoop/hbase/filter/class-use/ByteArrayComparable.html
    +++ b/apidocs/org/apache/hadoop/hbase/filter/class-use/ByteArrayComparable.html
    @@ -211,24 +211,68 @@
     protected boolean
     CompareFilter.compareFamily(CompareFilter.CompareOp compareOp,
      ByteArrayComparable comparator,
    - Cell cell) 
    + Cell cell)
    +Deprecated. 
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use CompareFilter.compareFamily(CompareOperator,
     ByteArrayComparable, Cell)
    +
    +
     
     
     protected boolean
    +CompareFilter.compareFamily(CompareOperator op,
    + ByteArrayComparable comparator,
    + Cell cell) 
    +
    +
    +protected boolean
     CompareFilter.compareQualifier(CompareFilter.CompareOp compareOp,
     ByteArrayComparable comparator,
    +Cell cell)
    +Deprecated. 
    +Since 2.0.0. Will be 
    removed in 3.0.0.
    + Use CompareFilter.compareQualifier(CompareOperator,
     ByteArrayComparable, Cell)

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/src-html/org/apache/hadoop/hbase/filter/QualifierFilter.html
    --
    diff --git 
    a/apidocs/src-html/org/apache/hadoop/hbase/filter/QualifierFilter.html 
    b/apidocs/src-html/org/apache/hadoop/hbase/filter/QualifierFilter.html
    index b0ce1b7..a79aef9 100644
    --- a/apidocs/src-html/org/apache/hadoop/hbase/filter/QualifierFilter.html
    +++ b/apidocs/src-html/org/apache/hadoop/hbase/filter/QualifierFilter.html
    @@ -31,106 +31,119 @@
     023import java.util.ArrayList;
     024
     025import org.apache.hadoop.hbase.Cell;
    -026import 
    org.apache.hadoop.hbase.classification.InterfaceAudience;
    -027import 
    org.apache.hadoop.hbase.exceptions.DeserializationException;
    -028import 
    org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
    -029import 
    org.apache.hadoop.hbase.shaded.protobuf.generated.FilterProtos;
    -030import 
    org.apache.hadoop.hbase.shaded.com.google.protobuf.InvalidProtocolBufferException;
    -031
    -032/**
    -033 * This filter is used to filter based on 
    the column qualifier. It takes an
    -034 * operator (equal, greater, not equal, 
    etc) and a byte [] comparator for the
    -035 * column qualifier portion of a key.
    -036 * 

    -037 * This filter can be wrapped with {@link WhileMatchFilter} and {@link SkipFilter} -038 * to add more control. -039 *

    -040 * Multiple filters can be combined using {@link FilterList}. -041 *

    -042 * If an already known column qualifier is looked for, -043 * use {@link org.apache.hadoop.hbase.client.Get#addColumn} -044 * directly rather than a filter. -045 */ -046@InterfaceAudience.Public -047public class QualifierFilter extends CompareFilter { -048 -049 /** -050 * Constructor. -051 * @param op the compare op for column qualifier matching -052 * @param qualifierComparator the comparator for column qualifier matching -053 */ -054 public QualifierFilter(final CompareOp op, -055 final ByteArrayComparable qualifierComparator) { -056super(op, qualifierComparator); -057 } -058 -059 @Override -060 public ReturnCode filterKeyValue(Cell v) { -061int qualifierLength = v.getQualifierLength(); -062if (qualifierLength > 0) { -063 if (compareQualifier(this.compareOp, this.comparator, v)) { -064return ReturnCode.SKIP; -065 } -066} -067return ReturnCode.INCLUDE; -068 } -069 -070 public static Filter createFilterFromArguments(ArrayList filterArguments) { -071ArrayList arguments = CompareFilter.extractArguments(filterArguments); -072CompareOp compareOp = (CompareOp)arguments.get(0); -073ByteArrayComparable comparator = (ByteArrayComparable)arguments.get(1); -074return new QualifierFilter(compareOp, comparator); -075 } -076 -077 /** -078 * @return The filter serialized using pb -079 */ -080 public byte [] toByteArray() { -081FilterProtos.QualifierFilter.Builder builder = -082 FilterProtos.QualifierFilter.newBuilder(); -083 builder.setCompareFilter(super.convert()); -084return builder.build().toByteArray(); -085 } -086 -087 /** -088 * @param pbBytes A pb serialized {@link QualifierFilter} instance -089 * @return An instance of {@link QualifierFilter} made from bytes -090 * @throws org.apache.hadoop.hbase.exceptions.DeserializationException -091 * @see #toByteArray -092 */ -093 public static QualifierFilter parseFrom(final byte [] pbBytes) -094 throws DeserializationException { -095FilterProtos.QualifierFilter proto; -096try { -097 proto = FilterProtos.QualifierFilter.parseFrom(pbBytes); -098} catch (InvalidProtocolBufferException e) { -099 throw new DeserializationException(e); -100} -101final CompareOp valueCompareOp = -102 CompareOp.valueOf(proto.getCompareFilter().getCompareOp().name()); -103ByteArrayComparable valueComparator = null; -104try { -105 if (proto.getCompareFilter().hasComparator()) { -106valueComparator = ProtobufUtil.toComparator(proto.getCompareFilter().getComparator()); -107 } -108} catch (IOException ioe) { -109 throw new DeserializationException(ioe); -110} -111return new QualifierFilter(valueCompareOp,valueComparator); -112 } -113 -114 /** -115 * @param other -116 * @return true if and only if the fields of the filter that are serialized -117 * are equal to the corresponding fields in other. Used for testing. -118 */ -119 boolean areSerializedFieldsEqual(Filter o) { -120if (o == this) return true; -121if (!(o instanceof QualifierFilter)) return false; -122 -123return super.areSerializedFieldsEqual(o); -124 } -125} +026import org.apache.hadoop.hbase.CompareOperator; +027import org.apache.hadoop.hbase.classification.InterfaceAudience; +028import org.apache.hadoop.hbase.exceptions.DeserializationException; +029import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil; +030import org.apache.h


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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/org/apache/hadoop/hbase/filter/SingleColumnValueExcludeFilter.html
    --
    diff --git 
    a/apidocs/org/apache/hadoop/hbase/filter/SingleColumnValueExcludeFilter.html 
    b/apidocs/org/apache/hadoop/hbase/filter/SingleColumnValueExcludeFilter.html
    index 0ce5859..f8a3cea 100644
    --- a/apidocs/org/apache/hadoop/hbase/filter/SingleColumnValueExcludeFilter.html
    +++ b/apidocs/org/apache/hadoop/hbase/filter/SingleColumnValueExcludeFilter.html
    @@ -125,7 +125,7 @@ var activeTableTab = "activeTableTab";
     
     
     @InterfaceAudience.Public
    -public class SingleColumnValueExcludeFilter
    +public class SingleColumnValueExcludeFilter
     extends SingleColumnValueFilter
     A Filter that checks a single 
    column value, but does not emit the
      tested column. This will enable a performance boost over
    @@ -163,7 +163,7 @@ extends SingleColumnValueFilter
    -columnFamily,
     columnQualifier,
     comparator,
     compareOp,
     filterIfMissing,
     foundColumn,
     latestVersionOnly,
     matchedColumn
    +columnFamily,
     columnQualifier,
     comparator,
     filterIfMissing,
     foundColumn,
     latestVersionOnly,
     matchedColumn,
     op
     
     
     
    @@ -192,7 +192,7 @@ extends CompareFilter.CompareOp compareOp,
       byte[] value)
    -Constructor for binary compare of the value of a single 
    column.
    +Deprecated. 
     
     
     
    @@ -201,7 +201,10 @@ extends CompareFilter.CompareOp compareOp,
       ByteArrayComparable comparator)
    -Constructor for binary compare of the value of a single 
    column.
    +Deprecated. 
    +Since 2.0.0. Will be 
    removed in 3.0.0. Use
    + SingleColumnValueExcludeFilter(byte[],
     byte[], CompareOperator, ByteArrayComparable)
    +
     
     
     
    @@ -212,6 +215,38 @@ extends ByteArrayComparable comparator,
       boolean filterIfMissing,
       boolean latestVersionOnly)
    +Deprecated. 
    +Since 2.0.0. Will be 
    removed in 3.0.0. Use
    + SingleColumnValueExcludeFilter(byte[],
     byte[], CompareOperator, ByteArrayComparable, boolean, 
    boolean)
    +
    +
    +
    +
    + 
    +SingleColumnValueExcludeFilter(byte[] family,
    +  byte[] qualifier,
    +  CompareOperator op,
    +  byte[] value)
    +Constructor for binary compare of the value of a single 
    column.
    +
    +
    +
    + 
    +SingleColumnValueExcludeFilter(byte[] family,
    +  byte[] qualifier,
    +  CompareOperator op,
    +  ByteArrayComparable comparator)
    +Constructor for binary compare of the value of a single 
    column.
    +
    +
    +
    +protected 
    +SingleColumnValueExcludeFilter(byte[] family,
    +  byte[] qualifier,
    +  CompareOperator op,
    +  ByteArrayComparable comparator,
    +  boolean filterIfMissing,
    +  boolean latestVersionOnly)
     Constructor for protobuf deserialization only.
     
     
    @@ -264,7 +299,7 @@ extends SingleColumnValueFilter
    -filterKeyValue,
     filterRow,
     filterRowKey,
     getComparator,
     getFamily,
     getFilterIfMissing,
     getLatestVersionOnly,
     getOperator, getQualifier,
     isFamilyEssential,
     reset,
     setFilterIfMissing,
     setLatestVersionOnly,
     toString
    +filterKeyValue,
     filterRow,
     filterRowKey,
     getComparator,
     getCompareOperator,
     getFamily,
     getFilterIfMissing,
     getLatestVersionOnly, getOperator,
     getQualifier,
     isFamilyEssential,
     reset,
     setFilterIfMissing,
     setLatestVersionOnly,
     toString
     
     
     
    @@ -307,9 +342,35 @@ extends 
     
     SingleColumnValueExcludeFilter
    -public SingleColumnValueExcludeFilter(byte[] family,
    +http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
     title="class or interface in java.lang">@Deprecated
    +public SingleColumnValueExcludeFilter(byte[] family,
    +  byte[] qualifier,
    +  CompareFilter.CompareOp compareOp,
    +  byte[] value)
    +Deprecated. 
    +Constructor for binary compare of the value of a single 
    column. If the
    + column is found and the condition passes, all columns of the row will be
    + emitted; except for the tested column value. If the column is not found or
    + the condition fails, the row will not be emitted.
    +
    +Parameters:
    +family - name of column family
    +qualifier - name of column qualifier
    +compareOp - operator
    +value - value to compare column values against
    + SingleColumnValueExcludeFilter(byte[],
     byte[], CompareOperator, byte[])
    +
    +
    +
    +
    +
    +
    +
    +
    +SingleColumnValueExcludeFilter
    +public SingleColumnValueExcludeFilter(byte[] family,
       byte[] qualifier,
    -  CompareFilter.CompareOp compareOp,
    +  CompareOperator op,
       byte[] value)
     Constructor for binary compa

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/src-html/org/apache/hadoop/hbase/filter/ParseFilter.html
    --
    diff --git a/apidocs/src-html/org/apache/hadoop/hbase/filter/ParseFilter.html 
    b/apidocs/src-html/org/apache/hadoop/hbase/filter/ParseFilter.html
    index 8e035c5..b7697e0 100644
    --- a/apidocs/src-html/org/apache/hadoop/hbase/filter/ParseFilter.html
    +++ b/apidocs/src-html/org/apache/hadoop/hbase/filter/ParseFilter.html
    @@ -40,842 +40,871 @@
     032
     033import org.apache.commons.logging.Log;
     034import 
    org.apache.commons.logging.LogFactory;
    -035import 
    org.apache.hadoop.hbase.classification.InterfaceAudience;
    -036import 
    org.apache.hadoop.hbase.filter.CompareFilter.CompareOp;
    -037import 
    org.apache.hadoop.hbase.util.Bytes;
    -038
    -039/**
    -040 * This class allows a user to specify a 
    filter via a string
    -041 * The string is parsed using the methods 
    of this class and
    -042 * a filter object is constructed. This 
    filter object is then wrapped
    -043 * in a scanner object which is then 
    returned
    -044 * 

    -045 * This class addresses the HBASE-4168 JIRA. More documentation on this -046 * Filter Language can be found at: https://issues.apache.org/jira/browse/HBASE-4176 -047 */ -048@InterfaceAudience.Public -049public class ParseFilter { -050 private static final Log LOG = LogFactory.getLog(ParseFilter.class); -051 -052 private static HashMap operatorPrecedenceHashMap; -053 private static HashMap filterHashMap; -054 -055 static { -056// Registers all the filter supported by the Filter Language -057filterHashMap = new HashMap<>(); -058filterHashMap.put("KeyOnlyFilter", ParseConstants.FILTER_PACKAGE + "." + -059 "KeyOnlyFilter"); -060 filterHashMap.put("FirstKeyOnlyFilter", ParseConstants.FILTER_PACKAGE + "." + -061 "FirstKeyOnlyFilter"); -062filterHashMap.put("PrefixFilter", ParseConstants.FILTER_PACKAGE + "." + -063 "PrefixFilter"); -064 filterHashMap.put("ColumnPrefixFilter", ParseConstants.FILTER_PACKAGE + "." + -065 "ColumnPrefixFilter"); -066 filterHashMap.put("MultipleColumnPrefixFilter", ParseConstants.FILTER_PACKAGE + "." + -067 "MultipleColumnPrefixFilter"); -068 filterHashMap.put("ColumnCountGetFilter", ParseConstants.FILTER_PACKAGE + "." + -069 "ColumnCountGetFilter"); -070filterHashMap.put("PageFilter", ParseConstants.FILTER_PACKAGE + "." + -071 "PageFilter"); -072 filterHashMap.put("ColumnPaginationFilter", ParseConstants.FILTER_PACKAGE + "." + -073 "ColumnPaginationFilter"); -074 filterHashMap.put("InclusiveStopFilter", ParseConstants.FILTER_PACKAGE + "." + -075 "InclusiveStopFilter"); -076filterHashMap.put("TimestampsFilter", ParseConstants.FILTER_PACKAGE + "." + -077 "TimestampsFilter"); -078filterHashMap.put("RowFilter", ParseConstants.FILTER_PACKAGE + "." + -079 "RowFilter"); -080filterHashMap.put("FamilyFilter", ParseConstants.FILTER_PACKAGE + "." + -081 "FamilyFilter"); -082filterHashMap.put("QualifierFilter", ParseConstants.FILTER_PACKAGE + "." + -083 "QualifierFilter"); -084filterHashMap.put("ValueFilter", ParseConstants.FILTER_PACKAGE + "." + -085 "ValueFilter"); -086 filterHashMap.put("ColumnRangeFilter", ParseConstants.FILTER_PACKAGE + "." + -087 "ColumnRangeFilter"); -088 filterHashMap.put("SingleColumnValueFilter", ParseConstants.FILTER_PACKAGE + "." + -089 "SingleColumnValueFilter"); -090 filterHashMap.put("SingleColumnValueExcludeFilter", ParseConstants.FILTER_PACKAGE + "." + -091 "SingleColumnValueExcludeFilter"); -092 filterHashMap.put("DependentColumnFilter", ParseConstants.FILTER_PACKAGE + "." + -093 "DependentColumnFilter"); -094 -095// Creates the operatorPrecedenceHashMap -096operatorPrecedenceHashMap = new HashMap<>(); -097 operatorPrecedenceHashMap.put(ParseConstants.SKIP_BUFFER, 1); -098 operatorPrecedenceHashMap.put(ParseConstants.WHILE_BUFFER, 1); -099 operatorPrecedenceHashMap.put(ParseConstants.AND_BUFFER, 2); -100 operatorPrecedenceHashMap.put(ParseConstants.OR_BUFFER, 3); -101 } -102 -103 /** -104 * Parses the filterString and constructs a filter using it -105 *

    -106 * @param filterString filter string given by the user -107 * @return filter object we constructed -108 */ -109 public Filter parseFilterString (String filterString) -110throws CharacterCodingException { -111return parseFilterString(Bytes.toBytes(filterString)); -112 } -113 -114 /** -115 * Parses the filterString and constructs a filter u


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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/classification/class-use/InterfaceAudience.Private.html
    --
    diff --git 
    a/devapidocs/org/apache/hadoop/hbase/classification/class-use/InterfaceAudience.Private.html
     
    b/devapidocs/org/apache/hadoop/hbase/classification/class-use/InterfaceAudience.Private.html
    index 269954e..b9acba5 100644
    --- 
    a/devapidocs/org/apache/hadoop/hbase/classification/class-use/InterfaceAudience.Private.html
    +++ 
    b/devapidocs/org/apache/hadoop/hbase/classification/class-use/InterfaceAudience.Private.html
    @@ -729,19 +729,25 @@ service.
     
     
     
    +static class 
    +ClusterStatus.Builder
    +Builder for construct a ClusterStatus.
    +
    +
    +
     class 
     CompoundConfiguration
     Do a shallow merge of multiple KV configuration pools.
     
     
    -
    +
     class 
     CoordinatedStateException
     Thrown by operations requiring coordination state access or 
    manipulation
      when internal error within coordination engine (or other internal 
    implementation) occurs.
     
     
    -
    +
     interface 
     CoordinatedStateManager
     Implementations of this interface will keep and return to 
    clients
    @@ -749,182 +755,182 @@ service.
      coordinated operations.
     
     
    -
    +
     class 
     CoordinatedStateManagerFactory
     Creates instance of CoordinatedStateManager
      based on configuration.
     
     
    -
    +
     interface 
     CoprocessorEnvironment
     Coprocessor environment state.
     
     
    -
    +
     interface 
     ExtendedCellBuilder
     For internal purpose.
     
     
    -
    +
     class 
     ExtendedCellBuilderFactory 
     
    -
    +
     class 
     ExtendedCellBuilderImpl 
     
    -
    +
     static class 
     HConstants.OperationStatusCode
     Status codes used for return values of bulk 
    operations.
     
     
    -
    +
     class 
     HDFSBlocksDistribution
     Data structure to describe the distribution of HDFS blocks 
    among hosts.
     
     
    -
    +
     class 
     IndividualBytesFieldCell 
     
    -
    +
     (package private) class 
     IndividualBytesFieldCellBuilder 
     
    -
    +
     class 
     JitterScheduledThreadPoolExecutorImpl
     ScheduledThreadPoolExecutor that will add some jitter to 
    the RunnableScheduledFuture.getDelay.
     
     
    -
    +
     class 
     KeyValue
     An HBase Key/Value.
     
     
    -
    +
     (package private) class 
     KeyValueBuilder 
     
    -
    +
     class 
     KeyValueTestUtil 
     
    -
    +
     class 
     KeyValueUtil
     static convenience methods for dealing with KeyValues and 
    collections of KeyValues
     
     
    -
    +
     interface 
     MetaMutationAnnotation
     The field or the parameter to which this annotation can be 
    applied only when it
      holds mutations for hbase:meta table.
     
     
    -
    +
     class 
     MetaTableAccessor
     Read/write operations on region and assignment information 
    store in
      hbase:meta.
     
     
    -
    +
     static class 
     MetaTableAccessor.QueryType 
     
    -
    +
     class 
     NoTagsByteBufferKeyValue
     An extension of the ByteBufferKeyValue where the tags 
    length is always 0
     
     
    -
    +
     class 
     NoTagsKeyValue
     An extension of the KeyValue where the tags length is 
    always 0
     
     
    -
    +
     class 
     RegionLocations
     Container for holding a list of HRegionLocation's 
    that correspond to the
      same range.
     
     
    -
    +
     interface 
     RegionStateListener
     The listener interface for receiving region state 
    events.
     
     
    -
    +
     class 
     ServiceNotRunningException 
     
    -
    +
     class 
     SizeCachedKeyValue
     This class is an extension to KeyValue where rowLen and 
    keyLen are cached.
     
     
    -
    +
     class 
     SizeCachedNoTagsKeyValue
     This class is an extension to ContentSizeCachedKeyValue 
    where there are no tags in Cell.
     
     
    -
    +
     class 
     SplitLogCounters
     Counters kept by the distributed WAL split log 
    process.
     
     
    -
    +
     class 
     SplitLogTask
     State of a WAL log split during distributed splitting.
     
     
    -
    +
     interface 
     TableDescriptors
     Get, remove and modify table descriptors.
     
     
    -
    +
     interface 
     Tag
     Tags are part of cells and helps to add metadata about 
    them.
     
     
    -
    +
     class 
     TagType 
     
    -
    +
     class 
     TagUtil 
     
    -
    +
     class 
     Version 
     
    -
    +
     class 
     YouAreDeadException
     This exception is thrown by the master when a region server 
    reports and is
      already being processed as dead.
     
     
    -
    +
     class 
     ZKNamespaceManager
     Class servers two purposes:
    @@ -1046,33 +1052,29 @@ service.
     CellUtil.createNextOnRowCol(Cell cell) 
     
     
    -long
    -ProcedureInfo.getClientAckTime() 
    -
    -
     static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String
     AuthUtil.getGroupName(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String aclKey)
     Returns the actual name for a group principal (stripped of 
    the
      group prefix).
     
     
    -
    +
     static byte
     CellUtil.getQualifierByte(Cell cell,
     int index) 
     
    -
    +
     http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List
     ClusterStatus.getRegionsInTransition() 
     
    -
    +
     static byte
     CellUtil.getRowByte(Cell cell,
       int index)
     misc
     
     
    -
    +
     KeyValue.KVComparator
     TableName.getRowComparator()
     Deprecated. 
    @@ -1081,17 +1083,13 @@ service.
     
     
     
    -
    +
     static Serv

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/src-html/org/apache/hadoop/hbase/filter/ByteArrayComparable.html
    --
    diff --git 
    a/apidocs/src-html/org/apache/hadoop/hbase/filter/ByteArrayComparable.html 
    b/apidocs/src-html/org/apache/hadoop/hbase/filter/ByteArrayComparable.html
    index 4b374ee..635b0b4 100644
    --- a/apidocs/src-html/org/apache/hadoop/hbase/filter/ByteArrayComparable.html
    +++ b/apidocs/src-html/org/apache/hadoop/hbase/filter/ByteArrayComparable.html
    @@ -36,7 +36,7 @@
     028
     029/** Base class for byte array comparators 
    */
     030@InterfaceAudience.Public
    -031// TODO Now we are deviating a lot from 
    the actual Comparable what this implements, by
    +031// TODO Now we are deviating a lot from 
    the actual Comparable that this implements, by
     032// adding special compareTo methods. We 
    have to clean it. Deprecate this class and replace it
     033// with a more generic one which says it 
    compares bytes (not necessary a byte array only)
     034// BytesComparable implements 
    Comparable will work?
    
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/src-html/org/apache/hadoop/hbase/filter/CompareFilter.CompareOp.html
    --
    diff --git 
    a/apidocs/src-html/org/apache/hadoop/hbase/filter/CompareFilter.CompareOp.html 
    b/apidocs/src-html/org/apache/hadoop/hbase/filter/CompareFilter.CompareOp.html
    index 4f8ff6b..0a5e976 100644
    --- 
    a/apidocs/src-html/org/apache/hadoop/hbase/filter/CompareFilter.CompareOp.html
    +++ 
    b/apidocs/src-html/org/apache/hadoop/hbase/filter/CompareFilter.CompareOp.html
    @@ -62,173 +62,269 @@
     054   * Comparison operators. For filters 
    only!
     055   * Use {@link CompareOperator} 
    otherwise.
     056   * It (intentionally) has at least the 
    below enums with same names.
    -057   * TODO: Replace with generic {@link 
    CompareOperator}
    +057   * @deprecated  since 2.0.0. Will be 
    removed in 3.0.0. Use {@link CompareOperator} instead.
     058   */
    -059  @InterfaceAudience.Public
    -060  public enum CompareOp {
    -061/** less than */
    -062LESS,
    -063/** less than or equal to */
    -064LESS_OR_EQUAL,
    -065/** equals */
    -066EQUAL,
    -067/** not equal */
    -068NOT_EQUAL,
    -069/** greater than or equal to */
    -070GREATER_OR_EQUAL,
    -071/** greater than */
    -072GREATER,
    -073/** no operation */
    -074NO_OP,
    -075  }
    -076
    -077  protected CompareOp compareOp;
    -078  protected ByteArrayComparable 
    comparator;
    -079
    -080  /**
    -081   * Constructor.
    -082   * @param compareOp the compare op for 
    row matching
    -083   * @param comparator the comparator for 
    row matching
    -084   */
    -085  public CompareFilter(final CompareOp 
    compareOp,
    -086  final ByteArrayComparable 
    comparator) {
    -087this.compareOp = compareOp;
    -088this.comparator = comparator;
    -089  }
    -090
    -091  /**
    -092   * @return operator
    -093   */
    -094  public CompareOp getOperator() {
    -095return compareOp;
    -096  }
    -097
    -098  /**
    -099   * @return the comparator
    -100   */
    -101  public ByteArrayComparable 
    getComparator() {
    -102return comparator;
    -103  }
    -104
    -105  @Override
    -106  public boolean filterRowKey(Cell cell) 
    throws IOException {
    -107// Impl in FilterBase might do 
    unnecessary copy for Off heap backed Cells.
    -108return false;
    -109  }
    -110
    -111  protected boolean compareRow(final 
    CompareOp compareOp, final ByteArrayComparable comparator,
    -112  final Cell cell) {
    -113if (compareOp == CompareOp.NO_OP) {
    -114  return true;
    -115}
    -116int compareResult = 
    CellComparator.compareRow(cell, comparator);
    -117return compare(compareOp, 
    compareResult);
    -118  }
    -119
    -120  protected boolean compareFamily(final 
    CompareOp compareOp, final ByteArrayComparable comparator,
    -121  final Cell cell) {
    -122if (compareOp == CompareOp.NO_OP) {
    -123  return true;
    -124}
    -125int compareResult = 
    CellComparator.compareFamily(cell, comparator);
    -126return compare(compareOp, 
    compareResult);
    -127  }
    -128
    -129  protected boolean 
    compareQualifier(final CompareOp compareOp,
    -130  final ByteArrayComparable 
    comparator, final Cell cell) {
    -131if (compareOp == CompareOp.NO_OP) {
    -132  return true;
    -133}
    -134int compareResult = 
    CellComparator.compareQualifier(cell, comparator);
    -135return compare(compareOp, 
    compareResult);
    -136  }
    -137
    -138  protected boolean compareValue(final 
    CompareOp compareOp, final ByteArrayComparable comparator,
    -139  final Cell cell) {
    -140if (compareOp == CompareOp.NO_OP) {
    -141  return true;
    -142}
    -143int compareResult = 
    CellComparator.compareValue(cell, comparator);
    -144return compare(compareOp, 
    compareResult);
    -145  }
    -146
    -147  private boolean compare(final CompareOp 
    compareOp, int compareResult) {
    -148switch (compareOp) {
    -149case LESS:
    -150  return compareResult <= 0;
    -151case LESS_OR_EQUAL:
    -152  ret

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ReplicationState.html
    --
    diff --git 
    a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ReplicationState.html 
    b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ReplicationState.html
    index 810244e..911c694 100644
    --- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ReplicationState.html
    +++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ReplicationState.html
    @@ -122,7 +122,7 @@ var activeTableTab = "activeTableTab";
     
     
     
    -private static enum HBaseAdmin.ReplicationState
    +private static enum HBaseAdmin.ReplicationState
     extends http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
     title="class or interface in java.lang">Enum
     This enum indicates the current state of the replication 
    for a given table.
     
    @@ -214,7 +214,7 @@ the order they are declared.
     
     
     ENABLED
    -public static final HBaseAdmin.ReplicationState 
    ENABLED
    +public static final HBaseAdmin.ReplicationState 
    ENABLED
     
     
     
    @@ -223,7 +223,7 @@ the order they are declared.
     
     
     MIXED
    -public static final HBaseAdmin.ReplicationState 
    MIXED
    +public static final HBaseAdmin.ReplicationState 
    MIXED
     
     
     
    @@ -232,7 +232,7 @@ the order they are declared.
     
     
     DISABLED
    -public static final HBaseAdmin.ReplicationState 
    DISABLED
    +public static final HBaseAdmin.ReplicationState 
    DISABLED
     
     
     
    @@ -249,7 +249,7 @@ the order they are declared.
     
     
     values
    -public static HBaseAdmin.ReplicationState[] values()
    +public static HBaseAdmin.ReplicationState[] 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:
    @@ -269,7 +269,7 @@ for (HBaseAdmin.ReplicationState c : 
    HBaseAdmin.ReplicationState.values())
     
     
     valueOf
    -public static HBaseAdmin.ReplicationState valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String name)
    +public static HBaseAdmin.ReplicationState valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String name)
     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/1490b3ab/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.RestoreSnapshotFuture.html
    --
    diff --git 
    a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.RestoreSnapshotFuture.html
     
    b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.RestoreSnapshotFuture.html
    index e568f3a..05ad6ea 100644
    --- 
    a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.RestoreSnapshotFuture.html
    +++ 
    b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.RestoreSnapshotFuture.html
    @@ -127,7 +127,7 @@ var activeTableTab = "activeTableTab";
     
     
     
    -private static class HBaseAdmin.RestoreSnapshotFuture
    +private static class HBaseAdmin.RestoreSnapshotFuture
     extends HBaseAdmin.TableFutureVoid>
     
     
    @@ -240,7 +240,7 @@ extends 
     
     RestoreSnapshotFuture
    -public RestoreSnapshotFuture(HBaseAdmin admin,
    +public RestoreSnapshotFuture(HBaseAdmin admin,
      
    org.apache.hadoop.hbase.shaded.protobuf.generated.SnapshotProtos.SnapshotDescription snapshot,
      TableName tableName,
      
    org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.RestoreSnapshotResponse response)
    @@ -252,7 +252,7 @@ extends 
     
     RestoreSnapshotFuture
    -public RestoreSnapshotFuture(HBaseAdmin admin,
    +public RestoreSnapshotFuture(HBaseAdmin admin,
      TableName tableName,
      http://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true";
     title="class or interface in java.lang">Long procId)
     
    @@ -271,7 +271,7 @@ extends 
     
     getOperationType
    -public http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String getOperationType()
    +public http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String getOperationType()
     
     Specified by:
     getOperationType in
     class HBaseAdmin.TableFutureVoid>
    
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.SplitTableRegionFuture.ht

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

    2017-09-09 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/1490b3ab
    Tree: http://git-wip-us.apache.org/repos/asf/hbase-site/tree/1490b3ab
    Diff: http://git-wip-us.apache.org/repos/asf/hbase-site/diff/1490b3ab
    
    Branch: refs/heads/asf-site
    Commit: 1490b3abd3222ed5f1394a75e330004b1f93a6b1
    Parents: f8a3cc5
    Author: jenkins 
    Authored: Sat Sep 9 15:13:23 2017 +
    Committer: jenkins 
    Committed: Sat Sep 9 15:13:23 2017 +
    
    --
     acid-semantics.html | 4 +-
     apache_hbase_reference_guide.pdf| 26601 +
     apidocs/allclasses-frame.html   | 1 -
     apidocs/allclasses-noframe.html | 1 -
     apidocs/constant-values.html| 8 +-
     apidocs/deprecated-list.html|   284 +-
     apidocs/index-all.html  |   258 +-
     .../org/apache/hadoop/hbase/ClusterStatus.html  |95 +-
     .../hadoop/hbase/PleaseHoldException.html   | 4 +-
     .../org/apache/hadoop/hbase/ProcedureInfo.html  |   527 -
     .../org/apache/hadoop/hbase/ProcedureState.html | 8 +-
     .../org/apache/hadoop/hbase/class-use/Cell.html |48 +-
     .../hadoop/hbase/class-use/ClusterStatus.html   |10 +-
     .../hadoop/hbase/class-use/CompareOperator.html |   190 +
     .../hadoop/hbase/class-use/ProcedureInfo.html   |   222 -
     .../hadoop/hbase/class-use/ProcedureState.html  |26 +-
     .../org/apache/hadoop/hbase/client/Admin.html   |   522 +-
     .../apache/hadoop/hbase/client/AsyncAdmin.html  |   350 +-
     .../hadoop/hbase/client/MasterSwitchType.html   | 4 +-
     .../client/ShortCircuitMasterConnection.html|   230 +-
     .../org/apache/hadoop/hbase/client/Table.html   |72 +-
     .../hbase/filter/CompareFilter.CompareOp.html   |49 +-
     .../hadoop/hbase/filter/CompareFilter.html  |   207 +-
     .../hbase/filter/DependentColumnFilter.html |96 +-
     .../hadoop/hbase/filter/FamilyFilter.html   |46 +-
     .../apache/hadoop/hbase/filter/ParseFilter.html |   128 +-
     .../hadoop/hbase/filter/QualifierFilter.html|44 +-
     .../apache/hadoop/hbase/filter/RowFilter.html   |52 +-
     .../filter/SingleColumnValueExcludeFilter.html  |   156 +-
     .../hbase/filter/SingleColumnValueFilter.html   |   270 +-
     .../apache/hadoop/hbase/filter/ValueFilter.html |43 +-
     .../filter/class-use/ByteArrayComparable.html   |   172 +-
     .../class-use/CompareFilter.CompareOp.html  |   125 +-
     .../hadoop/hbase/filter/package-summary.html| 4 +-
     .../apache/hadoop/hbase/filter/package-use.html |12 +-
     .../hadoop/hbase/mapreduce/CellCounter.html |10 +-
     .../org/apache/hadoop/hbase/package-frame.html  | 1 -
     .../apache/hadoop/hbase/package-summary.html|14 +-
     .../org/apache/hadoop/hbase/package-tree.html   | 9 +-
     .../org/apache/hadoop/hbase/package-use.html|39 +-
     .../hadoop/hbase/security/class-use/User.html   | 7 -
     apidocs/overview-tree.html  | 9 +-
     .../org/apache/hadoop/hbase/ClusterStatus.html  |   935 +-
     .../org/apache/hadoop/hbase/HConstants.html | 8 +-
     .../org/apache/hadoop/hbase/ProcedureInfo.html  |   287 -
     .../org/apache/hadoop/hbase/client/Admin.html   |  4333 +--
     .../apache/hadoop/hbase/client/AsyncAdmin.html  |  2187 +-
     .../client/ShortCircuitMasterConnection.html|  1037 +-
     .../org/apache/hadoop/hbase/client/Table.html   |  1155 +-
     .../hbase/filter/ByteArrayComparable.html   | 2 +-
     .../hbase/filter/CompareFilter.CompareOp.html   |   424 +-
     .../hadoop/hbase/filter/CompareFilter.html  |   424 +-
     .../hbase/filter/DependentColumnFilter.html |   516 +-
     .../hadoop/hbase/filter/FamilyFilter.html   |   218 +-
     .../apache/hadoop/hbase/filter/ParseFilter.html |  1695 +-
     .../hadoop/hbase/filter/QualifierFilter.html|   213 +-
     .../apache/hadoop/hbase/filter/RowFilter.html   |   247 +-
     .../filter/SingleColumnValueExcludeFilter.html  |   363 +-
     .../hbase/filter/SingleColumnValueFilter.html   |   776 +-
     .../apache/hadoop/hbase/filter/ValueFilter.html |   205 +-
     .../hadoop/hbase/mapreduce/CellCounter.html |   611 +-
     book.html   |   106 +-
     bulk-loads.html | 4 +-
     checkstyle-aggregate.html   | 19834 ++--
     checkstyle.rss  |   212 +-
     coc.html| 4 +-
     cygwin.html | 4 +-
     dependencies.html   | 4 +-
     dependency-convergence.html | 4 +-
     dependency-info.html| 4 +-
     dependency-management.html  | 4 +-
     devapidocs/allclasses-frame.html|17 +-
     devapidocs/allclasses-noframe.html  |17 +-
     devapidocs/cons

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
    --
    diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html 
    b/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
    index 5616929..bd01f23 100644
    --- a/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
    +++ b/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
    @@ -1512,11 +1512,11 @@ Input/OutputFormats, a table indexing MapReduce job, 
    and utility methods.
     
     
     default void
    -MasterObserver.postRequestLock(ObserverContext ctx,
    +MasterObserver.postRequestLock(ObserverContext ctx,
    http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String namespace,
    TableName tableName,
    HRegionInfo[] regionInfos,
    -   LockProcedure.LockType type,
    +   LockType type,
    http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String description)
     Called after new LockProcedure is queued.
     
    @@ -1653,11 +1653,11 @@ Input/OutputFormats, a table indexing MapReduce job, 
    and utility methods.
     
     
     default void
    -MasterObserver.preRequestLock(ObserverContext ctx,
    +MasterObserver.preRequestLock(ObserverContext ctx,
       http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String namespace,
       TableName tableName,
       HRegionInfo[] regionInfos,
    -  LockProcedure.LockType type,
    +  LockType type,
       http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String description)
     Called before new LockProcedure is queued.
     
    @@ -2630,10 +2630,10 @@ Input/OutputFormats, a table indexing MapReduce job, 
    and utility methods.
     
     
     void
    -MasterCoprocessorHost.postRequestLock(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String namespace,
    +MasterCoprocessorHost.postRequestLock(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String namespace,
    TableName tableName,
    HRegionInfo[] regionInfos,
    -   LockProcedure.LockType type,
    +   LockType type,
    http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in 
    java.lang">String description) 
     
     
    @@ -2694,10 +2694,10 @@ Input/OutputFormats, a table indexing MapReduce job, 
    and utility methods.
     
     
     void
    -MasterCoprocessorHost.preRequestLock(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String namespace,
    +MasterCoprocessorHost.preRequestLock(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String namespace,
       TableName tableName,
       HRegionInfo[] regionInfos,
    -  LockProcedure.LockType type,
    +  LockType type,
       http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in 
    java.lang">String description) 
     
     
    @@ -4126,9 +4126,9 @@ Input/OutputFormats, a table indexing MapReduce job, and 
    utility methods.
     
     
     
    -LockProcedure(org.apache.hadoop.conf.Configuration conf,
    +LockProcedure(org.apache.hadoop.conf.Configuration conf,
      HRegionInfo[] regionInfos,
    - LockProcedure.LockType type,
    + LockType type,
      http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String description,
      http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CountDownLatch.html?is-external=true";
     title="class or interface in 
    java.util.concurrent">CountDownLatch lockAcquireLatch)
     Constructor for region lock(s).
    @@ -5969,11 +5969,11 @@ Input/OutputFormats, a table indexing MapReduce job, 
    and utility methods.
     
     
     void
    -AccessController.preRequestLock(ObserverContext ctx,
    +AccessController.preRequestLock(ObserverContext ctx,
       http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String namespace,
       TableName tableName,
       HRegionInfo[] regionInfos,
    -  LockProcedure.LockType type,
    +  LockType type,
       http://

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/apidocs/src-html/org/apache/hadoop/hbase/filter/DependentColumnFilter.html
    --
    diff --git 
    a/apidocs/src-html/org/apache/hadoop/hbase/filter/DependentColumnFilter.html 
    b/apidocs/src-html/org/apache/hadoop/hbase/filter/DependentColumnFilter.html
    index da02cae..ab928b4 100644
    --- a/apidocs/src-html/org/apache/hadoop/hbase/filter/DependentColumnFilter.html
    +++ b/apidocs/src-html/org/apache/hadoop/hbase/filter/DependentColumnFilter.html
    @@ -34,260 +34,284 @@
     026
     027import org.apache.hadoop.hbase.Cell;
     028import 
    org.apache.hadoop.hbase.CellUtil;
    -029import 
    org.apache.hadoop.hbase.classification.InterfaceAudience;
    -030import 
    org.apache.hadoop.hbase.exceptions.DeserializationException;
    -031import 
    org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
    -032import 
    org.apache.hadoop.hbase.shaded.protobuf.generated.FilterProtos;
    -033import 
    org.apache.hadoop.hbase.util.Bytes;
    -034
    -035import 
    org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions;
    -036
    -037import 
    org.apache.hadoop.hbase.shaded.com.google.protobuf.InvalidProtocolBufferException;
    -038import 
    org.apache.hadoop.hbase.shaded.com.google.protobuf.UnsafeByteOperations;
    -039
    -040/**
    -041 * A filter for adding inter-column 
    timestamp matching
    -042 * Only cells with a correspondingly 
    timestamped entry in
    -043 * the target column will be retained
    -044 * Not compatible with Scan.setBatch as 
    operations need 
    -045 * full rows for correct filtering 
    -046 */
    -047@InterfaceAudience.Public
    -048public class DependentColumnFilter 
    extends CompareFilter {
    -049
    -050  protected byte[] columnFamily;
    -051  protected byte[] columnQualifier;
    -052  protected boolean 
    dropDependentColumn;
    -053
    -054  protected Set stampSet = 
    new HashSet<>();
    -055  
    -056  /**
    -057   * Build a dependent column filter with 
    value checking
    -058   * dependent column varies will be 
    compared using the supplied
    -059   * compareOp and comparator, for usage 
    of which
    -060   * refer to {@link CompareFilter}
    -061   * 
    -062   * @param family dependent column 
    family
    -063   * @param qualifier dependent column 
    qualifier
    -064   * @param dropDependentColumn whether 
    the column should be discarded after
    -065   * @param valueCompareOp comparison op 
    
    -066   * @param valueComparator comparator
    -067   */
    -068  public DependentColumnFilter(final byte 
    [] family, final byte[] qualifier,
    -069  final boolean dropDependentColumn, 
    final CompareOp valueCompareOp,
    -070final ByteArrayComparable 
    valueComparator) {
    -071// set up the comparator   
    -072super(valueCompareOp, 
    valueComparator);
    -073this.columnFamily = family;
    -074this.columnQualifier = qualifier;
    -075this.dropDependentColumn = 
    dropDependentColumn;
    -076  }
    -077  
    -078  /**
    -079   * Constructor for DependentColumn 
    filter.
    -080   * Cells where a Cell from target 
    column
    -081   * with the same timestamp do not exist 
    will be dropped.
    -082   *
    -083   * @param family name of target column 
    family
    -084   * @param qualifier name of column 
    qualifier
    -085   */
    -086  public DependentColumnFilter(final byte 
    [] family, final byte [] qualifier) {
    -087this(family, qualifier, false);
    -088  }
    -089  
    -090  /**
    -091   * Constructor for DependentColumn 
    filter.
    -092   * Cells where a Cell from target 
    column
    -093   * with the same timestamp do not exist 
    will be dropped.
    -094   *
    -095   * @param family name of dependent 
    column family
    -096   * @param qualifier name of dependent 
    qualifier
    -097   * @param dropDependentColumn whether 
    the dependent columns Cells should be discarded
    -098   */
    -099  public DependentColumnFilter(final byte 
    [] family, final byte [] qualifier,
    -100  final boolean dropDependentColumn) 
    {
    -101this(family, qualifier, 
    dropDependentColumn, CompareOp.NO_OP, null);
    -102  }
    -103
    -104  /**
    -105   * @return the column family
    -106   */
    -107  public byte[] getFamily() {
    -108return this.columnFamily;
    -109  }
    -110
    -111  /**
    -112   * @return the column qualifier
    -113   */
    -114  public byte[] getQualifier() {
    -115return this.columnQualifier;
    -116  }
    -117
    -118  /**
    -119   * @return true if we should drop the 
    dependent column, false otherwise
    -120   */
    -121  public boolean dropDependentColumn() 
    {
    -122return this.dropDependentColumn;
    -123  }
    -124
    -125  public boolean getDropDependentColumn() 
    {
    -126return this.dropDependentColumn;
    -127  }
    -128
    -129  @Override
    -130  public boolean filterAllRemaining() {
    -131return false;
    -132  }
    -133
    -134  @Override
    -135  public ReturnCode filterKeyValue(Cell 
    c) {
    -136// Check if the column and qualifier 
    match
    -137if (!CellUtil.matchingColumn(c, 
    this.columnFamily, this.columnQualifier)) {
    -138// include non-matches for the 
    time being, they'll be discarded afterwards
    -139return ReturnCode.INCLUDE;
    -140}
    -141// If it doesn't pass the op, skip 
    it
    -142if (comparator != null
    -1

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/book.html
    --
    diff --git a/book.html b/book.html
    index 0a365e5..5a80fe0 100644
    --- a/book.html
    +++ b/book.html
    @@ -2584,7 +2584,7 @@ Some configurations would only appear in source code; the 
    only way to identify t
     
     
     Description
    -A split policy determines when a region should be split. The various other 
    split policies that are available currently are BusyRegionSplitPolicy, 
    ConstantSizeRegionSplitPolicy, DisabledRegionSplitPolicy, 
    DelimitedKeyPrefixRegionSplitPolicy, and KeyPrefixRegionSplitPolicy. 
    DisabledRegionSplitPolicy blocks manual region splitting.
    +A split policy determines when a region should be split. The various other 
    split policies that are available currently are BusyRegionSplitPolicy, 
    ConstantSizeRegionSplitPolicy, DisabledRegionSplitPolicy, 
    DelimitedKeyPrefixRegionSplitPolicy, KeyPrefixRegionSplitPolicy, and 
    SteppingSplitPolicy. DisabledRegionSplitPolicy blocks manual region 
    splitting.
     
     
     Default
    @@ -2794,7 +2794,7 @@ Some configurations would only appear in source code; the 
    only way to identify t
     
     
     Description
    -Default size of the HTable client write buffer in bytes. A bigger buffer 
    takes more memory — on both the client and server side since 
    server instantiates the passed write buffer to process 
    it — but a larger buffer size reduces the number of RPCs 
    made. For an estimate of server-side memory-used, evaluate 
    hbase.client.write.buffer * hbase.regionserver.handler.count
    +Default size of the BufferedMutator write buffer in bytes. A bigger buffer 
    takes more memory — on both the client and server side since 
    server instantiates the passed write buffer to process 
    it — but a larger buffer size reduces the number of RPCs 
    made. For an estimate of server-side memory-used, evaluate 
    hbase.client.write.buffer * hbase.regionserver.handler.count
     
     
     Default
    @@ -5395,7 +5395,7 @@ It also makes it so region boundaries are known and 
    invariant (if you disable re
     
     
     Disable Automatic Splitting
    -To disable automatic splitting, set hbase.hregion.max.filesize 
    to a very large value, such as 100 GB It is not recommended to set 
    it to its absolute maximum value of Long.MAX_VALUE.
    +To disable automatic splitting, you can set region split policy in either 
    cluster configuration or table configuration to be 
    org.apache.hadoop.hbase.regionserver.DisabledRegionSplitPolicy
     
     
     
    @@ -7485,7 +7485,7 @@ Gets are executed via http://hbase.apache.org/apidocs/org/apache/hadoop
     
     26.2. Put
     
    -http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/Put.html";>Put
     either adds new rows to a table (if the key is new) or can update existing 
    rows (if the key already exists). Puts are executed via http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/Table.html#put(org.apache.hadoop.hbase.client.Put)">Table.put
     (writeBuffer) or http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/Table.html#batch(java.util.List,%20java.lang.Object%5B%5D)">Table.batch
     (non-writeBuffer).
    +http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/Put.html";>Put
     either adds new rows to a table (if the key is new) or can update existing 
    rows (if the key already exists). Puts are executed via http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/Table.html#put(org.apache.hadoop.hbase.client.Put)">Table.put
     (non-writeBuffer) or http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/Table.html#batch(java.util.List,%20java.lang.Object%5B%5D)">Table.batch
     (non-writeBuffer).
     
     
     
    @@ -13206,7 +13206,7 @@ Please use http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/clie
     In HBase 1.0 and later, http://hbase.apache.org/devapidocs/org/apache/hadoop/hbase/client/HTable.html";>HTable
     is deprecated in favor of http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/Table.html";>Table.
     Table does not use autoflush. To do buffered writes, use the 
    BufferedMutator class.
     
     
    -Before a Table or HTable instance is discarded, 
    invoke either close() or flushCommits(), so `Put`s 
    will not be lost.
    +In HBase 2.0 and later, http://hbase.apache.org/devapidocs/org/apache/hadoop/hbase/client/HTable.html";>HTable
     does not use BufferedMutator to execute the Put operation. Refer 
    to https://issues.apache.org/jira/browse/HBASE-18500";>HBASE-18500 
    for more information.
     
     
     For additional information on write durability, review the ACID semantics page.
    @@ -13304,14 +13304,14 @@ The following example shows an 'or' between two 
    Filters (checking for either 'my
     SingleColumnValueFilter filter1 = new 
    SingleColumnValueFilter(
       cf,
       column,
    -  CompareOp.EQUAL,
    +  CompareOperator.EQUAL,
       Bytes.toBytes("my value")
       );
     list.add(filter1);
     SingleColumnValueFilter filter2 = new 
    SingleColumnValueFilter(
       cf,
       column,
    -  CompareOp.EQUAL,
    +  CompareOperator.EQUAL,
       Bytes.toBytes("my other value")
       );
     list.add(filter2);
    @@ -13327,8 +13327,8 @@ sca

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/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 80bbcfd..e48c0ec 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":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":38,"i18":38,"i19":38,"i20":38,"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":38,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":38,"i48":38,"i49":6,"i50":6,"i51":18,"i52":6,"i53":6,"i54":6,"i55":38,"i56":38,"i57":6,"i58":6,"i59":18,"i60":6,"i61":6,"i62":6,"i63":38,"i64":38,"i65":6,"i66":6,"i67":6,"i68":6,"i69":38,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":6,"i79":6,"i80":6,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":6,"i88":18,"i89":6,"i90":38,"i91":38,"i92":38,"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":18,"i113":18,"i114":18,"i115":6,"i116":6,"i117":6,"i118"
     
    :6,"i119":6,"i120":6,"i121":6,"i122":6,"i123":6,"i124":6,"i125":6,"i126":38,"i127":6,"i128":6,"i129":6,"i130":6,"i131":6,"i132":6,"i133":38,"i134":38,"i135":38,"i136":38,"i137":38,"i138":6,"i139":6,"i140":6,"i141":6,"i142":6,"i143":6,"i144":6,"i145":6,"i146":38,"i147":6,"i148":6,"i149":50,"i150":6,"i151":6,"i152":6,"i153":6,"i154":6,"i155":38,"i156":6,"i157":38,"i158":6,"i159":6,"i160":6,"i161":6,"i162":18,"i163":18,"i164":6,"i165":6,"i166":6,"i167":6,"i168":6,"i169":6,"i170":6,"i171":6,"i172":6,"i173":6,"i174":6,"i175":6,"i176":6,"i177":6,"i178":6,"i179":6,"i180":6,"i181":6,"i182":6,"i183":6,"i184":6,"i185":38,"i186":38,"i187":6,"i188":6,"i189":6,"i190":6,"i191":6,"i192":6,"i193":6,"i194":6,"i195":6,"i196":6,"i197":18};
    +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":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":38,"i18":38,"i19":38,"i20":38,"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":38,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":38,"i48":38,"i49":6,"i50":6,"i51":18,"i52":6,"i53":6,"i54":6,"i55":38,"i56":38,"i57":6,"i58":6,"i59":18,"i60":6,"i61":6,"i62":6,"i63":38,"i64":38,"i65":6,"i66":6,"i67":6,"i68":6,"i69":38,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":6,"i79":6,"i80":6,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":6,"i88":6,"i89":6,"i90":18,"i91":6,"i92":38,"i93":38,"i94":38,"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":18,"i113":18,"i114":18,"i115":6,"i116":6,"i117":6,"i118"
     
    :6,"i119":6,"i120":6,"i121":6,"i122":6,"i123":6,"i124":6,"i125":6,"i126":38,"i127":6,"i128":6,"i129":6,"i130":6,"i131":6,"i132":6,"i133":38,"i134":38,"i135":38,"i136":38,"i137":38,"i138":6,"i139":6,"i140":6,"i141":6,"i142":6,"i143":6,"i144":6,"i145":6,"i146":38,"i147":6,"i148":6,"i149":50,"i150":6,"i151":6,"i152":6,"i153":6,"i154":6,"i155":38,"i156":6,"i157":38,"i158":6,"i159":6,"i160":6,"i161":6,"i162":18,"i163":18,"i164":6,"i165":6,"i166":6,"i167":6,"i168":6,"i169":6,"i170":6,"i171":6,"i172":6,"i173":6,"i174":6,"i175":6,"i176":6,"i177":6,"i178":6,"i179":6,"i180":6,"i181":6,"i182":6,"i183":6,"i184":6,"i185":38,"i186":38,"i187":6,"i188":6,"i189":6,"i190":6,"i191":6,"i192":6,"i193":6,"i194":6,"i195":6,"i196":6,"i197":18};
     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 HBase. Obtain an instance from 
    an Connection.getAdmin()
     and
      call close()
     afterwards.
    @@ -665,12 +665,14 @@ extends org.apache.hadoop.hbase.Abortable, http://docs.oracle.com/javas
     
     
     ClusterStatus
    -getClusterStatus() 
    +getClusterStatus()
    +Get whole cluster status, containing status about:
    +
     
     
     ClusterStatus
    -getClusterStatus(org.apache.hadoop.hbase.ClusterStatus.Options options)
    -Get cluster status with options to filter out unwanted 
    status.
    +getClusterStatus(http://doc

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

    2017-09-09 Thread git-site-role
    http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1490b3ab/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/MasterCoprocessorEnvironment.html
    --
    diff --git 
    a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/MasterCoprocessorEnvironment.html
     
    b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/MasterCoprocessorEnvironment.html
    index f309c0f..c448115 100644
    --- 
    a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/MasterCoprocessorEnvironment.html
    +++ 
    b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/MasterCoprocessorEnvironment.html
    @@ -460,11 +460,25 @@
     
     
     default void
    +MasterObserver.postGetLocks(ObserverContext ctx,
    +http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List lockedResources)
    +Called after a getLocks request has been processed.
    +
    +
    +
    +default void
     MasterObserver.postGetNamespaceDescriptor(ObserverContext ctx,
       NamespaceDescriptor ns)
     Called after a getNamespaceDescriptor request has been 
    processed.
     
     
    +
    +default void
    +MasterObserver.postGetProcedures(ObserverContext ctx,
    + http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List> procList)
    +Called after a getProcedures request has been 
    processed.
    +
    +
     
     default void
     MasterObserver.postGetReplicationPeerConfig(ObserverContext ctx,
    @@ -491,25 +505,11 @@
     
     
     default void
    -MasterObserver.postListLocks(ObserverContext ctx,
    - http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List lockInfoList)
    -Called after a listLocks request has been processed.
    -
    -
    -
    -default void
     MasterObserver.postListNamespaceDescriptors(ObserverContext ctx,
     http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List descriptors)
     Called after a listNamespaceDescriptors request has been 
    processed.
     
     
    -
    -default void
    -MasterObserver.postListProcedures(ObserverContext ctx,
    -  http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List procInfoList)
    -Called after a listProcedures request has been 
    processed.
    -
    -
     
     default void
     MasterObserver.postListReplicationPeers(ObserverContext ctx,
    @@ -663,11 +663,11 @@
     
     
     default void
    -MasterObserver.postRequestLock(ObserverContext ctx,
    +MasterObserver.postRequestLock(ObserverContext ctx,
    http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String namespace,
    TableName tableName,
    HRegionInfo[] regionInfos,
    -   LockProcedure.LockType type,
    +   LockType type,
    http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String description)
     Called after new LockProcedure is queued.
     
    @@ -1097,11 +1097,23 @@
     
     
     default void
    +MasterObserver.preGetLocks(ObserverContext ctx)
    +Called before a getLocks request has been processed.
    +
    +
    +
    +default void
     MasterObserver.preGetNamespaceDescriptor(ObserverContext ctx,
      http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
     title="class or interface in java.lang">String namespace)
     Called before a getNamespaceDescriptor request has been 
    processed.
     
     
    +
    +default void
    +MasterObserver.preGetProcedures(ObserverContext ctx)
    +Called before a getProcedures request has been 
    processed.
    +
    +
     
     default void
     MasterObserver.preGetReplicationPeerConfig(ObserverContext ctx,
    @@ -1128,23 +1140,11 @@
     
     
     default void
    -MasterObserver.preListLocks(ObserverContext ctx)
    -Called before a listLocks request has been processed.
    -
    -
    -
    -default void
     MasterObserver.preListNamespaceDescriptors(ObserverContext ctx,
    http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
     title="class or interface in java.util">List descriptors)
     Called before a listNamespaceDescriptors request has been 
    processed.
     
     
    -
    -default void
    -MasterObserver.preListProcedures(ObserverContext
    

    hbase git commit: HBASE-18697 (addendum) Add "o.a.h.h.mapreduce.Driver" as main class to hbase-shaded-mapreduce jar.

    2017-09-09 Thread appy
    Repository: hbase
    Updated Branches:
      refs/heads/branch-2 1ee492373 -> 4dc3c40f1
    
    
    HBASE-18697 (addendum) Add "o.a.h.h.mapreduce.Driver" as main class to 
    hbase-shaded-mapreduce jar.
    
    Without it, following command fails.
    bin/hadoop jar  rowcouter 
    In general, the 'program names' won't work. One would have needed to specify 
    class name explicitly otherwise.
    
    Change-Id: Ib94cca5e9fc45b19436b7ae0d6634de097572537
    
    
    Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
    Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/4dc3c40f
    Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/4dc3c40f
    Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/4dc3c40f
    
    Branch: refs/heads/branch-2
    Commit: 4dc3c40f158401c821b4d61361a287b0e701de10
    Parents: 1ee4923
    Author: Apekshit Sharma 
    Authored: Wed Sep 6 10:53:01 2017 -0700
    Committer: Apekshit Sharma 
    Committed: Sat Sep 9 15:23:45 2017 -0700
    
    --
     hbase-shaded/hbase-shaded-mapreduce/pom.xml | 14 ++
     1 file changed, 14 insertions(+)
    --
    
    
    http://git-wip-us.apache.org/repos/asf/hbase/blob/4dc3c40f/hbase-shaded/hbase-shaded-mapreduce/pom.xml
    --
    diff --git a/hbase-shaded/hbase-shaded-mapreduce/pom.xml 
    b/hbase-shaded/hbase-shaded-mapreduce/pom.xml
    index 02b2d8a..69f6e5d 100644
    --- a/hbase-shaded/hbase-shaded-mapreduce/pom.xml
    +++ b/hbase-shaded/hbase-shaded-mapreduce/pom.xml
    @@ -45,6 +45,20 @@
     true
     
     
    +
    +org.apache.maven.plugins
    +maven-jar-plugin
    +
    +
    +
    +
    +
    org/apache/hadoop/hbase/mapreduce/Driver
    +
    +
    +
    +
     
     
     
    
    
    

    hbase git commit: HBASE-18697 (addendum) Add "o.a.h.h.mapreduce.Driver" as main class to hbase-shaded-mapreduce jar.

    2017-09-09 Thread appy
    Repository: hbase
    Updated Branches:
      refs/heads/master 2359ef518 -> 966f5ca3d
    
    
    HBASE-18697 (addendum) Add "o.a.h.h.mapreduce.Driver" as main class to 
    hbase-shaded-mapreduce jar.
    
    Without it, following command fails.
    bin/hadoop jar  rowcouter 
    In general, the 'program names' won't work. One would have needed to specify 
    class name explicitly otherwise.
    
    Change-Id: Ib94cca5e9fc45b19436b7ae0d6634de097572537
    
    
    Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
    Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/966f5ca3
    Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/966f5ca3
    Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/966f5ca3
    
    Branch: refs/heads/master
    Commit: 966f5ca3db705b7bb030b0075afa38ab37bb244a
    Parents: 2359ef5
    Author: Apekshit Sharma 
    Authored: Wed Sep 6 10:53:01 2017 -0700
    Committer: Apekshit Sharma 
    Committed: Sat Sep 9 15:27:15 2017 -0700
    
    --
     hbase-shaded/hbase-shaded-mapreduce/pom.xml | 14 ++
     1 file changed, 14 insertions(+)
    --
    
    
    http://git-wip-us.apache.org/repos/asf/hbase/blob/966f5ca3/hbase-shaded/hbase-shaded-mapreduce/pom.xml
    --
    diff --git a/hbase-shaded/hbase-shaded-mapreduce/pom.xml 
    b/hbase-shaded/hbase-shaded-mapreduce/pom.xml
    index 041ccfe..f791ddc 100644
    --- a/hbase-shaded/hbase-shaded-mapreduce/pom.xml
    +++ b/hbase-shaded/hbase-shaded-mapreduce/pom.xml
    @@ -45,6 +45,20 @@
     true
     
     
    +
    +org.apache.maven.plugins
    +maven-jar-plugin
    +
    +
    +
    +
    +
    org/apache/hadoop/hbase/mapreduce/Driver
    +
    +
    +
    +