hbase git commit: HBASE-20013 TestZKPermissionWatcher is flakey

2018-02-16 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/master 969895105 -> 68d509bc1


HBASE-20013 TestZKPermissionWatcher is flakey


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

Branch: refs/heads/master
Commit: 68d509bc1ff7a3bf69a596aed49f238b42ee0679
Parents: 9698951
Author: Michael Stack 
Authored: Fri Feb 16 20:11:03 2018 -0800
Committer: Michael Stack 
Committed: Fri Feb 16 23:22:23 2018 -0800

--
 .../org/apache/hadoop/hbase/master/HMaster.java   | 18 ++
 1 file changed, 14 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/68d509bc/hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
index 02fbc02..b949aa9 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
@@ -2718,11 +2718,21 @@ public class HMaster extends HRegionServer implements 
MasterServices {
 }
   }
 
-  void checkInitialized()
-  throws PleaseHoldException, ServerNotRunningYetException, 
MasterNotRunningException {
+  public static class MasterStoppedException extends DoNotRetryIOException {
+MasterStoppedException() {
+  super();
+}
+  }
+
+  void checkInitialized() throws PleaseHoldException, 
ServerNotRunningYetException,
+  MasterNotRunningException, MasterStoppedException {
 checkServiceStarted();
-if (!isInitialized()) throw new PleaseHoldException("Master is 
initializing");
-if (isStopped()) throw new MasterNotRunningException();
+if (!isInitialized()) {
+  throw new PleaseHoldException("Master is initializing");
+}
+if (isStopped()) {
+  throw new MasterStoppedException();
+}
   }
 
   /**



hbase git commit: Revert "HBASE-20015 TestMergeTableRegionsProcedure and TestRegionMergeTransactionOnCluster flakey"

2018-02-16 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-2 3ea2ffcd5 -> 07bdd492f


Revert "HBASE-20015 TestMergeTableRegionsProcedure and 
TestRegionMergeTransactionOnCluster flakey"

This reverts commit 72193650dde2225e85d7bdb74b24ad39367145da.


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

Branch: refs/heads/branch-2
Commit: 07bdd492f443fddba61707e2af24650b01d5e76e
Parents: 3ea2ffc
Author: Michael Stack 
Authored: Fri Feb 16 23:21:56 2018 -0800
Committer: Michael Stack 
Committed: Fri Feb 16 23:21:56 2018 -0800

--
 .../master/assignment/MergeTableRegionsProcedure.java | 14 --
 .../master/assignment/SplitTableRegionProcedure.java  |  1 -
 2 files changed, 4 insertions(+), 11 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/07bdd492/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.java
index baa399b..4bccab7 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.java
@@ -255,16 +255,10 @@ public class MergeTableRegionsProcedure
 throw new UnsupportedOperationException(this + " unhandled state=" + 
state);
   }
 } catch (IOException e) {
-   String msg = "Error trying to merge regions " +
-   RegionInfo.getShortNameToLog(regionsToMerge) + " in the table " + 
getTableName() +
-   " (in state=" + state + ")";
-  if (!isRollbackSupported(state)) {
-// We reach a state that cannot be rolled back. We just need to keep 
retry.
-LOG.warn(msg, e);
-  } else {
-LOG.error(msg, e);
-setFailure("master-merge-regions", e);
-  }
+  LOG.warn("Error trying to merge regions " + 
RegionInfo.getShortNameToLog(regionsToMerge) +
+" in the table " + getTableName() + " (in state=" + state + ")", e);
+
+  setFailure("master-merge-regions", e);
 }
 return Flow.HAS_MORE_STATE;
   }

http://git-wip-us.apache.org/repos/asf/hbase/blob/07bdd492/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java
index e898d6a..c139566 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java
@@ -270,7 +270,6 @@ public class SplitTableRegionProcedure
   } else {
 LOG.error(msg, e);
 setFailure(e);
-setFailure("master-split-regions", e);
   }
 }
 // if split fails,  need to call ((HRegion)parent).clearSplit() when it is 
a force split



[1/2] hbase git commit: HBASE-20015 TestMergeTableRegionsProcedure and TestRegionMergeTransactionOnCluster flakey

2018-02-16 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-2 8be069632 -> 3ea2ffcd5


HBASE-20015 TestMergeTableRegionsProcedure and 
TestRegionMergeTransactionOnCluster flakey


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

Branch: refs/heads/branch-2
Commit: 72193650dde2225e85d7bdb74b24ad39367145da
Parents: 8be0696
Author: Michael Stack 
Authored: Fri Feb 16 22:59:32 2018 -0800
Committer: Michael Stack 
Committed: Fri Feb 16 22:59:32 2018 -0800

--
 .../master/assignment/MergeTableRegionsProcedure.java | 14 ++
 .../master/assignment/SplitTableRegionProcedure.java  |  1 +
 2 files changed, 11 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/72193650/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.java
index 4bccab7..baa399b 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.java
@@ -255,10 +255,16 @@ public class MergeTableRegionsProcedure
 throw new UnsupportedOperationException(this + " unhandled state=" + 
state);
   }
 } catch (IOException e) {
-  LOG.warn("Error trying to merge regions " + 
RegionInfo.getShortNameToLog(regionsToMerge) +
-" in the table " + getTableName() + " (in state=" + state + ")", e);
-
-  setFailure("master-merge-regions", e);
+   String msg = "Error trying to merge regions " +
+   RegionInfo.getShortNameToLog(regionsToMerge) + " in the table " + 
getTableName() +
+   " (in state=" + state + ")";
+  if (!isRollbackSupported(state)) {
+// We reach a state that cannot be rolled back. We just need to keep 
retry.
+LOG.warn(msg, e);
+  } else {
+LOG.error(msg, e);
+setFailure("master-merge-regions", e);
+  }
 }
 return Flow.HAS_MORE_STATE;
   }

http://git-wip-us.apache.org/repos/asf/hbase/blob/72193650/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java
index c139566..e898d6a 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.java
@@ -270,6 +270,7 @@ public class SplitTableRegionProcedure
   } else {
 LOG.error(msg, e);
 setFailure(e);
+setFailure("master-split-regions", e);
   }
 }
 // if split fails,  need to call ((HRegion)parent).clearSplit() when it is 
a force split



[2/2] hbase git commit: HBASE-20013 TestZKPermissionWatcher is flakey

2018-02-16 Thread stack
HBASE-20013 TestZKPermissionWatcher is flakey


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

Branch: refs/heads/branch-2
Commit: 3ea2ffcd57df3eeb2a996ddc8b229449c8a9f87e
Parents: 7219365
Author: Michael Stack 
Authored: Fri Feb 16 20:11:03 2018 -0800
Committer: Michael Stack 
Committed: Fri Feb 16 23:19:07 2018 -0800

--
 .../org/apache/hadoop/hbase/master/HMaster.java   | 18 ++
 1 file changed, 14 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/3ea2ffcd/hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
index aa22130..dcab9f4 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/HMaster.java
@@ -2729,11 +2729,21 @@ public class HMaster extends HRegionServer implements 
MasterServices {
 }
   }
 
-  void checkInitialized()
-  throws PleaseHoldException, ServerNotRunningYetException, 
MasterNotRunningException {
+  public static class MasterStoppedException extends DoNotRetryIOException {
+MasterStoppedException() {
+  super();
+}
+  }
+
+  void checkInitialized() throws PleaseHoldException, 
ServerNotRunningYetException,
+  MasterNotRunningException, MasterStoppedException {
 checkServiceStarted();
-if (!isInitialized()) throw new PleaseHoldException("Master is 
initializing");
-if (isStopped()) throw new MasterNotRunningException();
+if (!isInitialized()) {
+  throw new PleaseHoldException("Master is initializing");
+}
+if (isStopped()) {
+  throw new MasterStoppedException();
+}
   }
 
   /**



hbase git commit: HBASE-20014 TestAdmin1 Times out

2018-02-16 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/master dad90f6cc -> 969895105


HBASE-20014 TestAdmin1 Times out


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

Branch: refs/heads/master
Commit: 969895105c77aaa34f4678d1924e83ebda7edb0f
Parents: dad90f6
Author: Michael Stack 
Authored: Fri Feb 16 20:55:29 2018 -0800
Committer: Michael Stack 
Committed: Fri Feb 16 20:57:10 2018 -0800

--
 .../src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java  | 2 +-
 src/main/asciidoc/_chapters/developer.adoc | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/96989510/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java
--
diff --git 
a/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java 
b/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java
index d47b213..a41e383 100644
--- a/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java
+++ b/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java
@@ -61,7 +61,7 @@ public final class HBaseClassTestRule implements TestRule {
 for (Class c : categories[0].value()) {
   if (c == SmallTests.class || c == MediumTests.class || c == 
LargeTests.class) {
 // All tests have a 10minute timeout.
-return TimeUnit.MINUTES.toSeconds(10);
+return TimeUnit.MINUTES.toSeconds(13);
   }
 }
 throw new IllegalArgumentException(

http://git-wip-us.apache.org/repos/asf/hbase/blob/96989510/src/main/asciidoc/_chapters/developer.adoc
--
diff --git a/src/main/asciidoc/_chapters/developer.adoc 
b/src/main/asciidoc/_chapters/developer.adoc
index 3d8275f..3dbfe74 100644
--- a/src/main/asciidoc/_chapters/developer.adoc
+++ b/src/main/asciidoc/_chapters/developer.adoc
@@ -999,7 +999,7 @@ is that of the local test; i.e. in the TestTimeout Test 
Class, you'd
 pass `TestTimeout.class` to the `CLASS_RULE` instead of the
 `TestHRegionInfo.class` we have above. The `CLASS_RULE`
 is where we'll enforce timeouts (currently set at a hard-limit of
-ten minutes for all tests) and other cross-unit test facility.
+thirteen! minutes for all tests -- 780 seconds) and other cross-unit test 
facility.
 The test is in the `SmallTest` Category.
 
 Categories can be arbitrary and provided as a list but each test MUST



hbase git commit: HBASE-20014 TestAdmin1 Times out

2018-02-16 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-2 34d5f2b70 -> 8be069632


HBASE-20014 TestAdmin1 Times out


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

Branch: refs/heads/branch-2
Commit: 8be0696320e4923d348c07c027a9e5080995b0a8
Parents: 34d5f2b
Author: Michael Stack 
Authored: Fri Feb 16 20:55:29 2018 -0800
Committer: Michael Stack 
Committed: Fri Feb 16 20:55:29 2018 -0800

--
 .../src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java  | 2 +-
 src/main/asciidoc/_chapters/developer.adoc | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/8be06963/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java
--
diff --git 
a/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java 
b/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java
index d47b213..a41e383 100644
--- a/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java
+++ b/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java
@@ -61,7 +61,7 @@ public final class HBaseClassTestRule implements TestRule {
 for (Class c : categories[0].value()) {
   if (c == SmallTests.class || c == MediumTests.class || c == 
LargeTests.class) {
 // All tests have a 10minute timeout.
-return TimeUnit.MINUTES.toSeconds(10);
+return TimeUnit.MINUTES.toSeconds(13);
   }
 }
 throw new IllegalArgumentException(

http://git-wip-us.apache.org/repos/asf/hbase/blob/8be06963/src/main/asciidoc/_chapters/developer.adoc
--
diff --git a/src/main/asciidoc/_chapters/developer.adoc 
b/src/main/asciidoc/_chapters/developer.adoc
index a15d358..0cd6ad9 100644
--- a/src/main/asciidoc/_chapters/developer.adoc
+++ b/src/main/asciidoc/_chapters/developer.adoc
@@ -1000,7 +1000,7 @@ is that of the local test; i.e. in the TestTimeout Test 
Class, you'd
 pass `TestTimeout.class` to the `CLASS_RULE` instead of the
 `TestHRegionInfo.class` we have above. The `CLASS_RULE`
 is where we'll enforce timeouts (currently set at a hard-limit of
-ten minutes for all tests) and other cross-unit test facility.
+thirteen! minutes for all tests -- 780 seconds) and other cross-unit test 
facility.
 The test is in the `SmallTest` Category.
 
 Categories can be arbitrary and provided as a list but each test MUST



hbase git commit: HBASE-19680 BufferedMutatorImpl#mutate should wait the result from AP in order to throw the failed mutations

2018-02-16 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/master abf7de702 -> dad90f6cc


HBASE-19680 BufferedMutatorImpl#mutate should wait the result from AP in order 
to throw the failed mutations


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

Branch: refs/heads/master
Commit: dad90f6cce5bc51e43e3778068d5e45bcb1c9de0
Parents: abf7de7
Author: Chia-Ping Tsai 
Authored: Sat Feb 17 07:16:14 2018 +0800
Committer: Chia-Ping Tsai 
Committed: Sat Feb 17 07:33:58 2018 +0800

--
 .../hadoop/hbase/client/AsyncProcess.java   |  54 +
 .../hadoop/hbase/client/AsyncRequestFuture.java |   6 +-
 .../hbase/client/AsyncRequestFutureImpl.java|   3 +-
 .../hbase/client/BufferedMutatorImpl.java   | 241 +--
 .../hbase/client/ConnectionImplementation.java  |   2 +-
 .../org/apache/hadoop/hbase/client/HTable.java  |   7 +-
 .../hadoop/hbase/client/HTableMultiplexer.java  |   2 +-
 .../apache/hadoop/hbase/client/RowAccess.java   |   4 +-
 .../hadoop/hbase/client/TestAsyncProcess.java   |  90 +++
 .../TestAsyncProcessWithRegionException.java|   2 +-
 .../hbase/client/HConnectionTestingUtility.java |   2 +-
 11 files changed, 171 insertions(+), 242 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/dad90f6c/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java
index 6c4118c..de7449b 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java
@@ -65,17 +65,12 @@ import org.apache.hadoop.hbase.util.Bytes;
  * The class manages internally the retries.
  * 
  * 
- * The class can be constructed in regular mode, or "global error" mode. In 
global error mode,
- * AP tracks errors across all calls (each "future" also has global view of 
all errors). That
- * mode is necessary for backward compat with HTable behavior, where multiple 
submissions are
- * made and the errors can propagate using any put/flush call, from previous 
calls.
- * In "regular" mode, the errors are tracked inside the Future object that is 
returned.
+ * The errors are tracked inside the Future object that is returned.
  * The results are always tracked inside the Future object and can be 
retrieved when the call
  * has finished. Partial results can also be retrieved if some part of 
multi-request failed.
  * 
  * 
- * This class is thread safe in regular mode; in global error code, submitting 
operations and
- * retrieving errors from different threads may be not thread safe.
+ * This class is thread safe.
  * Internally, the class is thread safe enough to manage simultaneously new 
submission and results
  * arising from older operations.
  * 
@@ -144,7 +139,6 @@ class AsyncProcess {
   final ClusterConnection connection;
   private final RpcRetryingCallerFactory rpcCallerFactory;
   final RpcControllerFactory rpcFactory;
-  final BatchErrors globalErrors;
 
   // Start configuration settings.
   final int startLogErrorsCnt;
@@ -168,14 +162,12 @@ class AsyncProcess {
   private static final int DEFAULT_LOG_DETAILS_PERIOD = 1;
   private final int periodToLog;
   AsyncProcess(ClusterConnection hc, Configuration conf,
-  RpcRetryingCallerFactory rpcCaller, boolean useGlobalErrors,
-  RpcControllerFactory rpcFactory) {
+  RpcRetryingCallerFactory rpcCaller, RpcControllerFactory rpcFactory) {
 if (hc == null) {
   throw new IllegalArgumentException("ClusterConnection cannot be null.");
 }
 
 this.connection = hc;
-this.globalErrors = useGlobalErrors ? new BatchErrors() : null;
 
 this.id = COUNTER.incrementAndGet();
 
@@ -445,10 +437,10 @@ class AsyncProcess {
 
   private Consumer getLogger(TableName tableName, long max) {
 return (currentInProgress) -> {
-  LOG.info("#" + id + (max < 0 ? ", waiting for any free slot"
-  : ", waiting for some tasks to finish. Expected max="
-  + max) + ", tasksInProgress=" + currentInProgress +
-  " hasError=" + hasError() + (tableName == null ? "" : ", tableName=" + 
tableName));
+  LOG.info("#" + id + (max < 0 ?
+  ", waiting for any free slot" :
+  ", waiting for some tasks to finish. Expected max=" + max) + ", 
tasksInProgress="
+  + currentInProgress + (tableName == null ? "" : ", tableName=" + 
tableName));
 };
   }
 
@@ -460,38 +452,6 @@ 

hbase git commit: HBASE-19680 BufferedMutatorImpl#mutate should wait the result from AP in order to throw the failed mutations

2018-02-16 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/branch-2 d59959d19 -> 34d5f2b70


HBASE-19680 BufferedMutatorImpl#mutate should wait the result from AP in order 
to throw the failed mutations


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

Branch: refs/heads/branch-2
Commit: 34d5f2b70eff408c884401ae79ea17eff9f53a7f
Parents: d59959d
Author: Chia-Ping Tsai 
Authored: Sat Feb 17 07:16:14 2018 +0800
Committer: Chia-Ping Tsai 
Committed: Sat Feb 17 07:27:23 2018 +0800

--
 .../hadoop/hbase/client/AsyncProcess.java   |  54 +
 .../hadoop/hbase/client/AsyncRequestFuture.java |   6 +-
 .../hbase/client/AsyncRequestFutureImpl.java|   3 +-
 .../hbase/client/BufferedMutatorImpl.java   | 241 +--
 .../hbase/client/ConnectionImplementation.java  |   2 +-
 .../org/apache/hadoop/hbase/client/HTable.java  |   7 +-
 .../hadoop/hbase/client/HTableMultiplexer.java  |   2 +-
 .../apache/hadoop/hbase/client/RowAccess.java   |   4 +-
 .../hadoop/hbase/client/TestAsyncProcess.java   |  90 +++
 .../TestAsyncProcessWithRegionException.java|   2 +-
 .../hbase/client/HConnectionTestingUtility.java |   2 +-
 11 files changed, 171 insertions(+), 242 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/34d5f2b7/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java
index 6c4118c..de7449b 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncProcess.java
@@ -65,17 +65,12 @@ import org.apache.hadoop.hbase.util.Bytes;
  * The class manages internally the retries.
  * 
  * 
- * The class can be constructed in regular mode, or "global error" mode. In 
global error mode,
- * AP tracks errors across all calls (each "future" also has global view of 
all errors). That
- * mode is necessary for backward compat with HTable behavior, where multiple 
submissions are
- * made and the errors can propagate using any put/flush call, from previous 
calls.
- * In "regular" mode, the errors are tracked inside the Future object that is 
returned.
+ * The errors are tracked inside the Future object that is returned.
  * The results are always tracked inside the Future object and can be 
retrieved when the call
  * has finished. Partial results can also be retrieved if some part of 
multi-request failed.
  * 
  * 
- * This class is thread safe in regular mode; in global error code, submitting 
operations and
- * retrieving errors from different threads may be not thread safe.
+ * This class is thread safe.
  * Internally, the class is thread safe enough to manage simultaneously new 
submission and results
  * arising from older operations.
  * 
@@ -144,7 +139,6 @@ class AsyncProcess {
   final ClusterConnection connection;
   private final RpcRetryingCallerFactory rpcCallerFactory;
   final RpcControllerFactory rpcFactory;
-  final BatchErrors globalErrors;
 
   // Start configuration settings.
   final int startLogErrorsCnt;
@@ -168,14 +162,12 @@ class AsyncProcess {
   private static final int DEFAULT_LOG_DETAILS_PERIOD = 1;
   private final int periodToLog;
   AsyncProcess(ClusterConnection hc, Configuration conf,
-  RpcRetryingCallerFactory rpcCaller, boolean useGlobalErrors,
-  RpcControllerFactory rpcFactory) {
+  RpcRetryingCallerFactory rpcCaller, RpcControllerFactory rpcFactory) {
 if (hc == null) {
   throw new IllegalArgumentException("ClusterConnection cannot be null.");
 }
 
 this.connection = hc;
-this.globalErrors = useGlobalErrors ? new BatchErrors() : null;
 
 this.id = COUNTER.incrementAndGet();
 
@@ -445,10 +437,10 @@ class AsyncProcess {
 
   private Consumer getLogger(TableName tableName, long max) {
 return (currentInProgress) -> {
-  LOG.info("#" + id + (max < 0 ? ", waiting for any free slot"
-  : ", waiting for some tasks to finish. Expected max="
-  + max) + ", tasksInProgress=" + currentInProgress +
-  " hasError=" + hasError() + (tableName == null ? "" : ", tableName=" + 
tableName));
+  LOG.info("#" + id + (max < 0 ?
+  ", waiting for any free slot" :
+  ", waiting for some tasks to finish. Expected max=" + max) + ", 
tasksInProgress="
+  + currentInProgress + (tableName == null ? "" : ", tableName=" + 
tableName));
 };
   }
 
@@ -460,38 +452,6 

hbase git commit: HBASE-20011 Disable TestRestoreSnapshotFromClientWithRegionReplicas; it is flakey. Needs attention.

2018-02-16 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-2 33212cf6c -> d59959d19


HBASE-20011 Disable TestRestoreSnapshotFromClientWithRegionReplicas; it is 
flakey. Needs attention.


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

Branch: refs/heads/branch-2
Commit: d59959d19e27a83350efba4777f6582317657b63
Parents: 33212cf
Author: Michael Stack 
Authored: Fri Feb 16 14:45:55 2018 -0800
Committer: Michael Stack 
Committed: Fri Feb 16 14:45:55 2018 -0800

--
 .../main/java/org/apache/hadoop/hbase/regionserver/HRegion.java  | 4 
 .../client/TestRestoreSnapshotFromClientWithRegionReplicas.java  | 2 ++
 2 files changed, 2 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/d59959d1/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
index 6170888..9464fdb 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
@@ -892,10 +892,6 @@ public class HRegion implements HeapSize, 
PropagatingConfigurationObserver, Regi
 if (this.getRegionInfo().getReplicaId() == RegionInfo.DEFAULT_REPLICA_ID) {
   status.setStatus("Writing region info on filesystem");
   fs.checkRegionInfoOnFilesystem();
-} else {
-  if (LOG.isDebugEnabled()) {
-LOG.debug("Skipping creation of .regioninfo file for " + 
this.getRegionInfo());
-  }
 }
 
 // Initialize all the HStores

http://git-wip-us.apache.org/repos/asf/hbase/blob/d59959d1/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestRestoreSnapshotFromClientWithRegionReplicas.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestRestoreSnapshotFromClientWithRegionReplicas.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestRestoreSnapshotFromClientWithRegionReplicas.java
index d301098..839542a 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestRestoreSnapshotFromClientWithRegionReplicas.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestRestoreSnapshotFromClientWithRegionReplicas.java
@@ -25,10 +25,12 @@ import org.apache.hadoop.hbase.TableName;
 import org.apache.hadoop.hbase.testclassification.ClientTests;
 import org.apache.hadoop.hbase.testclassification.LargeTests;
 import org.junit.ClassRule;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
 
 
+@Ignore // Disabled because flakey. See HBASE-20006.
 @Category({LargeTests.class, ClientTests.class})
 public class TestRestoreSnapshotFromClientWithRegionReplicas extends
 TestRestoreSnapshotFromClient {



hbase git commit: HBASE-20011 Disable TestRestoreSnapshotFromClientWithRegionReplicas; it is flakey. Needs attention.

2018-02-16 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/master 0d6acfa0c -> abf7de702


HBASE-20011 Disable TestRestoreSnapshotFromClientWithRegionReplicas; it is 
flakey. Needs attention.


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

Branch: refs/heads/master
Commit: abf7de702cb1851e70eef4afb849469a322102fa
Parents: 0d6acfa
Author: Michael Stack 
Authored: Fri Feb 16 14:45:55 2018 -0800
Committer: Michael Stack 
Committed: Fri Feb 16 14:46:24 2018 -0800

--
 .../main/java/org/apache/hadoop/hbase/regionserver/HRegion.java  | 4 
 .../client/TestRestoreSnapshotFromClientWithRegionReplicas.java  | 2 ++
 2 files changed, 2 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/abf7de70/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
index 6170888..9464fdb 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
@@ -892,10 +892,6 @@ public class HRegion implements HeapSize, 
PropagatingConfigurationObserver, Regi
 if (this.getRegionInfo().getReplicaId() == RegionInfo.DEFAULT_REPLICA_ID) {
   status.setStatus("Writing region info on filesystem");
   fs.checkRegionInfoOnFilesystem();
-} else {
-  if (LOG.isDebugEnabled()) {
-LOG.debug("Skipping creation of .regioninfo file for " + 
this.getRegionInfo());
-  }
 }
 
 // Initialize all the HStores

http://git-wip-us.apache.org/repos/asf/hbase/blob/abf7de70/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestRestoreSnapshotFromClientWithRegionReplicas.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestRestoreSnapshotFromClientWithRegionReplicas.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestRestoreSnapshotFromClientWithRegionReplicas.java
index d301098..839542a 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestRestoreSnapshotFromClientWithRegionReplicas.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestRestoreSnapshotFromClientWithRegionReplicas.java
@@ -25,10 +25,12 @@ import org.apache.hadoop.hbase.TableName;
 import org.apache.hadoop.hbase.testclassification.ClientTests;
 import org.apache.hadoop.hbase.testclassification.LargeTests;
 import org.junit.ClassRule;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
 
 
+@Ignore // Disabled because flakey. See HBASE-20006.
 @Category({LargeTests.class, ClientTests.class})
 public class TestRestoreSnapshotFromClientWithRegionReplicas extends
 TestRestoreSnapshotFromClient {



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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/class-use/TableNotDisabledException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/TableNotDisabledException.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/TableNotDisabledException.html
index 7eb7661..1d50582 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/class-use/TableNotDisabledException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/class-use/TableNotDisabledException.html
@@ -104,13 +104,13 @@
 
 
 void
-MasterServices.checkTableModifiable(TableNametableName)
-Check table is modifiable; i.e.
-
+HMaster.checkTableModifiable(TableNametableName)
 
 
 void
-HMaster.checkTableModifiable(TableNametableName)
+MasterServices.checkTableModifiable(TableNametableName)
+Check table is modifiable; i.e.
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/class-use/TableNotFoundException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/TableNotFoundException.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/TableNotFoundException.html
index b1a475b..a32bb19 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/TableNotFoundException.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/TableNotFoundException.html
@@ -170,13 +170,13 @@
 
 
 void
-MasterServices.checkTableModifiable(TableNametableName)
-Check table is modifiable; i.e.
-
+HMaster.checkTableModifiable(TableNametableName)
 
 
 void
-HMaster.checkTableModifiable(TableNametableName)
+MasterServices.checkTableModifiable(TableNametableName)
+Check table is modifiable; i.e.
+
 
 
 

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

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/apidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html 
b/apidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
index d01d840..e1c02b8 100644
--- a/apidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
+++ b/apidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
@@ -175,23 +175,23 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapred.RecordReaderImmutableBytesWritable,Result
-TableInputFormatBase.getRecordReader(org.apache.hadoop.mapred.InputSplitsplit,
+TableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplitsplit,
org.apache.hadoop.mapred.JobConfjob,
-   org.apache.hadoop.mapred.Reporterreporter)
-Builds a TableRecordReader.
-
+   
org.apache.hadoop.mapred.Reporterreporter)
 
 
 org.apache.hadoop.mapred.RecordReaderImmutableBytesWritable,Result
-TableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplitsplit,
+MultiTableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplitsplit,
org.apache.hadoop.mapred.JobConfjob,

org.apache.hadoop.mapred.Reporterreporter)
 
 
 org.apache.hadoop.mapred.RecordReaderImmutableBytesWritable,Result
-MultiTableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplitsplit,
+TableInputFormatBase.getRecordReader(org.apache.hadoop.mapred.InputSplitsplit,
org.apache.hadoop.mapred.JobConfjob,
-   
org.apache.hadoop.mapred.Reporterreporter)
+   org.apache.hadoop.mapred.Reporterreporter)
+Builds a TableRecordReader.
+
 
 
 
@@ -324,9 +324,9 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapreduce.RecordReaderImmutableBytesWritable,Result
-TableInputFormatBase.createRecordReader(org.apache.hadoop.mapreduce.InputSplitsplit,
+MultiTableInputFormatBase.createRecordReader(org.apache.hadoop.mapreduce.InputSplitsplit,
   
org.apache.hadoop.mapreduce.TaskAttemptContextcontext)
-Builds a TableRecordReader.
+Builds a TableRecordReader.
 
 
 
@@ -336,19 +336,19 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapreduce.RecordReaderImmutableBytesWritable,Result
-MultiTableInputFormatBase.createRecordReader(org.apache.hadoop.mapreduce.InputSplitsplit,
+TableInputFormatBase.createRecordReader(org.apache.hadoop.mapreduce.InputSplitsplit,
   
org.apache.hadoop.mapreduce.TaskAttemptContextcontext)
-Builds a TableRecordReader.
+Builds a TableRecordReader.
 
 
 
-org.apache.hadoop.mapreduce.RecordWriterImmutableBytesWritable,Cell
-HFileOutputFormat2.getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContextcontext)
-
-
 org.apache.hadoop.mapreduce.RecordWriterImmutableBytesWritable,Mutation
 MultiTableOutputFormat.getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContextcontext)
 
+
+org.apache.hadoop.mapreduce.RecordWriterImmutableBytesWritable,Cell
+HFileOutputFormat2.getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContextcontext)
+
 
 
 
@@ -375,6 +375,12 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 int
+SimpleTotalOrderPartitioner.getPartition(ImmutableBytesWritablekey,
+VALUEvalue,
+intreduces)
+
+
+int
 HRegionPartitioner.getPartition(ImmutableBytesWritablekey,
 VALUEvalue,
 intnumPartitions)
@@ -382,12 +388,6 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
  number of partitions i.e.
 
 
-
-int
-SimpleTotalOrderPartitioner.getPartition(ImmutableBytesWritablekey,
-VALUEvalue,
-intreduces)
-
 
 void
 IdentityTableMapper.map(ImmutableBytesWritablekey,

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

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

2018-02-16 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/94208cfe
Tree: http://git-wip-us.apache.org/repos/asf/hbase-site/tree/94208cfe
Diff: http://git-wip-us.apache.org/repos/asf/hbase-site/diff/94208cfe

Branch: refs/heads/asf-site
Commit: 94208cfe65f3553d75926738280a44fa273065e0
Parents: b8cb824
Author: jenkins 
Authored: Fri Feb 16 15:13:14 2018 +
Committer: jenkins 
Committed: Fri Feb 16 15:13:14 2018 +

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

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

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

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/dependency-management.html
--
diff --git a/dependency-management.html b/dependency-management.html
index 5dd239c..aaae642 100644
--- a/dependency-management.html
+++ b/dependency-management.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Project Dependency Management
 
@@ -980,7 +980,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2018-02-15
+  Last Published: 
2018-02-16
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/constant-values.html
--
diff --git a/devapidocs/constant-values.html b/devapidocs/constant-values.html
index b2a15c7..a4e4044 100644
--- a/devapidocs/constant-values.html
+++ b/devapidocs/constant-values.html
@@ -3754,28 +3754,28 @@
 
 publicstaticfinalhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
 date
-"Thu Feb 15 14:41:16 UTC 2018"
+"Fri Feb 16 14:40:57 UTC 2018"
 
 
 
 
 publicstaticfinalhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
 revision
-"50c705dad9825d3095352b997be35a2568bd6190"
+"40f8d20cf7b297a9324319190d03d93563230d6e"
 
 
 
 
 publicstaticfinalhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
 srcChecksum
-"bc64e0a77a34acee757f8aa8fc1d7cd9"
+"4784ced8eace999c94547c9766124075"
 
 
 
 
 publicstaticfinalhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
 url
-"git://asf919.gq1.ygridcore.net/home/jenkins/jenkins-slave/workspace/hbase_generate_website/hbase"
+"git://asf920.gq1.ygridcore.net/home/jenkins/jenkins-slave/workspace/hbase_generate_website/hbase"
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/deprecated-list.html
--
diff --git a/devapidocs/deprecated-list.html b/devapidocs/deprecated-list.html
index b60bf1d..e1c4aa9 100644
--- a/devapidocs/deprecated-list.html
+++ b/devapidocs/deprecated-list.html
@@ -555,87 +555,87 @@
 
 
 
-org.apache.hadoop.hbase.client.HTable.checkAndDelete(byte[],
 byte[], byte[], byte[], Delete)
-
-
 org.apache.hadoop.hbase.client.Table.checkAndDelete(byte[],
 byte[], byte[], byte[], Delete)
 Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
 
 
-
-org.apache.hadoop.hbase.client.HTable.checkAndDelete(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], Delete)
-
 
+org.apache.hadoop.hbase.client.HTable.checkAndDelete(byte[],
 byte[], byte[], byte[], Delete)
+
+
 org.apache.hadoop.hbase.client.Table.checkAndDelete(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], Delete)
 Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
 
 
+
+org.apache.hadoop.hbase.client.HTable.checkAndDelete(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], Delete)
+
 
 org.apache.hadoop.hbase.rest.client.RemoteHTable.checkAndDelete(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], Delete)
 
 
-org.apache.hadoop.hbase.client.HTable.checkAndDelete(byte[],
 byte[], byte[], CompareOperator, byte[], Delete)
-
-
 org.apache.hadoop.hbase.client.Table.checkAndDelete(byte[],
 byte[], byte[], CompareOperator, byte[], Delete)
 Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
 
 
+
+org.apache.hadoop.hbase.client.HTable.checkAndDelete(byte[],
 byte[], byte[], CompareOperator, byte[], Delete)
+
 
 org.apache.hadoop.hbase.rest.client.RemoteHTable.checkAndDelete(byte[],
 byte[], byte[], CompareOperator, byte[], Delete)
 
 
-org.apache.hadoop.hbase.client.HTable.checkAndMutate(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], RowMutations)
-
-
 org.apache.hadoop.hbase.client.Table.checkAndMutate(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], RowMutations)
 Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
 
 
+
+org.apache.hadoop.hbase.client.HTable.checkAndMutate(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], RowMutations)
+
 
 org.apache.hadoop.hbase.rest.client.RemoteHTable.checkAndMutate(byte[],
 byte[], byte[], CompareFilter.CompareOp, byte[], RowMutations)
 
 
-org.apache.hadoop.hbase.client.HTable.checkAndMutate(byte[],
 byte[], byte[], CompareOperator, byte[], RowMutations)
-
-
 org.apache.hadoop.hbase.client.Table.checkAndMutate(byte[],
 byte[], byte[], CompareOperator, byte[], RowMutations)
 Since 2.0.0. Will be 
removed in 3.0.0. Use 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/class-use/TableDescriptor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/TableDescriptor.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/TableDescriptor.html
index 56a2ea1..98104cb 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/TableDescriptor.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/TableDescriptor.html
@@ -449,14 +449,14 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 TableDescriptor
-HTable.getDescriptor()
-
-
-TableDescriptor
 Table.getDescriptor()
 Gets the table 
descriptor for this table.
 
 
+
+TableDescriptor
+HTable.getDescriptor()
+
 
 TableDescriptor
 Admin.getDescriptor(TableNametableName)
@@ -509,51 +509,51 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureTableDescriptor
-AsyncAdmin.getDescriptor(TableNametableName)
-Method for getting the tableDescriptor
-
+AsyncHBaseAdmin.getDescriptor(TableNametableName)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureTableDescriptor
-RawAsyncHBaseAdmin.getDescriptor(TableNametableName)
+AsyncAdmin.getDescriptor(TableNametableName)
+Method for getting the tableDescriptor
+
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureTableDescriptor
-AsyncHBaseAdmin.getDescriptor(TableNametableName)
+RawAsyncHBaseAdmin.getDescriptor(TableNametableName)
 
 
 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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListTableDescriptor
 RawAsyncHBaseAdmin.getTableDescriptors(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.GetTableDescriptorsRequestrequest)
 
 
-default http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListTableDescriptor
-AsyncAdmin.listTableDescriptors()
-List all the userspace tables.
-
-
-
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListTableDescriptor
 Admin.listTableDescriptors()
 List all the userspace tables.
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListTableDescriptor
 HBaseAdmin.listTableDescriptors()
 
+
+default http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListTableDescriptor
+AsyncAdmin.listTableDescriptors()
+List all the userspace tables.
+
+
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListTableDescriptor
-AsyncAdmin.listTableDescriptors(booleanincludeSysTables)
-List all the tables.
-
+AsyncHBaseAdmin.listTableDescriptors(booleanincludeSysTables)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListTableDescriptor
-RawAsyncHBaseAdmin.listTableDescriptors(booleanincludeSysTables)
+AsyncAdmin.listTableDescriptors(booleanincludeSysTables)
+List all the tables.
+
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListTableDescriptor
-AsyncHBaseAdmin.listTableDescriptors(booleanincludeSysTables)
+RawAsyncHBaseAdmin.listTableDescriptors(booleanincludeSysTables)
 
 
 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html
index f9cacbc..b05384b 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html
@@ -270,31 +270,31 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureNamespaceDescriptor
-AsyncAdmin.getNamespaceDescriptor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
-Get a namespace descriptor by name
-
+AsyncHBaseAdmin.getNamespaceDescriptor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureNamespaceDescriptor
-RawAsyncHBaseAdmin.getNamespaceDescriptor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
+AsyncAdmin.getNamespaceDescriptor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
+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">CompletableFutureNamespaceDescriptor
-AsyncHBaseAdmin.getNamespaceDescriptor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
+RawAsyncHBaseAdmin.getNamespaceDescriptor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListNamespaceDescriptor
-AsyncAdmin.listNamespaceDescriptors()
-List available namespace descriptors
-
+AsyncHBaseAdmin.listNamespaceDescriptors()
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListNamespaceDescriptor
-RawAsyncHBaseAdmin.listNamespaceDescriptors()
+AsyncAdmin.listNamespaceDescriptors()
+List available namespace descriptors
+
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListNamespaceDescriptor
-AsyncHBaseAdmin.listNamespaceDescriptors()
+RawAsyncHBaseAdmin.listNamespaceDescriptors()
 
 
 
@@ -307,9 +307,7 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
-AsyncAdmin.createNamespace(NamespaceDescriptordescriptor)
-Create a new namespace.
-
+AsyncHBaseAdmin.createNamespace(NamespaceDescriptordescriptor)
 
 
 void
@@ -318,16 +316,18 @@
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
-RawAsyncHBaseAdmin.createNamespace(NamespaceDescriptordescriptor)
-
-
 void
 HBaseAdmin.createNamespace(NamespaceDescriptordescriptor)
 
+
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
+AsyncAdmin.createNamespace(NamespaceDescriptordescriptor)
+Create a new namespace.
+
+
 
 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html 
b/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
index 6e37f0b..49f85aa 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
@@ -162,11 +162,11 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 ImmutableBytesWritable
-TableSnapshotInputFormat.TableSnapshotRecordReader.createKey()
+TableRecordReader.createKey()
 
 
 ImmutableBytesWritable
-TableRecordReader.createKey()
+TableSnapshotInputFormat.TableSnapshotRecordReader.createKey()
 
 
 ImmutableBytesWritable
@@ -183,9 +183,11 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapred.RecordReaderImmutableBytesWritable,Result
-TableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplitsplit,
+TableInputFormatBase.getRecordReader(org.apache.hadoop.mapred.InputSplitsplit,
org.apache.hadoop.mapred.JobConfjob,
-   
org.apache.hadoop.mapred.Reporterreporter)
+   org.apache.hadoop.mapred.Reporterreporter)
+Builds a TableRecordReader.
+
 
 
 org.apache.hadoop.mapred.RecordReaderImmutableBytesWritable,Result
@@ -195,11 +197,9 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapred.RecordReaderImmutableBytesWritable,Result
-TableInputFormatBase.getRecordReader(org.apache.hadoop.mapred.InputSplitsplit,
+TableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplitsplit,
org.apache.hadoop.mapred.JobConfjob,
-   org.apache.hadoop.mapred.Reporterreporter)
-Builds a TableRecordReader.
-
+   
org.apache.hadoop.mapred.Reporterreporter)
 
 
 
@@ -218,10 +218,12 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-RowCounter.RowCounterMapper.map(ImmutableBytesWritablerow,
-   Resultvalues,
+IdentityTableMap.map(ImmutableBytesWritablekey,
+   Resultvalue,
org.apache.hadoop.mapred.OutputCollectorImmutableBytesWritable,Resultoutput,
-   org.apache.hadoop.mapred.Reporterreporter)
+   org.apache.hadoop.mapred.Reporterreporter)
+Pass the key, value to reduce
+
 
 
 void
@@ -234,21 +236,19 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-IdentityTableMap.map(ImmutableBytesWritablekey,
-   Resultvalue,
+RowCounter.RowCounterMapper.map(ImmutableBytesWritablerow,
+   Resultvalues,
org.apache.hadoop.mapred.OutputCollectorImmutableBytesWritable,Resultoutput,
-   org.apache.hadoop.mapred.Reporterreporter)
-Pass the key, value to reduce
-
+   org.apache.hadoop.mapred.Reporterreporter)
 
 
 boolean
-TableSnapshotInputFormat.TableSnapshotRecordReader.next(ImmutableBytesWritablekey,
+TableRecordReader.next(ImmutableBytesWritablekey,
 Resultvalue)
 
 
 boolean
-TableRecordReader.next(ImmutableBytesWritablekey,
+TableSnapshotInputFormat.TableSnapshotRecordReader.next(ImmutableBytesWritablekey,
 Resultvalue)
 
 
@@ -281,10 +281,12 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-RowCounter.RowCounterMapper.map(ImmutableBytesWritablerow,
-   Resultvalues,
+IdentityTableMap.map(ImmutableBytesWritablekey,
+   Resultvalue,
org.apache.hadoop.mapred.OutputCollectorImmutableBytesWritable,Resultoutput,
-   org.apache.hadoop.mapred.Reporterreporter)
+   org.apache.hadoop.mapred.Reporterreporter)
+Pass the key, value to reduce
+
 
 
 void
@@ -297,12 +299,10 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-IdentityTableMap.map(ImmutableBytesWritablekey,
-   Resultvalue,
+RowCounter.RowCounterMapper.map(ImmutableBytesWritablerow,
+   Resultvalues,
org.apache.hadoop.mapred.OutputCollectorImmutableBytesWritable,Resultoutput,
-   org.apache.hadoop.mapred.Reporterreporter)
-Pass the key, value to reduce
-
+   org.apache.hadoop.mapred.Reporterreporter)
 
 
 void
@@ -349,7 +349,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 private ImmutableBytesWritable
-TableRecordReaderImpl.key
+MultithreadedTableMapper.SubMapRecordReader.key
 
 
 private ImmutableBytesWritable
@@ -357,7 +357,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 private ImmutableBytesWritable
-MultithreadedTableMapper.SubMapRecordReader.key
+TableRecordReaderImpl.key
 
 
 (package private) ImmutableBytesWritable
@@ -427,33 +427,33 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 ImmutableBytesWritable
-TableSnapshotInputFormat.TableSnapshotRegionRecordReader.getCurrentKey()

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
index 78d979d..81b1f23 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
@@ -292,7 +292,7 @@ service.
 
 
 private static HRegionLocation
-MetaTableAccessor.getRegionLocation(Resultr,
+AsyncMetaTableAccessor.getRegionLocation(Resultr,
  RegionInforegionInfo,
  intreplicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -301,7 +301,7 @@ service.
 
 
 private static HRegionLocation
-AsyncMetaTableAccessor.getRegionLocation(Resultr,
+MetaTableAccessor.getRegionLocation(Resultr,
  RegionInforegionInfo,
  intreplicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -309,14 +309,14 @@ service.
 
 
 
-static RegionLocations
-MetaTableAccessor.getRegionLocations(Resultr)
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true;
 title="class or interface in java.util">OptionalRegionLocations
+AsyncMetaTableAccessor.getRegionLocations(Resultr)
 Returns an HRegionLocationList extracted from the 
result.
 
 
 
-private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true;
 title="class or interface in java.util">OptionalRegionLocations
-AsyncMetaTableAccessor.getRegionLocations(Resultr)
+static RegionLocations
+MetaTableAccessor.getRegionLocations(Resultr)
 Returns an HRegionLocationList extracted from the 
result.
 
 
@@ -326,42 +326,42 @@ service.
 
 
 private static long
-MetaTableAccessor.getSeqNumDuringOpen(Resultr,
+AsyncMetaTableAccessor.getSeqNumDuringOpen(Resultr,
intreplicaId)
 The latest seqnum that the server writing to meta observed 
when opening the region.
 
 
 
 private static long
-AsyncMetaTableAccessor.getSeqNumDuringOpen(Resultr,
+MetaTableAccessor.getSeqNumDuringOpen(Resultr,
intreplicaId)
 The latest seqnum that the server writing to meta observed 
when opening the region.
 
 
 
-static ServerName
-MetaTableAccessor.getServerName(Resultr,
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true;
 title="class or interface in java.util">OptionalServerName
+AsyncMetaTableAccessor.getServerName(Resultr,
  intreplicaId)
 Returns a ServerName from catalog table Result.
 
 
 
-private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true;
 title="class or interface in java.util">OptionalServerName
-AsyncMetaTableAccessor.getServerName(Resultr,
+static ServerName
+MetaTableAccessor.getServerName(Resultr,
  intreplicaId)
 Returns a ServerName from catalog table Result.
 
 
 
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true;
 title="class or interface in java.util">OptionalTableState
+AsyncMetaTableAccessor.getTableState(Resultr)
+
+
 static TableState
 MetaTableAccessor.getTableState(Resultr)
 Decode table state from META Result.
 
 
-
-private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true;
 title="class or interface in java.util">OptionalTableState
-AsyncMetaTableAccessor.getTableState(Resultr)
-
 
 void
 AsyncMetaTableAccessor.MetaTableScanResultConsumer.onNext(Result[]results,
@@ -457,13 +457,13 @@ service.
 ClientScanner.cache
 
 
-private http://docs.oracle.com/javase/8/docs/api/java/util/Deque.html?is-external=true;
 title="class or interface in java.util">DequeResult
-BatchScanResultCache.partialResults
-
-
 private http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListResult
 CompleteScanResultCache.partialResults
 
+
+private http://docs.oracle.com/javase/8/docs/api/java/util/Deque.html?is-external=true;
 title="class or interface in java.util">DequeResult
+BatchScanResultCache.partialResults
+
 
 private http://docs.oracle.com/javase/8/docs/api/java/util/Queue.html?is-external=true;
 title="class or interface in java.util">QueueResult
 AsyncTableResultScanner.queue
@@ -486,7 +486,7 @@ service.
 
 
 Result[]
-BatchScanResultCache.addAndGet(Result[]results,
+AllowPartialScanResultCache.addAndGet(Result[]results,
  booleanisHeartbeatMessage)
 
 
@@ -496,20 +496,24 @@ service.
 
 
 Result[]
-AllowPartialScanResultCache.addAndGet(Result[]results,
+BatchScanResultCache.addAndGet(Result[]results,
  booleanisHeartbeatMessage)
 
 
 Result
-HTable.append(Appendappend)
-
-
-Result
 Table.append(Appendappend)
 Appends values to one or more columns within a single 
row.
 
 
+

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

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

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDecodingContext.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDecodingContext.html
 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDecodingContext.html
index fe5ef34..7161108 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDecodingContext.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDecodingContext.html
@@ -166,27 +166,27 @@
 
 
 DataBlockEncoder.EncodedSeeker
-RowIndexCodecV1.createSeeker(CellComparatorcomparator,
+CopyKeyDataBlockEncoder.createSeeker(CellComparatorcomparator,
 HFileBlockDecodingContextdecodingCtx)
 
 
 DataBlockEncoder.EncodedSeeker
-CopyKeyDataBlockEncoder.createSeeker(CellComparatorcomparator,
+PrefixKeyDeltaEncoder.createSeeker(CellComparatorcomparator,
 HFileBlockDecodingContextdecodingCtx)
 
 
 DataBlockEncoder.EncodedSeeker
-DiffKeyDeltaEncoder.createSeeker(CellComparatorcomparator,
+FastDiffDeltaEncoder.createSeeker(CellComparatorcomparator,
 HFileBlockDecodingContextdecodingCtx)
 
 
 DataBlockEncoder.EncodedSeeker
-FastDiffDeltaEncoder.createSeeker(CellComparatorcomparator,
+DiffKeyDeltaEncoder.createSeeker(CellComparatorcomparator,
 HFileBlockDecodingContextdecodingCtx)
 
 
 DataBlockEncoder.EncodedSeeker
-PrefixKeyDeltaEncoder.createSeeker(CellComparatorcomparator,
+RowIndexCodecV1.createSeeker(CellComparatorcomparator,
 HFileBlockDecodingContextdecodingCtx)
 
 
@@ -198,13 +198,13 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true;
 title="class or interface in java.nio">ByteBuffer
-RowIndexCodecV1.decodeKeyValues(http://docs.oracle.com/javase/8/docs/api/java/io/DataInputStream.html?is-external=true;
 title="class or interface in java.io">DataInputStreamsource,
-   HFileBlockDecodingContextdecodingCtx)
+BufferedDataBlockEncoder.decodeKeyValues(http://docs.oracle.com/javase/8/docs/api/java/io/DataInputStream.html?is-external=true;
 title="class or interface in java.io">DataInputStreamsource,
+   HFileBlockDecodingContextblkDecodingCtx)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true;
 title="class or interface in java.nio">ByteBuffer
-BufferedDataBlockEncoder.decodeKeyValues(http://docs.oracle.com/javase/8/docs/api/java/io/DataInputStream.html?is-external=true;
 title="class or interface in java.io">DataInputStreamsource,
-   HFileBlockDecodingContextblkDecodingCtx)
+RowIndexCodecV1.decodeKeyValues(http://docs.oracle.com/javase/8/docs/api/java/io/DataInputStream.html?is-external=true;
 title="class or interface in java.io">DataInputStreamsource,
+   HFileBlockDecodingContextdecodingCtx)
 
 
 
@@ -279,18 +279,18 @@
 
 
 HFileBlockDecodingContext
-HFileDataBlockEncoderImpl.newDataBlockDecodingContext(HFileContextfileContext)
-
-
-HFileBlockDecodingContext
 NoOpDataBlockEncoder.newDataBlockDecodingContext(HFileContextmeta)
 
-
+
 HFileBlockDecodingContext
 HFileDataBlockEncoder.newDataBlockDecodingContext(HFileContextfileContext)
 create a encoder specific decoding context for 
reading.
 
 
+
+HFileBlockDecodingContext
+HFileDataBlockEncoderImpl.newDataBlockDecodingContext(HFileContextfileContext)
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDefaultDecodingContext.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDefaultDecodingContext.html
 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDefaultDecodingContext.html
index 66443b9..79b047f 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDefaultDecodingContext.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockDefaultDecodingContext.html
@@ -116,36 +116,36 @@
  HFileBlockDefaultDecodingContextdecodingCtx)
 
 
-protected http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true;
 title="class or interface in java.nio">ByteBuffer
-CopyKeyDataBlockEncoder.internalDecodeKeyValues(http://docs.oracle.com/javase/8/docs/api/java/io/DataInputStream.html?is-external=true;
 title="class or interface in java.io">DataInputStreamsource,
+protected abstract http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true;
 title="class or interface in java.nio">ByteBuffer
+BufferedDataBlockEncoder.internalDecodeKeyValues(http://docs.oracle.com/javase/8/docs/api/java/io/DataInputStream.html?is-external=true;
 title="class or interface in java.io">DataInputStreamsource,

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/apidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html 
b/apidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
index fca7f0f..dc49ff7 100644
--- a/apidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
+++ b/apidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
@@ -107,27 +107,27 @@
 
 
 Filter.ReturnCode
-ValueFilter.filterCell(Cellc)
+FilterList.filterCell(Cellc)
 
 
 Filter.ReturnCode
-FirstKeyOnlyFilter.filterCell(Cellc)
+WhileMatchFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-ColumnPrefixFilter.filterCell(Cellcell)
+PageFilter.filterCell(Cellignored)
 
 
 Filter.ReturnCode
-TimestampsFilter.filterCell(Cellc)
+MultipleColumnPrefixFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-ColumnCountGetFilter.filterCell(Cellc)
+InclusiveStopFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-WhileMatchFilter.filterCell(Cellc)
+KeyOnlyFilter.filterCell(Cellignored)
 
 
 Filter.ReturnCode
@@ -135,33 +135,35 @@
 
 
 Filter.ReturnCode
-RandomRowFilter.filterCell(Cellc)
+ColumnRangeFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-MultiRowRangeFilter.filterCell(Cellignored)
+FamilyFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-InclusiveStopFilter.filterCell(Cellc)
+RandomRowFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-SingleColumnValueFilter.filterCell(Cellc)
+FirstKeyValueMatchingQualifiersFilter.filterCell(Cellc)
+Deprecated.
+
 
 
 Filter.ReturnCode
-DependentColumnFilter.filterCell(Cellc)
+SkipFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-QualifierFilter.filterCell(Cellc)
+DependentColumnFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-FirstKeyValueMatchingQualifiersFilter.filterCell(Cellc)
-Deprecated.
-
+Filter.filterCell(Cellc)
+A way to filter based on the column family, column 
qualifier and/or the column value.
+
 
 
 Filter.ReturnCode
@@ -169,87 +171,85 @@
 
 
 Filter.ReturnCode
-ColumnRangeFilter.filterCell(Cellc)
+ValueFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-FilterList.filterCell(Cellc)
+ColumnCountGetFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-MultipleColumnPrefixFilter.filterCell(Cellc)
+QualifierFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-SkipFilter.filterCell(Cellc)
+PrefixFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-PageFilter.filterCell(Cellignored)
+FuzzyRowFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-PrefixFilter.filterCell(Cellc)
+TimestampsFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-FamilyFilter.filterCell(Cellc)
+ColumnPrefixFilter.filterCell(Cellcell)
 
 
 Filter.ReturnCode
-Filter.filterCell(Cellc)
-A way to filter based on the column family, column 
qualifier and/or the column value.
-
+MultiRowRangeFilter.filterCell(Cellignored)
 
 
 Filter.ReturnCode
-FuzzyRowFilter.filterCell(Cellc)
+SingleColumnValueFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-KeyOnlyFilter.filterCell(Cellignored)
+FirstKeyOnlyFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-ColumnPrefixFilter.filterColumn(Cellcell)
+MultipleColumnPrefixFilter.filterColumn(Cellcell)
 
 
 Filter.ReturnCode
-MultipleColumnPrefixFilter.filterColumn(Cellcell)
+ColumnPrefixFilter.filterColumn(Cellcell)
 
 
 Filter.ReturnCode
-ValueFilter.filterKeyValue(Cellc)
+FilterList.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-FirstKeyOnlyFilter.filterKeyValue(Cellc)
+WhileMatchFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-ColumnPrefixFilter.filterKeyValue(Cellc)
+PageFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-TimestampsFilter.filterKeyValue(Cellc)
+MultipleColumnPrefixFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-ColumnCountGetFilter.filterKeyValue(Cellc)
+InclusiveStopFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-WhileMatchFilter.filterKeyValue(Cellc)
+KeyOnlyFilter.filterKeyValue(Cellignored)
 Deprecated.
 
 
@@ -261,44 +261,47 @@
 
 
 Filter.ReturnCode
-RandomRowFilter.filterKeyValue(Cellc)
+ColumnRangeFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-MultiRowRangeFilter.filterKeyValue(Cellignored)
+FamilyFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-InclusiveStopFilter.filterKeyValue(Cellc)
+RandomRowFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-SingleColumnValueFilter.filterKeyValue(Cellc)
+FirstKeyValueMatchingQualifiersFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-DependentColumnFilter.filterKeyValue(Cellc)
+SkipFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-QualifierFilter.filterKeyValue(Cellc)
+DependentColumnFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-FirstKeyValueMatchingQualifiersFilter.filterKeyValue(Cellc)
-Deprecated.
+Filter.filterKeyValue(Cellc)
+Deprecated.
+As of release 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.html
 
b/devapidocs/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.html
index bc89c2d..aa1df59 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/assignment/SplitTableRegionProcedure.html
@@ -576,7 +576,7 @@ extends 
 
 EXPECTED_SPLIT_STATES
-private staticRegionState.State[] EXPECTED_SPLIT_STATES
+private staticRegionState.State[] EXPECTED_SPLIT_STATES
 
 
 
@@ -686,7 +686,7 @@ extends 
 
 rollbackState
-protectedvoidrollbackState(MasterProcedureEnvenv,
+protectedvoidrollbackState(MasterProcedureEnvenv,
  
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProcedureProtos.SplitTableRegionStatestate)
   throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException,
  http://docs.oracle.com/javase/8/docs/api/java/lang/InterruptedException.html?is-external=true;
 title="class or interface in java.lang">InterruptedException
@@ -710,7 +710,7 @@ extends 
 
 isRollbackSupported
-protectedbooleanisRollbackSupported(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProcedureProtos.SplitTableRegionStatestate)
+protectedbooleanisRollbackSupported(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProcedureProtos.SplitTableRegionStatestate)
 Description copied from 
class:StateMachineProcedure
 Used by the default implementation of abort() to know if 
the current state can be aborted
  and rollback can be triggered.
@@ -726,7 +726,7 @@ extends 
 
 getState
-protectedorg.apache.hadoop.hbase.shaded.protobuf.generated.MasterProcedureProtos.SplitTableRegionStategetState(intstateId)
+protectedorg.apache.hadoop.hbase.shaded.protobuf.generated.MasterProcedureProtos.SplitTableRegionStategetState(intstateId)
 Description copied from 
class:StateMachineProcedure
 Convert an ordinal (or state id) to an Enum (or more 
descriptive) state object.
 
@@ -745,7 +745,7 @@ extends 
 
 getStateId
-protectedintgetStateId(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProcedureProtos.SplitTableRegionStatestate)
+protectedintgetStateId(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProcedureProtos.SplitTableRegionStatestate)
 Description copied from 
class:StateMachineProcedure
 Convert the Enum (or more descriptive) state object to an 
ordinal (or state id).
 
@@ -764,7 +764,7 @@ extends 
 
 getInitialState
-protectedorg.apache.hadoop.hbase.shaded.protobuf.generated.MasterProcedureProtos.SplitTableRegionStategetInitialState()
+protectedorg.apache.hadoop.hbase.shaded.protobuf.generated.MasterProcedureProtos.SplitTableRegionStategetInitialState()
 Description copied from 
class:StateMachineProcedure
 Return the initial state object that will be used for the 
first call to executeFromState().
 
@@ -781,7 +781,7 @@ extends 
 
 serializeStateData
-protectedvoidserializeStateData(ProcedureStateSerializerserializer)
+protectedvoidserializeStateData(ProcedureStateSerializerserializer)
throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
 Description copied from 
class:Procedure
 The user-level code of the procedure may have some state to
@@ -803,7 +803,7 @@ extends 
 
 deserializeStateData
-protectedvoiddeserializeStateData(ProcedureStateSerializerserializer)
+protectedvoiddeserializeStateData(ProcedureStateSerializerserializer)
  throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
 Description copied from 
class:Procedure
 Called on store load to allow the user to decode the 
previously serialized
@@ -824,7 +824,7 @@ extends 
 
 toStringClassDetails
-publicvoidtoStringClassDetails(http://docs.oracle.com/javase/8/docs/api/java/lang/StringBuilder.html?is-external=true;
 title="class or interface in java.lang">StringBuildersb)
+publicvoidtoStringClassDetails(http://docs.oracle.com/javase/8/docs/api/java/lang/StringBuilder.html?is-external=true;
 title="class or interface in java.lang">StringBuildersb)
 Description copied from 
class:Procedure
 Extend the toString() information with the procedure details
  e.g. className and parameters
@@ -842,7 +842,7 @@ extends 
 
 getParentRegion
-privateRegionInfogetParentRegion()
+privateRegionInfogetParentRegion()
 
 
 
@@ -851,7 +851,7 @@ extends 
 
 getTableOperationType
-publicTableProcedureInterface.TableOperationTypegetTableOperationType()

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/class-use/SnapshotDescription.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/SnapshotDescription.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/SnapshotDescription.html
index 4584cda..fb9bdb3 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/SnapshotDescription.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/SnapshotDescription.html
@@ -137,9 +137,7 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListSnapshotDescription
-AsyncAdmin.listSnapshots()
-List completed snapshots.
-
+AsyncHBaseAdmin.listSnapshots()
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListSnapshotDescription
@@ -148,22 +146,22 @@
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListSnapshotDescription
-RawAsyncHBaseAdmin.listSnapshots()
-
-
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListSnapshotDescription
 HBaseAdmin.listSnapshots()
 
+
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListSnapshotDescription
+AsyncAdmin.listSnapshots()
+List completed snapshots.
+
+
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListSnapshotDescription
-AsyncHBaseAdmin.listSnapshots()
+RawAsyncHBaseAdmin.listSnapshots()
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListSnapshotDescription
-AsyncAdmin.listSnapshots(http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true;
 title="class or interface in java.util.regex">Patternpattern)
-List all the completed snapshots matching the given 
pattern.
-
+AsyncHBaseAdmin.listSnapshots(http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true;
 title="class or interface in 
java.util.regex">Patternpattern)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListSnapshotDescription
@@ -172,16 +170,18 @@
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListSnapshotDescription
-RawAsyncHBaseAdmin.listSnapshots(http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true;
 title="class or interface in 
java.util.regex">Patternpattern)
-
-
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListSnapshotDescription
 HBaseAdmin.listSnapshots(http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true;
 title="class or interface in 
java.util.regex">Patternpattern)
 
+
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListSnapshotDescription
+AsyncAdmin.listSnapshots(http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true;
 title="class or interface in java.util.regex">Patternpattern)
+List all the completed snapshots matching the given 
pattern.
+
+
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
index bb2794a..0c342b2 100644
--- a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
+++ b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
@@ -151,115 +151,115 @@
 
 
 Filter.ReturnCode
-ColumnPrefixFilter.filterCell(Cellcell)
+FilterListWithAND.filterCell(Cellc)
 
 
 Filter.ReturnCode
-ColumnCountGetFilter.filterCell(Cellc)
+ValueFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-RowFilter.filterCell(Cellv)
+SkipFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-FuzzyRowFilter.filterCell(Cellc)
+FamilyFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-Filter.filterCell(Cellc)
-A way to filter based on the column family, column 
qualifier and/or the column value.
-
+ColumnPrefixFilter.filterCell(Cellcell)
 
 
 Filter.ReturnCode
-RandomRowFilter.filterCell(Cellc)
+PageFilter.filterCell(Cellignored)
 
 
 Filter.ReturnCode
-FirstKeyOnlyFilter.filterCell(Cellc)
+RowFilter.filterCell(Cellv)
 
 
 Filter.ReturnCode
-SkipFilter.filterCell(Cellc)
+ColumnRangeFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-TimestampsFilter.filterCell(Cellc)
+ColumnCountGetFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-ValueFilter.filterCell(Cellc)
+MultipleColumnPrefixFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-KeyOnlyFilter.filterCell(Cellignored)
+ColumnPaginationFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-FamilyFilter.filterCell(Cellc)
+DependentColumnFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-QualifierFilter.filterCell(Cellc)
+FilterListWithOR.filterCell(Cellc)
 
 
 Filter.ReturnCode
-FilterList.filterCell(Cellc)
+InclusiveStopFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-ColumnRangeFilter.filterCell(Cellc)
+KeyOnlyFilter.filterCell(Cellignored)
 
 
 Filter.ReturnCode
-ColumnPaginationFilter.filterCell(Cellc)
+MultiRowRangeFilter.filterCell(Cellignored)
 
 
 Filter.ReturnCode
-FilterListWithAND.filterCell(Cellc)
+Filter.filterCell(Cellc)
+A way to filter based on the column family, column 
qualifier and/or the column value.
+
 
 
 Filter.ReturnCode
-WhileMatchFilter.filterCell(Cellc)
+FirstKeyOnlyFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-MultiRowRangeFilter.filterCell(Cellignored)
+WhileMatchFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-PrefixFilter.filterCell(Cellc)
+FirstKeyValueMatchingQualifiersFilter.filterCell(Cellc)
+Deprecated.
+
 
 
 Filter.ReturnCode
-DependentColumnFilter.filterCell(Cellc)
+TimestampsFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-FirstKeyValueMatchingQualifiersFilter.filterCell(Cellc)
-Deprecated.
-
+FuzzyRowFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-PageFilter.filterCell(Cellignored)
+FilterList.filterCell(Cellc)
 
 
 Filter.ReturnCode
-FilterListWithOR.filterCell(Cellc)
+RandomRowFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-InclusiveStopFilter.filterCell(Cellc)
+PrefixFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-MultipleColumnPrefixFilter.filterCell(Cellc)
+SingleColumnValueFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
-SingleColumnValueFilter.filterCell(Cellc)
+QualifierFilter.filterCell(Cellc)
 
 
 Filter.ReturnCode
@@ -275,158 +275,158 @@
 
 
 Filter.ReturnCode
-ColumnPrefixFilter.filterKeyValue(Cellc)
+ValueFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-ColumnCountGetFilter.filterKeyValue(Cellc)
+SkipFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-RowFilter.filterKeyValue(Cellc)
-Deprecated.
-
+FilterListBase.filterKeyValue(Cellc)
 
 
 Filter.ReturnCode
-FuzzyRowFilter.filterKeyValue(Cellc)
+FamilyFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-Filter.filterKeyValue(Cellc)
-Deprecated.
-As of release 2.0.0, this 
will be removed in HBase 3.0.0.
- Instead use filterCell(Cell)
-
+ColumnPrefixFilter.filterKeyValue(Cellc)
+Deprecated.
 
 
 
 Filter.ReturnCode
-RandomRowFilter.filterKeyValue(Cellc)
+PageFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-FirstKeyOnlyFilter.filterKeyValue(Cellc)
+RowFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-SkipFilter.filterKeyValue(Cellc)
+ColumnRangeFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-TimestampsFilter.filterKeyValue(Cellc)
+ColumnCountGetFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-ValueFilter.filterKeyValue(Cellc)
+MultipleColumnPrefixFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-KeyOnlyFilter.filterKeyValue(Cellignored)
+ColumnPaginationFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 Filter.ReturnCode
-FamilyFilter.filterKeyValue(Cellc)
+DependentColumnFilter.filterKeyValue(Cellc)
 Deprecated.
 
 
 
 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncConnectionImpl.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncConnectionImpl.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncConnectionImpl.html
index 5ba2deb..024eca4 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncConnectionImpl.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncConnectionImpl.html
@@ -106,11 +106,11 @@
 
 
 private AsyncConnectionImpl
-RawAsyncTableImpl.conn
+AsyncClientScanner.conn
 
 
 private AsyncConnectionImpl
-AsyncBatchRpcRetryingCaller.conn
+AsyncRpcRetryingCallerFactory.conn
 
 
 private AsyncConnectionImpl
@@ -118,19 +118,19 @@
 
 
 private AsyncConnectionImpl
-RegionCoprocessorRpcChannelImpl.conn
+RawAsyncTableImpl.conn
 
 
-protected AsyncConnectionImpl
-AsyncRpcRetryingCaller.conn
+private AsyncConnectionImpl
+RegionCoprocessorRpcChannelImpl.conn
 
 
 private AsyncConnectionImpl
-AsyncClientScanner.conn
+AsyncBatchRpcRetryingCaller.conn
 
 
-private AsyncConnectionImpl
-AsyncRpcRetryingCallerFactory.conn
+protected AsyncConnectionImpl
+AsyncRpcRetryingCaller.conn
 
 
 private AsyncConnectionImpl

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

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncProcess.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncProcess.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncProcess.html
index 60fbcff..f31564e 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncProcess.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncProcess.html
@@ -106,11 +106,11 @@
 
 
 private AsyncProcess
-BufferedMutatorImpl.ap
+HTableMultiplexer.FlushWorker.ap
 
 
 private AsyncProcess
-HTableMultiplexer.FlushWorker.ap
+BufferedMutatorImpl.ap
 
 
 private AsyncProcess
@@ -137,11 +137,11 @@
 
 
 AsyncProcess
-ClusterConnection.getAsyncProcess()
+ConnectionImplementation.getAsyncProcess()
 
 
 AsyncProcess
-ConnectionImplementation.getAsyncProcess()
+ClusterConnection.getAsyncProcess()
 
 
 (package private) AsyncProcess

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncRegionLocator.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncRegionLocator.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncRegionLocator.html
index c610e19..9a8d746 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncRegionLocator.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncRegionLocator.html
@@ -106,11 +106,11 @@
 
 
 private AsyncRegionLocator
-AsyncConnectionImpl.locator
+AsyncTableRegionLocatorImpl.locator
 
 
 private AsyncRegionLocator
-AsyncTableRegionLocatorImpl.locator
+AsyncConnectionImpl.locator
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncRegistry.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncRegistry.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncRegistry.html
index a970ce5..06fd193 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncRegistry.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/AsyncRegistry.html
@@ -126,13 +126,13 @@
 
 
 
-(package private) AsyncRegistry
-AsyncConnectionImpl.registry
-
-
 private AsyncRegistry
 AsyncMetaRegionLocator.registry
 
+
+(package private) AsyncRegistry
+AsyncConnectionImpl.registry
+
 
 
 


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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionInfo.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionInfo.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionInfo.html
index b0d9cb7..0319d89 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionInfo.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionInfo.html
@@ -495,7 +495,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 private static HRegionLocation
-MetaTableAccessor.getRegionLocation(Resultr,
+AsyncMetaTableAccessor.getRegionLocation(Resultr,
  RegionInforegionInfo,
  intreplicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -504,7 +504,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 private static HRegionLocation
-AsyncMetaTableAccessor.getRegionLocation(Resultr,
+MetaTableAccessor.getRegionLocation(Resultr,
  RegionInforegionInfo,
  intreplicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -944,9 +944,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListRegionInfo
-AsyncAdmin.getRegions(ServerNameserverName)
-Get all the online regions on a region server.
-
+AsyncHBaseAdmin.getRegions(ServerNameserverName)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListRegionInfo
@@ -955,22 +953,22 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListRegionInfo
-RawAsyncHBaseAdmin.getRegions(ServerNameserverName)
-
-
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListRegionInfo
 HBaseAdmin.getRegions(ServerNamesn)
 
+
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListRegionInfo
+AsyncAdmin.getRegions(ServerNameserverName)
+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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListRegionInfo
-AsyncHBaseAdmin.getRegions(ServerNameserverName)
+RawAsyncHBaseAdmin.getRegions(ServerNameserverName)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListRegionInfo
-AsyncAdmin.getRegions(TableNametableName)
-Get the regions of a given table.
-
+AsyncHBaseAdmin.getRegions(TableNametableName)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListRegionInfo
@@ -979,16 +977,18 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListRegionInfo
-RawAsyncHBaseAdmin.getRegions(TableNametableName)
-
-
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListRegionInfo
 HBaseAdmin.getRegions(TableNametableName)
 
+
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListRegionInfo

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/class-use/CompactType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/CompactType.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/CompactType.html
index c7fba62..eca6413 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/CompactType.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/CompactType.html
@@ -127,30 +127,28 @@ the order they are declared.
 
 
 
-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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
-RawAsyncHBaseAdmin.compact(TableNametableName,
+private void
+HBaseAdmin.compact(TableNametableName,
byte[]columnFamily,
booleanmajor,
CompactTypecompactType)
-Compact column family of a table, Asynchronous operation 
even if CompletableFuture.get()
+Compact a table.
 
 
 
-private void
-HBaseAdmin.compact(TableNametableName,
+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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
+RawAsyncHBaseAdmin.compact(TableNametableName,
byte[]columnFamily,
booleanmajor,
CompactTypecompactType)
-Compact a table.
+Compact column family of a table, Asynchronous operation 
even if CompletableFuture.get()
 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
-AsyncAdmin.compact(TableNametableName,
+AsyncHBaseAdmin.compact(TableNametableName,
byte[]columnFamily,
-   CompactTypecompactType)
-Compact a column family within a table.
-
+   CompactTypecompactType)
 
 
 void
@@ -161,14 +159,16 @@ the order they are declared.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
-RawAsyncHBaseAdmin.compact(TableNametableName,
+void
+HBaseAdmin.compact(TableNametableName,
byte[]columnFamily,
-   CompactTypecompactType)
+   CompactTypecompactType)
+Compact a column family within a table.
+
 
 
-void
-HBaseAdmin.compact(TableNametableName,
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
+AsyncAdmin.compact(TableNametableName,
byte[]columnFamily,
CompactTypecompactType)
 Compact a column family within a table.
@@ -176,16 +176,14 @@ the order they are declared.
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
-AsyncHBaseAdmin.compact(TableNametableName,
+RawAsyncHBaseAdmin.compact(TableNametableName,
byte[]columnFamily,
CompactTypecompactType)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
-AsyncAdmin.compact(TableNametableName,
-   CompactTypecompactType)
-Compact a table.
-
+AsyncHBaseAdmin.compact(TableNametableName,
+   CompactTypecompactType)
 
 
 void
@@ -195,28 +193,28 @@ the order they are declared.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
-RawAsyncHBaseAdmin.compact(TableNametableName,
-   CompactTypecompactType)
-
-
 void
 HBaseAdmin.compact(TableNametableName,
CompactTypecompactType)
 Compact a table.
 
 
+

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

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

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
index d730879..b1d1cef 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
@@ -106,11 +106,11 @@
 
 
 RetriesExhaustedWithDetailsException
-AsyncRequestFutureImpl.getErrors()
+AsyncRequestFuture.getErrors()
 
 
 RetriesExhaustedWithDetailsException
-AsyncRequestFuture.getErrors()
+AsyncRequestFutureImpl.getErrors()
 
 
 (package private) RetriesExhaustedWithDetailsException

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
index 9642faa..0a290e1 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
@@ -234,36 +234,28 @@
 
 
 
-T
-RpcRetryingCallerImpl.callWithoutRetries(RetryingCallableTcallable,
-  intcallTimeout)
-
-
 T
 RpcRetryingCaller.callWithoutRetries(RetryingCallableTcallable,
   intcallTimeout)
 Call the server once only.
 
 
-
+
 T
-RpcRetryingCallerImpl.callWithRetries(RetryingCallableTcallable,
-   intcallTimeout)
+RpcRetryingCallerImpl.callWithoutRetries(RetryingCallableTcallable,
+  intcallTimeout)
 
-
+
 T
 RpcRetryingCaller.callWithRetries(RetryingCallableTcallable,
intcallTimeout)
 Retries if invocation fails.
 
 
-
-RetryingCallerInterceptorContext
-NoOpRetryingInterceptorContext.prepare(RetryingCallable?callable)
-
 
-FastFailInterceptorContext
-FastFailInterceptorContext.prepare(RetryingCallable?callable)
+T
+RpcRetryingCallerImpl.callWithRetries(RetryingCallableTcallable,
+   intcallTimeout)
 
 
 abstract RetryingCallerInterceptorContext
@@ -275,13 +267,11 @@
 
 
 RetryingCallerInterceptorContext
-NoOpRetryingInterceptorContext.prepare(RetryingCallable?callable,
-   inttries)

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/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 802d439..240226a 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
@@ -535,11 +535,6 @@ service.
 
 
 static Cell
-PrivateCellUtil.createCell(Cellcell,
-  byte[]tags)
-
-
-static Cell
 CellUtil.createCell(Cellcell,
   byte[]tags)
 Deprecated.
@@ -547,13 +542,12 @@ service.
 
 
 
-
+
 static Cell
-PrivateCellUtil.createCell(Cellcell,
-  byte[]value,
+PrivateCellUtil.createCell(Cellcell,
   byte[]tags)
 
-
+
 static Cell
 CellUtil.createCell(Cellcell,
   byte[]value,
@@ -563,12 +557,13 @@ service.
 
 
 
-
+
 static Cell
-PrivateCellUtil.createCell(Cellcell,
-  http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListTagtags)
+PrivateCellUtil.createCell(Cellcell,
+  byte[]value,
+  byte[]tags)
 
-
+
 static Cell
 CellUtil.createCell(Cellcell,
   http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListTagtags)
@@ -577,6 +572,11 @@ service.
 
 
 
+
+static Cell
+PrivateCellUtil.createCell(Cellcell,
+  http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListTagtags)
+
 
 static Cell
 PrivateCellUtil.createFirstDeleteFamilyCellOnRow(byte[]row,
@@ -757,10 +757,6 @@ service.
 
 
 static byte[]
-PrivateCellUtil.cloneTags(Cellcell)
-
-
-static byte[]
 CellUtil.cloneTags(Cellcell)
 Deprecated.
 As of HBase-2.0. Will be 
removed in HBase-3.0.
@@ -768,6 +764,10 @@ service.
 
 
 
+
+static byte[]
+PrivateCellUtil.cloneTags(Cellcell)
+
 
 static byte[]
 CellUtil.cloneValue(Cellcell)
@@ -781,11 +781,6 @@ service.
 
 
 int
-CellComparatorImpl.compare(Cella,
-   Cellb)
-
-
-int
 KeyValue.MetaComparator.compare(Cellleft,
Cellright)
 Deprecated.
@@ -793,7 +788,7 @@ service.
  table.
 
 
-
+
 int
 KeyValue.KVComparator.compare(Cellleft,
Cellright)
@@ -802,6 +797,11 @@ service.
  rowkey, colfam/qual, timestamp, type, mvcc
 
 
+
+int
+CellComparatorImpl.compare(Cella,
+   Cellb)
+
 
 int
 CellComparatorImpl.compare(Cella,
@@ -812,27 +812,27 @@ service.
 
 
 static int
-PrivateCellUtil.compare(CellComparatorcomparator,
+CellUtil.compare(CellComparatorcomparator,
Cellleft,
byte[]key,
intoffset,
intlength)
-Used when a cell needs to be compared with a key byte[] 
such as cases of finding the index from
- the index block, bloom keys from the bloom blocks This byte[] is expected to 
be serialized in
- the KeyValue serialization format If the KeyValue (Cell's) serialization 
format changes this
- method cannot be used.
+Deprecated.
+As of HBase-2.0. Will be 
removed in HBase-3.0
+
 
 
 
 static int
-CellUtil.compare(CellComparatorcomparator,
+PrivateCellUtil.compare(CellComparatorcomparator,
Cellleft,
byte[]key,
intoffset,
intlength)
-Deprecated.
-As of HBase-2.0. Will be 
removed in HBase-3.0
-
+Used when a cell needs to be compared with a key byte[] 
such as cases of finding the index from
+ the index block, bloom keys from the bloom blocks This byte[] is expected to 
be serialized in
+ the KeyValue serialization format If the KeyValue (Cell's) serialization 
format changes this
+ method cannot be used.
 
 
 
@@ -1035,23 +1035,23 @@ service.
 
 
 int
+KeyValue.KVComparator.compareRows(Cellleft,
+   Cellright)
+Deprecated.
+
+
+
+int
 CellComparatorImpl.compareRows(Cellleft,
Cellright)
 Compares the rows of the left and right cell.
 
 
-
+
 int
 CellComparatorImpl.MetaCellComparator.compareRows(Cellleft,
Cellright)
 
-
-int
-KeyValue.KVComparator.compareRows(Cellleft,
-   Cellright)
-Deprecated.
-
-
 
 int
 CellComparator.compareTimestamps(CellleftCell,
@@ -1061,17 +1061,17 @@ service.
 
 
 int
-CellComparatorImpl.compareTimestamps(Cellleft,
+KeyValue.KVComparator.compareTimestamps(Cellleft,
  Cellright)
-Compares cell's timestamps in DESCENDING order.
-
+Deprecated.
+
 
 
 int
-KeyValue.KVComparator.compareTimestamps(Cellleft,
+CellComparatorImpl.compareTimestamps(Cellleft,
  Cellright)
-Deprecated.
-
+Compares cell's timestamps in DESCENDING order.
+
 
 
 static int
@@ -1258,11 +1258,6 @@ service.
 
 
 static Cell
-PrivateCellUtil.createCell(Cellcell,
-  byte[]tags)
-
-
-static Cell
 CellUtil.createCell(Cellcell,
   byte[]tags)
 Deprecated.
@@ -1270,13 +1265,12 @@ service.
 
 
 
-
+
 static Cell
-PrivateCellUtil.createCell(Cellcell,
-  byte[]value,

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionLocateType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionLocateType.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionLocateType.html
index 90f52b0..2ac1b78 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionLocateType.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionLocateType.html
@@ -106,7 +106,7 @@
 
 
 private RegionLocateType
-AsyncSingleRequestRpcRetryingCaller.locateType
+AsyncRpcRetryingCallerFactory.SingleRequestCallerBuilder.locateType
 
 
 RegionLocateType
@@ -114,7 +114,7 @@
 
 
 private RegionLocateType
-AsyncRpcRetryingCallerFactory.SingleRequestCallerBuilder.locateType
+AsyncSingleRequestRpcRetryingCaller.locateType
 
 
 

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



hbase-site git commit: INFRA-10751 Empty commit

2018-02-16 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 94208cfe6 -> 93506d388


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

Branch: refs/heads/asf-site
Commit: 93506d388ac9bf630da9a4cd2fac063c12031855
Parents: 94208cf
Author: jenkins 
Authored: Fri Feb 16 15:13:49 2018 +
Committer: jenkins 
Committed: Fri Feb 16 15:13:49 2018 +

--

--




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

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

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

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

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/class-use/TableDescriptors.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/TableDescriptors.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/TableDescriptors.html
index 7f3e934..320e7bc 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/TableDescriptors.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/TableDescriptors.html
@@ -122,11 +122,11 @@
 
 
 TableDescriptors
-MasterServices.getTableDescriptors()
+HMaster.getTableDescriptors()
 
 
 TableDescriptors
-HMaster.getTableDescriptors()
+MasterServices.getTableDescriptors()
 
 
 



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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/class-use/Delete.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Delete.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Delete.html
index 3c2959e..c233c17 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Delete.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Delete.html
@@ -405,16 +405,6 @@ service.
 
 
 boolean
-HTable.checkAndDelete(byte[]row,
-  byte[]family,
-  byte[]qualifier,
-  byte[]value,
-  Deletedelete)
-Deprecated.
-
-
-
-boolean
 Table.checkAndDelete(byte[]row,
   byte[]family,
   byte[]qualifier,
@@ -425,18 +415,17 @@ service.
 
 
 
-
+
 boolean
-HTable.checkAndDelete(byte[]row,
+HTable.checkAndDelete(byte[]row,
   byte[]family,
   byte[]qualifier,
-  CompareFilter.CompareOpcompareOp,
   byte[]value,
   Deletedelete)
 Deprecated.
 
 
-
+
 boolean
 Table.checkAndDelete(byte[]row,
   byte[]family,
@@ -449,18 +438,18 @@ service.
 
 
 
-
+
 boolean
-HTable.checkAndDelete(byte[]row,
+HTable.checkAndDelete(byte[]row,
   byte[]family,
   byte[]qualifier,
-  CompareOperatorop,
+  CompareFilter.CompareOpcompareOp,
   byte[]value,
   Deletedelete)
 Deprecated.
 
 
-
+
 boolean
 Table.checkAndDelete(byte[]row,
   byte[]family,
@@ -473,29 +462,40 @@ service.
 
 
 
+
+boolean
+HTable.checkAndDelete(byte[]row,
+  byte[]family,
+  byte[]qualifier,
+  CompareOperatorop,
+  byte[]value,
+  Deletedelete)
+Deprecated.
+
+
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
-RawAsyncTableImpl.delete(Deletedelete)
+AsyncTable.delete(Deletedelete)
+Deletes the specified cells/row.
+
 
 
 void
-HTable.delete(Deletedelete)
-
-
-void
 Table.delete(Deletedelete)
 Deletes the specified cells/row.
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
 AsyncTableImpl.delete(Deletedelete)
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
-AsyncTable.delete(Deletedelete)
-Deletes the specified cells/row.
-
+RawAsyncTableImpl.delete(Deletedelete)
+
+
+void
+HTable.delete(Deletedelete)
 
 
 private boolean
@@ -508,19 +508,19 @@ service.
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true;
 title="class or interface in java.lang">Boolean
-RawAsyncTableImpl.CheckAndMutateBuilderImpl.thenDelete(Deletedelete)
+AsyncTable.CheckAndMutateBuilder.thenDelete(Deletedelete)
 
 
 boolean
-HTable.CheckAndMutateBuilderImpl.thenDelete(Deletedelete)
+Table.CheckAndMutateBuilder.thenDelete(Deletedelete)
 
 
-boolean
-Table.CheckAndMutateBuilder.thenDelete(Deletedelete)
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true;
 title="class or interface in java.lang">Boolean
+RawAsyncTableImpl.CheckAndMutateBuilderImpl.thenDelete(Deletedelete)
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true;
 title="class or interface in java.lang">Boolean
-AsyncTable.CheckAndMutateBuilder.thenDelete(Deletedelete)
+boolean
+HTable.CheckAndMutateBuilderImpl.thenDelete(Deletedelete)
 
 
 
@@ -533,27 +533,27 @@ service.
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">Listhttp://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/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 b660332..bb01f46 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
@@ -201,11 +201,11 @@ the order they are declared.
 
 
 protected CompareOperator
-SingleColumnValueFilter.op
+CompareFilter.op
 
 
 protected CompareOperator
-CompareFilter.op
+SingleColumnValueFilter.op
 
 
 
@@ -227,11 +227,11 @@ the order they are declared.
 
 
 CompareOperator
-SingleColumnValueFilter.getCompareOperator()
+CompareFilter.getCompareOperator()
 
 
 CompareOperator
-CompareFilter.getCompareOperator()
+SingleColumnValueFilter.getCompareOperator()
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/apidocs/org/apache/hadoop/hbase/class-use/ServerMetrics.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/ServerMetrics.html 
b/apidocs/org/apache/hadoop/hbase/class-use/ServerMetrics.html
index 9a2bd97..0056f60 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/ServerMetrics.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/ServerMetrics.html
@@ -122,13 +122,13 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">MapServerName,ServerMetrics
-ClusterStatus.getLiveServerMetrics()
-Deprecated.
-
+ClusterMetrics.getLiveServerMetrics()
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">MapServerName,ServerMetrics
-ClusterMetrics.getLiveServerMetrics()
+ClusterStatus.getLiveServerMetrics()
+Deprecated.
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/apidocs/org/apache/hadoop/hbase/class-use/ServerName.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/ServerName.html 
b/apidocs/org/apache/hadoop/hbase/class-use/ServerName.html
index fa07da3..6ea4d25 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/ServerName.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/ServerName.html
@@ -140,23 +140,23 @@
 
 
 ServerName
-ClusterStatus.getMasterName()
-Deprecated.
-
-
-
-ServerName
 ClusterMetrics.getMasterName()
 Returns detailed information about the current master ServerName.
 
 
+
+ServerName
+ClusterStatus.getMasterName()
+Deprecated.
+
+
 
 ServerName
-ServerMetrics.getServerName()
+HRegionLocation.getServerName()
 
 
 ServerName
-HRegionLocation.getServerName()
+ServerMetrics.getServerName()
 
 
 ServerName
@@ -207,13 +207,13 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListServerName
-ClusterStatus.getBackupMasterNames()
-Deprecated.
-
+ClusterMetrics.getBackupMasterNames()
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListServerName
-ClusterMetrics.getBackupMasterNames()
+ClusterStatus.getBackupMasterNames()
+Deprecated.
+
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListServerName
@@ -226,23 +226,23 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListServerName
-ClusterStatus.getDeadServerNames()
-Deprecated.
-
+ClusterMetrics.getDeadServerNames()
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListServerName
-ClusterMetrics.getDeadServerNames()
+ClusterStatus.getDeadServerNames()
+Deprecated.
+
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">MapServerName,ServerMetrics
-ClusterStatus.getLiveServerMetrics()
-Deprecated.
-
+ClusterMetrics.getLiveServerMetrics()
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">MapServerName,ServerMetrics
-ClusterMetrics.getLiveServerMetrics()
+ClusterStatus.getLiveServerMetrics()
+Deprecated.
+
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true;
 title="class or interface in java.util">CollectionServerName

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/apidocs/org/apache/hadoop/hbase/class-use/TableName.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/TableName.html 
b/apidocs/org/apache/hadoop/hbase/class-use/TableName.html
index 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/class-use/ClusterMetrics.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/ClusterMetrics.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/ClusterMetrics.html
index 08aeced..0c3406e 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/ClusterMetrics.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/ClusterMetrics.html
@@ -242,27 +242,27 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureClusterMetrics
-AsyncAdmin.getClusterMetrics()
+AsyncHBaseAdmin.getClusterMetrics()
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureClusterMetrics
-RawAsyncHBaseAdmin.getClusterMetrics()
+AsyncAdmin.getClusterMetrics()
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureClusterMetrics
-AsyncHBaseAdmin.getClusterMetrics()
+RawAsyncHBaseAdmin.getClusterMetrics()
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureClusterMetrics
-AsyncAdmin.getClusterMetrics(http://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true;
 title="class or interface in java.util">EnumSetClusterMetrics.Optionoptions)
+AsyncHBaseAdmin.getClusterMetrics(http://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true;
 title="class or interface in java.util">EnumSetClusterMetrics.Optionoptions)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureClusterMetrics
-RawAsyncHBaseAdmin.getClusterMetrics(http://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true;
 title="class or interface in java.util">EnumSetClusterMetrics.Optionoptions)
+AsyncAdmin.getClusterMetrics(http://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true;
 title="class or interface in java.util">EnumSetClusterMetrics.Optionoptions)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureClusterMetrics
-AsyncHBaseAdmin.getClusterMetrics(http://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true;
 title="class or interface in java.util">EnumSetClusterMetrics.Optionoptions)
+RawAsyncHBaseAdmin.getClusterMetrics(http://docs.oracle.com/javase/8/docs/api/java/util/EnumSet.html?is-external=true;
 title="class or interface in java.util">EnumSetClusterMetrics.Optionoptions)
 
 
 
@@ -408,11 +408,11 @@
 
 
 void
-RegionLocationFinder.setClusterMetrics(ClusterMetricsstatus)
+BaseLoadBalancer.setClusterMetrics(ClusterMetricsst)
 
 
 void
-BaseLoadBalancer.setClusterMetrics(ClusterMetricsst)
+RegionLocationFinder.setClusterMetrics(ClusterMetricsstatus)
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
index f686104..31595fa 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/CompareOperator.html
@@ -186,94 +186,94 @@ the order they are declared.
 
 
 boolean
-HTable.checkAndDelete(byte[]row,
+Table.checkAndDelete(byte[]row,
   byte[]family,
   byte[]qualifier,
   CompareOperatorop,
   byte[]value,
   Deletedelete)
-Deprecated.
+Deprecated.
+Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
+
 
 
 
 boolean
-Table.checkAndDelete(byte[]row,
+HTable.checkAndDelete(byte[]row,
   byte[]family,
   byte[]qualifier,
   CompareOperatorop,
   byte[]value,
   Deletedelete)
-Deprecated.
-Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 byte[])
-
+Deprecated.
 
 
 
 boolean
-HTable.checkAndMutate(byte[]row,
+Table.checkAndMutate(byte[]row,
   byte[]family,
   byte[]qualifier,
   CompareOperatorop,
   byte[]value,
-  RowMutationsrm)
-Deprecated.
+  RowMutationsmutation)
+Deprecated.
+Since 2.0.0. Will be 
removed in 3.0.0. Use Table.checkAndMutate(byte[],
 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/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 d92043a..fa63017 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
@@ -423,7 +423,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 HRegionInfo
-RegionServerCallable.getHRegionInfo()
+ScannerCallableWithReplicas.getHRegionInfo()
 
 
 HRegionInfo
@@ -435,7 +435,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 HRegionInfo
-ScannerCallableWithReplicas.getHRegionInfo()
+RegionServerCallable.getHRegionInfo()
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
index 5fb5aab..bb30224 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
@@ -162,7 +162,7 @@ service.
 
 
 private static HRegionLocation
-MetaTableAccessor.getRegionLocation(Resultr,
+AsyncMetaTableAccessor.getRegionLocation(Resultr,
  RegionInforegionInfo,
  intreplicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -171,7 +171,7 @@ service.
 
 
 private static HRegionLocation
-AsyncMetaTableAccessor.getRegionLocation(Resultr,
+MetaTableAccessor.getRegionLocation(Resultr,
  RegionInforegionInfo,
  intreplicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -304,6 +304,14 @@ service.
 HTableMultiplexer.FlushWorker.addr
 
 
+HRegionLocation
+AsyncClientScanner.OpenScannerResponse.loc
+
+
+private HRegionLocation
+AsyncRpcRetryingCallerFactory.ScanSingleRegionCallerBuilder.loc
+
+
 private HRegionLocation
 AsyncScanSingleRegionRpcRetryingCaller.loc
 
@@ -312,23 +320,15 @@ service.
 AsyncBatchRpcRetryingCaller.RegionRequest.loc
 
 
-HRegionLocation
-AsyncClientScanner.OpenScannerResponse.loc
+protected HRegionLocation
+RegionAdminServiceCallable.location
 
 
-private HRegionLocation
-AsyncRpcRetryingCallerFactory.ScanSingleRegionCallerBuilder.loc
-
-
 protected HRegionLocation
 RegionServerCallable.location
 Some subclasses want to set their own location.
 
 
-
-protected HRegionLocation
-RegionAdminServiceCallable.location
-
 
 
 
@@ -371,11 +371,11 @@ service.
 
 
 protected HRegionLocation
-RegionServerCallable.getLocation()
+MultiServerCallable.getLocation()
 
 
 protected HRegionLocation
-MultiServerCallable.getLocation()
+RegionServerCallable.getLocation()
 
 
 HRegionLocation
@@ -383,43 +383,43 @@ service.
 
 
 HRegionLocation
-RegionLocator.getRegionLocation(byte[]row)
+HRegionLocator.getRegionLocation(byte[]row)
 Finds the region on which the given row is being 
served.
 
 
 
 HRegionLocation
-HRegionLocator.getRegionLocation(byte[]row)
+RegionLocator.getRegionLocation(byte[]row)
 Finds the region on which the given row is being 
served.
 
 
 
 HRegionLocation
-RegionLocator.getRegionLocation(byte[]row,
+HRegionLocator.getRegionLocation(byte[]row,
  booleanreload)
 Finds the region on which the given row is being 
served.
 
 
 
 HRegionLocation
-HRegionLocator.getRegionLocation(byte[]row,
+RegionLocator.getRegionLocation(byte[]row,
  booleanreload)
 Finds the region on which the given row is being 
served.
 
 
 
 HRegionLocation
-ClusterConnection.getRegionLocation(TableNametableName,
+ConnectionImplementation.getRegionLocation(TableNametableName,
  byte[]row,
- booleanreload)
-Find region location hosting passed row
-
+ booleanreload)
 
 
 HRegionLocation
-ConnectionImplementation.getRegionLocation(TableNametableName,
+ClusterConnection.getRegionLocation(TableNametableName,
  byte[]row,
- booleanreload)
+ booleanreload)
+Find region location hosting passed row
+
 
 
 private HRegionLocation
@@ -434,15 +434,20 @@ service.
 
 
 HRegionLocation
+ConnectionImplementation.locateRegion(byte[]regionName)
+
+
+HRegionLocation
 ClusterConnection.locateRegion(byte[]regionName)
 Gets the location of the region of regionName.
 
 
-
+
 HRegionLocation
-ConnectionImplementation.locateRegion(byte[]regionName)
+ConnectionImplementation.locateRegion(TableNametableName,
+byte[]row)
 
-
+
 HRegionLocation
 ClusterConnection.locateRegion(TableNametableName,
 byte[]row)
@@ -450,11 +455,6 @@ service.
  lives in.
 

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

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



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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html
index 2c02c0d..c897bbc 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html
@@ -257,26 +257,26 @@
 
 
 
-boolean
-Table.exists(Getget)
+default http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true;
 title="class or interface in java.lang">Boolean
+AsyncTable.exists(Getget)
 Test for the existence of columns in the table, as 
specified by the Get.
 
 
 
-default http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true;
 title="class or interface in java.lang">Boolean
-AsyncTable.exists(Getget)
+boolean
+Table.exists(Getget)
 Test for the existence of columns in the table, as 
specified by the Get.
 
 
 
-Result
-Table.get(Getget)
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureResult
+AsyncTable.get(Getget)
 Extracts certain cells from a given row.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureResult
-AsyncTable.get(Getget)
+Result
+Table.get(Getget)
 Extracts certain cells from a given row.
 
 
@@ -290,18 +290,24 @@
 
 
 
-boolean[]
-Table.exists(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListGetgets)
+default http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">Listhttp://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true;
 title="class or interface in java.lang">Boolean
+AsyncTable.exists(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListGetgets)
 Test for the existence of columns in the table, as 
specified by the Gets.
 
 
 
-default http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">Listhttp://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true;
 title="class or interface in java.lang">Boolean
-AsyncTable.exists(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListGetgets)
+boolean[]
+Table.exists(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListGetgets)
 Test for the existence of columns in the table, as 
specified by the Gets.
 
 
 
+default http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">Listhttp://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true;
 title="class or interface in java.lang">Boolean
+AsyncTable.existsAll(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListGetgets)
+A simple version for batch exists.
+
+
+
 default boolean[]
 Table.existsAll(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListGetgets)
 Deprecated.
@@ -310,24 +316,18 @@
 
 
 
-
-default http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">Listhttp://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true;
 title="class or interface in java.lang">Boolean

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/Cell.html 
b/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
index 38529ee..71e5d2c 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
@@ -1105,15 +1105,15 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 
-Increment
-Increment.add(Cellcell)
-Add the specified KeyValue to this operation.
+Append
+Append.add(Cellcell)
+Add column and value to this Append operation.
 
 
 
-Delete
-Delete.add(Cellcell)
-Add an existing delete marker to this Delete object.
+Increment
+Increment.add(Cellcell)
+Add the specified KeyValue to this operation.
 
 
 
@@ -1123,9 +1123,9 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-Append
-Append.add(Cellcell)
-Add column and value to this Append operation.
+Delete
+Delete.add(Cellcell)
+Add an existing delete marker to this Delete object.
 
 
 
@@ -1208,20 +1208,20 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
   booleanmayHaveMoreCellsInRow)
 
 
-Increment
-Increment.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true;
 title="class or interface in java.util">NavigableMapbyte[],http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListCellmap)
+Append
+Append.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true;
 title="class or interface in java.util">NavigableMapbyte[],http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListCellmap)
 Deprecated.
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
- Use Increment.Increment(byte[],
 long, NavigableMap) instead
+ Use Append.Append(byte[],
 long, NavigableMap) instead
 
 
 
 
-Delete
-Delete.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true;
 title="class or interface in java.util">NavigableMapbyte[],http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListCellmap)
+Increment
+Increment.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true;
 title="class or interface in java.util">NavigableMapbyte[],http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListCellmap)
 Deprecated.
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
- Use Delete.Delete(byte[],
 long, NavigableMap) instead
+ Use Increment.Increment(byte[],
 long, NavigableMap) instead
 
 
 
@@ -1244,11 +1244,11 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 
-Append
-Append.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true;
 title="class or interface in java.util">NavigableMapbyte[],http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListCellmap)
+Delete
+Delete.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true;
 title="class or interface in java.util">NavigableMapbyte[],http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListCellmap)
 Deprecated.
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
- Use Append.Append(byte[],
 long, NavigableMap) instead
+ Use Delete.Delete(byte[],
 long, NavigableMap) instead
 
 
 
@@ -1311,67 +1311,67 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 Cell
-ColumnPrefixFilter.getNextCellHint(Cellcell)
+FilterList.getNextCellHint(CellcurrentCell)
 
 
 Cell
-TimestampsFilter.getNextCellHint(CellcurrentCell)
-Pick the next cell that the scanner should seek to.
-
+MultipleColumnPrefixFilter.getNextCellHint(Cellcell)
 
 
 Cell
-MultiRowRangeFilter.getNextCellHint(CellcurrentKV)
+ColumnRangeFilter.getNextCellHint(Cellcell)
 
 
-Cell
-ColumnPaginationFilter.getNextCellHint(Cellcell)
+abstract Cell
+Filter.getNextCellHint(CellcurrentCell)
+If the filter returns the match code SEEK_NEXT_USING_HINT, 
then it should also tell which is
+ the next key it must seek to.
+
 
 
 Cell
-ColumnRangeFilter.getNextCellHint(Cellcell)
+ColumnPaginationFilter.getNextCellHint(Cellcell)
 
 
 Cell
-FilterList.getNextCellHint(CellcurrentCell)
+FuzzyRowFilter.getNextCellHint(CellcurrentCell)
 
 
 Cell
-MultipleColumnPrefixFilter.getNextCellHint(Cellcell)

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/class-use/Mutation.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Mutation.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Mutation.html
index 53d69df..597d1ba 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Mutation.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Mutation.html
@@ -355,24 +355,24 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-BufferedMutatorImpl.mutate(Mutationm)
-
-
-void
 BufferedMutator.mutate(Mutationmutation)
 Sends a Mutation to 
the 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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
+AsyncBufferedMutatorImpl.mutate(Mutationmutation)
+
 
+void
+BufferedMutatorImpl.mutate(Mutationm)
+
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
 AsyncBufferedMutator.mutate(Mutationmutation)
 Sends a Mutation to 
the 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">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
-AsyncBufferedMutatorImpl.mutate(Mutationmutation)
-
 
 
 
@@ -390,24 +390,24 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-BufferedMutatorImpl.mutate(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">List? extends Mutationms)
-
-
-void
 BufferedMutator.mutate(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">List? extends Mutationmutations)
 Send some Mutations to 
the table.
 
 
+
+http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">Listhttp://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
+AsyncBufferedMutatorImpl.mutate(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">List? extends Mutationmutations)
+
 
+void
+BufferedMutatorImpl.mutate(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">List? extends Mutationms)
+
+
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">Listhttp://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
 AsyncBufferedMutator.mutate(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">List? extends Mutationmutations)
 Send some Mutations to 
the table.
 
 
-
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">Listhttp://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
-AsyncBufferedMutatorImpl.mutate(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">List? extends Mutationmutations)
-
 
 static RowMutations
 RowMutations.of(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">List? extends Mutationmutations)
@@ -543,15 +543,15 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 MutationSerialization.getDeserializer(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true;
 title="class or interface in java.lang">ClassMutationc)
 
 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/apidocs/overview-tree.html
--
diff --git a/apidocs/overview-tree.html b/apidocs/overview-tree.html
index d21d0ac..32feba1 100644
--- a/apidocs/overview-tree.html
+++ b/apidocs/overview-tree.html
@@ -889,33 +889,33 @@
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true;
 title="class or interface in java.lang">EnumE (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true;
 title="class or interface in java.lang">ComparableT, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true;
 title="class or interface in java.io">Serializable)
 
 org.apache.hadoop.hbase.util.Order
-org.apache.hadoop.hbase.KeepDeletedCells
 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.filter.BitComparator.BitwiseOp
 org.apache.hadoop.hbase.filter.FilterList.Operator
 org.apache.hadoop.hbase.filter.CompareFilter.CompareOp
-org.apache.hadoop.hbase.filter.Filter.ReturnCode
+org.apache.hadoop.hbase.filter.BitComparator.BitwiseOp
 org.apache.hadoop.hbase.filter.RegexStringComparator.EngineType
+org.apache.hadoop.hbase.filter.Filter.ReturnCode
 org.apache.hadoop.hbase.io.encoding.DataBlockEncoding
 org.apache.hadoop.hbase.regionserver.BloomType
+org.apache.hadoop.hbase.quotas.SpaceViolationPolicy
 org.apache.hadoop.hbase.quotas.ThrottlingException.Type
 org.apache.hadoop.hbase.quotas.QuotaScope
-org.apache.hadoop.hbase.quotas.ThrottleType
 org.apache.hadoop.hbase.quotas.QuotaType
-org.apache.hadoop.hbase.quotas.SpaceViolationPolicy
-org.apache.hadoop.hbase.client.Durability
+org.apache.hadoop.hbase.quotas.ThrottleType
 org.apache.hadoop.hbase.client.SnapshotType
-org.apache.hadoop.hbase.client.MasterSwitchType
-org.apache.hadoop.hbase.client.CompactType
+org.apache.hadoop.hbase.client.Durability
 org.apache.hadoop.hbase.client.MobCompactPartitionPolicy
-org.apache.hadoop.hbase.client.CompactionState
-org.apache.hadoop.hbase.client.Scan.ReadType
-org.apache.hadoop.hbase.client.RequestController.ReturnCode
 org.apache.hadoop.hbase.client.IsolationLevel
+org.apache.hadoop.hbase.client.RequestController.ReturnCode
+org.apache.hadoop.hbase.client.Scan.ReadType
+org.apache.hadoop.hbase.client.CompactionState
+org.apache.hadoop.hbase.client.MasterSwitchType
 org.apache.hadoop.hbase.client.Consistency
+org.apache.hadoop.hbase.client.CompactType
 org.apache.hadoop.hbase.client.security.SecurityCapability
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/book.html
--
diff --git a/book.html b/book.html
index 58ae79f..0ebc5b8 100644
--- a/book.html
+++ b/book.html
@@ -37303,7 +37303,7 @@ The server will return cellblocks compressed using this 
same compressor as long
 
 
 Version 3.0.0-SNAPSHOT
-Last updated 2018-02-15 14:29:38 UTC
+Last updated 2018-02-16 14:29:36 UTC
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/bulk-loads.html
--
diff --git a/bulk-loads.html b/bulk-loads.html
index 7e3a68b..d2e7978 100644
--- a/bulk-loads.html
+++ b/bulk-loads.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase   
   Bulk Loads in Apache HBase (TM)
@@ -311,7 +311,7 @@ under the License. -->
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2018-02-15
+  Last Published: 
2018-02-16
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/checkstyle-aggregate.html
--
diff --git a/checkstyle-aggregate.html b/checkstyle-aggregate.html
index e2ca280..47fbe89 100644
--- a/checkstyle-aggregate.html
+++ b/checkstyle-aggregate.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Checkstyle Results
 
@@ -286,7 +286,7 @@
 Warnings
 Errors
 
-3540
+3543
 0
 0
 16555
@@ -68403,379 +68403,379 @@
 indentation
 Indentation
 'else' child have incorrect indentation level 10, expected level should be 
12.
-229
+228
 
 Error
 indentation
 Indentation
 'else rcurly' have incorrect indentation level 8, expected level should be 
10.
-230
+229
 
 Error
 indentation
 Indentation
 'case' child have incorrect indentation level 6, expected level should be 
8.
-231
+230
 
 Error
 indentation
 Indentation
 'block' child have incorrect indentation level 8, expected level should be 
10.
-232
+231
 
 Error
 indentation
 Indentation
 'block' child have incorrect indentation level 8, 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
index 65795ae..463f4fa 100644
--- a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
+++ b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
@@ -488,15 +488,15 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 static Filter
-ColumnPrefixFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
+SingleColumnValueExcludeFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
 
 
 static Filter
-ColumnCountGetFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
+ValueFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
 
 
 static Filter
-RowFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
+FamilyFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
 
 
 static Filter
@@ -506,63 +506,63 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 static Filter
-FirstKeyOnlyFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
+ColumnPrefixFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
 
 
 static Filter
-TimestampsFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
+PageFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
 
 
 static Filter
-ValueFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
+RowFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
 
 
 static Filter
-KeyOnlyFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
+ColumnRangeFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
 
 
 static Filter
-FamilyFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
+ColumnCountGetFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
 
 
 static Filter
-QualifierFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
+MultipleColumnPrefixFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
 
 
 static Filter
-ColumnRangeFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
+ColumnPaginationFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true;
 title="class or interface in 
java.util">ArrayListbyte[]filterArguments)
 
 
 static Filter

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFile.Writer.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFile.Writer.html 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFile.Writer.html
index c7d05d1..abcb738 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFile.Writer.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFile.Writer.html
@@ -143,18 +143,18 @@
 
 
 void
-HFileDataBlockEncoderImpl.saveMetadata(HFile.Writerwriter)
-
-
-void
 NoOpDataBlockEncoder.saveMetadata(HFile.Writerwriter)
 
-
+
 void
 HFileDataBlockEncoder.saveMetadata(HFile.Writerwriter)
 Save metadata in HFile which will be written to disk
 
 
+
+void
+HFileDataBlockEncoderImpl.saveMetadata(HFile.Writerwriter)
+
 
 
 
@@ -203,18 +203,18 @@
 
 
 
-void
-RowColBloomContext.addLastBloomKey(HFile.Writerwriter)
+abstract void
+BloomContext.addLastBloomKey(HFile.Writerwriter)
+Adds the last bloom key to the HFile Writer as part of 
StorefileWriter close.
+
 
 
 void
 RowBloomContext.addLastBloomKey(HFile.Writerwriter)
 
 
-abstract void
-BloomContext.addLastBloomKey(HFile.Writerwriter)
-Adds the last bloom key to the HFile Writer as part of 
StorefileWriter close.
-
+void
+RowColBloomContext.addLastBloomKey(HFile.Writerwriter)
 
 
 static BloomFilterWriter

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileBlock.Writer.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileBlock.Writer.html 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileBlock.Writer.html
index 479b9d3..274bfad 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileBlock.Writer.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileBlock.Writer.html
@@ -106,15 +106,15 @@
 
 
 
+private HFileBlock.Writer
+HFileBlockIndex.BlockIndexWriter.blockWriter
+
+
 protected HFileBlock.Writer
 HFileWriterImpl.blockWriter
 block writer
 
 
-
-private HFileBlock.Writer
-HFileBlockIndex.BlockIndexWriter.blockWriter
-
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileContext.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileContext.html 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileContext.html
index 0c892c8..b293c97 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileContext.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileContext.html
@@ -136,15 +136,15 @@
 
 
 HFileContext
-HFileBlockDecodingContext.getHFileContext()
+HFileBlockEncodingContext.getHFileContext()
 
 
 HFileContext
-HFileBlockDefaultDecodingContext.getHFileContext()
+HFileBlockDecodingContext.getHFileContext()
 
 
 HFileContext
-HFileBlockEncodingContext.getHFileContext()
+HFileBlockDefaultDecodingContext.getHFileContext()
 
 
 HFileContext
@@ -224,23 +224,23 @@
 
 
 private HFileContext
+HFile.WriterFactory.fileContext
+
+
+private HFileContext
 HFileBlock.fileContext
 Meta data that holds meta information on the 
hfileblock.
 
 
-
+
 private HFileContext
 HFileBlock.Writer.fileContext
 Meta data that holds information about the hfileblock
 
 
-
-private HFileContext
-HFileBlock.FSReaderImpl.fileContext
-
 
 private HFileContext
-HFile.WriterFactory.fileContext
+HFileBlock.FSReaderImpl.fileContext
 
 
 private HFileContext
@@ -277,20 +277,20 @@
 
 
 HFileContext
-HFileWriterImpl.getFileContext()
-
-
-HFileContext
 HFile.Writer.getFileContext()
 Return the file context for the HFile this writer belongs 
to
 
 
-
+
 HFileContext
 HFile.Reader.getFileContext()
 Return the file context of the HFile this reader belongs 
to
 
 
+
+HFileContext
+HFileWriterImpl.getFileContext()
+
 
 HFileContext
 HFileReaderImpl.getFileContext()
@@ -323,35 +323,35 @@
 
 
 HFileBlockDecodingContext
-HFileDataBlockEncoderImpl.newDataBlockDecodingContext(HFileContextfileContext)
-
-
-HFileBlockDecodingContext
 NoOpDataBlockEncoder.newDataBlockDecodingContext(HFileContextmeta)
 
-
+
 HFileBlockDecodingContext
 HFileDataBlockEncoder.newDataBlockDecodingContext(HFileContextfileContext)
 create a encoder specific decoding context for 
reading.
 
 
-
-HFileBlockEncodingContext
-HFileDataBlockEncoderImpl.newDataBlockEncodingContext(byte[]dummyHeader,
-   HFileContextfileContext)
-
 
+HFileBlockDecodingContext
+HFileDataBlockEncoderImpl.newDataBlockDecodingContext(HFileContextfileContext)
+
+
 HFileBlockEncodingContext
 NoOpDataBlockEncoder.newDataBlockEncodingContext(byte[]dummyHeader,
HFileContextmeta)
 
-
+
 HFileBlockEncodingContext
 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockCacheKey.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockCacheKey.html 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockCacheKey.html
index 570fb68..b8ce496 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockCacheKey.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockCacheKey.html
@@ -168,39 +168,27 @@
 
 
 void
-CombinedBlockCache.cacheBlock(BlockCacheKeycacheKey,
-  Cacheablebuf)
-
-
-void
 BlockCache.cacheBlock(BlockCacheKeycacheKey,
   Cacheablebuf)
 Add block to cache (defaults to not in-memory).
 
 
-
+
 void
 LruBlockCache.cacheBlock(BlockCacheKeycacheKey,
   Cacheablebuf)
 Cache the block with the specified name and buffer.
 
 
-
-void
-MemcachedBlockCache.cacheBlock(BlockCacheKeycacheKey,
-  Cacheablebuf)
-
 
 void
-CombinedBlockCache.cacheBlock(BlockCacheKeycacheKey,
-  Cacheablebuf,
-  booleaninMemory)
+CombinedBlockCache.cacheBlock(BlockCacheKeycacheKey,
+  Cacheablebuf)
 
 
 void
-InclusiveCombinedBlockCache.cacheBlock(BlockCacheKeycacheKey,
-  Cacheablebuf,
-  booleaninMemory)
+MemcachedBlockCache.cacheBlock(BlockCacheKeycacheKey,
+  Cacheablebuf)
 
 
 void
@@ -220,6 +208,18 @@
 
 
 void
+CombinedBlockCache.cacheBlock(BlockCacheKeycacheKey,
+  Cacheablebuf,
+  booleaninMemory)
+
+
+void
+InclusiveCombinedBlockCache.cacheBlock(BlockCacheKeycacheKey,
+  Cacheablebuf,
+  booleaninMemory)
+
+
+void
 MemcachedBlockCache.cacheBlock(BlockCacheKeycacheKey,
   Cacheablebuf,
   booleaninMemory)
@@ -232,21 +232,21 @@
 
 
 boolean
-CombinedBlockCache.evictBlock(BlockCacheKeycacheKey)
+BlockCache.evictBlock(BlockCacheKeycacheKey)
+Evict block from cache.
+
 
 
 boolean
-InclusiveCombinedBlockCache.evictBlock(BlockCacheKeycacheKey)
+LruBlockCache.evictBlock(BlockCacheKeycacheKey)
 
 
 boolean
-BlockCache.evictBlock(BlockCacheKeycacheKey)
-Evict block from cache.
-
+CombinedBlockCache.evictBlock(BlockCacheKeycacheKey)
 
 
 boolean
-LruBlockCache.evictBlock(BlockCacheKeycacheKey)
+InclusiveCombinedBlockCache.evictBlock(BlockCacheKeycacheKey)
 
 
 boolean
@@ -254,35 +254,35 @@
 
 
 Cacheable
-CombinedBlockCache.getBlock(BlockCacheKeycacheKey,
+BlockCache.getBlock(BlockCacheKeycacheKey,
 booleancaching,
 booleanrepeat,
-booleanupdateCacheMetrics)
+booleanupdateCacheMetrics)
+Fetch block from cache.
+
 
 
 Cacheable
-InclusiveCombinedBlockCache.getBlock(BlockCacheKeycacheKey,
+LruBlockCache.getBlock(BlockCacheKeycacheKey,
 booleancaching,
 booleanrepeat,
-booleanupdateCacheMetrics)
+booleanupdateCacheMetrics)
+Get the buffer of the block with the specified name.
+
 
 
 Cacheable
-BlockCache.getBlock(BlockCacheKeycacheKey,
+CombinedBlockCache.getBlock(BlockCacheKeycacheKey,
 booleancaching,
 booleanrepeat,
-booleanupdateCacheMetrics)
-Fetch block from cache.
-
+booleanupdateCacheMetrics)
 
 
 Cacheable
-LruBlockCache.getBlock(BlockCacheKeycacheKey,
+InclusiveCombinedBlockCache.getBlock(BlockCacheKeycacheKey,
 booleancaching,
 booleanrepeat,
-booleanupdateCacheMetrics)
-Get the buffer of the block with the specified name.
-
+booleanupdateCacheMetrics)
 
 
 Cacheable
@@ -308,11 +308,6 @@
 CombinedBlockCache.getRefCount(BlockCacheKeycacheKey)
 
 
-void
-CombinedBlockCache.returnBlock(BlockCacheKeycacheKey,
-   Cacheableblock)
-
-
 default void
 BlockCache.returnBlock(BlockCacheKeycacheKey,
Cacheableblock)
@@ -320,6 +315,11 @@
  is over.
 
 
+
+void
+CombinedBlockCache.returnBlock(BlockCacheKeycacheKey,
+   Cacheableblock)
+
 
 
 
@@ -497,14 +497,14 @@
 
 
 void
-BucketCache.BucketEntryGroup.add(http://docs.oracle.com/javase/8/docs/api/java/util/Map.Entry.html?is-external=true;
 title="class or interface in java.util">Map.EntryBlockCacheKey,BucketCache.BucketEntryblock)
-
-
-void
 CachedEntryQueue.add(http://docs.oracle.com/javase/8/docs/api/java/util/Map.Entry.html?is-external=true;
 title="class or interface in java.util">Map.EntryBlockCacheKey,BucketCache.BucketEntryentry)
 Attempt to add the specified entry to this queue.
 
 
+
+void
+BucketCache.BucketEntryGroup.add(http://docs.oracle.com/javase/8/docs/api/java/util/Map.Entry.html?is-external=true;
 title="class or interface in java.util">Map.EntryBlockCacheKey,BucketCache.BucketEntryblock)
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockType.html 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/InternalScanner.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/InternalScanner.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/InternalScanner.html
index 32b9ea1..ec16364 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/InternalScanner.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/InternalScanner.html
@@ -708,7 +708,7 @@
 
 
 InternalScanner
-StripeCompactor.StripeInternalScannerFactory.createScanner(ScanInfoscanInfo,
+Compactor.InternalScannerFactory.createScanner(ScanInfoscanInfo,
  http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListStoreFileScannerscanners,
  ScanTypescanType,
  Compactor.FileDetailsfd,
@@ -716,7 +716,7 @@
 
 
 InternalScanner
-Compactor.InternalScannerFactory.createScanner(ScanInfoscanInfo,
+StripeCompactor.StripeInternalScannerFactory.createScanner(ScanInfoscanInfo,
  http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListStoreFileScannerscanners,
  ScanTypescanType,
  Compactor.FileDetailsfd,

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/KeyValueScanner.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/KeyValueScanner.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/KeyValueScanner.html
index 4d209ec..1ec8a93 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/KeyValueScanner.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/KeyValueScanner.html
@@ -222,13 +222,13 @@
 MemStoreMergerSegmentsIterator.scanners
 
 
-protected http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScanner
-KeyValueHeap.scannersForDelayedClose
-
-
 private http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScanner
 StoreScanner.scannersForDelayedClose
 
+
+protected http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScanner
+KeyValueHeap.scannersForDelayedClose
+
 
 
 
@@ -388,15 +388,15 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScanner
-DefaultMemStore.getScanners(longreadPt)
+MemStore.getScanners(longreadPt)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScanner
-MemStore.getScanners(longreadPt)
+CompactingMemStore.getScanners(longreadPt)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScanner
-CompactingMemStore.getScanners(longreadPt)
+DefaultMemStore.getScanners(longreadPt)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScanner
@@ -442,12 +442,12 @@
 
 
 int
-ReversedKeyValueHeap.ReversedKVScannerComparator.compare(KeyValueScannerleft,
+KeyValueHeap.KVScannerComparator.compare(KeyValueScannerleft,
KeyValueScannerright)
 
 
 int
-KeyValueHeap.KVScannerComparator.compare(KeyValueScannerleft,
+ReversedKeyValueHeap.ReversedKVScannerComparator.compare(KeyValueScannerleft,
KeyValueScannerright)
 
 
@@ -458,14 +458,14 @@
 
 
 private void
-CellChunkImmutableSegment.reinitializeCellSet(intnumOfCells,
+CellArrayImmutableSegment.reinitializeCellSet(intnumOfCells,
KeyValueScannersegmentScanner,
CellSetoldCellSet,
MemStoreCompactionStrategy.Actionaction)
 
 
 private void
-CellArrayImmutableSegment.reinitializeCellSet(intnumOfCells,
+CellChunkImmutableSegment.reinitializeCellSet(intnumOfCells,
KeyValueScannersegmentScanner,
CellSetoldCellSet,
MemStoreCompactionStrategy.Actionaction)
@@ -543,25 +543,25 @@
 
 
 protected void
-ReversedRegionScannerImpl.initializeKVHeap(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScannerscanners,
+HRegion.RegionScannerImpl.initializeKVHeap(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScannerscanners,
 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/nio/class-use/ByteBuff.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/nio/class-use/ByteBuff.html 
b/devapidocs/org/apache/hadoop/hbase/nio/class-use/ByteBuff.html
index 74a0687..158a6aa 100644
--- a/devapidocs/org/apache/hadoop/hbase/nio/class-use/ByteBuff.html
+++ b/devapidocs/org/apache/hadoop/hbase/nio/class-use/ByteBuff.html
@@ -161,23 +161,23 @@
 
 
 Codec.Decoder
-CellCodec.getDecoder(ByteBuffbuf)
+KeyValueCodec.getDecoder(ByteBuffbuf)
 
 
 Codec.Decoder
-Codec.getDecoder(ByteBuffbuf)
+CellCodecWithTags.getDecoder(ByteBuffbuf)
 
 
 Codec.Decoder
-KeyValueCodec.getDecoder(ByteBuffbuf)
+Codec.getDecoder(ByteBuffbuf)
 
 
 Codec.Decoder
-KeyValueCodecWithTags.getDecoder(ByteBuffbuf)
+CellCodec.getDecoder(ByteBuffbuf)
 
 
 Codec.Decoder
-CellCodecWithTags.getDecoder(ByteBuffbuf)
+KeyValueCodecWithTags.getDecoder(ByteBuffbuf)
 
 
 Codec.Decoder
@@ -259,20 +259,20 @@
 
 
 
-private ByteBuff
-RowIndexSeekerV1.currentBuffer
+protected ByteBuff
+BufferedDataBlockEncoder.SeekerState.currentBuffer
 
 
 protected ByteBuff
-RowIndexSeekerV1.SeekerState.currentBuffer
+BufferedDataBlockEncoder.BufferedEncodedSeeker.currentBuffer
 
 
-protected ByteBuff
-BufferedDataBlockEncoder.SeekerState.currentBuffer
+private ByteBuff
+RowIndexSeekerV1.currentBuffer
 
 
 protected ByteBuff
-BufferedDataBlockEncoder.BufferedEncodedSeeker.currentBuffer
+RowIndexSeekerV1.SeekerState.currentBuffer
 
 
 private ByteBuff
@@ -295,23 +295,23 @@
 
 
 Cell
-RowIndexCodecV1.getFirstKeyCellInBlock(ByteBuffblock)
+CopyKeyDataBlockEncoder.getFirstKeyCellInBlock(ByteBuffblock)
 
 
 Cell
-CopyKeyDataBlockEncoder.getFirstKeyCellInBlock(ByteBuffblock)
+PrefixKeyDeltaEncoder.getFirstKeyCellInBlock(ByteBuffblock)
 
 
 Cell
-DiffKeyDeltaEncoder.getFirstKeyCellInBlock(ByteBuffblock)
+FastDiffDeltaEncoder.getFirstKeyCellInBlock(ByteBuffblock)
 
 
 Cell
-FastDiffDeltaEncoder.getFirstKeyCellInBlock(ByteBuffblock)
+DiffKeyDeltaEncoder.getFirstKeyCellInBlock(ByteBuffblock)
 
 
 Cell
-PrefixKeyDeltaEncoder.getFirstKeyCellInBlock(ByteBuffblock)
+RowIndexCodecV1.getFirstKeyCellInBlock(ByteBuffblock)
 
 
 void
@@ -338,11 +338,11 @@
 
 
 void
-RowIndexSeekerV1.setCurrentBuffer(ByteBuffbuffer)
+BufferedDataBlockEncoder.BufferedEncodedSeeker.setCurrentBuffer(ByteBuffbuffer)
 
 
 void
-BufferedDataBlockEncoder.BufferedEncodedSeeker.setCurrentBuffer(ByteBuffbuffer)
+RowIndexSeekerV1.setCurrentBuffer(ByteBuffbuffer)
 
 
 
@@ -498,21 +498,21 @@
 
 
 void
-ByteBufferIOEngine.write(ByteBuffsrcBuffer,
- longoffset)
-
-
-void
 FileIOEngine.write(ByteBuffsrcBuffer,
  longoffset)
 
-
+
 void
 IOEngine.write(ByteBuffsrcBuffer,
  longoffset)
 Transfers the data from the given MultiByteBuffer to 
IOEngine
 
 
+
+void
+ByteBufferIOEngine.write(ByteBuffsrcBuffer,
+ longoffset)
+
 
 void
 FileMmapEngine.write(ByteBuffsrcBuffer,
@@ -812,6 +812,15 @@
  intindex)
 
 
+MultiByteBuff
+MultiByteBuff.put(intoffset,
+   ByteBuffsrc,
+   intsrcOffset,
+   intlength)
+Copies from a src MBB to this MBB.
+
+
+
 abstract ByteBuff
 ByteBuff.put(intoffset,
ByteBuffsrc,
@@ -820,22 +829,13 @@
 Copies the contents from the src ByteBuff to this 
ByteBuff.
 
 
-
+
 SingleByteBuff
 SingleByteBuff.put(intoffset,
ByteBuffsrc,
intsrcOffset,
intlength)
 
-
-MultiByteBuff
-MultiByteBuff.put(intoffset,
-   ByteBuffsrc,
-   intsrcOffset,
-   intlength)
-Copies from a src MBB to this MBB.
-
-
 
 static int
 ByteBuff.readCompressedInt(ByteBuffbuf)

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/package-tree.html
index cc24c24..11c1c93 100644
--- a/devapidocs/org/apache/hadoop/hbase/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/package-tree.html
@@ -440,20 +440,20 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true;
 title="class or interface in java.lang">EnumE (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true;
 title="class or interface in java.lang">ComparableT, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true;
 title="class or interface in java.io">Serializable)
 
-org.apache.hadoop.hbase.HealthChecker.HealthCheckerExitStatus
-org.apache.hadoop.hbase.ClusterMetrics.Option
-org.apache.hadoop.hbase.Size.Unit
-org.apache.hadoop.hbase.HConstants.OperationStatusCode
-org.apache.hadoop.hbase.Coprocessor.State
-org.apache.hadoop.hbase.CellBuilderType
 org.apache.hadoop.hbase.ProcedureState
-org.apache.hadoop.hbase.CompatibilitySingletonFactory.SingletonStorage

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterCoprocessorHost.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterCoprocessorHost.html
 
b/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterCoprocessorHost.html
index 2f099b5..1687516 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterCoprocessorHost.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterCoprocessorHost.html
@@ -121,11 +121,11 @@
 
 
 MasterCoprocessorHost
-MasterServices.getMasterCoprocessorHost()
+HMaster.getMasterCoprocessorHost()
 
 
 MasterCoprocessorHost
-HMaster.getMasterCoprocessorHost()
+MasterServices.getMasterCoprocessorHost()
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterFileSystem.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterFileSystem.html 
b/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterFileSystem.html
index dc3868a..8769577 100644
--- a/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterFileSystem.html
+++ b/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterFileSystem.html
@@ -121,11 +121,11 @@
 
 
 MasterFileSystem
-MasterServices.getMasterFileSystem()
+HMaster.getMasterFileSystem()
 
 
 MasterFileSystem
-HMaster.getMasterFileSystem()
+MasterServices.getMasterFileSystem()
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterServices.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterServices.html 
b/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterServices.html
index 317f689..48453a5 100644
--- a/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterServices.html
+++ b/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterServices.html
@@ -309,13 +309,13 @@
 
 
 
-private MasterServices
-ServerManager.master
-
-
 (package private) MasterServices
 TableStateManager.master
 
+
+private MasterServices
+ServerManager.master
+
 
 private MasterServices
 MasterCoprocessorHost.masterServices
@@ -334,15 +334,15 @@
 
 
 private MasterServices
-SplitLogManager.server
+RegionServerTracker.server
 
 
 private MasterServices
-RegionServerTracker.server
+SplitLogManager.server
 
 
 private MasterServices
-MasterWalManager.services
+MasterCoprocessorHost.MasterEnvironment.services
 
 
 private MasterServices
@@ -350,7 +350,7 @@
 
 
 private MasterServices
-MasterCoprocessorHost.MasterEnvironment.services
+MasterWalManager.services
 
 
 
@@ -532,13 +532,13 @@
 StochasticLoadBalancer.LocalityBasedCostFunction.services
 
 
-private MasterServices
-RegionLocationFinder.services
-
-
 protected MasterServices
 BaseLoadBalancer.services
 
+
+private MasterServices
+RegionLocationFinder.services
+
 
 
 
@@ -550,15 +550,15 @@
 
 
 void
-FavoredStochasticBalancer.setMasterServices(MasterServicesmasterServices)
+StochasticLoadBalancer.setMasterServices(MasterServicesmasterServices)
 
 
 void
-StochasticLoadBalancer.setMasterServices(MasterServicesmasterServices)
+BaseLoadBalancer.setMasterServices(MasterServicesmasterServices)
 
 
 void
-BaseLoadBalancer.setMasterServices(MasterServicesmasterServices)
+FavoredStochasticBalancer.setMasterServices(MasterServicesmasterServices)
 
 
 (package private) void
@@ -696,16 +696,16 @@
 
 
 private MasterServices
-RecoverMetaProcedure.master
-
-
-private MasterServices
 MasterProcedureUtil.NonceProcedureRunnable.master
 
-
+
 protected MasterServices
 RSProcedureDispatcher.master
 
+
+private MasterServices
+RecoverMetaProcedure.master
+
 
 
 
@@ -883,17 +883,17 @@
 
 
 
-void
-MasterProcedureManagerHost.initialize(MasterServicesmaster,
-  MetricsMastermetricsMaster)
-
-
 abstract void
 MasterProcedureManager.initialize(MasterServicesmaster,
   MetricsMastermetricsMaster)
 Initialize a globally barriered procedure for master.
 
 
+
+void
+MasterProcedureManagerHost.initialize(MasterServicesmaster,
+  MetricsMastermetricsMaster)
+
 
 
 
@@ -971,19 +971,19 @@
 
 
 private MasterServices
-RSGroupAdminServer.master
+RSGroupAdminEndpoint.master
 
 
 private MasterServices
-RSGroupAdminEndpoint.master
+RSGroupAdminServer.master
 
 
 private MasterServices
-RSGroupBasedLoadBalancer.masterServices
+RSGroupInfoManagerImpl.masterServices
 
 
 private MasterServices
-RSGroupInfoManagerImpl.masterServices
+RSGroupBasedLoadBalancer.masterServices
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/master/class-use/MasterWalManager.html
--
diff --git 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Callback.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Callback.html
 
b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Callback.html
index 61695fd..bf8d672 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Callback.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/coprocessor/class-use/Batch.Callback.html
@@ -113,17 +113,17 @@
 
 
 
+private Batch.CallbackCResult
+AsyncRequestFutureImpl.callback
+
+
 private Batch.CallbackT
 AsyncProcessTask.callback
 
-
+
 private Batch.CallbackT
 AsyncProcessTask.Builder.callback
 
-
-private Batch.CallbackCResult
-AsyncRequestFutureImpl.callback
-
 
 
 
@@ -148,50 +148,42 @@
 
 
 Rvoid
-HTable.batchCallback(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">List? extends Rowactions,
- http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object[]results,
- Batch.CallbackRcallback)
-
-
-Rvoid
 Table.batchCallback(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">List? extends Rowactions,
  http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object[]results,
  Batch.CallbackRcallback)
 Same as Table.batch(List,
 Object[]), but with a callback.
 
 
+
+Rvoid
+HTable.batchCallback(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">List? extends Rowactions,
+ http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object[]results,
+ Batch.CallbackRcallback)
+
 
 R extends 
com.google.protobuf.Messagevoid
-HTable.batchCoprocessorService(com.google.protobuf.Descriptors.MethodDescriptormethodDescriptor,
+Table.batchCoprocessorService(com.google.protobuf.Descriptors.MethodDescriptormethodDescriptor,
com.google.protobuf.Messagerequest,
byte[]startKey,
byte[]endKey,
RresponsePrototype,
-   Batch.CallbackRcallback)
+   Batch.CallbackRcallback)
+Creates an instance of the given Service 
subclass for each table
+ region spanning the range from the startKey row to 
endKey row (inclusive), all
+ the invocations to the same region server will be batched into one call.
+
 
 
 R extends 
com.google.protobuf.Messagevoid
-Table.batchCoprocessorService(com.google.protobuf.Descriptors.MethodDescriptormethodDescriptor,
+HTable.batchCoprocessorService(com.google.protobuf.Descriptors.MethodDescriptormethodDescriptor,
com.google.protobuf.Messagerequest,
byte[]startKey,
byte[]endKey,
RresponsePrototype,
-   Batch.CallbackRcallback)
-Creates an instance of the given Service 
subclass for each table
- region spanning the range from the startKey row to 
endKey row (inclusive), all
- the invocations to the same region server will be batched into one call.
-
+   Batch.CallbackRcallback)
 
 
 T extends 
com.google.protobuf.Service,Rvoid
-HTable.coprocessorService(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true;
 title="class or interface in java.lang">ClassTservice,
-  byte[]startKey,
-  byte[]endKey,
-  Batch.CallT,Rcallable,
-  Batch.CallbackRcallback)
-
-
-T extends 
com.google.protobuf.Service,Rvoid
 Table.coprocessorService(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true;
 title="class or interface in java.lang">ClassTservice,
   byte[]startKey,
   byte[]endKey,
@@ -203,6 +195,14 @@
  with each Service instance.
 
 
+
+T extends 
com.google.protobuf.Service,Rvoid
+HTable.coprocessorService(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true;
 title="class or interface in java.lang">ClassTservice,
+  byte[]startKey,
+  byte[]endKey,
+  Batch.CallT,Rcallable,
+  Batch.CallbackRcallback)
+
 
 static Rvoid
 HTable.doBatchWithCallback(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">List? extends Rowactions,


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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.PushType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.PushType.html
 
b/devapidocs/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.PushType.html
index ed15d9b..3d03e17 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.PushType.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/procedure2/store/wal/WALProcedureStore.PushType.html
@@ -248,7 +248,7 @@ the order they are declared.
 
 
 values
-public staticWALProcedureStore.PushType[]values()
+public staticWALProcedureStore.PushType[]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:
@@ -268,7 +268,7 @@ for (WALProcedureStore.PushType c : 
WALProcedureStore.PushType.values())
 
 
 valueOf
-public staticWALProcedureStore.PushTypevalueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
+public staticWALProcedureStore.PushTypevalueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)
 Returns the enum constant of this type with the specified 
name.
 The string must match exactly an identifier used to declare an
 enum constant in this type.  (Extraneous whitespace characters are 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/procedure2/util/class-use/DelayedUtil.DelayedWithTimeout.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/procedure2/util/class-use/DelayedUtil.DelayedWithTimeout.html
 
b/devapidocs/org/apache/hadoop/hbase/procedure2/util/class-use/DelayedUtil.DelayedWithTimeout.html
index c6f6a46..5bd2115 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/procedure2/util/class-use/DelayedUtil.DelayedWithTimeout.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/procedure2/util/class-use/DelayedUtil.DelayedWithTimeout.html
@@ -141,11 +141,11 @@
 
 
 private http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/DelayQueue.html?is-external=true;
 title="class or interface in java.util.concurrent">DelayQueueDelayedUtil.DelayedWithTimeout
-ProcedureExecutor.TimeoutExecutorThread.queue
+RemoteProcedureDispatcher.TimeoutExecutorThread.queue
 
 
 private http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/DelayQueue.html?is-external=true;
 title="class or interface in java.util.concurrent">DelayQueueDelayedUtil.DelayedWithTimeout
-RemoteProcedureDispatcher.TimeoutExecutorThread.queue
+ProcedureExecutor.TimeoutExecutorThread.queue
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/quotas/class-use/MasterQuotaManager.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/quotas/class-use/MasterQuotaManager.html 
b/devapidocs/org/apache/hadoop/hbase/quotas/class-use/MasterQuotaManager.html
index 934c2fa..dd6045b 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/quotas/class-use/MasterQuotaManager.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/quotas/class-use/MasterQuotaManager.html
@@ -125,11 +125,11 @@
 
 
 MasterQuotaManager
-MasterServices.getMasterQuotaManager()
+HMaster.getMasterQuotaManager()
 
 
 MasterQuotaManager
-HMaster.getMasterQuotaManager()
+MasterServices.getMasterQuotaManager()
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/quotas/class-use/QuotaFilter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/quotas/class-use/QuotaFilter.html 
b/devapidocs/org/apache/hadoop/hbase/quotas/class-use/QuotaFilter.html
index a495cd1..d81fa5e 100644
--- a/devapidocs/org/apache/hadoop/hbase/quotas/class-use/QuotaFilter.html
+++ b/devapidocs/org/apache/hadoop/hbase/quotas/class-use/QuotaFilter.html
@@ -110,9 +110,7 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListQuotaSettings
-AsyncAdmin.getQuota(QuotaFilterfilter)
-List the quotas based on the filter.
-
+AsyncHBaseAdmin.getQuota(QuotaFilterfilter)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListQuotaSettings
@@ -121,16 +119,18 @@
 
 
 

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

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

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

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

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/MasterProcedureEnv.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/MasterProcedureEnv.html
 
b/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/MasterProcedureEnv.html
index 9c13a58..4d04e3e 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/MasterProcedureEnv.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/MasterProcedureEnv.html
@@ -133,11 +133,11 @@
 
 
 ProcedureExecutorMasterProcedureEnv
-MasterServices.getMasterProcedureExecutor()
+HMaster.getMasterProcedureExecutor()
 
 
 ProcedureExecutorMasterProcedureEnv
-HMaster.getMasterProcedureExecutor()
+MasterServices.getMasterProcedureExecutor()
 
 
 private RemoteProcedureDispatcher.RemoteProcedureMasterProcedureEnv,?
@@ -194,15 +194,15 @@
 
 
 protected Procedure.LockState
-GCRegionProcedure.acquireLock(MasterProcedureEnvenv)
+RegionTransitionProcedure.acquireLock(MasterProcedureEnvenv)
 
 
 protected Procedure.LockState
-MergeTableRegionsProcedure.acquireLock(MasterProcedureEnvenv)
+GCRegionProcedure.acquireLock(MasterProcedureEnvenv)
 
 
 protected Procedure.LockState
-RegionTransitionProcedure.acquireLock(MasterProcedureEnvenv)
+MergeTableRegionsProcedure.acquireLock(MasterProcedureEnvenv)
 
 
 protected boolean
@@ -295,7 +295,7 @@
 
 
 protected void
-AssignProcedure.finishTransition(MasterProcedureEnvenv,
+UnassignProcedure.finishTransition(MasterProcedureEnvenv,
 RegionStates.RegionStateNoderegionNode)
 
 
@@ -305,7 +305,7 @@
 
 
 protected void
-UnassignProcedure.finishTransition(MasterProcedureEnvenv,
+AssignProcedure.finishTransition(MasterProcedureEnvenv,
 RegionStates.RegionStateNoderegionNode)
 
 
@@ -314,7 +314,7 @@
 
 
 protected ProcedureMetrics
-AssignProcedure.getProcedureMetrics(MasterProcedureEnvenv)
+UnassignProcedure.getProcedureMetrics(MasterProcedureEnvenv)
 
 
 protected ProcedureMetrics
@@ -326,7 +326,7 @@
 
 
 protected ProcedureMetrics
-UnassignProcedure.getProcedureMetrics(MasterProcedureEnvenv)
+AssignProcedure.getProcedureMetrics(MasterProcedureEnvenv)
 
 
 (package private) static 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.GetRegionInfoResponse
@@ -357,7 +357,7 @@
 
 
 ServerName
-AssignProcedure.getServer(MasterProcedureEnvenv)
+UnassignProcedure.getServer(MasterProcedureEnvenv)
 
 
 abstract ServerName
@@ -367,7 +367,7 @@
 
 
 ServerName
-UnassignProcedure.getServer(MasterProcedureEnvenv)
+AssignProcedure.getServer(MasterProcedureEnvenv)
 
 
 private ServerName
@@ -384,19 +384,19 @@
 
 
 protected boolean
-MergeTableRegionsProcedure.hasLock(MasterProcedureEnvenv)
+RegionTransitionProcedure.hasLock(MasterProcedureEnvenv)
 
 
 protected boolean
-RegionTransitionProcedure.hasLock(MasterProcedureEnvenv)
+MergeTableRegionsProcedure.hasLock(MasterProcedureEnvenv)
 
 
 protected boolean
-MergeTableRegionsProcedure.holdLock(MasterProcedureEnvenv)
+RegionTransitionProcedure.holdLock(MasterProcedureEnvenv)
 
 
 protected boolean
-RegionTransitionProcedure.holdLock(MasterProcedureEnvenv)
+MergeTableRegionsProcedure.holdLock(MasterProcedureEnvenv)
 
 
 private boolean
@@ -510,15 +510,15 @@
 
 
 protected void
-MergeTableRegionsProcedure.releaseLock(MasterProcedureEnvenv)
+RegionTransitionProcedure.releaseLock(MasterProcedureEnvenv)
 
 
 protected void
-RegionTransitionProcedure.releaseLock(MasterProcedureEnvenv)
+MergeTableRegionsProcedure.releaseLock(MasterProcedureEnvenv)
 
 
 RemoteProcedureDispatcher.RemoteOperation
-AssignProcedure.remoteCallBuild(MasterProcedureEnvenv,
+UnassignProcedure.remoteCallBuild(MasterProcedureEnvenv,
ServerNameserverName)
 
 
@@ -528,12 +528,12 @@
 
 
 RemoteProcedureDispatcher.RemoteOperation
-UnassignProcedure.remoteCallBuild(MasterProcedureEnvenv,
+AssignProcedure.remoteCallBuild(MasterProcedureEnvenv,
ServerNameserverName)
 
 
 protected boolean
-AssignProcedure.remoteCallFailed(MasterProcedureEnvenv,
+UnassignProcedure.remoteCallFailed(MasterProcedureEnvenv,
 RegionStates.RegionStateNoderegionNode,
 http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in 
java.io">IOExceptionexception)
 
@@ -545,7 +545,7 @@
 
 
 protected boolean
-UnassignProcedure.remoteCallFailed(MasterProcedureEnvenv,
+AssignProcedure.remoteCallFailed(MasterProcedureEnvenv,
 RegionStates.RegionStateNoderegionNode,
 http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in 
java.io">IOExceptionexception)
 
@@ -566,10 +566,10 @@
 
 
 protected void
-AssignProcedure.reportTransition(MasterProcedureEnvenv,
+UnassignProcedure.reportTransition(MasterProcedureEnvenv,
 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/ProcedureStateSerializer.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/ProcedureStateSerializer.html
 
b/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/ProcedureStateSerializer.html
index 01a50f5..733e376 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/ProcedureStateSerializer.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/ProcedureStateSerializer.html
@@ -120,19 +120,19 @@
 
 
 protected void
-MoveRegionProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+UnassignProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-GCMergedRegionsProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+MoveRegionProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-AssignProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+GCRegionProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-GCRegionProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+GCMergedRegionsProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
@@ -144,23 +144,23 @@
 
 
 protected void
-UnassignProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+AssignProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-MoveRegionProcedure.serializeStateData(ProcedureStateSerializerserializer)
+UnassignProcedure.serializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-GCMergedRegionsProcedure.serializeStateData(ProcedureStateSerializerserializer)
+MoveRegionProcedure.serializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-AssignProcedure.serializeStateData(ProcedureStateSerializerserializer)
+GCRegionProcedure.serializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-GCRegionProcedure.serializeStateData(ProcedureStateSerializerserializer)
+GCMergedRegionsProcedure.serializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
@@ -172,7 +172,7 @@
 
 
 protected void
-UnassignProcedure.serializeStateData(ProcedureStateSerializerserializer)
+AssignProcedure.serializeStateData(ProcedureStateSerializerserializer)
 
 
 
@@ -212,115 +212,115 @@
 
 
 protected void
-CloneSnapshotProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+DeleteTableProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-DeleteTableProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+DisableTableProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-TruncateTableProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+DeleteNamespaceProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-DeleteNamespaceProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+CreateNamespaceProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-ServerCrashProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+EnableTableProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-DisableTableProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+CreateTableProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-RecoverMetaProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+ModifyNamespaceProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-CreateNamespaceProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+AbstractStateMachineRegionProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-AbstractStateMachineRegionProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+CloneSnapshotProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-EnableTableProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+ServerCrashProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-CreateTableProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+ModifyTableProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-ModifyNamespaceProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+RecoverMetaProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-ModifyTableProcedure.deserializeStateData(ProcedureStateSerializerserializer)
+RestoreSnapshotProcedure.deserializeStateData(ProcedureStateSerializerserializer)
 
 
 protected void
-RestoreSnapshotProcedure.deserializeStateData(ProcedureStateSerializerserializer)

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/client/class-use/RpcRetryingCallerFactory.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RpcRetryingCallerFactory.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RpcRetryingCallerFactory.html
index 5e1590b..d481372 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RpcRetryingCallerFactory.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RpcRetryingCallerFactory.html
@@ -126,15 +126,15 @@
 
 
 private RpcRetryingCallerFactory
-ConnectionImplementation.rpcCallerFactory
+RegionCoprocessorRpcChannel.rpcCallerFactory
 
 
 private RpcRetryingCallerFactory
-HTable.rpcCallerFactory
+ConnectionImplementation.rpcCallerFactory
 
 
 private RpcRetryingCallerFactory
-RegionCoprocessorRpcChannel.rpcCallerFactory
+HTable.rpcCallerFactory
 
 
 private RpcRetryingCallerFactory
@@ -155,21 +155,21 @@
 
 
 RpcRetryingCallerFactory
-ClusterConnection.getNewRpcRetryingCallerFactory(org.apache.hadoop.conf.Configurationconf)
-Returns a new RpcRetryingCallerFactory from the given 
Configuration.
-
+ConnectionImplementation.getNewRpcRetryingCallerFactory(org.apache.hadoop.conf.Configurationconf)
 
 
 RpcRetryingCallerFactory
-ConnectionImplementation.getNewRpcRetryingCallerFactory(org.apache.hadoop.conf.Configurationconf)
+ClusterConnection.getNewRpcRetryingCallerFactory(org.apache.hadoop.conf.Configurationconf)
+Returns a new RpcRetryingCallerFactory from the given 
Configuration.
+
 
 
 RpcRetryingCallerFactory
-ClusterConnection.getRpcRetryingCallerFactory()
+ConnectionImplementation.getRpcRetryingCallerFactory()
 
 
 RpcRetryingCallerFactory
-ConnectionImplementation.getRpcRetryingCallerFactory()
+ClusterConnection.getRpcRetryingCallerFactory()
 
 
 static RpcRetryingCallerFactory

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

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/ipc/class-use/PriorityFunction.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/PriorityFunction.html 
b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/PriorityFunction.html
index 5f7ce59..7244ce2 100644
--- a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/PriorityFunction.html
+++ b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/PriorityFunction.html
@@ -114,15 +114,15 @@
 
 
 private PriorityFunction
-RpcExecutor.priority
+SimpleRpcScheduler.priority
 
 
 private PriorityFunction
-RpcExecutor.CallPriorityComparator.priority
+RpcExecutor.priority
 
 
 private PriorityFunction
-SimpleRpcScheduler.priority
+RpcExecutor.CallPriorityComparator.priority
 
 
 
@@ -319,7 +319,7 @@
 
 
 RpcScheduler
-FifoRpcSchedulerFactory.create(org.apache.hadoop.conf.Configurationconf,
+RpcSchedulerFactory.create(org.apache.hadoop.conf.Configurationconf,
   PriorityFunctionpriority)
 Deprecated.
 
@@ -333,16 +333,18 @@
 
 
 RpcScheduler
-RpcSchedulerFactory.create(org.apache.hadoop.conf.Configurationconf,
+FifoRpcSchedulerFactory.create(org.apache.hadoop.conf.Configurationconf,
   PriorityFunctionpriority)
 Deprecated.
 
 
 
 RpcScheduler
-FifoRpcSchedulerFactory.create(org.apache.hadoop.conf.Configurationconf,
+RpcSchedulerFactory.create(org.apache.hadoop.conf.Configurationconf,
   PriorityFunctionpriority,
-  Abortableserver)
+  Abortableserver)
+Constructs a RpcScheduler.
+
 
 
 RpcScheduler
@@ -352,11 +354,9 @@
 
 
 RpcScheduler
-RpcSchedulerFactory.create(org.apache.hadoop.conf.Configurationconf,
+FifoRpcSchedulerFactory.create(org.apache.hadoop.conf.Configurationconf,
   PriorityFunctionpriority,
-  Abortableserver)
-Constructs a RpcScheduler.
-
+  Abortableserver)
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcCallback.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcCallback.html 
b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcCallback.html
index 6d59fb7..4a25f5c 100644
--- a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcCallback.html
+++ b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcCallback.html
@@ -123,13 +123,13 @@
 
 
 void
-RpcCallContext.setCallBack(RpcCallbackcallback)
-Sets a callback which has to be executed at the end of this 
RPC call.
-
+ServerCall.setCallBack(RpcCallbackcallback)
 
 
 void
-ServerCall.setCallBack(RpcCallbackcallback)
+RpcCallContext.setCallBack(RpcCallbackcallback)
+Sets a callback which has to be executed at the end of this 
RPC call.
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcControllerFactory.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcControllerFactory.html 
b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcControllerFactory.html
index baa4e5e..fab4d7a 100644
--- a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcControllerFactory.html
+++ b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcControllerFactory.html
@@ -131,24 +131,32 @@
 
 
 
-protected RpcControllerFactory
-RegionAdminServiceCallable.rpcControllerFactory
-
-
 private RpcControllerFactory
 ConnectionImplementation.rpcControllerFactory
 
+
+protected RpcControllerFactory
+ClientScanner.rpcControllerFactory
+
 
+protected RpcControllerFactory
+RegionAdminServiceCallable.rpcControllerFactory
+
+
 (package private) RpcControllerFactory
 AsyncConnectionImpl.rpcControllerFactory
 
-
+
 private RpcControllerFactory
 HTable.rpcControllerFactory
 
+
+private RpcControllerFactory
+HBaseAdmin.rpcControllerFactory
+
 
 private RpcControllerFactory
-RpcRetryingCallerWithReadReplicas.rpcControllerFactory
+SecureBulkLoadClient.rpcControllerFactory
 
 
 protected RpcControllerFactory
@@ -156,15 +164,7 @@
 
 
 private RpcControllerFactory
-HBaseAdmin.rpcControllerFactory
-
-
-private RpcControllerFactory
-SecureBulkLoadClient.rpcControllerFactory
-
-
-protected RpcControllerFactory
-ClientScanner.rpcControllerFactory
+RpcRetryingCallerWithReadReplicas.rpcControllerFactory
 
 
 (package private) RpcControllerFactory
@@ -181,11 +181,11 @@
 
 
 RpcControllerFactory
-ClusterConnection.getRpcControllerFactory()
+ConnectionImplementation.getRpcControllerFactory()
 
 
 RpcControllerFactory
-ConnectionImplementation.getRpcControllerFactory()
+ClusterConnection.getRpcControllerFactory()
 
 
 private RpcControllerFactory

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcExecutor.Handler.html
--
diff --git 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/Procedure.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/Procedure.html 
b/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/Procedure.html
index 554f69f..e901330 100644
--- a/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/Procedure.html
+++ b/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/Procedure.html
@@ -132,13 +132,13 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListProcedure?
-MasterServices.getProcedures()
-Get procedures
-
+HMaster.getProcedures()
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListProcedure?
-HMaster.getProcedures()
+MasterServices.getProcedures()
+Get procedures
+
 
 
 
@@ -531,20 +531,20 @@
 Procedureproc)
 
 
-boolean
-PeerQueue.requireExclusiveLock(Procedure?proc)
-
-
 (package private) abstract boolean
 Queue.requireExclusiveLock(Procedure?proc)
 
+
+boolean
+ServerQueue.requireExclusiveLock(Procedure?proc)
+
 
 boolean
-TableQueue.requireExclusiveLock(Procedure?proc)
+PeerQueue.requireExclusiveLock(Procedure?proc)
 
 
 boolean
-ServerQueue.requireExclusiveLock(Procedure?proc)
+TableQueue.requireExclusiveLock(Procedure?proc)
 
 
 static byte[]
@@ -920,44 +920,44 @@
 
 
 
-protected Procedure
-SimpleProcedureScheduler.dequeue()
-
-
 protected abstract Procedure
 AbstractProcedureScheduler.dequeue()
 Fetch one Procedure from the queue
  NOTE: this method is called with the sched lock held.
 
 
-
-protected Procedure[]
-SequentialProcedure.doExecute(TEnvironmentenv)
-
 
+protected Procedure
+SimpleProcedureScheduler.dequeue()
+
+
 protected ProcedureTEnvironment[]
 Procedure.doExecute(TEnvironmentenv)
 Internal method called by the ProcedureExecutor that starts 
the user-level code execute().
 
 
-
-protected ProcedureTEnvironment[]
-ProcedureExecutor.FailedProcedure.execute(TEnvironmentenv)
-
 
 protected Procedure[]
+SequentialProcedure.doExecute(TEnvironmentenv)
+
+
+protected Procedure[]
 StateMachineProcedure.execute(TEnvironmentenv)
 
+
+protected ProcedureTEnvironment[]
+ProcedureInMemoryChore.execute(TEnvironmentenv)
+
 
+protected ProcedureTEnvironment[]
+ProcedureExecutor.FailedProcedure.execute(TEnvironmentenv)
+
+
 protected abstract ProcedureTEnvironment[]
 Procedure.execute(TEnvironmentenv)
 The main code of the procedure.
 
 
-
-protected ProcedureTEnvironment[]
-ProcedureInMemoryChore.execute(TEnvironmentenv)
-
 
 Procedure?
 LockedResource.getExclusiveLockOwnerProcedure()
@@ -1115,14 +1115,14 @@
 
 
 void
-SimpleProcedureScheduler.completionCleanup(Procedureproc)
-
-
-void
 ProcedureScheduler.completionCleanup(Procedureproc)
 The procedure in execution completed.
 
 
+
+void
+SimpleProcedureScheduler.completionCleanup(Procedureproc)
+
 
 static 
org.apache.hadoop.hbase.shaded.protobuf.generated.ProcedureProtos.Procedure
 ProcedureUtil.convertToProtoProcedure(Procedureproc)
@@ -1135,17 +1135,17 @@
  Procedureprocedure)
 
 
-protected void
-SimpleProcedureScheduler.enqueue(Procedureprocedure,
-   booleanaddFront)
-
-
 protected abstract void
 AbstractProcedureScheduler.enqueue(Procedureprocedure,
booleanaddFront)
 Add the procedure to the queue.
 
 
+
+protected void
+SimpleProcedureScheduler.enqueue(Procedureprocedure,
+   booleanaddFront)
+
 
 private void
 ProcedureExecutor.execCompletionCleanup(Procedureproc)
@@ -1327,14 +1327,14 @@
 
 
 void
-SimpleProcedureScheduler.yield(Procedureproc)
-
-
-void
 ProcedureScheduler.yield(Procedureproc)
 The procedure can't run at the moment.
 
 
+
+void
+SimpleProcedureScheduler.yield(Procedureproc)
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/ProcedureEvent.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/ProcedureEvent.html 
b/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/ProcedureEvent.html
index a9a3870..5f35947 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/ProcedureEvent.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/ProcedureEvent.html
@@ -141,11 +141,11 @@
 
 
 ProcedureEvent?
-MasterServices.getInitializedEvent()
+HMaster.getInitializedEvent()
 
 
 ProcedureEvent?
-HMaster.getInitializedEvent()
+MasterServices.getInitializedEvent()
 
 
 ProcedureEvent?

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/procedure2/class-use/ProcedureExecutor.html
--
diff --git 

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/PeerProcedureInterface.PeerOperationType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/PeerProcedureInterface.PeerOperationType.html
 
b/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/PeerProcedureInterface.PeerOperationType.html
index 3628d68..bd2f966 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/PeerProcedureInterface.PeerOperationType.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/PeerProcedureInterface.PeerOperationType.html
@@ -152,27 +152,27 @@ the order they are declared.
 
 
 PeerProcedureInterface.PeerOperationType
-RefreshPeerProcedure.getPeerOperationType()
+DisablePeerProcedure.getPeerOperationType()
 
 
 PeerProcedureInterface.PeerOperationType
-DisablePeerProcedure.getPeerOperationType()
+RemovePeerProcedure.getPeerOperationType()
 
 
 PeerProcedureInterface.PeerOperationType
-UpdatePeerConfigProcedure.getPeerOperationType()
+EnablePeerProcedure.getPeerOperationType()
 
 
 PeerProcedureInterface.PeerOperationType
-AddPeerProcedure.getPeerOperationType()
+RefreshPeerProcedure.getPeerOperationType()
 
 
 PeerProcedureInterface.PeerOperationType
-EnablePeerProcedure.getPeerOperationType()
+AddPeerProcedure.getPeerOperationType()
 
 
 PeerProcedureInterface.PeerOperationType
-RemovePeerProcedure.getPeerOperationType()
+UpdatePeerConfigProcedure.getPeerOperationType()
 
 
 private static PeerProcedureInterface.PeerOperationType

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/ProcedurePrepareLatch.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/ProcedurePrepareLatch.html
 
b/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/ProcedurePrepareLatch.html
index 269bc46..f7a6279 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/ProcedurePrepareLatch.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/ProcedurePrepareLatch.html
@@ -125,11 +125,11 @@
 
 
 private ProcedurePrepareLatch
-RecoverMetaProcedure.syncLatch
+AbstractStateMachineTableProcedure.syncLatch
 
 
 private ProcedurePrepareLatch
-AbstractStateMachineTableProcedure.syncLatch
+RecoverMetaProcedure.syncLatch
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/ServerProcedureInterface.ServerOperationType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/ServerProcedureInterface.ServerOperationType.html
 
b/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/ServerProcedureInterface.ServerOperationType.html
index 5e8085c..8b6ceb7 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/ServerProcedureInterface.ServerOperationType.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/ServerProcedureInterface.ServerOperationType.html
@@ -104,14 +104,14 @@
 
 
 ServerProcedureInterface.ServerOperationType
-ServerCrashProcedure.getServerOperationType()
-
-
-ServerProcedureInterface.ServerOperationType
 ServerProcedureInterface.getServerOperationType()
 Given an operation type we can take decisions about what to 
do with pending operations.
 
 
+
+ServerProcedureInterface.ServerOperationType
+ServerCrashProcedure.getServerOperationType()
+
 
 static ServerProcedureInterface.ServerOperationType
 ServerProcedureInterface.ServerOperationType.valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringname)

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/TableProcedureInterface.TableOperationType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/TableProcedureInterface.TableOperationType.html
 
b/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/TableProcedureInterface.TableOperationType.html
index 046295e..e736f37 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/TableProcedureInterface.TableOperationType.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/TableProcedureInterface.TableOperationType.html
@@ -112,19 +112,19 @@
 
 
 TableProcedureInterface.TableOperationType
-MoveRegionProcedure.getTableOperationType()
+UnassignProcedure.getTableOperationType()
 
 
 TableProcedureInterface.TableOperationType
-GCMergedRegionsProcedure.getTableOperationType()

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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/HRegion.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/HRegion.html 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/HRegion.html
index 9856943..36977cd 100644
--- a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/HRegion.html
+++ b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/HRegion.html
@@ -257,31 +257,23 @@
 
 
 private HRegion
-MemStoreFlusher.FlushRegionEntry.region
+MetricsRegionWrapperImpl.region
 
 
 private HRegion
-RegionServerServices.PostOpenDeployContext.region
+RegionServicesForStores.region
 
 
 private HRegion
 CompactSplit.CompactionRunner.region
 
 
-protected HRegion
-FlushPolicy.region
-The region configured for this flush policy.
+(package private) HRegion
+RegionCoprocessorHost.region
+The region
 
 
 
-private HRegion
-RegionServicesForStores.region
-
-
-private HRegion
-MetricsRegionWrapperImpl.region
-
-
 protected HRegion
 RegionSplitPolicy.region
 The region configured for this split policy.
@@ -296,19 +288,27 @@
 HRegion.RegionScannerImpl.region
 
 
-(package private) HRegion
-RegionCoprocessorHost.region
-The region
-
+private HRegion
+RegionServerServices.PostOpenDeployContext.region
 
 
-protected HRegion
-HStore.region
+private HRegion
+MemStoreFlusher.FlushRegionEntry.region
 
 
+protected HRegion
+FlushPolicy.region
+The region configured for this flush policy.
+
+
+
 private HRegion
 BusyRegionSplitPolicy.region
 
+
+protected HRegion
+HStore.region
+
 
 
 
@@ -563,14 +563,14 @@
 
 
 void
-HRegionServer.addRegion(HRegionregion)
-
-
-void
 MutableOnlineRegions.addRegion(HRegionr)
 Add to online regions.
 
 
+
+void
+HRegionServer.addRegion(HRegionregion)
+
 
 private RSRpcServices.RegionScannerHolder
 RSRpcServices.addScanner(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringscannerName,
@@ -624,57 +624,57 @@
 
 
 protected void
-FlushPolicy.configureForRegion(HRegionregion)
-Upon construction, this method will be called with the 
region to be governed.
-
+KeyPrefixRegionSplitPolicy.configureForRegion(HRegionregion)
 
 
 protected void
-FlushAllLargeStoresPolicy.configureForRegion(HRegionregion)
+RegionSplitPolicy.configureForRegion(HRegionregion)
+Upon construction, this method will be called with the 
region
+ to be governed.
+
 
 
 protected void
-ConstantSizeRegionSplitPolicy.configureForRegion(HRegionregion)
+DelimitedKeyPrefixRegionSplitPolicy.configureForRegion(HRegionregion)
 
 
 protected void
-RegionSplitPolicy.configureForRegion(HRegionregion)
-Upon construction, this method will be called with the 
region
- to be governed.
-
+IncreasingToUpperBoundRegionSplitPolicy.configureForRegion(HRegionregion)
 
 
 protected void
-FlushNonSloppyStoresFirstPolicy.configureForRegion(HRegionregion)
+FlushAllLargeStoresPolicy.configureForRegion(HRegionregion)
 
 
 protected void
-DelimitedKeyPrefixRegionSplitPolicy.configureForRegion(HRegionregion)
+FlushPolicy.configureForRegion(HRegionregion)
+Upon construction, this method will be called with the 
region to be governed.
+
 
 
 protected void
-KeyPrefixRegionSplitPolicy.configureForRegion(HRegionregion)
+ConstantSizeRegionSplitPolicy.configureForRegion(HRegionregion)
 
 
 protected void
-IncreasingToUpperBoundRegionSplitPolicy.configureForRegion(HRegionregion)
+FlushNonSloppyStoresFirstPolicy.configureForRegion(HRegionregion)
 
 
 protected void
 BusyRegionSplitPolicy.configureForRegion(HRegionregion)
 
 
-static RegionSplitPolicy
-RegionSplitPolicy.create(HRegionregion,
+static FlushPolicy
+FlushPolicyFactory.create(HRegionregion,
   org.apache.hadoop.conf.Configurationconf)
-Create the RegionSplitPolicy configured for the given 
table.
+Create the FlushPolicy configured for the given table.
 
 
 
-static FlushPolicy
-FlushPolicyFactory.create(HRegionregion,
+static RegionSplitPolicy
+RegionSplitPolicy.create(HRegionregion,
   org.apache.hadoop.conf.Configurationconf)
-Create the FlushPolicy configured for the given table.
+Create the RegionSplitPolicy configured for the given 
table.
 
 
 
@@ -766,13 +766,13 @@
 
 
 protected void
-ReversedRegionScannerImpl.initializeKVHeap(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScannerscanners,
+HRegion.RegionScannerImpl.initializeKVHeap(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScannerscanners,
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScannerjoinedScanners,
 HRegionregion)
 
 
 protected void

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

2018-02-16 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site b8cb82420 -> 94208cfe6


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/RegionServerServices.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/RegionServerServices.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/RegionServerServices.html
index 48ae316..278cf20 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/RegionServerServices.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/RegionServerServices.html
@@ -154,11 +154,11 @@
 
 
 private RegionServerServices
-LogRollBackupSubprocedure.rss
+LogRollRegionServerProcedureManager.rss
 
 
 private RegionServerServices
-LogRollRegionServerProcedureManager.rss
+LogRollBackupSubprocedure.rss
 
 
 
@@ -294,15 +294,15 @@
 
 
 
+void
+RegionServerProcedureManagerHost.initialize(RegionServerServicesrss)
+
+
 abstract void
 RegionServerProcedureManager.initialize(RegionServerServicesrss)
 Initialize a globally barriered procedure for region 
servers.
 
 
-
-void
-RegionServerProcedureManagerHost.initialize(RegionServerServicesrss)
-
 
 
 
@@ -357,15 +357,15 @@
 
 
 private RegionServerServices
-QuotaCache.rsServices
+RegionServerSpaceQuotaManager.rsServices
 
 
 private RegionServerServices
-RegionServerRpcQuotaManager.rsServices
+QuotaCache.rsServices
 
 
 private RegionServerServices
-RegionServerSpaceQuotaManager.rsServices
+RegionServerRpcQuotaManager.rsServices
 
 
 
@@ -527,43 +527,43 @@
 
 
 
-private RegionServerServices
-CompactedHFilesDischarger.regionServerServices
-
-
 (package private) RegionServerServices
 RegionServerCoprocessorHost.RegionServerEnvironmentForCoreCoprocessors.regionServerServices
 
+
+private RegionServerServices
+CompactedHFilesDischarger.regionServerServices
+
 
 private RegionServerServices
 RegionServerCoprocessorHost.rsServices
 
 
 (package private) RegionServerServices
-HRegion.rsServices
-
-
-(package private) RegionServerServices
 RegionCoprocessorHost.rsServices
 The region server services
 
 
-
+
 private RegionServerServices
 RegionCoprocessorHost.RegionEnvironmentForCoreCoprocessors.rsServices
 
+
+(package private) RegionServerServices
+HRegion.rsServices
+
 
 private RegionServerServices
 SplitLogWorker.server
 
 
-protected RegionServerServices
-LogRoller.services
-
-
 private RegionServerServices
 RegionServerCoprocessorHost.RegionServerEnvironment.services
 
+
+protected RegionServerServices
+LogRoller.services
+
 
 private RegionServerServices
 RegionCoprocessorHost.RegionEnvironment.services
@@ -582,13 +582,13 @@
 RegionServerCoprocessorHost.RegionServerEnvironmentForCoreCoprocessors.getRegionServerServices()
 
 
-(package private) RegionServerServices
-HRegion.getRegionServerServices()
-
-
 RegionServerServices
 RegionCoprocessorHost.RegionEnvironmentForCoreCoprocessors.getRegionServerServices()
 
+
+(package private) RegionServerServices
+HRegion.getRegionServerServices()
+
 
 
 
@@ -788,13 +788,13 @@
 
 
 
-private RegionServerServices
-CloseRegionHandler.rsServices
-
-
 protected RegionServerServices
 OpenRegionHandler.rsServices
 
+
+private RegionServerServices
+CloseRegionHandler.rsServices
+
 
 private RegionServerServices
 OpenRegionHandler.PostOpenDeployTasksThread.services
@@ -929,19 +929,17 @@
 
 
 static ThroughputController
-CompactionThroughputControllerFactory.create(RegionServerServicesserver,
+FlushThroughputControllerFactory.create(RegionServerServicesserver,
   org.apache.hadoop.conf.Configurationconf)
 
 
 static ThroughputController
-FlushThroughputControllerFactory.create(RegionServerServicesserver,
+CompactionThroughputControllerFactory.create(RegionServerServicesserver,
   org.apache.hadoop.conf.Configurationconf)
 
 
 void
-ThroughputController.setup(RegionServerServicesserver)
-Setup controller for the given region server.
-
+PressureAwareFlushThroughputController.setup(RegionServerServicesserver)
 
 
 void
@@ -953,11 +951,13 @@
 
 
 void
-PressureAwareFlushThroughputController.setup(RegionServerServicesserver)
+NoLimitThroughputController.setup(RegionServerServicesserver)
 
 
 void
-NoLimitThroughputController.setup(RegionServerServicesserver)
+ThroughputController.setup(RegionServerServicesserver)
+Setup controller for the given region server.
+
 
 
 



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

2018-02-16 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/94208cfe/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/HStoreFile.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/HStoreFile.html 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/HStoreFile.html
index 75077a6..5da3ef8 100644
--- a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/HStoreFile.html
+++ b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/HStoreFile.html
@@ -521,33 +521,33 @@
 
 
 
-org.apache.hbase.thirdparty.com.google.common.collect.ImmutableCollectionHStoreFile
-StripeStoreFileManager.clearCompactedFiles()
-
-
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true;
 title="class or interface in java.util">CollectionHStoreFile
 DefaultStoreFileManager.clearCompactedFiles()
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true;
 title="class or interface in java.util">CollectionHStoreFile
 StoreFileManager.clearCompactedFiles()
 Clears all the compacted files and returns them.
 
 
-
+
 org.apache.hbase.thirdparty.com.google.common.collect.ImmutableCollectionHStoreFile
-StripeStoreFileManager.clearFiles()
+StripeStoreFileManager.clearCompactedFiles()
 
-
+
 org.apache.hbase.thirdparty.com.google.common.collect.ImmutableCollectionHStoreFile
 DefaultStoreFileManager.clearFiles()
 
-
+
 org.apache.hbase.thirdparty.com.google.common.collect.ImmutableCollectionHStoreFile
 StoreFileManager.clearFiles()
 Clears all the files currently in use and returns 
them.
 
 
+
+org.apache.hbase.thirdparty.com.google.common.collect.ImmutableCollectionHStoreFile
+StripeStoreFileManager.clearFiles()
+
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">Mapbyte[],http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListHStoreFile
 HRegion.close()
@@ -597,36 +597,36 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true;
 title="class or interface in java.util">IteratorHStoreFile
-StripeStoreFileManager.getCandidateFilesForRowKeyBefore(KeyValuetargetKey)
-See StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue)
- for details on this methods.
-
+DefaultStoreFileManager.getCandidateFilesForRowKeyBefore(KeyValuetargetKey)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true;
 title="class or interface in java.util">IteratorHStoreFile
-DefaultStoreFileManager.getCandidateFilesForRowKeyBefore(KeyValuetargetKey)
+StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValuetargetKey)
+Gets initial, full list of candidate store files to check 
for row-key-before.
+
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true;
 title="class or interface in java.util">IteratorHStoreFile
-StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValuetargetKey)
-Gets initial, full list of candidate store files to check 
for row-key-before.
+StripeStoreFileManager.getCandidateFilesForRowKeyBefore(KeyValuetargetKey)
+See StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue)
+ for details on this methods.
 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true;
 title="class or interface in java.util">CollectionHStoreFile
-StripeStoreFileManager.getCompactedfiles()
-
-
-http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true;
 title="class or interface in java.util">CollectionHStoreFile
 DefaultStoreFileManager.getCompactedfiles()
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true;
 title="class or interface in java.util">CollectionHStoreFile
 StoreFileManager.getCompactedfiles()
 List of compacted files inside this store that needs to be 
excluded in reads
  because further new reads will be using only the newly created files out of 
compaction.
 
 
+
+http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true;
 title="class or interface in java.util">CollectionHStoreFile
+StripeStoreFileManager.getCompactedfiles()
+
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true;
 title="class or interface in java.util">CollectionHStoreFile
 HStore.getCompactedFiles()
@@ -637,26 +637,26 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true;
 title="class or interface in java.util">CollectionHStoreFile
-StripeStoreFileManager.getFilesForScan(byte[]startRow,
+DefaultStoreFileManager.getFilesForScan(byte[]startRow,
booleanincludeStartRow,
byte[]stopRow,
booleanincludeStopRow)
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true;
 title="class or interface in 

[4/4] hbase git commit: HBASE-19991 hbase-rest test fail against h3

2018-02-16 Thread mdrob
HBASE-19991 hbase-rest test fail against h3


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

Branch: refs/heads/master
Commit: 0d6acfa0cf878172ef63d4c5900293f95c0a0fea
Parents: 8cf7a9d
Author: Mike Drob 
Authored: Tue Feb 13 14:35:26 2018 -0600
Committer: Mike Drob 
Committed: Fri Feb 16 09:12:15 2018 -0600

--
 hbase-rest/pom.xml |  6 
 pom.xml| 86 -
 2 files changed, 85 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/0d6acfa0/hbase-rest/pom.xml
--
diff --git a/hbase-rest/pom.xml b/hbase-rest/pom.xml
index d4ab0b4..e70e596 100644
--- a/hbase-rest/pom.xml
+++ b/hbase-rest/pom.xml
@@ -411,12 +411,6 @@
   org.apache.hadoop
   hadoop-mapreduce-client-core
   test
-  
-
-  com.google.guava
-  guava
-
-  
 
 
   org.apache.hadoop

http://git-wip-us.apache.org/repos/asf/hbase/blob/0d6acfa0/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 1cb5082..d33478a 100755
--- a/pom.xml
+++ b/pom.xml
@@ -1417,6 +1417,7 @@
 9.2.19.v20160908
 3.1.0
 2.0.1
+
 2.25.1
 2.3.2
 3.0.1-b08
@@ -2502,6 +2503,7 @@
   
 org.apache.hadoop
 hadoop-hdfs
+${hadoop-two.version}
 
   
 org.apache.htrace
@@ -2540,7 +2542,6 @@
 guava
   
 
-${hadoop-two.version}
   
   
 org.apache.hadoop
@@ -2735,6 +2736,10 @@
 org.codehaus.jackson
 jackson-mapper-asl
   
+ 
+   com.google.guava
+   guava
+ 

  
  
@@ -2775,6 +2780,10 @@
jersey-core
  
  
+   com.sun.jersey
+   jersey-server
+ 
+ 
javax.servlet.jsp
jsp-api
  
@@ -2843,6 +2852,24 @@
com.google.guava
guava
  
+ 
+   com.sun.jersey
+   jersey-core
+ 
+   
+ 
+ 
+   org.apache.hadoop
+   hadoop-hdfs
+   ${hadoop-three.version}
+   test-jar
+   tests
+   test
+   
+ 
+   com.sun.jersey
+   jersey-core
+ 

  
  
@@ -2917,6 +2944,19 @@
  
  
org.apache.hadoop
+   hadoop-common
+   test-jar
+   tests
+   ${hadoop-three.version}
+   
+ 
+   com.sun.jersey
+   jersey-core
+ 
+   
+ 
+ 
+   org.apache.hadoop
hadoop-client
${hadoop-three.version}
  
@@ -2963,6 +3003,50 @@

  
  
+   org.apache.hadoop
+   hadoop-yarn-server-nodemanager
+   ${hadoop-three.version}
+   
+ 
+   com.sun.jersey
+   jersey-core
+ 
+   
+ 
+ 
+   org.apache.hadoop
+   hadoop-yarn-server-resourcemanager
+   ${hadoop-three.version}
+   
+ 
+   com.sun.jersey
+   jersey-core
+ 
+   
+ 
+ 
+   org.apache.hadoop
+   hadoop-yarn-server-timelineservice
+   ${hadoop-three.version}
+   
+ 
+   javax.ws.rs
+   jsr311-api
+ 
+   
+ 
+ 
+   org.apache.hadoop
+   hadoop-yarn-common
+   ${hadoop-three.version}
+   
+ 
+   com.sun.jersey
+   jersey-core
+ 
+   
+ 
+ 
 org.apache.hadoop
 hadoop-minikdc
 ${hadoop-three.version}



[2/4] hbase git commit: HBASE-19920 Lazy init for ProtobufUtil classloader

2018-02-16 Thread mdrob
HBASE-19920 Lazy init for ProtobufUtil classloader


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

Branch: refs/heads/branch-2
Commit: 138f82c8c57aeeb953d537114b02c2e8ca21c4c5
Parents: 70d3413
Author: Mike Drob 
Authored: Thu Feb 8 16:12:46 2018 -0600
Committer: Mike Drob 
Committed: Fri Feb 16 09:11:45 2018 -0600

--
 .../hbase/ipc/RemoteWithExtrasException.java| 23 --
 .../hadoop/hbase/protobuf/ProtobufUtil.java | 30 
 .../hbase/shaded/protobuf/ProtobufUtil.java | 35 ++---
 .../hadoop/hbase/security/token/TokenUtil.java  | 13 +++-
 .../hbase/security/token/TestTokenUtil.java | 80 
 5 files changed, 146 insertions(+), 35 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/138f82c8/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RemoteWithExtrasException.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RemoteWithExtrasException.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RemoteWithExtrasException.java
index 1374ab0..3a7540e 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RemoteWithExtrasException.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RemoteWithExtrasException.java
@@ -19,6 +19,8 @@ package org.apache.hadoop.hbase.ipc;
 
 import java.io.IOException;
 import java.lang.reflect.Constructor;
+import java.security.AccessController;
+import java.security.PrivilegedAction;
 
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.hbase.DoNotRetryIOException;
@@ -36,19 +38,24 @@ import org.apache.hadoop.ipc.RemoteException;
  */
 @SuppressWarnings("serial")
 @InterfaceAudience.Public
-@edu.umd.cs.findbugs.annotations.SuppressWarnings(
-value = "DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED", justification = 
"None. Address sometime.")
 public class RemoteWithExtrasException extends RemoteException {
   private final String hostname;
   private final int port;
   private final boolean doNotRetry;
 
-  private final static ClassLoader CLASS_LOADER;
+  /**
+   * Dynamic class loader to load filter/comparators
+   */
+  private final static class ClassLoaderHolder {
+private final static ClassLoader CLASS_LOADER;
 
-  static {
-ClassLoader parent = RemoteWithExtrasException.class.getClassLoader();
-Configuration conf = HBaseConfiguration.create();
-CLASS_LOADER = new DynamicClassLoader(conf, parent);
+static {
+  ClassLoader parent = RemoteWithExtrasException.class.getClassLoader();
+  Configuration conf = HBaseConfiguration.create();
+  CLASS_LOADER = 
AccessController.doPrivileged((PrivilegedAction)
+() -> new DynamicClassLoader(conf, parent)
+  );
+}
   }
 
   public RemoteWithExtrasException(String className, String msg, final boolean 
doNotRetry) {
@@ -69,7 +76,7 @@ public class RemoteWithExtrasException extends 
RemoteException {
 try {
   // try to load a exception class from where the HBase classes are loaded 
or from Dynamic
   // classloader.
-  realClass = Class.forName(getClassName(), false, CLASS_LOADER);
+  realClass = Class.forName(getClassName(), false, 
ClassLoaderHolder.CLASS_LOADER);
 } catch (ClassNotFoundException cnfe) {
   try {
 // cause could be a hadoop exception, try to load from hadoop classpath

http://git-wip-us.apache.org/repos/asf/hbase/blob/138f82c8/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/ProtobufUtil.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/ProtobufUtil.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/ProtobufUtil.java
index 54837dc..3033da7 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/ProtobufUtil.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/ProtobufUtil.java
@@ -31,6 +31,8 @@ import com.google.protobuf.TextFormat;
 import java.io.IOException;
 import java.lang.reflect.Constructor;
 import java.lang.reflect.Method;
+import java.security.AccessController;
+import java.security.PrivilegedAction;
 import java.util.ArrayList;
 import java.util.List;
 import java.util.Map;
@@ -113,8 +115,6 @@ import org.apache.yetus.audience.InterfaceAudience;
  * @see ProtobufUtil
  */
 // TODO: Generate this class from the shaded version.
-@edu.umd.cs.findbugs.annotations.SuppressWarnings(
-  value="DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED", justification="None. 
Address sometime.")
 

[3/4] hbase git commit: HBASE-19920 Lazy init for ProtobufUtil classloader

2018-02-16 Thread mdrob
HBASE-19920 Lazy init for ProtobufUtil classloader


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

Branch: refs/heads/master
Commit: 8cf7a9d51ee92444e5e2c730045d2289ea97e82a
Parents: 9497eac
Author: Mike Drob 
Authored: Thu Feb 8 16:12:46 2018 -0600
Committer: Mike Drob 
Committed: Fri Feb 16 09:12:15 2018 -0600

--
 .../hbase/ipc/RemoteWithExtrasException.java| 23 --
 .../hadoop/hbase/protobuf/ProtobufUtil.java | 30 
 .../hbase/shaded/protobuf/ProtobufUtil.java | 35 ++---
 .../hadoop/hbase/security/token/TokenUtil.java  | 13 +++-
 .../hbase/security/token/TestTokenUtil.java | 80 
 5 files changed, 146 insertions(+), 35 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/8cf7a9d5/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RemoteWithExtrasException.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RemoteWithExtrasException.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RemoteWithExtrasException.java
index 1374ab0..3a7540e 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RemoteWithExtrasException.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RemoteWithExtrasException.java
@@ -19,6 +19,8 @@ package org.apache.hadoop.hbase.ipc;
 
 import java.io.IOException;
 import java.lang.reflect.Constructor;
+import java.security.AccessController;
+import java.security.PrivilegedAction;
 
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.hbase.DoNotRetryIOException;
@@ -36,19 +38,24 @@ import org.apache.hadoop.ipc.RemoteException;
  */
 @SuppressWarnings("serial")
 @InterfaceAudience.Public
-@edu.umd.cs.findbugs.annotations.SuppressWarnings(
-value = "DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED", justification = 
"None. Address sometime.")
 public class RemoteWithExtrasException extends RemoteException {
   private final String hostname;
   private final int port;
   private final boolean doNotRetry;
 
-  private final static ClassLoader CLASS_LOADER;
+  /**
+   * Dynamic class loader to load filter/comparators
+   */
+  private final static class ClassLoaderHolder {
+private final static ClassLoader CLASS_LOADER;
 
-  static {
-ClassLoader parent = RemoteWithExtrasException.class.getClassLoader();
-Configuration conf = HBaseConfiguration.create();
-CLASS_LOADER = new DynamicClassLoader(conf, parent);
+static {
+  ClassLoader parent = RemoteWithExtrasException.class.getClassLoader();
+  Configuration conf = HBaseConfiguration.create();
+  CLASS_LOADER = 
AccessController.doPrivileged((PrivilegedAction)
+() -> new DynamicClassLoader(conf, parent)
+  );
+}
   }
 
   public RemoteWithExtrasException(String className, String msg, final boolean 
doNotRetry) {
@@ -69,7 +76,7 @@ public class RemoteWithExtrasException extends 
RemoteException {
 try {
   // try to load a exception class from where the HBase classes are loaded 
or from Dynamic
   // classloader.
-  realClass = Class.forName(getClassName(), false, CLASS_LOADER);
+  realClass = Class.forName(getClassName(), false, 
ClassLoaderHolder.CLASS_LOADER);
 } catch (ClassNotFoundException cnfe) {
   try {
 // cause could be a hadoop exception, try to load from hadoop classpath

http://git-wip-us.apache.org/repos/asf/hbase/blob/8cf7a9d5/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/ProtobufUtil.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/ProtobufUtil.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/ProtobufUtil.java
index 29ff2a2..3c01fd6 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/ProtobufUtil.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/protobuf/ProtobufUtil.java
@@ -33,6 +33,8 @@ import com.google.protobuf.TextFormat;
 import java.io.IOException;
 import java.lang.reflect.Constructor;
 import java.lang.reflect.Method;
+import java.security.AccessController;
+import java.security.PrivilegedAction;
 import java.util.ArrayList;
 import java.util.List;
 import java.util.Map;
@@ -114,8 +116,6 @@ import org.apache.yetus.audience.InterfaceAudience;
  * @see ProtobufUtil
  */
 // TODO: Generate this class from the shaded version.
-@edu.umd.cs.findbugs.annotations.SuppressWarnings(
-  value="DP_CREATE_CLASSLOADER_INSIDE_DO_PRIVILEGED", justification="None. 
Address sometime.")
 

[1/4] hbase git commit: HBASE-19991 hbase-rest test fail against h3

2018-02-16 Thread mdrob
Repository: hbase
Updated Branches:
  refs/heads/branch-2 70d3413ee -> 33212cf6c
  refs/heads/master 9497eac4e -> 0d6acfa0c


HBASE-19991 hbase-rest test fail against h3


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

Branch: refs/heads/branch-2
Commit: 33212cf6c84e6d6fec7489ef6168f9af2ce8cc5a
Parents: 138f82c
Author: Mike Drob 
Authored: Tue Feb 13 14:35:26 2018 -0600
Committer: Mike Drob 
Committed: Fri Feb 16 09:11:45 2018 -0600

--
 hbase-rest/pom.xml |  6 
 pom.xml| 86 -
 2 files changed, 85 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/33212cf6/hbase-rest/pom.xml
--
diff --git a/hbase-rest/pom.xml b/hbase-rest/pom.xml
index c7af9f5..0d6b2ce 100644
--- a/hbase-rest/pom.xml
+++ b/hbase-rest/pom.xml
@@ -411,12 +411,6 @@
   org.apache.hadoop
   hadoop-mapreduce-client-core
   test
-  
-
-  com.google.guava
-  guava
-
-  
 
 
   org.apache.hadoop

http://git-wip-us.apache.org/repos/asf/hbase/blob/33212cf6/pom.xml
--
diff --git a/pom.xml b/pom.xml
index f3b13df..715f2eb 100755
--- a/pom.xml
+++ b/pom.xml
@@ -1322,6 +1322,7 @@
 9.2.19.v20160908
 3.1.0
 2.0.1
+
 2.25.1
 2.3.2
 3.0.1-b08
@@ -2385,6 +2386,7 @@
   
 org.apache.hadoop
 hadoop-hdfs
+${hadoop-two.version}
 
   
 org.apache.htrace
@@ -2423,7 +2425,6 @@
 guava
   
 
-${hadoop-two.version}
   
   
 org.apache.hadoop
@@ -2618,6 +2619,10 @@
 org.codehaus.jackson
 jackson-mapper-asl
   
+ 
+   com.google.guava
+   guava
+ 

  
  
@@ -2658,6 +2663,10 @@
jersey-core
  
  
+   com.sun.jersey
+   jersey-server
+ 
+ 
javax.servlet.jsp
jsp-api
  
@@ -2726,6 +2735,24 @@
com.google.guava
guava
  
+ 
+   com.sun.jersey
+   jersey-core
+ 
+   
+ 
+ 
+   org.apache.hadoop
+   hadoop-hdfs
+   ${hadoop-three.version}
+   test-jar
+   tests
+   test
+   
+ 
+   com.sun.jersey
+   jersey-core
+ 

  
  
@@ -2800,6 +2827,19 @@
  
  
org.apache.hadoop
+   hadoop-common
+   test-jar
+   tests
+   ${hadoop-three.version}
+   
+ 
+   com.sun.jersey
+   jersey-core
+ 
+   
+ 
+ 
+   org.apache.hadoop
hadoop-client
${hadoop-three.version}
  
@@ -2846,6 +2886,50 @@

  
  
+   org.apache.hadoop
+   hadoop-yarn-server-nodemanager
+   ${hadoop-three.version}
+   
+ 
+   com.sun.jersey
+   jersey-core
+ 
+   
+ 
+ 
+   org.apache.hadoop
+   hadoop-yarn-server-resourcemanager
+   ${hadoop-three.version}
+   
+ 
+   com.sun.jersey
+   jersey-core
+ 
+   
+ 
+ 
+   org.apache.hadoop
+   hadoop-yarn-server-timelineservice
+   ${hadoop-three.version}
+   
+ 
+   javax.ws.rs
+   jsr311-api
+ 
+   
+ 
+ 
+   org.apache.hadoop
+   hadoop-yarn-common
+   ${hadoop-three.version}
+   
+ 
+   com.sun.jersey
+   jersey-core
+ 
+   
+ 
+ 
 org.apache.hadoop
 hadoop-minikdc
 ${hadoop-three.version}



hbase git commit: HBASE-19988 Fixed chatty log from HRegion#lockRowsAndBuildMiniBatch() when interrupted while waiting on a row lock

2018-02-16 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/master 40f8d20cf -> 9497eac4e


HBASE-19988 Fixed chatty log from HRegion#lockRowsAndBuildMiniBatch() when 
interrupted while waiting on a row lock


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

Branch: refs/heads/master
Commit: 9497eac4e01a12acfa6660b5b16e73a45bcf5707
Parents: 40f8d20
Author: Umesh Agashe 
Authored: Mon Feb 12 17:49:47 2018 -0800
Committer: Michael Stack 
Committed: Fri Feb 16 07:01:56 2018 -0800

--
 .../java/org/apache/hadoop/hbase/regionserver/HRegion.java | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/9497eac4/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
index 0fffe88..6170888 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
@@ -3166,8 +3166,10 @@ public class HRegion implements HeapSize, 
PropagatingConfigurationObserver, Regi
 try {
   // if atomic then get exclusive lock, else shared lock
   rowLock = region.getRowLockInternal(mutation.getRow(), !isAtomic(), 
prevRowLock);
-} catch (TimeoutIOException e) {
-  // We will retry when other exceptions, but we should stop if we 
timeout .
+} catch (TimeoutIOException|InterruptedIOException e) {
+  // NOTE: We will retry when other exceptions, but we should stop if 
we receive
+  // TimeoutIOException or InterruptedIOException as operation has 
timed out or
+  // interrupted respectively.
   throw e;
 } catch (IOException ioe) {
   LOG.warn("Failed getting lock, row=" + 
Bytes.toStringBinary(mutation.getRow()), ioe);



hbase git commit: HBASE-19988 Fixed chatty log from HRegion#lockRowsAndBuildMiniBatch() when interrupted while waiting on a row lock

2018-02-16 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-2 9f27fdaff -> 70d3413ee


HBASE-19988 Fixed chatty log from HRegion#lockRowsAndBuildMiniBatch() when 
interrupted while waiting on a row lock


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

Branch: refs/heads/branch-2
Commit: 70d3413ee23198baeddbe4b1e40f961bdbcf56fc
Parents: 9f27fda
Author: Umesh Agashe 
Authored: Mon Feb 12 17:49:47 2018 -0800
Committer: Michael Stack 
Committed: Fri Feb 16 07:01:23 2018 -0800

--
 .../java/org/apache/hadoop/hbase/regionserver/HRegion.java | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/70d3413e/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
index 0fffe88..6170888 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HRegion.java
@@ -3166,8 +3166,10 @@ public class HRegion implements HeapSize, 
PropagatingConfigurationObserver, Regi
 try {
   // if atomic then get exclusive lock, else shared lock
   rowLock = region.getRowLockInternal(mutation.getRow(), !isAtomic(), 
prevRowLock);
-} catch (TimeoutIOException e) {
-  // We will retry when other exceptions, but we should stop if we 
timeout .
+} catch (TimeoutIOException|InterruptedIOException e) {
+  // NOTE: We will retry when other exceptions, but we should stop if 
we receive
+  // TimeoutIOException or InterruptedIOException as operation has 
timed out or
+  // interrupted respectively.
   throw e;
 } catch (IOException ioe) {
   LOG.warn("Failed getting lock, row=" + 
Bytes.toStringBinary(mutation.getRow()), ioe);