[hbase] Git Push Summary

2017-12-28 Thread stack
Repository: hbase
Updated Tags:  refs/tags/2.0.0-beta-1-RC0 [created] 5ecc9c4e2


hbase git commit: HBASE-19282: Making CellChunkMap the default index (CellSet delegatee) for ImmutableSegments, when MSLAB is used.

2017-12-28 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-2 b4e3798bb -> 0907563eb


HBASE-19282: Making CellChunkMap the default index (CellSet delegatee) for 
ImmutableSegments, when MSLAB is used.

In order to avoid additional user settings. If no MSLAB is requested the index 
is going to be CellArrayMap

Signed-off-by: Anastasia Braginsky 
Signed-off-by: Michael Stack 


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

Branch: refs/heads/branch-2
Commit: 0907563eb72697b394b8b960fe54887d6ff304fd
Parents: b4e3798
Author: anastas 
Authored: Thu Dec 28 22:44:06 2017 +0200
Committer: Michael Stack 
Committed: Thu Dec 28 16:49:56 2017 -0800

--
 .../hbase/regionserver/CompactingMemStore.java  | 45 
 .../hbase/regionserver/MemStoreLABImpl.java | 18 +---
 .../regionserver/TestCompactingMemStore.java|  1 +
 .../TestCompactingToCellFlatMapMemStore.java| 45 
 .../TestWalAndCompactingMemStoreFlush.java  |  9 +++-
 5 files changed, 66 insertions(+), 52 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/0907563e/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CompactingMemStore.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CompactingMemStore.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CompactingMemStore.java
index 94cc0b4..d874b2e 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CompactingMemStore.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CompactingMemStore.java
@@ -58,16 +58,10 @@ public class CompactingMemStore extends AbstractMemStore {
   "hbase.hregion.compacting.memstore.type";
   public static final String COMPACTING_MEMSTORE_TYPE_DEFAULT =
   String.valueOf(MemoryCompactionPolicy.BASIC);
-  // The external setting of the compacting MemStore behaviour
-  public static final String COMPACTING_MEMSTORE_INDEX_KEY =
-  "hbase.hregion.compacting.memstore.index";
-  // usage of CellArrayMap is default, later it will be decided how to use 
CellChunkMap
-  public static final String COMPACTING_MEMSTORE_INDEX_DEFAULT =
-  String.valueOf(IndexType.ARRAY_MAP);
   // Default fraction of in-memory-flush size w.r.t. flush-to-disk size
   public static final String IN_MEMORY_FLUSH_THRESHOLD_FACTOR_KEY =
   "hbase.memstore.inmemoryflush.threshold.factor";
-  private static final double IN_MEMORY_FLUSH_THRESHOLD_FACTOR_DEFAULT = 0.02;
+  private static final double IN_MEMORY_FLUSH_THRESHOLD_FACTOR_DEFAULT = 0.1;
 
   private static final Logger LOG = 
LoggerFactory.getLogger(CompactingMemStore.class);
   private HStore store;
@@ -114,9 +108,16 @@ public class CompactingMemStore extends AbstractMemStore {
 this.regionServices = regionServices;
 this.pipeline = new CompactionPipeline(getRegionServices());
 this.compactor = createMemStoreCompactor(compactionPolicy);
+if (conf.getBoolean(MemStoreLAB.USEMSLAB_KEY, 
MemStoreLAB.USEMSLAB_DEFAULT)) {
+  // if user requested to work with MSLABs (whether on- or off-heap), then 
the
+  // immutable segments are going to use CellChunkMap as their index
+  indexType = IndexType.CHUNK_MAP;
+} else {
+  indexType = IndexType.ARRAY_MAP;
+}
+// initialization of the flush size should happen after initialization of 
the index type
+// so do not transfer the following method
 initInmemoryFlushSize(conf);
-indexType = 
IndexType.valueOf(conf.get(CompactingMemStore.COMPACTING_MEMSTORE_INDEX_KEY,
-CompactingMemStore.COMPACTING_MEMSTORE_INDEX_DEFAULT));
   }
 
   @VisibleForTesting
@@ -126,6 +127,7 @@ public class CompactingMemStore extends AbstractMemStore {
   }
 
   private void initInmemoryFlushSize(Configuration conf) {
+double factor = 0;
 long memstoreFlushSize = getRegionServices().getMemStoreFlushSize();
 int numStores = getRegionServices().getNumStores();
 if (numStores <= 1) {
@@ -133,11 +135,17 @@ public class CompactingMemStore extends AbstractMemStore {
   numStores = 1;
 }
 inmemoryFlushSize = memstoreFlushSize / numStores;
-// multiply by a factor
-double factor =  conf.getDouble(IN_MEMORY_FLUSH_THRESHOLD_FACTOR_KEY,
-IN_MEMORY_FLUSH_THRESHOLD_FACTOR_DEFAULT);
+// multiply by a factor (different factors for different index types)
+if (indexType == IndexType.ARRAY_MAP) {
+  factor = conf.getDouble(IN_MEMORY_FLUSH_THRESHOLD_FACTOR_KEY,
+  IN_MEMORY_FLUSH_THRESHOLD_FACTOR_DEFAULT);
+} else {
+  factor = conf

hbase git commit: HBASE-19282: Making CellChunkMap the default index (CellSet delegatee) for ImmutableSegments, when MSLAB is used.

2017-12-28 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/master b3a4fca48 -> 8d0da1a77


HBASE-19282: Making CellChunkMap the default index (CellSet delegatee) for 
ImmutableSegments, when MSLAB is used.

In order to avoid additional user settings. If no MSLAB is requested the index 
is going to be CellArrayMap

Signed-off-by: Anastasia Braginsky 
Signed-off-by: Michael Stack 


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

Branch: refs/heads/master
Commit: 8d0da1a77f50b730b366c28b5b477141aa83cc55
Parents: b3a4fca
Author: anastas 
Authored: Thu Dec 28 22:44:06 2017 +0200
Committer: Michael Stack 
Committed: Thu Dec 28 16:26:38 2017 -0800

--
 .../hbase/regionserver/CompactingMemStore.java  | 45 
 .../hbase/regionserver/MemStoreLABImpl.java |  7 +--
 .../regionserver/TestCompactingMemStore.java|  1 +
 .../TestCompactingToCellFlatMapMemStore.java| 45 
 .../TestWalAndCompactingMemStoreFlush.java  |  9 +++-
 5 files changed, 57 insertions(+), 50 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/8d0da1a7/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CompactingMemStore.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CompactingMemStore.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CompactingMemStore.java
index 94cc0b4..d874b2e 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CompactingMemStore.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CompactingMemStore.java
@@ -58,16 +58,10 @@ public class CompactingMemStore extends AbstractMemStore {
   "hbase.hregion.compacting.memstore.type";
   public static final String COMPACTING_MEMSTORE_TYPE_DEFAULT =
   String.valueOf(MemoryCompactionPolicy.BASIC);
-  // The external setting of the compacting MemStore behaviour
-  public static final String COMPACTING_MEMSTORE_INDEX_KEY =
-  "hbase.hregion.compacting.memstore.index";
-  // usage of CellArrayMap is default, later it will be decided how to use 
CellChunkMap
-  public static final String COMPACTING_MEMSTORE_INDEX_DEFAULT =
-  String.valueOf(IndexType.ARRAY_MAP);
   // Default fraction of in-memory-flush size w.r.t. flush-to-disk size
   public static final String IN_MEMORY_FLUSH_THRESHOLD_FACTOR_KEY =
   "hbase.memstore.inmemoryflush.threshold.factor";
-  private static final double IN_MEMORY_FLUSH_THRESHOLD_FACTOR_DEFAULT = 0.02;
+  private static final double IN_MEMORY_FLUSH_THRESHOLD_FACTOR_DEFAULT = 0.1;
 
   private static final Logger LOG = 
LoggerFactory.getLogger(CompactingMemStore.class);
   private HStore store;
@@ -114,9 +108,16 @@ public class CompactingMemStore extends AbstractMemStore {
 this.regionServices = regionServices;
 this.pipeline = new CompactionPipeline(getRegionServices());
 this.compactor = createMemStoreCompactor(compactionPolicy);
+if (conf.getBoolean(MemStoreLAB.USEMSLAB_KEY, 
MemStoreLAB.USEMSLAB_DEFAULT)) {
+  // if user requested to work with MSLABs (whether on- or off-heap), then 
the
+  // immutable segments are going to use CellChunkMap as their index
+  indexType = IndexType.CHUNK_MAP;
+} else {
+  indexType = IndexType.ARRAY_MAP;
+}
+// initialization of the flush size should happen after initialization of 
the index type
+// so do not transfer the following method
 initInmemoryFlushSize(conf);
-indexType = 
IndexType.valueOf(conf.get(CompactingMemStore.COMPACTING_MEMSTORE_INDEX_KEY,
-CompactingMemStore.COMPACTING_MEMSTORE_INDEX_DEFAULT));
   }
 
   @VisibleForTesting
@@ -126,6 +127,7 @@ public class CompactingMemStore extends AbstractMemStore {
   }
 
   private void initInmemoryFlushSize(Configuration conf) {
+double factor = 0;
 long memstoreFlushSize = getRegionServices().getMemStoreFlushSize();
 int numStores = getRegionServices().getNumStores();
 if (numStores <= 1) {
@@ -133,11 +135,17 @@ public class CompactingMemStore extends AbstractMemStore {
   numStores = 1;
 }
 inmemoryFlushSize = memstoreFlushSize / numStores;
-// multiply by a factor
-double factor =  conf.getDouble(IN_MEMORY_FLUSH_THRESHOLD_FACTOR_KEY,
-IN_MEMORY_FLUSH_THRESHOLD_FACTOR_DEFAULT);
+// multiply by a factor (different factors for different index types)
+if (indexType == IndexType.ARRAY_MAP) {
+  factor = conf.getDouble(IN_MEMORY_FLUSH_THRESHOLD_FACTOR_KEY,
+  IN_MEMORY_FLUSH_THRESHOLD_FACTOR_DEFAULT);
+} else {
+  factor = conf.getDoubl

hbase git commit: HBASE-19660 Up default retries from 10 to 15 and blocking store files limit from 10 to 16

2017-12-28 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-2 581f168f6 -> b4e3798bb


HBASE-19660 Up default retries from 10 to 15 and blocking store files limit 
from 10 to 16


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

Branch: refs/heads/branch-2
Commit: b4e3798bb9133ce1f13de3ac0dec40ca3aaac31a
Parents: 581f168
Author: Michael Stack 
Authored: Thu Dec 28 14:59:40 2017 -0800
Committer: Michael Stack 
Committed: Thu Dec 28 15:02:23 2017 -0800

--
 .../src/main/java/org/apache/hadoop/hbase/HConstants.java| 2 +-
 hbase-common/src/main/resources/hbase-default.xml| 4 ++--
 .../main/java/org/apache/hadoop/hbase/regionserver/HStore.java   | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/b4e3798b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
--
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
index 3fa93cd..188d9b3 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
@@ -790,7 +790,7 @@ public final class HConstants {
   /**
* Default value of {@link #HBASE_CLIENT_RETRIES_NUMBER}.
*/
-  public static final int DEFAULT_HBASE_CLIENT_RETRIES_NUMBER = 10;
+  public static final int DEFAULT_HBASE_CLIENT_RETRIES_NUMBER = 15;
 
   public static final String HBASE_CLIENT_SERVERSIDE_RETRIES_MULTIPLIER =
   "hbase.client.serverside.retries.multiplier";

http://git-wip-us.apache.org/repos/asf/hbase/blob/b4e3798b/hbase-common/src/main/resources/hbase-default.xml
--
diff --git a/hbase-common/src/main/resources/hbase-default.xml 
b/hbase-common/src/main/resources/hbase-default.xml
index df46fb4..134d4ea 100644
--- a/hbase-common/src/main/resources/hbase-default.xml
+++ b/hbase-common/src/main/resources/hbase-default.xml
@@ -506,7 +506,7 @@ possible configurations would overwhelm and obscure the 
important.
   
   
 hbase.client.retries.number
-10
+15
 Maximum retries.  Used as maximum for all retryable
 operations such as the getting of a cell's value, starting a row update,
 etc.  Retry interval is a rough function based on hbase.client.pause.  At
@@ -737,7 +737,7 @@ possible configurations would overwhelm and obscure the 
important.
   
   
 hbase.hstore.blockingStoreFiles
-10
+16
  If more than this number of StoreFiles exist in any one 
Store (one StoreFile
  is written per flush of MemStore), updates are blocked for this region 
until a compaction is
   completed, or until hbase.hstore.blockingWaitTime has been 
exceeded.

http://git-wip-us.apache.org/repos/asf/hbase/blob/b4e3798b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
index 5e6db76..269ecbd 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
@@ -132,7 +132,7 @@ public class HStore implements Store, HeapSize, 
StoreConfigInformation, Propagat
   // keep in accordance with HDFS default storage policy
   public static final String DEFAULT_BLOCK_STORAGE_POLICY = "HOT";
   public static final int DEFAULT_COMPACTCHECKER_INTERVAL_MULTIPLIER = 1000;
-  public static final int DEFAULT_BLOCKING_STOREFILE_COUNT = 10;
+  public static final int DEFAULT_BLOCKING_STOREFILE_COUNT = 16;
 
   private static final Logger LOG = LoggerFactory.getLogger(HStore.class);
 



hbase git commit: HBASE-19660 Up default retries from 10 to 15 and blocking store files limit from 10 to 16

2017-12-28 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/master 9d02e37a8 -> b3a4fca48


HBASE-19660 Up default retries from 10 to 15 and blocking store files limit 
from 10 to 16


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

Branch: refs/heads/master
Commit: b3a4fca48ffcac44ec1e1d53a99caa18b7e14cbf
Parents: 9d02e37
Author: Michael Stack 
Authored: Thu Dec 28 14:59:40 2017 -0800
Committer: Michael Stack 
Committed: Thu Dec 28 14:59:40 2017 -0800

--
 .../src/main/java/org/apache/hadoop/hbase/HConstants.java| 2 +-
 hbase-common/src/main/resources/hbase-default.xml| 4 ++--
 .../main/java/org/apache/hadoop/hbase/regionserver/HStore.java   | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/b3a4fca4/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
--
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
index bc6f975..d09f722 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/HConstants.java
@@ -776,7 +776,7 @@ public final class HConstants {
   /**
* Default value of {@link #HBASE_CLIENT_RETRIES_NUMBER}.
*/
-  public static final int DEFAULT_HBASE_CLIENT_RETRIES_NUMBER = 10;
+  public static final int DEFAULT_HBASE_CLIENT_RETRIES_NUMBER = 15;
 
   public static final String HBASE_CLIENT_SERVERSIDE_RETRIES_MULTIPLIER =
   "hbase.client.serverside.retries.multiplier";

http://git-wip-us.apache.org/repos/asf/hbase/blob/b3a4fca4/hbase-common/src/main/resources/hbase-default.xml
--
diff --git a/hbase-common/src/main/resources/hbase-default.xml 
b/hbase-common/src/main/resources/hbase-default.xml
index 8a34bad..bfae33c 100644
--- a/hbase-common/src/main/resources/hbase-default.xml
+++ b/hbase-common/src/main/resources/hbase-default.xml
@@ -506,7 +506,7 @@ possible configurations would overwhelm and obscure the 
important.
   
   
 hbase.client.retries.number
-10
+15
 Maximum retries.  Used as maximum for all retryable
 operations such as the getting of a cell's value, starting a row update,
 etc.  Retry interval is a rough function based on hbase.client.pause.  At
@@ -737,7 +737,7 @@ possible configurations would overwhelm and obscure the 
important.
   
   
 hbase.hstore.blockingStoreFiles
-10
+16
  If more than this number of StoreFiles exist in any one 
Store (one StoreFile
  is written per flush of MemStore), updates are blocked for this region 
until a compaction is
   completed, or until hbase.hstore.blockingWaitTime has been 
exceeded.

http://git-wip-us.apache.org/repos/asf/hbase/blob/b3a4fca4/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
index 5e6db76..269ecbd 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
@@ -132,7 +132,7 @@ public class HStore implements Store, HeapSize, 
StoreConfigInformation, Propagat
   // keep in accordance with HDFS default storage policy
   public static final String DEFAULT_BLOCK_STORAGE_POLICY = "HOT";
   public static final int DEFAULT_COMPACTCHECKER_INTERVAL_MULTIPLIER = 1000;
-  public static final int DEFAULT_BLOCKING_STOREFILE_COUNT = 10;
+  public static final int DEFAULT_BLOCKING_STOREFILE_COUNT = 16;
 
   private static final Logger LOG = LoggerFactory.getLogger(HStore.class);
 



[2/2] hbase git commit: HBASE-19659 Enable -x in make_rc.sh so logs where it is in execution

2017-12-28 Thread stack
HBASE-19659 Enable -x in make_rc.sh so logs where it is in execution


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

Branch: refs/heads/master
Commit: 9d02e37a8a46d81d20f98b9703934ba3f1a8cd42
Parents: 2dae9d1
Author: Michael Stack 
Authored: Thu Dec 28 14:31:12 2017 -0800
Committer: Michael Stack 
Committed: Thu Dec 28 14:31:54 2017 -0800

--
 dev-support/make_rc.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/9d02e37a/dev-support/make_rc.sh
--
diff --git a/dev-support/make_rc.sh b/dev-support/make_rc.sh
index 19f906f..8bfdde2 100755
--- a/dev-support/make_rc.sh
+++ b/dev-support/make_rc.sh
@@ -26,7 +26,7 @@
 # Presumes that dev-support/generate-hadoopX-poms.sh has already been run.
 # Presumes your settings.xml all set up so can sign artifacts published to 
mvn, etc.
 
-set -e
+set -e -x
 
 # Script checks out a tag, cleans the checkout and then builds src and bin
 # tarballs. It then deploys to the apache maven repository.



[1/2] hbase git commit: Revert "HBASE-19651 Remove LimitInputStream"

2017-12-28 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/master b3f353cd3 -> 9d02e37a8


Revert "HBASE-19651 Remove LimitInputStream"

This reverts commit 28eaf715e890d0491efce9dbdc126946deb25566.


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

Branch: refs/heads/master
Commit: 2dae9d16e2fb4558c92e64e8c091fcfd086c48b9
Parents: b3f353c
Author: Michael Stack 
Authored: Thu Dec 28 14:14:54 2017 -0800
Committer: Michael Stack 
Committed: Thu Dec 28 14:31:44 2017 -0800

--
 .../hbase/shaded/protobuf/ProtobufUtil.java |   4 +-
 .../hadoop/hbase/io/LimitInputStream.java   | 105 +++
 .../regionserver/wal/ProtobufLogReader.java |  10 +-
 3 files changed, 112 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/2dae9d16/hbase-client/src/main/java/org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
index cc30e53..7a5efb1 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
@@ -38,7 +38,6 @@ import java.util.function.Function;
 import java.util.regex.Pattern;
 import java.util.stream.Collectors;
 
-import org.apache.commons.io.input.BoundedInputStream;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.fs.Path;
 import org.apache.hadoop.hbase.ByteBufferExtendedCell;
@@ -88,6 +87,7 @@ import 
org.apache.hadoop.hbase.client.security.SecurityCapability;
 import org.apache.hadoop.hbase.exceptions.DeserializationException;
 import org.apache.hadoop.hbase.filter.ByteArrayComparable;
 import org.apache.hadoop.hbase.filter.Filter;
+import org.apache.hadoop.hbase.io.LimitInputStream;
 import org.apache.hadoop.hbase.io.TimeRange;
 import org.apache.hadoop.hbase.protobuf.ProtobufMagic;
 import org.apache.hadoop.hbase.protobuf.ProtobufMessageConverter;
@@ -2626,7 +2626,7 @@ public final class ProtobufUtil {
 final int firstByte = in.read();
 if (firstByte != -1) {
   final int size = CodedInputStream.readRawVarint32(firstByte, in);
-  final InputStream limitedInput = new BoundedInputStream(in, size);
+  final InputStream limitedInput = new LimitInputStream(in, size);
   final CodedInputStream codedInput = 
CodedInputStream.newInstance(limitedInput);
   codedInput.setSizeLimit(size);
   builder.mergeFrom(codedInput);

http://git-wip-us.apache.org/repos/asf/hbase/blob/2dae9d16/hbase-common/src/main/java/org/apache/hadoop/hbase/io/LimitInputStream.java
--
diff --git 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/io/LimitInputStream.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/io/LimitInputStream.java
new file mode 100644
index 000..6eb710a
--- /dev/null
+++ 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/io/LimitInputStream.java
@@ -0,0 +1,105 @@
+/*
+ * Copyright (C) 2007 The Guava Authors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+package org.apache.hadoop.hbase.io;
+
+import static 
org.apache.hbase.thirdparty.com.google.common.base.Preconditions.checkArgument;
+import static 
org.apache.hbase.thirdparty.com.google.common.base.Preconditions.checkNotNull;
+
+import java.io.FilterInputStream;
+import java.io.IOException;
+import java.io.InputStream;
+
+import org.apache.yetus.audience.InterfaceAudience;
+
+/**
+ * Copied from guava source code v15 (LimitedInputStream)
+ * Guava deprecated LimitInputStream in v14 and removed it in v15. Copying 
this class here
+ * allows to be compatible with guava 11 to 15+.
+ */
+@InterfaceAudience.Private
+public final class LimitInputStream extends FilterInputStream {
+  private long left;
+  private long mark = -1;
+
+  public LimitInputStream(InputStream in, long limit) {
+super(in);
+checkNotNull(in);
+checkArgument(li

hbase git commit: HBASE-19659 Enable -x in make_rc.sh so logs where it is in execution

2017-12-28 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-2 d4aeba89f -> 581f168f6


HBASE-19659 Enable -x in make_rc.sh so logs where it is in execution


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

Branch: refs/heads/branch-2
Commit: 581f168f6eea8a626f7d7e9d4a0e0087c064d73f
Parents: d4aeba8
Author: Michael Stack 
Authored: Thu Dec 28 14:31:12 2017 -0800
Committer: Michael Stack 
Committed: Thu Dec 28 14:31:28 2017 -0800

--
 dev-support/make_rc.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/581f168f/dev-support/make_rc.sh
--
diff --git a/dev-support/make_rc.sh b/dev-support/make_rc.sh
index 19f906f..8bfdde2 100755
--- a/dev-support/make_rc.sh
+++ b/dev-support/make_rc.sh
@@ -26,7 +26,7 @@
 # Presumes that dev-support/generate-hadoopX-poms.sh has already been run.
 # Presumes your settings.xml all set up so can sign artifacts published to 
mvn, etc.
 
-set -e
+set -e -x
 
 # Script checks out a tag, cleans the checkout and then builds src and bin
 # tarballs. It then deploys to the apache maven repository.



[1/2] hbase git commit: HBASE-19552 ADDENDUM fix shaded lib check

2017-12-28 Thread mdrob
Repository: hbase
Updated Branches:
  refs/heads/branch-2 a8ef734dd -> d4aeba89f
  refs/heads/master 28eaf715e -> b3f353cd3


HBASE-19552 ADDENDUM fix shaded lib check


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

Branch: refs/heads/branch-2
Commit: d4aeba89f4cefadbc9a29711f06101eb69d0e58d
Parents: a8ef734
Author: Mike Drob 
Authored: Thu Dec 28 16:22:22 2017 -0600
Committer: Mike Drob 
Committed: Thu Dec 28 16:22:22 2017 -0600

--
 .../src/test/resources/ensure-jars-have-correct-contents.sh| 2 ++
 1 file changed, 2 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/d4aeba89/hbase-shaded/hbase-shaded-check-invariants/src/test/resources/ensure-jars-have-correct-contents.sh
--
diff --git 
a/hbase-shaded/hbase-shaded-check-invariants/src/test/resources/ensure-jars-have-correct-contents.sh
 
b/hbase-shaded/hbase-shaded-check-invariants/src/test/resources/ensure-jars-have-correct-contents.sh
index 7c64baa..8bda8ce 100644
--- 
a/hbase-shaded/hbase-shaded-check-invariants/src/test/resources/ensure-jars-have-correct-contents.sh
+++ 
b/hbase-shaded/hbase-shaded-check-invariants/src/test/resources/ensure-jars-have-correct-contents.sh
@@ -28,6 +28,8 @@ allowed_expr="(^org/$|^org/apache/$"
 #   * classes in packages that start with org.apache.hadoop, which by
 # convention should be in a path that looks like org/apache/hadoop
 allowed_expr+="|^org/apache/hadoop/"
+#   * classes in packages that start with org.apache.hbase
+allowed_expr+="|^org/apache/hbase/"
 #   * whatever in the "META-INF" directory
 allowed_expr+="|^META-INF/"
 #   * the folding tables from jcodings



[2/2] hbase git commit: HBASE-19552 ADDENDUM fix shaded lib check

2017-12-28 Thread mdrob
HBASE-19552 ADDENDUM fix shaded lib check


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

Branch: refs/heads/master
Commit: b3f353cd3ce6bd1ad5ed8c1e9dc390a33d62ce0e
Parents: 28eaf71
Author: Mike Drob 
Authored: Thu Dec 28 16:22:22 2017 -0600
Committer: Mike Drob 
Committed: Thu Dec 28 16:28:36 2017 -0600

--
 .../src/test/resources/ensure-jars-have-correct-contents.sh| 2 ++
 1 file changed, 2 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/b3f353cd/hbase-shaded/hbase-shaded-check-invariants/src/test/resources/ensure-jars-have-correct-contents.sh
--
diff --git 
a/hbase-shaded/hbase-shaded-check-invariants/src/test/resources/ensure-jars-have-correct-contents.sh
 
b/hbase-shaded/hbase-shaded-check-invariants/src/test/resources/ensure-jars-have-correct-contents.sh
index 7c64baa..8bda8ce 100644
--- 
a/hbase-shaded/hbase-shaded-check-invariants/src/test/resources/ensure-jars-have-correct-contents.sh
+++ 
b/hbase-shaded/hbase-shaded-check-invariants/src/test/resources/ensure-jars-have-correct-contents.sh
@@ -28,6 +28,8 @@ allowed_expr="(^org/$|^org/apache/$"
 #   * classes in packages that start with org.apache.hadoop, which by
 # convention should be in a path that looks like org/apache/hadoop
 allowed_expr+="|^org/apache/hadoop/"
+#   * classes in packages that start with org.apache.hbase
+allowed_expr+="|^org/apache/hbase/"
 #   * whatever in the "META-INF" directory
 allowed_expr+="|^META-INF/"
 #   * the folding tables from jcodings



hbase git commit: HBASE-19651 Remove LimitInputStream Signed-off-by: Beluga Behr

2017-12-28 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-2 d8775d08a -> a8ef734dd


HBASE-19651 Remove LimitInputStream
Signed-off-by: Beluga Behr 


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

Branch: refs/heads/branch-2
Commit: a8ef734dddb656de6210218065e67791686b7bd0
Parents: d8775d0
Author: Michael Stack 
Authored: Thu Dec 28 13:04:41 2017 -0800
Committer: Michael Stack 
Committed: Thu Dec 28 13:08:46 2017 -0800

--
 .../hbase/shaded/protobuf/ProtobufUtil.java |   4 +-
 .../hadoop/hbase/io/LimitInputStream.java   | 105 ---
 .../regionserver/wal/ProtobufLogReader.java |  10 +-
 3 files changed, 7 insertions(+), 112 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/a8ef734d/hbase-client/src/main/java/org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
index 7a5efb1..cc30e53 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
@@ -38,6 +38,7 @@ import java.util.function.Function;
 import java.util.regex.Pattern;
 import java.util.stream.Collectors;
 
+import org.apache.commons.io.input.BoundedInputStream;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.fs.Path;
 import org.apache.hadoop.hbase.ByteBufferExtendedCell;
@@ -87,7 +88,6 @@ import 
org.apache.hadoop.hbase.client.security.SecurityCapability;
 import org.apache.hadoop.hbase.exceptions.DeserializationException;
 import org.apache.hadoop.hbase.filter.ByteArrayComparable;
 import org.apache.hadoop.hbase.filter.Filter;
-import org.apache.hadoop.hbase.io.LimitInputStream;
 import org.apache.hadoop.hbase.io.TimeRange;
 import org.apache.hadoop.hbase.protobuf.ProtobufMagic;
 import org.apache.hadoop.hbase.protobuf.ProtobufMessageConverter;
@@ -2626,7 +2626,7 @@ public final class ProtobufUtil {
 final int firstByte = in.read();
 if (firstByte != -1) {
   final int size = CodedInputStream.readRawVarint32(firstByte, in);
-  final InputStream limitedInput = new LimitInputStream(in, size);
+  final InputStream limitedInput = new BoundedInputStream(in, size);
   final CodedInputStream codedInput = 
CodedInputStream.newInstance(limitedInput);
   codedInput.setSizeLimit(size);
   builder.mergeFrom(codedInput);

http://git-wip-us.apache.org/repos/asf/hbase/blob/a8ef734d/hbase-common/src/main/java/org/apache/hadoop/hbase/io/LimitInputStream.java
--
diff --git 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/io/LimitInputStream.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/io/LimitInputStream.java
deleted file mode 100644
index 6eb710a..000
--- 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/io/LimitInputStream.java
+++ /dev/null
@@ -1,105 +0,0 @@
-/*
- * Copyright (C) 2007 The Guava Authors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-package org.apache.hadoop.hbase.io;
-
-import static 
org.apache.hbase.thirdparty.com.google.common.base.Preconditions.checkArgument;
-import static 
org.apache.hbase.thirdparty.com.google.common.base.Preconditions.checkNotNull;
-
-import java.io.FilterInputStream;
-import java.io.IOException;
-import java.io.InputStream;
-
-import org.apache.yetus.audience.InterfaceAudience;
-
-/**
- * Copied from guava source code v15 (LimitedInputStream)
- * Guava deprecated LimitInputStream in v14 and removed it in v15. Copying 
this class here
- * allows to be compatible with guava 11 to 15+.
- */
-@InterfaceAudience.Private
-public final class LimitInputStream extends FilterInputStream {
-  private long left;
-  private long mark = -1;
-
-  public LimitInputStream(InputStream in, long limit) {
-super(in);
-checkNotNull(in);
-checkArgument(limit >= 0, "limit must be non-negativ

hbase git commit: HBASE-19651 Remove LimitInputStream Signed-off-by: Beluga Behr

2017-12-28 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/master 0c4b520d9 -> 28eaf715e


HBASE-19651 Remove LimitInputStream
Signed-off-by: Beluga Behr 


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

Branch: refs/heads/master
Commit: 28eaf715e890d0491efce9dbdc126946deb25566
Parents: 0c4b520
Author: Michael Stack 
Authored: Thu Dec 28 13:04:41 2017 -0800
Committer: Michael Stack 
Committed: Thu Dec 28 13:04:41 2017 -0800

--
 .../hbase/shaded/protobuf/ProtobufUtil.java |   4 +-
 .../hadoop/hbase/io/LimitInputStream.java   | 105 ---
 .../regionserver/wal/ProtobufLogReader.java |  10 +-
 3 files changed, 7 insertions(+), 112 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/28eaf715/hbase-client/src/main/java/org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
index 7a5efb1..cc30e53 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
@@ -38,6 +38,7 @@ import java.util.function.Function;
 import java.util.regex.Pattern;
 import java.util.stream.Collectors;
 
+import org.apache.commons.io.input.BoundedInputStream;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.fs.Path;
 import org.apache.hadoop.hbase.ByteBufferExtendedCell;
@@ -87,7 +88,6 @@ import 
org.apache.hadoop.hbase.client.security.SecurityCapability;
 import org.apache.hadoop.hbase.exceptions.DeserializationException;
 import org.apache.hadoop.hbase.filter.ByteArrayComparable;
 import org.apache.hadoop.hbase.filter.Filter;
-import org.apache.hadoop.hbase.io.LimitInputStream;
 import org.apache.hadoop.hbase.io.TimeRange;
 import org.apache.hadoop.hbase.protobuf.ProtobufMagic;
 import org.apache.hadoop.hbase.protobuf.ProtobufMessageConverter;
@@ -2626,7 +2626,7 @@ public final class ProtobufUtil {
 final int firstByte = in.read();
 if (firstByte != -1) {
   final int size = CodedInputStream.readRawVarint32(firstByte, in);
-  final InputStream limitedInput = new LimitInputStream(in, size);
+  final InputStream limitedInput = new BoundedInputStream(in, size);
   final CodedInputStream codedInput = 
CodedInputStream.newInstance(limitedInput);
   codedInput.setSizeLimit(size);
   builder.mergeFrom(codedInput);

http://git-wip-us.apache.org/repos/asf/hbase/blob/28eaf715/hbase-common/src/main/java/org/apache/hadoop/hbase/io/LimitInputStream.java
--
diff --git 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/io/LimitInputStream.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/io/LimitInputStream.java
deleted file mode 100644
index 6eb710a..000
--- 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/io/LimitInputStream.java
+++ /dev/null
@@ -1,105 +0,0 @@
-/*
- * Copyright (C) 2007 The Guava Authors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-package org.apache.hadoop.hbase.io;
-
-import static 
org.apache.hbase.thirdparty.com.google.common.base.Preconditions.checkArgument;
-import static 
org.apache.hbase.thirdparty.com.google.common.base.Preconditions.checkNotNull;
-
-import java.io.FilterInputStream;
-import java.io.IOException;
-import java.io.InputStream;
-
-import org.apache.yetus.audience.InterfaceAudience;
-
-/**
- * Copied from guava source code v15 (LimitedInputStream)
- * Guava deprecated LimitInputStream in v14 and removed it in v15. Copying 
this class here
- * allows to be compatible with guava 11 to 15+.
- */
-@InterfaceAudience.Private
-public final class LimitInputStream extends FilterInputStream {
-  private long left;
-  private long mark = -1;
-
-  public LimitInputStream(InputStream in, long limit) {
-super(in);
-checkNotNull(in);
-checkArgument(limit >= 0, "limit must be non-negative");

hbase git commit: HBASE-19656 Disable TestAssignmentManagerMetrics for beta-1

2017-12-28 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-2 f96f89157 -> d8775d08a


HBASE-19656 Disable TestAssignmentManagerMetrics for beta-1


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

Branch: refs/heads/branch-2
Commit: d8775d08aebfff464eb2e0b493f8fffacc1494ca
Parents: f96f891
Author: Michael Stack 
Authored: Thu Dec 28 12:15:00 2017 -0800
Committer: Michael Stack 
Committed: Thu Dec 28 12:15:00 2017 -0800

--
 .../apache/hadoop/hbase/master/TestAssignmentManagerMetrics.java   | 2 ++
 1 file changed, 2 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/d8775d08/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestAssignmentManagerMetrics.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestAssignmentManagerMetrics.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestAssignmentManagerMetrics.java
index 717933a..3c2b26b 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestAssignmentManagerMetrics.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestAssignmentManagerMetrics.java
@@ -34,6 +34,7 @@ import org.apache.hadoop.hbase.testclassification.MediumTests;
 import org.apache.hadoop.hbase.util.Bytes;
 import org.junit.AfterClass;
 import org.junit.BeforeClass;
+import org.junit.Ignore;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
@@ -43,6 +44,7 @@ import org.slf4j.LoggerFactory;
 
 import static org.junit.Assert.fail;
 
+@Ignore // Disabled temporarily; reenable 
 @Category(MediumTests.class)
 public class TestAssignmentManagerMetrics {
 



hbase git commit: HBASE-19133 Transfer big cells or upserted/appended cells into MSLAB upon flattening to CellChunkMap

2017-12-28 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-2 64cb777a8 -> f96f89157


HBASE-19133 Transfer big cells or upserted/appended cells into
MSLAB upon flattening to CellChunkMap

Signed-off-by: Gali Sheffi 


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

Branch: refs/heads/branch-2
Commit: f96f89157d5c41fd4111a46e22e56e93c2950931
Parents: 64cb777
Author: gsheffi 
Authored: Wed Dec 27 11:55:14 2017 +0200
Committer: Michael Stack 
Committed: Thu Dec 28 10:53:06 2017 -0800

--
 .../hbase/regionserver/AbstractMemStore.java|  19 ++-
 .../regionserver/CellArrayImmutableSegment.java |   4 +-
 .../regionserver/CellChunkImmutableSegment.java |  51 +-
 .../hadoop/hbase/regionserver/ChunkCreator.java |   6 +-
 .../regionserver/CompositeImmutableSegment.java |   2 +-
 .../regionserver/ImmutableMemStoreLAB.java  |   5 +
 .../hadoop/hbase/regionserver/MemStoreLAB.java  |  13 +-
 .../hbase/regionserver/MemStoreLABImpl.java |  26 +++
 .../hadoop/hbase/regionserver/Segment.java  |  15 +-
 .../regionserver/TestCompactingMemStore.java|  21 +++
 .../TestCompactingToCellFlatMapMemStore.java| 161 ++-
 11 files changed, 302 insertions(+), 21 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/f96f8915/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/AbstractMemStore.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/AbstractMemStore.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/AbstractMemStore.java
index 31e60cd..8a19908 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/AbstractMemStore.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/AbstractMemStore.java
@@ -104,7 +104,7 @@ public abstract class AbstractMemStore implements MemStore {
 
   @Override
   public void add(Cell cell, MemStoreSizing memstoreSizing) {
-Cell toAdd = maybeCloneWithAllocator(cell);
+Cell toAdd = maybeCloneWithAllocator(cell, false);
 boolean mslabUsed = (toAdd != cell);
 // This cell data is backed by the same byte[] where we read request in 
RPC(See HBASE-15180). By
 // default MSLAB is ON and we might have copied cell to MSLAB area. If not 
we must do below deep
@@ -268,8 +268,21 @@ public abstract class AbstractMemStore implements MemStore 
{
 return result;
   }
 
-  private Cell maybeCloneWithAllocator(Cell cell) {
-return active.maybeCloneWithAllocator(cell);
+  /**
+   * If the segment has a memory allocator the cell is being cloned to this 
space, and returned;
+   * Otherwise the given cell is returned
+   *
+   * When a cell's size is too big (bigger than maxAlloc), it is not allocated 
on MSLAB.
+   * Since the process of flattening to CellChunkMap assumes that all cells 
are allocated on MSLAB,
+   * during this process, the input parameter forceCloneOfBigCell is set to 
'true'
+   * and the cell is copied into MSLAB.
+   *
+   * @param cell the cell to clone
+   * @param forceCloneOfBigCell true only during the process of flattening to 
CellChunkMap.
+   * @return either the given cell or its clone
+   */
+  private Cell maybeCloneWithAllocator(Cell cell, boolean forceCloneOfBigCell) 
{
+return active.maybeCloneWithAllocator(cell, forceCloneOfBigCell);
   }
 
   /*

http://git-wip-us.apache.org/repos/asf/hbase/blob/f96f8915/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CellArrayImmutableSegment.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CellArrayImmutableSegment.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CellArrayImmutableSegment.java
index 0e80b1d..7e00899 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CellArrayImmutableSegment.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CellArrayImmutableSegment.java
@@ -101,11 +101,11 @@ public class CellArrayImmutableSegment extends 
ImmutableSegment {
 cells[i] = c;
   } else {
 // now we just copy it to the new segment (also MSLAB copy)
-cells[i] = maybeCloneWithAllocator(c);
+cells[i] = maybeCloneWithAllocator(c, false);
   }
   // second parameter true, because in compaction/merge the addition of 
the cell to new segment
   // is always successful
-  updateMetaInfo(c, true, null); // updates the size per cell
+  updateMetaInfo(cells[i], true, null); // updates the size per cell
   if(acti

hbase git commit: HBASE-19133 Transfer big cells or upserted/appended cells into MSLAB upon flattening to CellChunkMap

2017-12-28 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/master c3b4f788b -> 0c4b520d9


HBASE-19133 Transfer big cells or upserted/appended cells into
MSLAB upon flattening to CellChunkMap

Signed-off-by: Gali Sheffi 


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

Branch: refs/heads/master
Commit: 0c4b520d975253524f7fc3a6d79cee93557439f5
Parents: c3b4f78
Author: gsheffi 
Authored: Wed Dec 27 11:55:14 2017 +0200
Committer: Michael Stack 
Committed: Thu Dec 28 10:51:44 2017 -0800

--
 .../hbase/regionserver/AbstractMemStore.java|  19 ++-
 .../regionserver/CellArrayImmutableSegment.java |   4 +-
 .../regionserver/CellChunkImmutableSegment.java |  51 +-
 .../hadoop/hbase/regionserver/ChunkCreator.java |   7 +-
 .../regionserver/CompositeImmutableSegment.java |   2 +-
 .../regionserver/ImmutableMemStoreLAB.java  |   5 +
 .../hadoop/hbase/regionserver/MemStoreLAB.java  |  13 +-
 .../hbase/regionserver/MemStoreLABImpl.java |  26 +++
 .../hadoop/hbase/regionserver/Segment.java  |  15 +-
 .../regionserver/TestCompactingMemStore.java|  21 +++
 .../TestCompactingToCellFlatMapMemStore.java| 161 ++-
 11 files changed, 302 insertions(+), 22 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/0c4b520d/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/AbstractMemStore.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/AbstractMemStore.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/AbstractMemStore.java
index 31e60cd..8a19908 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/AbstractMemStore.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/AbstractMemStore.java
@@ -104,7 +104,7 @@ public abstract class AbstractMemStore implements MemStore {
 
   @Override
   public void add(Cell cell, MemStoreSizing memstoreSizing) {
-Cell toAdd = maybeCloneWithAllocator(cell);
+Cell toAdd = maybeCloneWithAllocator(cell, false);
 boolean mslabUsed = (toAdd != cell);
 // This cell data is backed by the same byte[] where we read request in 
RPC(See HBASE-15180). By
 // default MSLAB is ON and we might have copied cell to MSLAB area. If not 
we must do below deep
@@ -268,8 +268,21 @@ public abstract class AbstractMemStore implements MemStore 
{
 return result;
   }
 
-  private Cell maybeCloneWithAllocator(Cell cell) {
-return active.maybeCloneWithAllocator(cell);
+  /**
+   * If the segment has a memory allocator the cell is being cloned to this 
space, and returned;
+   * Otherwise the given cell is returned
+   *
+   * When a cell's size is too big (bigger than maxAlloc), it is not allocated 
on MSLAB.
+   * Since the process of flattening to CellChunkMap assumes that all cells 
are allocated on MSLAB,
+   * during this process, the input parameter forceCloneOfBigCell is set to 
'true'
+   * and the cell is copied into MSLAB.
+   *
+   * @param cell the cell to clone
+   * @param forceCloneOfBigCell true only during the process of flattening to 
CellChunkMap.
+   * @return either the given cell or its clone
+   */
+  private Cell maybeCloneWithAllocator(Cell cell, boolean forceCloneOfBigCell) 
{
+return active.maybeCloneWithAllocator(cell, forceCloneOfBigCell);
   }
 
   /*

http://git-wip-us.apache.org/repos/asf/hbase/blob/0c4b520d/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CellArrayImmutableSegment.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CellArrayImmutableSegment.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CellArrayImmutableSegment.java
index 0e80b1d..7e00899 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CellArrayImmutableSegment.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CellArrayImmutableSegment.java
@@ -101,11 +101,11 @@ public class CellArrayImmutableSegment extends 
ImmutableSegment {
 cells[i] = c;
   } else {
 // now we just copy it to the new segment (also MSLAB copy)
-cells[i] = maybeCloneWithAllocator(c);
+cells[i] = maybeCloneWithAllocator(c, false);
   }
   // second parameter true, because in compaction/merge the addition of 
the cell to new segment
   // is always successful
-  updateMetaInfo(c, true, null); // updates the size per cell
+  updateMetaInfo(cells[i], true, null); // updates the size per cell
   if(action =

[09/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/AbstractPositionedByteRange.java
--
diff --git 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/AbstractPositionedByteRange.java
 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/AbstractPositionedByteRange.java
index 60144e3..175da02 100644
--- 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/AbstractPositionedByteRange.java
+++ 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/AbstractPositionedByteRange.java
@@ -21,7 +21,7 @@ package org.apache.hadoop.hbase.util;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.apache.yetus.audience.InterfaceStability;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * Extends the basic {@link SimpleByteRange} implementation with position

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteBufferArray.java
--
diff --git 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteBufferArray.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteBufferArray.java
index aec7a18..2e14b13 100644
--- 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteBufferArray.java
+++ 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteBufferArray.java
@@ -35,7 +35,7 @@ import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * This class manages an array of ByteBuffers with a default size 4MB. These

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteBufferUtils.java
--
diff --git 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteBufferUtils.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteBufferUtils.java
index 5e6809f..2246002 100644
--- 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteBufferUtils.java
+++ 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteBufferUtils.java
@@ -35,7 +35,7 @@ import org.apache.hadoop.io.WritableUtils;
 import org.apache.yetus.audience.InterfaceAudience;
 import sun.nio.ch.DirectBuffer;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * Utility functions for working with byte buffers, such as reading/writing

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteRangeUtils.java
--
diff --git 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteRangeUtils.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteRangeUtils.java
index ff6767f..90f3bf3 100644
--- 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteRangeUtils.java
+++ 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/ByteRangeUtils.java
@@ -25,7 +25,7 @@ import java.util.Collection;
 
 import org.apache.yetus.audience.InterfaceAudience;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Lists;
+import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
 
 /**
  * Utility methods for working with {@link ByteRange}.

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/Bytes.java
--
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/Bytes.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/Bytes.java
index 12e4788..b7912fd 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/util/Bytes.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/util/Bytes.java
@@ -17,9 +17,9 @@
  */
 package org.apache.hadoop.hbase.util;
 
-import static 
org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions.checkArgument;
-import static 
org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions.checkNotNull;
-import static 
org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions.checkPositionIndex;
+import static 
org.apache.hbase.thirdparty.com.google.common.base.Preconditions.checkArgument;
+import static 
org.apache.hbase.thirdparty.com.google.common.base.Preconditions.checkNotNull;
+import static 
org.apache.

[11/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MasterCoprocessorRpcChannelImpl.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MasterCoprocessorRpcChannelImpl.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MasterCoprocessorRpcChannelImpl.java
index 8263526..9176c87 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MasterCoprocessorRpcChannelImpl.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MasterCoprocessorRpcChannelImpl.java
@@ -54,7 +54,7 @@ class MasterCoprocessorRpcChannelImpl implements RpcChannel {
 stub.execMasterService(
   controller,
   csr,
-  new 
org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcCallback()
 {
+  new 
org.apache.hbase.thirdparty.com.google.protobuf.RpcCallback()
 {
 
 @Override
 public void run(CoprocessorServiceResponse resp) {

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MetricsConnection.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MetricsConnection.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MetricsConnection.java
index 8461376..e61ba24 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MetricsConnection.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MetricsConnection.java
@@ -26,7 +26,7 @@ import com.codahale.metrics.JmxReporter;
 import com.codahale.metrics.MetricRegistry;
 import com.codahale.metrics.RatioGauge;
 import com.codahale.metrics.Timer;
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 import java.util.concurrent.ConcurrentHashMap;
 import java.util.concurrent.ConcurrentMap;
@@ -36,8 +36,8 @@ import java.util.concurrent.TimeUnit;
 
 import org.apache.hadoop.hbase.ServerName;
 import org.apache.yetus.audience.InterfaceAudience;
-import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.Descriptors.MethodDescriptor;
-import org.apache.hadoop.hbase.shaded.com.google.protobuf.Message;
+import 
org.apache.hbase.thirdparty.com.google.protobuf.Descriptors.MethodDescriptor;
+import org.apache.hbase.thirdparty.com.google.protobuf.Message;
 import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.ClientService;
 import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MutateRequest;
 import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MutationProto.MutationType;

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MultiServerCallable.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MultiServerCallable.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MultiServerCallable.java
index 4a0ae39..bfc161e 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MultiServerCallable.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/MultiServerCallable.java
@@ -37,9 +37,9 @@ import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;
 import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MultiRequest;
 import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.MutationProto;
 import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.RegionAction;
-import org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController;
+import org.apache.hbase.thirdparty.com.google.protobuf.RpcController;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * Callable that handles the multi method call going against a 
single

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
index 8a29574..b7c1769 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/Mutation.java
@@ -54,12 +54,12 @@ import org.apache.hadoop.hbase.util.Bytes;
 import org.apache.hadoop.hbase.util.ClassSize;
 import org.apache.yetus.audience.InterfaceAudience;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions;
-import 
org.apa

[06/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/balancer/SimpleLoadBalancer.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/balancer/SimpleLoadBalancer.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/balancer/SimpleLoadBalancer.java
index adfc577..f53683f 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/balancer/SimpleLoadBalancer.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/balancer/SimpleLoadBalancer.java
@@ -39,7 +39,7 @@ import org.apache.hadoop.hbase.util.Pair;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import 
org.apache.hadoop.hbase.shaded.com.google.common.collect.MinMaxPriorityQueue;
+import 
org.apache.hbase.thirdparty.com.google.common.collect.MinMaxPriorityQueue;
 
 /**
  * Makes decisions about the placement and movement of Regions across

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.java
index 3b2f9b0..693d8b2 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.java
@@ -52,9 +52,9 @@ import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Optional;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Lists;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
+import org.apache.hbase.thirdparty.com.google.common.base.Optional;
+import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
 
 
 /**

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/cleaner/BaseFileCleanerDelegate.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/cleaner/BaseFileCleanerDelegate.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/cleaner/BaseFileCleanerDelegate.java
index 85c6dba..ed0ec9f 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/cleaner/BaseFileCleanerDelegate.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/cleaner/BaseFileCleanerDelegate.java
@@ -20,7 +20,7 @@ package org.apache.hadoop.hbase.master.cleaner;
 import org.apache.hadoop.fs.FileStatus;
 import org.apache.hadoop.hbase.BaseConfigurable;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Iterables;
+import org.apache.hbase.thirdparty.com.google.common.collect.Iterables;
 
 import java.util.Map;
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/cleaner/CleanerChore.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/cleaner/CleanerChore.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/cleaner/CleanerChore.java
index abf132c..15d0005 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/cleaner/CleanerChore.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/cleaner/CleanerChore.java
@@ -18,11 +18,11 @@
 package org.apache.hadoop.hbase.master.cleaner;
 
 import org.apache.hadoop.hbase.conf.ConfigurationObserver;
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Predicate;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.ImmutableSet;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Iterables;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Lists;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
+import org.apache.hbase.thirdparty.com.google.common.base.Predicate;
+import org.apache.hbase.thirdparty.com.google.common.collect.ImmutableSet;
+import org.apache.hbase.thirdparty.com.google.common.collect.Iterables;
+import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
 
 import java.io.IOException;
 import java.util.Comparator;

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/main/java/org/apac

[08/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapred/TestMultiTableSnapshotInputFormat.java
--
diff --git 
a/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapred/TestMultiTableSnapshotInputFormat.java
 
b/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapred/TestMultiTableSnapshotInputFormat.java
index 1b13779..9497592 100644
--- 
a/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapred/TestMultiTableSnapshotInputFormat.java
+++ 
b/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapred/TestMultiTableSnapshotInputFormat.java
@@ -42,7 +42,7 @@ import org.junit.experimental.categories.Category;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Lists;
+import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
 
 @Category({ VerySlowMapReduceTests.class, LargeTests.class })
 public class TestMultiTableSnapshotInputFormat

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapred/TestRowCounter.java
--
diff --git 
a/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapred/TestRowCounter.java
 
b/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapred/TestRowCounter.java
index bc9ebb7..f1e0f1a 100644
--- 
a/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapred/TestRowCounter.java
+++ 
b/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapred/TestRowCounter.java
@@ -43,7 +43,7 @@ import org.junit.Test;
 import org.junit.experimental.categories.Category;
 import org.mockito.Mockito;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Joiner;
+import org.apache.hbase.thirdparty.com.google.common.base.Joiner;
 
 @Category({MapReduceTests.class, SmallTests.class})
 public class TestRowCounter {

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapred/TestTableMapReduceUtil.java
--
diff --git 
a/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapred/TestTableMapReduceUtil.java
 
b/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapred/TestTableMapReduceUtil.java
index 4a60110..c746077 100644
--- 
a/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapred/TestTableMapReduceUtil.java
+++ 
b/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapred/TestTableMapReduceUtil.java
@@ -53,8 +53,8 @@ import org.junit.Test;
 import org.junit.experimental.categories.Category;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.ImmutableMap;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.ImmutableSet;
+import org.apache.hbase.thirdparty.com.google.common.collect.ImmutableMap;
+import org.apache.hbase.thirdparty.com.google.common.collect.ImmutableSet;
 
 @Category({MapReduceTests.class, LargeTests.class})
 public class TestTableMapReduceUtil {

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapreduce/MultiTableInputFormatTestBase.java
--
diff --git 
a/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapreduce/MultiTableInputFormatTestBase.java
 
b/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapreduce/MultiTableInputFormatTestBase.java
index b8d03ba..b2be09f 100644
--- 
a/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapreduce/MultiTableInputFormatTestBase.java
+++ 
b/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapreduce/MultiTableInputFormatTestBase.java
@@ -53,7 +53,7 @@ import org.junit.rules.TestRule;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Lists;
+import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
 
 /**
  * Base set of tests and setup for input formats touching multiple tables.

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapreduce/TestHashTable.java
--
diff --git 
a/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapreduce/TestHashTable.java
 
b/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapreduce/TestHashTable.java
index 6b3c71c..3ccc01a 100644
--- 
a/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapreduce/TestHashTable.java
+++ 
b/hbase-mapreduce/src/test/java/org/apache/hadoop/hbase/mapreduce/TestHashTable.java
@@ -40,8 +40,8 @@ import org.junit.Rule;
 import org.junit.Test;
 import org.junit.experimental.categories.Category;
 
-import org.apache.hadoop.hbase.s

[02/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/SecureTestUtil.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/SecureTestUtil.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/SecureTestUtil.java
index cc01d62..8bf792b 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/SecureTestUtil.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/SecureTestUtil.java
@@ -63,8 +63,8 @@ import org.apache.hadoop.hbase.regionserver.HRegion;
 import org.apache.hadoop.hbase.security.AccessDeniedException;
 import org.apache.hadoop.hbase.security.User;
 import org.apache.hadoop.hbase.security.access.Permission.Action;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Lists;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Maps;
+import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
+import org.apache.hbase.thirdparty.com.google.common.collect.Maps;
 import org.apache.hadoop.hbase.util.JVMClusterUtil.RegionServerThread;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestCellACLs.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestCellACLs.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestCellACLs.java
index 319c75a..bf3699f 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestCellACLs.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestCellACLs.java
@@ -62,7 +62,7 @@ import org.junit.experimental.categories.Category;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Lists;
+import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
 
 @Category({SecurityTests.class, LargeTests.class})
 public class TestCellACLs extends SecureTestUtil {

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestNamespaceCommands.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestNamespaceCommands.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestNamespaceCommands.java
index 7db5fe0..df06f7e 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestNamespaceCommands.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestNamespaceCommands.java
@@ -54,7 +54,7 @@ import org.junit.Test;
 import org.junit.experimental.categories.Category;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.ListMultimap;
+import org.apache.hbase.thirdparty.com.google.common.collect.ListMultimap;
 import com.google.protobuf.BlockingRpcChannel;
 
 @Category({SecurityTests.class, MediumTests.class})

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestTablePermissions.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestTablePermissions.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestTablePermissions.java
index 1270e8a..3980e44 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestTablePermissions.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestTablePermissions.java
@@ -50,8 +50,8 @@ import org.junit.Test;
 import org.junit.experimental.categories.Category;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import 
org.apache.hadoop.hbase.shaded.com.google.common.collect.ArrayListMultimap;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.ListMultimap;
+import org.apache.hbase.thirdparty.com.google.common.collect.ArrayListMultimap;
+import org.apache.hbase.thirdparty.com.google.common.collect.ListMultimap;
 
 /**
  * Test the reading and writing of access permissions on {@code _acl_} table.

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestWithDisabledAuthorization.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestWithDisabledAuthorization.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/security/access/TestWit

[12/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
HBASE-19552 find-and-replace thirdparty offset


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

Branch: refs/heads/branch-2
Commit: 64cb777a8a97bf25e1fecadb2b95484b4f26e835
Parents: 968b938
Author: Mike Drob 
Authored: Thu Dec 28 12:01:25 2017 -0600
Committer: Mike Drob 
Committed: Thu Dec 28 12:01:25 2017 -0600

--
 .../hadoop/hbase/errorprone/AlwaysPasses.java   |  2 +-
 .../hadoop/hbase/ClusterMetricsBuilder.java |  4 +-
 .../org/apache/hadoop/hbase/ClusterStatus.java  |  2 +-
 .../apache/hadoop/hbase/MetaTableAccessor.java  |  2 +-
 .../org/apache/hadoop/hbase/RegionLoad.java |  2 +-
 .../hadoop/hbase/RegionMetricsBuilder.java  |  4 +-
 .../org/apache/hadoop/hbase/ServerLoad.java |  2 +-
 .../hadoop/hbase/ServerMetricsBuilder.java  |  2 +-
 .../main/java/org/apache/hadoop/hbase/Size.java |  2 +-
 .../org/apache/hadoop/hbase/client/Admin.java   |  2 +-
 .../client/AsyncAdminRequestRetryingCaller.java |  2 +-
 .../client/AsyncBatchRpcRetryingCaller.java |  2 +-
 .../client/AsyncBufferedMutatorBuilderImpl.java |  2 +-
 .../hbase/client/AsyncConnectionImpl.java   |  6 +--
 .../AsyncMasterRequestRpcRetryingCaller.java|  2 +-
 .../hadoop/hbase/client/AsyncProcess.java   |  2 +-
 .../hadoop/hbase/client/AsyncRegionLocator.java |  4 +-
 .../hbase/client/AsyncRequestFutureImpl.java|  2 +-
 .../hbase/client/AsyncRpcRetryingCaller.java|  2 +-
 .../client/AsyncRpcRetryingCallerFactory.java   |  6 +--
 .../AsyncScanSingleRegionRpcRetryingCaller.java |  6 +--
 .../AsyncServerRequestRpcRetryingCaller.java|  2 +-
 .../AsyncSingleRequestRpcRetryingCaller.java|  2 +-
 .../apache/hadoop/hbase/client/AsyncTable.java  |  2 +-
 .../hbase/client/AsyncTableResultScanner.java   |  4 +-
 .../hbase/client/BufferedMutatorImpl.java   |  2 +-
 .../client/CancellableRegionServerCallable.java | 12 ++---
 .../client/ClientAsyncPrefetchScanner.java  |  2 +-
 .../hadoop/hbase/client/ClientScanner.java  |  2 +-
 .../hbase/client/ClientServiceCallable.java |  6 +--
 .../hbase/client/ClusterStatusListener.java | 20 
 .../client/ColumnFamilyDescriptorBuilder.java   |  2 +-
 .../hbase/client/ConnectionConfiguration.java   |  2 +-
 .../hbase/client/ConnectionImplementation.java  | 10 ++--
 .../hadoop/hbase/client/ConnectionUtils.java|  6 +--
 .../apache/hadoop/hbase/client/HBaseAdmin.java  |  4 +-
 .../hadoop/hbase/client/HRegionLocator.java |  2 +-
 .../org/apache/hadoop/hbase/client/HTable.java  |  4 +-
 .../hadoop/hbase/client/HTableMultiplexer.java  |  4 +-
 .../client/MasterCoprocessorRpcChannelImpl.java |  2 +-
 .../hadoop/hbase/client/MetricsConnection.java  |  6 +--
 .../hbase/client/MultiServerCallable.java   |  4 +-
 .../apache/hadoop/hbase/client/Mutation.java| 12 ++---
 .../client/PreemptiveFastFailInterceptor.java   |  2 +-
 .../org/apache/hadoop/hbase/client/Query.java   |  6 +--
 .../hadoop/hbase/client/RawAsyncHBaseAdmin.java | 12 ++---
 .../hadoop/hbase/client/RawAsyncTableImpl.java  |  4 +-
 .../client/RegionCoprocessorRpcChannelImpl.java |  2 +-
 .../client/RegionCoprocessorServiceExec.java|  2 +-
 .../apache/hadoop/hbase/client/RegionInfo.java  |  2 +-
 .../hadoop/hbase/client/RegionInfoBuilder.java  |  2 +-
 .../hbase/client/RegionServerCallable.java  |  2 +-
 .../RegionServerCoprocessorRpcChannelImpl.java  |  2 +-
 .../apache/hadoop/hbase/client/RowAccess.java   |  2 +-
 .../hbase/client/RpcRetryingCallerImpl.java |  2 +-
 .../client/ScannerCallableWithReplicas.java |  2 +-
 .../hbase/client/ServerStatisticTracker.java|  2 +-
 .../hadoop/hbase/client/ServiceCaller.java  |  2 +-
 .../client/ShortCircuitMasterConnection.java|  4 +-
 .../hbase/client/SimpleRequestController.java   |  2 +-
 .../apache/hadoop/hbase/client/TableState.java  |  2 +-
 .../hadoop/hbase/client/ZKAsyncRegistry.java|  2 +-
 .../backoff/ExponentialClientBackoffPolicy.java |  2 +-
 .../client/metrics/ServerSideScanMetrics.java   |  2 +-
 .../client/replication/ReplicationAdmin.java|  4 +-
 .../replication/ReplicationPeerConfigUtil.java  |  6 +--
 .../hbase/filter/BigDecimalComparator.java  |  2 +-
 .../hadoop/hbase/filter/BinaryComparator.java   |  2 +-
 .../hbase/filter/BinaryPrefixComparator.java|  2 +-
 .../hadoop/hbase/filter/BitComparator.java  |  2 +-
 .../hbase/filter/ColumnCountGetFilter.java  |  4 +-
 .../hbase/filter/ColumnPaginationFilter.java|  6 +--
 .../hadoop/hbase/filter/ColumnPrefixFilter.java |  6 +--
 .../hadoop/hbase/filter/ColumnRangeFilter.java  |  6 +--
 .../hadoop/hbase/filter/CompareFilter.java  |  2 +-
 .../hbase/filter/DependentColumnFilter.java |  6 +--
 .../hadoop/hbase/filter/FamilyFilter.ja

[03/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestMasterNoCluster.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestMasterNoCluster.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestMasterNoCluster.java
index 6119e43..fd44c89 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestMasterNoCluster.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestMasterNoCluster.java
@@ -144,7 +144,7 @@ public class TestMasterNoCluster {
* @throws IOException
* @throws KeeperException
* @throws InterruptedException
-   * @throws 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException
+   * @throws org.apache.hbase.thirdparty.com.google.protobuf.ServiceException
*/
   @Ignore @Test // Disabled since HBASE-18511. Reenable when master can carry 
regions.
   public void testFailover() throws Exception {

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestMasterStatusServlet.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestMasterStatusServlet.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestMasterStatusServlet.java
index e2a2312..90dece2 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestMasterStatusServlet.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/TestMasterStatusServlet.java
@@ -48,7 +48,7 @@ import org.junit.Test;
 import org.junit.experimental.categories.Category;
 import org.mockito.Mockito;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Lists;
+import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
 
 /**
  * Tests for the master status page and its template.

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/assignment/MockMasterServices.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/assignment/MockMasterServices.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/assignment/MockMasterServices.java
index 5a93300..45d5b08 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/assignment/MockMasterServices.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/assignment/MockMasterServices.java
@@ -58,7 +58,7 @@ import 
org.apache.hadoop.hbase.procedure2.store.NoopProcedureStore;
 import org.apache.hadoop.hbase.procedure2.store.ProcedureStore;
 import org.apache.hadoop.hbase.procedure2.store.wal.WALProcedureStore;
 import org.apache.hadoop.hbase.security.Superusers;
-import org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
+import org.apache.hbase.thirdparty.com.google.protobuf.ServiceException;
 import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
 import org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos;
 import org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos;

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/assignment/TestRogueRSAssignment.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/assignment/TestRogueRSAssignment.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/assignment/TestRogueRSAssignment.java
index 056e66d..ca1297a 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/assignment/TestRogueRSAssignment.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/master/assignment/TestRogueRSAssignment.java
@@ -31,8 +31,8 @@ import org.apache.hadoop.hbase.client.TableDescriptor;
 import org.apache.hadoop.hbase.client.TableDescriptorBuilder;
 import org.apache.hadoop.hbase.master.HMaster;
 import org.apache.hadoop.hbase.master.procedure.MasterProcedureConstants;
-import org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
-import org.apache.hadoop.hbase.shaded.com.google.protobuf.UnsafeByteOperations;
+import org.apache.hbase.thirdparty.com.google.protobuf.ServiceException;
+import org.apache.hbase.thirdparty.com.google.protobuf.UnsafeByteOperations;
 import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
 import org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterStatusProtos;
 import org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/test/java/org/apache/hadoop/hbase/master/balancer/LoadBalancerPerformanceEvaluation.java
--
di

[04/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/NettyEventLoopGroupConfig.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/NettyEventLoopGroupConfig.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/NettyEventLoopGroupConfig.java
index 1d8b176..3e7b488 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/NettyEventLoopGroupConfig.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/NettyEventLoopGroupConfig.java
@@ -17,16 +17,16 @@
  */
 package org.apache.hadoop.hbase.util;
 
-import org.apache.hadoop.hbase.shaded.io.netty.channel.Channel;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.EventLoopGroup;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.ServerChannel;
-import 
org.apache.hadoop.hbase.shaded.io.netty.channel.epoll.EpollEventLoopGroup;
-import 
org.apache.hadoop.hbase.shaded.io.netty.channel.epoll.EpollServerSocketChannel;
-import 
org.apache.hadoop.hbase.shaded.io.netty.channel.epoll.EpollSocketChannel;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.nio.NioEventLoopGroup;
-import 
org.apache.hadoop.hbase.shaded.io.netty.channel.socket.nio.NioServerSocketChannel;
-import 
org.apache.hadoop.hbase.shaded.io.netty.channel.socket.nio.NioSocketChannel;
-import 
org.apache.hadoop.hbase.shaded.io.netty.util.concurrent.DefaultThreadFactory;
+import org.apache.hbase.thirdparty.io.netty.channel.Channel;
+import org.apache.hbase.thirdparty.io.netty.channel.EventLoopGroup;
+import org.apache.hbase.thirdparty.io.netty.channel.ServerChannel;
+import org.apache.hbase.thirdparty.io.netty.channel.epoll.EpollEventLoopGroup;
+import 
org.apache.hbase.thirdparty.io.netty.channel.epoll.EpollServerSocketChannel;
+import org.apache.hbase.thirdparty.io.netty.channel.epoll.EpollSocketChannel;
+import org.apache.hbase.thirdparty.io.netty.channel.nio.NioEventLoopGroup;
+import 
org.apache.hbase.thirdparty.io.netty.channel.socket.nio.NioServerSocketChannel;
+import 
org.apache.hbase.thirdparty.io.netty.channel.socket.nio.NioSocketChannel;
+import 
org.apache.hbase.thirdparty.io.netty.util.concurrent.DefaultThreadFactory;
 
 import java.util.concurrent.ThreadFactory;
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/RegionSplitCalculator.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/RegionSplitCalculator.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/RegionSplitCalculator.java
index e41882f..0f75b0e 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/RegionSplitCalculator.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/RegionSplitCalculator.java
@@ -31,9 +31,9 @@ import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.apache.hadoop.hbase.util.Bytes.ByteArrayComparator;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.collect.ArrayListMultimap;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Multimap;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.TreeMultimap;
+import org.apache.hbase.thirdparty.com.google.common.collect.ArrayListMultimap;
+import org.apache.hbase.thirdparty.com.google.common.collect.Multimap;
+import org.apache.hbase.thirdparty.com.google.common.collect.TreeMultimap;
 
 /**
  * This is a generic region split calculator. It requires Ranges that provide

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/RegionSplitter.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/RegionSplitter.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/RegionSplitter.java
index ecc87fb..2902158 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/util/RegionSplitter.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/util/RegionSplitter.java
@@ -66,10 +66,10 @@ import 
org.apache.hadoop.hbase.regionserver.HRegionFileSystem;
 
 import org.apache.hadoop.hbase.client.ColumnFamilyDescriptorBuilder;
 import org.apache.hadoop.hbase.client.TableDescriptorBuilder;
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Lists;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Maps;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Sets;
+import org.apache.hbase.thirdparty.com.google.common.base.Preconditions;
+import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
+import org.apache.hbase.thirdparty.com.google.common.collect.Maps;
+import org.apache.hbase.thirdparty.com.google.common.collect.Sets;
 
 /**
  

[10/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/IPCUtil.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/IPCUtil.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/IPCUtil.java
index 8e3e9aa..974994e 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/IPCUtil.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/IPCUtil.java
@@ -17,9 +17,9 @@
  */
 package org.apache.hadoop.hbase.ipc;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions;
-import org.apache.hadoop.hbase.shaded.com.google.protobuf.CodedOutputStream;
-import org.apache.hadoop.hbase.shaded.com.google.protobuf.Message;
+import org.apache.hbase.thirdparty.com.google.common.base.Preconditions;
+import org.apache.hbase.thirdparty.com.google.protobuf.CodedOutputStream;
+import org.apache.hbase.thirdparty.com.google.protobuf.Message;
 
 import java.io.IOException;
 import java.io.OutputStream;

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcClient.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcClient.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcClient.java
index 91e7b80..61dedbb 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcClient.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcClient.java
@@ -17,11 +17,11 @@
  */
 package org.apache.hadoop.hbase.ipc;
 
-import org.apache.hadoop.hbase.shaded.io.netty.channel.Channel;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.EventLoopGroup;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.nio.NioEventLoopGroup;
-import 
org.apache.hadoop.hbase.shaded.io.netty.channel.socket.nio.NioSocketChannel;
-import 
org.apache.hadoop.hbase.shaded.io.netty.util.concurrent.DefaultThreadFactory;
+import org.apache.hbase.thirdparty.io.netty.channel.Channel;
+import org.apache.hbase.thirdparty.io.netty.channel.EventLoopGroup;
+import org.apache.hbase.thirdparty.io.netty.channel.nio.NioEventLoopGroup;
+import 
org.apache.hbase.thirdparty.io.netty.channel.socket.nio.NioSocketChannel;
+import 
org.apache.hbase.thirdparty.io.netty.util.concurrent.DefaultThreadFactory;
 
 import java.io.IOException;
 import java.net.SocketAddress;

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcClientConfigHelper.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcClientConfigHelper.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcClientConfigHelper.java
index b557f02..e779339 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcClientConfigHelper.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcClientConfigHelper.java
@@ -17,10 +17,10 @@
  */
 package org.apache.hadoop.hbase.ipc;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions;
+import org.apache.hbase.thirdparty.com.google.common.base.Preconditions;
 
-import org.apache.hadoop.hbase.shaded.io.netty.channel.Channel;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.EventLoopGroup;
+import org.apache.hbase.thirdparty.io.netty.channel.Channel;
+import org.apache.hbase.thirdparty.io.netty.channel.EventLoopGroup;
 
 import java.util.HashMap;
 import java.util.Map;

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcConnection.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcConnection.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcConnection.java
index 581483a..d745716 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcConnection.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/NettyRpcConnection.java
@@ -22,26 +22,26 @@ import static 
org.apache.hadoop.hbase.ipc.CallEvent.Type.TIMEOUT;
 import static org.apache.hadoop.hbase.ipc.IPCUtil.setCancelled;
 import static org.apache.hadoop.hbase.ipc.IPCUtil.toIOE;
 
-import 
org.apache.hadoop.hbase.shaded.io.netty.handler.timeout.ReadTimeoutHandler;
+import org.apache.hbase.thirdparty.io.netty.handler.timeout.ReadTimeoutHandler;
 import org.apache.hadoop.hbase.security.NettyHBaseRpcConnectionHeaderHandler;
-import org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcCallback;
-
-import org.apache.hadoop.hbase.shaded.io.netty.bootstrap.Bootstrap;
-import org.apache.hadoop.hbase.shaded.io.netty.buffer.ByteBuf;
-import org.apache.hadoop.hbase.sha

[07/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.java
index 41057f1..4fa06a4 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.java
@@ -21,8 +21,8 @@ import static org.apache.hadoop.fs.CreateFlag.CREATE;
 import static org.apache.hadoop.fs.CreateFlag.OVERWRITE;
 import static 
org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputSaslHelper.createEncryptor;
 import static 
org.apache.hadoop.hbase.io.asyncfs.FanOutOneBlockAsyncDFSOutputSaslHelper.trySaslNegotiate;
-import static 
org.apache.hadoop.hbase.shaded.io.netty.channel.ChannelOption.CONNECT_TIMEOUT_MILLIS;
-import static 
org.apache.hadoop.hbase.shaded.io.netty.handler.timeout.IdleState.READER_IDLE;
+import static 
org.apache.hbase.thirdparty.io.netty.channel.ChannelOption.CONNECT_TIMEOUT_MILLIS;
+import static 
org.apache.hbase.thirdparty.io.netty.handler.timeout.IdleState.READER_IDLE;
 import static 
org.apache.hadoop.hdfs.DFSConfigKeys.DFS_CLIENT_SOCKET_TIMEOUT_KEY;
 import static org.apache.hadoop.hdfs.DFSConfigKeys.DFS_CLIENT_USE_DN_HOSTNAME;
 import static 
org.apache.hadoop.hdfs.DFSConfigKeys.DFS_CLIENT_USE_DN_HOSTNAME_DEFAULT;
@@ -85,30 +85,30 @@ import org.apache.hadoop.util.DataChecksum;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Throwables;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.ImmutableMap;
-import org.apache.hadoop.hbase.shaded.io.netty.bootstrap.Bootstrap;
-import org.apache.hadoop.hbase.shaded.io.netty.buffer.ByteBuf;
-import org.apache.hadoop.hbase.shaded.io.netty.buffer.ByteBufAllocator;
-import org.apache.hadoop.hbase.shaded.io.netty.buffer.ByteBufOutputStream;
-import org.apache.hadoop.hbase.shaded.io.netty.buffer.PooledByteBufAllocator;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.Channel;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.ChannelFuture;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.ChannelFutureListener;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.ChannelHandler;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.ChannelHandlerContext;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.ChannelInitializer;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.ChannelPipeline;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.EventLoop;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.EventLoopGroup;
-import 
org.apache.hadoop.hbase.shaded.io.netty.channel.SimpleChannelInboundHandler;
-import 
org.apache.hadoop.hbase.shaded.io.netty.handler.codec.protobuf.ProtobufDecoder;
-import 
org.apache.hadoop.hbase.shaded.io.netty.handler.codec.protobuf.ProtobufVarint32FrameDecoder;
-import org.apache.hadoop.hbase.shaded.io.netty.handler.timeout.IdleStateEvent;
-import 
org.apache.hadoop.hbase.shaded.io.netty.handler.timeout.IdleStateHandler;
-import org.apache.hadoop.hbase.shaded.io.netty.util.concurrent.Future;
-import org.apache.hadoop.hbase.shaded.io.netty.util.concurrent.FutureListener;
-import org.apache.hadoop.hbase.shaded.io.netty.util.concurrent.Promise;
+import org.apache.hbase.thirdparty.com.google.common.base.Throwables;
+import org.apache.hbase.thirdparty.com.google.common.collect.ImmutableMap;
+import org.apache.hbase.thirdparty.io.netty.bootstrap.Bootstrap;
+import org.apache.hbase.thirdparty.io.netty.buffer.ByteBuf;
+import org.apache.hbase.thirdparty.io.netty.buffer.ByteBufAllocator;
+import org.apache.hbase.thirdparty.io.netty.buffer.ByteBufOutputStream;
+import org.apache.hbase.thirdparty.io.netty.buffer.PooledByteBufAllocator;
+import org.apache.hbase.thirdparty.io.netty.channel.Channel;
+import org.apache.hbase.thirdparty.io.netty.channel.ChannelFuture;
+import org.apache.hbase.thirdparty.io.netty.channel.ChannelFutureListener;
+import org.apache.hbase.thirdparty.io.netty.channel.ChannelHandler;
+import org.apache.hbase.thirdparty.io.netty.channel.ChannelHandlerContext;
+import org.apache.hbase.thirdparty.io.netty.channel.ChannelInitializer;
+import org.apache.hbase.thirdparty.io.netty.channel.ChannelPipeline;
+import org.apache.hbase.thirdparty.io.netty.channel.EventLoop;
+import org.apache.hbase.thirdparty.io.netty.channel.EventLoopGroup;
+import 
org.apache.hbase.thirdparty.io.netty.channel.SimpleChannelInboundHandler;
+import 
org.apache.hbase.thirdparty.io.netty.handler.codec.protobuf.ProtobufDecoder;
+import 
org.

[05/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/ScannerIdGenerator.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/ScannerIdGenerator.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/ScannerIdGenerator.java
index f4dcfd6..ce5be88 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/ScannerIdGenerator.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/ScannerIdGenerator.java
@@ -18,7 +18,7 @@
  */
 package org.apache.hadoop.hbase.regionserver;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.hash.Hashing;
+import org.apache.hbase.thirdparty.com.google.common.hash.Hashing;
 
 import java.util.concurrent.atomic.AtomicInteger;
 import java.util.concurrent.atomic.AtomicLong;

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/Segment.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/Segment.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/Segment.java
index e09f587..7929f07 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/Segment.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/Segment.java
@@ -36,7 +36,7 @@ import org.apache.hadoop.hbase.util.Bytes;
 import org.apache.hadoop.hbase.util.ClassSize;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * This is an abstraction of a segment maintained in a memstore, e.g., the 
active

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/ServerNonceManager.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/ServerNonceManager.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/ServerNonceManager.java
index 1b93df9..b67b54e 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/ServerNonceManager.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/ServerNonceManager.java
@@ -33,7 +33,7 @@ import org.slf4j.LoggerFactory;
 import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
 import org.apache.hadoop.hbase.util.NonceKey;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * Implementation of nonce manager that stores nonces in a hash map and cleans 
them up after

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SplitLogWorker.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SplitLogWorker.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SplitLogWorker.java
index 067ad92..0046b67 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SplitLogWorker.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SplitLogWorker.java
@@ -39,7 +39,7 @@ import org.apache.hadoop.hbase.util.CancelableProgressable;
 import org.apache.hadoop.hbase.util.ExceptionUtil;
 import org.apache.hadoop.hbase.util.FSUtils;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * This worker is spawned in every regionserver, including master. The Worker 
waits for log

http://git-wip-us.apache.org/repos/asf/hbase/blob/64cb777a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SplitRequest.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SplitRequest.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SplitRequest.java
index ce5c051..9a0531c 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SplitRequest.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/SplitRequest.java
@@ -30,7 +30,7 @@ import org.apache.hadoop.hbase.util.Bytes;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions;
+import org.apache.hbase.thirdpart

[01/12] hbase git commit: HBASE-19552 Update hbase-thirdparty version

2017-12-28 Thread mdrob
Repository: hbase
Updated Branches:
  refs/heads/branch-2 4dc38aeb2 -> 64cb777a8


HBASE-19552 Update hbase-thirdparty version

Some manual cleanup of changing package names in pom files and getting
rid of the no-longer-needed netty system property.

This commit will break compilation, package renames in source code are
done in follow-on commits using straightforward find and replace.

's/org.apache.hadoop.hbase.shaded.com.google/org.apache.hbase.thirdparty.com.google/'
's/org.apache.hadoop.hbase.shaded.io.netty/org.apache.hbase.thirdparty.io.netty/'


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

Branch: refs/heads/branch-2
Commit: 968b938fdefeeaee1e829a03979d3117eabda5ea
Parents: 4dc38ae
Author: Mike Drob 
Authored: Wed Dec 27 10:58:47 2017 -0600
Committer: Mike Drob 
Committed: Thu Dec 28 11:58:49 2017 -0600

--
 bin/hbase   | 13 ++-
 .../src/main/resources/hbase/checkstyle.xml |  2 +-
 hbase-mapreduce/pom.xml |  3 --
 hbase-protocol-shaded/pom.xml   |  2 +-
 hbase-server/pom.xml|  1 -
 hbase-spark/pom.xml |  9 +
 pom.xml | 24 +++-
 src/main/asciidoc/_chapters/developer.adoc  | 40 ++--
 8 files changed, 16 insertions(+), 78 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/968b938f/bin/hbase
--
diff --git a/bin/hbase b/bin/hbase
index 1fc5102..f2d4251 100755
--- a/bin/hbase
+++ b/bin/hbase
@@ -474,16 +474,9 @@ fi
 HEAP_SETTINGS="$JAVA_HEAP_MAX $JAVA_OFFHEAP_MAX"
 # Exec unless HBASE_NOEXEC is set.
 export CLASSPATH
-# Netty is shaded in hbase. The shaded netty is pulled in with 
org.apache.hbase.thirdparty:hbase-shaded-netty.
-# It has a .so in it. Shading requires rename of the .so and then passing a 
system property so netty finds the
-# renamed .so and associates it w/ the relocated netty files.
-# So we can find the relocated .so, we need to add a system property pointing 
at new location. Trick is from:
-#  
https://stackoverflow.com/questions/33825743/rename-files-inside-a-jar-using-some-maven-plugin
-# See toward the end of this issue for how to pass config: 
https://github.com/netty/netty/issues/6665
-#
-NETTY_PROP="-Dorg.apache.hadoop.hbase.shaded.io.netty.packagePrefix=org.apache.hadoop.hbase.shaded."
+
 if [ "${HBASE_NOEXEC}" != "" ]; then
-  "$JAVA" -Dproc_$COMMAND "$NETTY_PROP" -XX:OnOutOfMemoryError="kill -9 %p" 
$HEAP_SETTINGS $HBASE_OPTS $CLASS "$@"
+  "$JAVA" -Dproc_$COMMAND -XX:OnOutOfMemoryError="kill -9 %p" $HEAP_SETTINGS 
$HBASE_OPTS $CLASS "$@"
 else
-  exec "$JAVA" -Dproc_$COMMAND  "$NETTY_PROP" -XX:OnOutOfMemoryError="kill -9 
%p" $HEAP_SETTINGS $HBASE_OPTS $CLASS "$@"
+  exec "$JAVA" -Dproc_$COMMAND -XX:OnOutOfMemoryError="kill -9 %p" 
$HEAP_SETTINGS $HBASE_OPTS $CLASS "$@"
 fi

http://git-wip-us.apache.org/repos/asf/hbase/blob/968b938f/hbase-checkstyle/src/main/resources/hbase/checkstyle.xml
--
diff --git a/hbase-checkstyle/src/main/resources/hbase/checkstyle.xml 
b/hbase-checkstyle/src/main/resources/hbase/checkstyle.xml
index bdfea28..4643709 100644
--- a/hbase-checkstyle/src/main/resources/hbase/checkstyle.xml
+++ b/hbase-checkstyle/src/main/resources/hbase/checkstyle.xml
@@ -67,7 +67,7 @@
 http://checkstyle.sourceforge.net/config_imports.html -->
 
 
-  
+  
   
   
   

http://git-wip-us.apache.org/repos/asf/hbase/blob/968b938f/hbase-mapreduce/pom.xml
--
diff --git a/hbase-mapreduce/pom.xml b/hbase-mapreduce/pom.xml
index 7ba9a7c..0073440 100644
--- a/hbase-mapreduce/pom.xml
+++ b/hbase-mapreduce/pom.xml
@@ -76,9 +76,6 @@
   
org.apache.hadoop.hbase.ServerResourceCheckerJUnitListener
 
   
-  
-
org.apache.hadoop.hbase.shaded.
-  
 
   
   

http://git-wip-us.apache.org/repos/asf/hbase/blob/968b938f/hbase-protocol-shaded/pom.xml
--
diff --git a/hbase-protocol-shaded/pom.xml b/hbase-protocol-shaded/pom.xml
index 70af5d5..a9258db 100644
--- a/hbase-protocol-shaded/pom.xml
+++ b/hbase-protocol-shaded/pom.xml
@@ -120,7 +120,7 @@
 
   
 ([^\.])com.google.protobuf 
-
$1org.apache.hadoop.hbase.shaded.com.google.protobuf 
+
$1org.apache.hbase.thirdparty.com.google.proto

[06/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterWalManager.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterWalManager.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterWalManager.java
index 52ba099..4070ed3 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterWalManager.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/MasterWalManager.java
@@ -41,7 +41,7 @@ import org.apache.hadoop.hbase.wal.WALSplitter;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * This class abstracts a bunch of operations the HMaster needs

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/master/ServerManager.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/ServerManager.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/ServerManager.java
index f84391f..3db6033 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/ServerManager.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/ServerManager.java
@@ -62,8 +62,8 @@ import org.apache.yetus.audience.InterfaceAudience;
 import org.apache.zookeeper.KeeperException;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
-import org.apache.hadoop.hbase.shaded.com.google.protobuf.UnsafeByteOperations;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
+import org.apache.hbase.thirdparty.com.google.protobuf.UnsafeByteOperations;
 import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
 import 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.AdminService;
 import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterStatusProtos.RegionStoreSequenceIds;

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/master/SplitLogManager.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/SplitLogManager.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/SplitLogManager.java
index 97fa7c8..d1c1612 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/SplitLogManager.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/SplitLogManager.java
@@ -57,7 +57,7 @@ import org.apache.hadoop.hbase.wal.AbstractFSWALProvider;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * Distributes the task of log splitting to the available region servers.

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/master/TableNamespaceManager.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/TableNamespaceManager.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/TableNamespaceManager.java
index c018383..5de7dc5 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/TableNamespaceManager.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/TableNamespaceManager.java
@@ -46,7 +46,7 @@ import org.apache.hadoop.hbase.constraint.ConstraintException;
 import org.apache.hadoop.hbase.exceptions.TimeoutIOException;
 import org.apache.hadoop.hbase.master.procedure.MasterProcedureEnv;
 import org.apache.hadoop.hbase.procedure2.ProcedureExecutor;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Sets;
+import org.apache.hbase.thirdparty.com.google.common.collect.Sets;
 import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
 import org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
 import org.apache.hadoop.hbase.util.Bytes;

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/master/TableStateManager.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/master/TableStateManager.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/master/TableStateManager.java
index ad8908

[05/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
index 95ca9dc..5e6db76 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
@@ -100,12 +100,12 @@ import 
org.apache.hadoop.util.StringUtils.TraditionalBinaryPrefix;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions;
-import 
org.apache.hadoop.hbase.shaded.com.google.common.collect.ImmutableCollection;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.ImmutableList;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Lists;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Sets;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
+import org.apache.hbase.thirdparty.com.google.common.base.Preconditions;
+import 
org.apache.hbase.thirdparty.com.google.common.collect.ImmutableCollection;
+import org.apache.hbase.thirdparty.com.google.common.collect.ImmutableList;
+import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
+import org.apache.hbase.thirdparty.com.google.common.collect.Sets;
 import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
 import 
org.apache.hadoop.hbase.shaded.protobuf.generated.WALProtos.CompactionDescriptor;
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStoreFile.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStoreFile.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStoreFile.java
index 93e59cf..141501c 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStoreFile.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStoreFile.java
@@ -41,7 +41,7 @@ import org.apache.hadoop.hbase.util.Bytes;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * A Store data file.  Stores usually have one or more of these files.  They

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HeapMemoryManager.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HeapMemoryManager.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HeapMemoryManager.java
index abd9b46..2daa5d2 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HeapMemoryManager.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HeapMemoryManager.java
@@ -38,7 +38,7 @@ import org.apache.hadoop.hbase.io.hfile.ResizableBlockCache;
 import org.apache.hadoop.hbase.io.util.MemorySizeUtil;
 import org.apache.hadoop.util.ReflectionUtils;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * Manages tuning of Heap memory using HeapMemoryTuner. Most part 
of the heap memory is

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/KeyValueHeap.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/KeyValueHeap.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/KeyValueHeap.java
index cdd92a6..779ed49 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/KeyValueHeap.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/KeyValueHeap.java
@@ -19,7 +19,7 @@
 
 package org.apache.hadoop.hbase.regionserver;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 import java.io.IOException;
 import java.util.ArrayList;

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/regionse

[03/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/test/java/org/apache/hadoop/hbase/io/asyncfs/TestSaslFanOutOneBlockAsyncDFSOutput.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/io/asyncfs/TestSaslFanOutOneBlockAsyncDFSOutput.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/io/asyncfs/TestSaslFanOutOneBlockAsyncDFSOutput.java
index 217ba60..8a77e81 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/io/asyncfs/TestSaslFanOutOneBlockAsyncDFSOutput.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/io/asyncfs/TestSaslFanOutOneBlockAsyncDFSOutput.java
@@ -69,11 +69,11 @@ import org.junit.runners.Parameterized;
 import org.junit.runners.Parameterized.Parameter;
 import org.junit.runners.Parameterized.Parameters;
 
-import org.apache.hadoop.hbase.shaded.io.netty.channel.Channel;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.EventLoop;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.EventLoopGroup;
-import org.apache.hadoop.hbase.shaded.io.netty.channel.nio.NioEventLoopGroup;
-import 
org.apache.hadoop.hbase.shaded.io.netty.channel.socket.nio.NioSocketChannel;
+import org.apache.hbase.thirdparty.io.netty.channel.Channel;
+import org.apache.hbase.thirdparty.io.netty.channel.EventLoop;
+import org.apache.hbase.thirdparty.io.netty.channel.EventLoopGroup;
+import org.apache.hbase.thirdparty.io.netty.channel.nio.NioEventLoopGroup;
+import 
org.apache.hbase.thirdparty.io.netty.channel.socket.nio.NioSocketChannel;
 
 @RunWith(Parameterized.class)
 @Category({ MiscTests.class, LargeTests.class })

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/CacheTestUtils.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/CacheTestUtils.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/CacheTestUtils.java
index b925ff6..462f77a 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/CacheTestUtils.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/CacheTestUtils.java
@@ -42,7 +42,7 @@ import org.apache.hadoop.hbase.io.hfile.bucket.BucketCache;
 import org.apache.hadoop.hbase.nio.ByteBuff;
 import org.apache.hadoop.hbase.util.ChecksumType;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 public class CacheTestUtils {
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestCacheOnWrite.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestCacheOnWrite.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestCacheOnWrite.java
index 74a310d..611c524 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestCacheOnWrite.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestCacheOnWrite.java
@@ -71,7 +71,7 @@ import org.junit.runners.Parameterized;
 import org.junit.runners.Parameterized.Parameters;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Lists;
+import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
 
 /**
  * Tests {@link HFile} cache-on-write functionality for the following block

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestLazyDataBlockDecompression.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestLazyDataBlockDecompression.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestLazyDataBlockDecompression.java
index 42cc6e5..f34f326 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestLazyDataBlockDecompression.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestLazyDataBlockDecompression.java
@@ -49,7 +49,7 @@ import org.junit.runners.Parameterized;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Iterables;
+import org.apache.hbase.thirdparty.com.google.common.collect.Iterables;
 
 /**
  * A kind of integration test at the intersection of {@link HFileBlock}, 
{@link CacheConfig},

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/bucket/TestBucketCache.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/bu

[11/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncScanSingleRegionRpcRetryingCaller.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncScanSingleRegionRpcRetryingCaller.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncScanSingleRegionRpcRetryingCaller.java
index 0dcab38..9fdb284 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncScanSingleRegionRpcRetryingCaller.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncScanSingleRegionRpcRetryingCaller.java
@@ -49,9 +49,9 @@ import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions;
-import org.apache.hadoop.hbase.shaded.io.netty.util.HashedWheelTimer;
-import org.apache.hadoop.hbase.shaded.io.netty.util.Timeout;
+import org.apache.hbase.thirdparty.com.google.common.base.Preconditions;
+import org.apache.hbase.thirdparty.io.netty.util.HashedWheelTimer;
+import org.apache.hbase.thirdparty.io.netty.util.Timeout;
 import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
 import org.apache.hadoop.hbase.shaded.protobuf.RequestConverter;
 import org.apache.hadoop.hbase.shaded.protobuf.ResponseConverter;

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncServerRequestRpcRetryingCaller.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncServerRequestRpcRetryingCaller.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncServerRequestRpcRetryingCaller.java
index dbbe999..20b7c31 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncServerRequestRpcRetryingCaller.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncServerRequestRpcRetryingCaller.java
@@ -17,7 +17,7 @@
  */
 package org.apache.hadoop.hbase.client;
 
-import org.apache.hadoop.hbase.shaded.io.netty.util.HashedWheelTimer;
+import org.apache.hbase.thirdparty.io.netty.util.HashedWheelTimer;
 
 import java.io.IOException;
 import java.util.concurrent.CompletableFuture;

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncSingleRequestRpcRetryingCaller.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncSingleRequestRpcRetryingCaller.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncSingleRequestRpcRetryingCaller.java
index ddedc3b..56c82fb 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncSingleRequestRpcRetryingCaller.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncSingleRequestRpcRetryingCaller.java
@@ -17,7 +17,7 @@
  */
 package org.apache.hadoop.hbase.client;
 
-import org.apache.hadoop.hbase.shaded.io.netty.util.HashedWheelTimer;
+import org.apache.hbase.thirdparty.io.netty.util.HashedWheelTimer;
 
 import java.io.IOException;
 import java.util.concurrent.CompletableFuture;

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTable.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTable.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTable.java
index 44aa31d..37c80b3 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTable.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTable.java
@@ -34,7 +34,7 @@ import org.apache.hadoop.hbase.TableName;
 import org.apache.hadoop.hbase.util.Bytes;
 import org.apache.yetus.audience.InterfaceAudience;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions;
+import org.apache.hbase.thirdparty.com.google.common.base.Preconditions;
 
 /**
  * The interface for asynchronous version of Table. Obtain an instance from a

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTableResultScanner.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTableResultScanner.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTableResultScanner.java
index c91c217..9b97e93 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/AsyncTableResultScanner.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/As

[01/12] hbase git commit: HBASE-19552 Update hbase-thirdparty version

2017-12-28 Thread mdrob
Repository: hbase
Updated Branches:
  refs/heads/master 78013a0c1 -> c3b4f788b


HBASE-19552 Update hbase-thirdparty version

Some manual cleanup of changing package names in pom files and getting
rid of the no-longer-needed netty system property.

This commit will break compilation, package renames in source code are
done in follow-on commits using straightforward find and replace.

's/org.apache.hadoop.hbase.shaded.com.google/org.apache.hbase.thirdparty.com.google/'
's/org.apache.hadoop.hbase.shaded.io.netty/org.apache.hbase.thirdparty.io.netty/'


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

Branch: refs/heads/master
Commit: ea7d5fc88454cc8d623d837e2d8975643e354bda
Parents: 78013a0
Author: Mike Drob 
Authored: Wed Dec 27 10:58:47 2017 -0600
Committer: Mike Drob 
Committed: Thu Dec 28 11:41:42 2017 -0600

--
 bin/hbase   | 13 ++-
 .../src/main/resources/hbase/checkstyle.xml |  2 +-
 hbase-mapreduce/pom.xml |  3 --
 hbase-protocol-shaded/pom.xml   |  2 +-
 hbase-server/pom.xml|  1 -
 hbase-spark/pom.xml |  9 +
 pom.xml | 24 +++-
 src/main/asciidoc/_chapters/developer.adoc  | 40 ++--
 8 files changed, 16 insertions(+), 78 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/ea7d5fc8/bin/hbase
--
diff --git a/bin/hbase b/bin/hbase
index d98e7bc..85cc874 100755
--- a/bin/hbase
+++ b/bin/hbase
@@ -480,16 +480,9 @@ fi
 HEAP_SETTINGS="$JAVA_HEAP_MAX $JAVA_OFFHEAP_MAX"
 # Exec unless HBASE_NOEXEC is set.
 export CLASSPATH
-# Netty is shaded in hbase. The shaded netty is pulled in with 
org.apache.hbase.thirdparty:hbase-shaded-netty.
-# It has a .so in it. Shading requires rename of the .so and then passing a 
system property so netty finds the
-# renamed .so and associates it w/ the relocated netty files.
-# So we can find the relocated .so, we need to add a system property pointing 
at new location. Trick is from:
-#  
https://stackoverflow.com/questions/33825743/rename-files-inside-a-jar-using-some-maven-plugin
-# See toward the end of this issue for how to pass config: 
https://github.com/netty/netty/issues/6665
-#
-NETTY_PROP="-Dorg.apache.hadoop.hbase.shaded.io.netty.packagePrefix=org.apache.hadoop.hbase.shaded."
+
 if [ "${HBASE_NOEXEC}" != "" ]; then
-  "$JAVA" -Dproc_$COMMAND "$NETTY_PROP" -XX:OnOutOfMemoryError="kill -9 %p" 
$HEAP_SETTINGS $HBASE_OPTS $CLASS "$@"
+  "$JAVA" -Dproc_$COMMAND -XX:OnOutOfMemoryError="kill -9 %p" $HEAP_SETTINGS 
$HBASE_OPTS $CLASS "$@"
 else
-  exec "$JAVA" -Dproc_$COMMAND  "$NETTY_PROP" -XX:OnOutOfMemoryError="kill -9 
%p" $HEAP_SETTINGS $HBASE_OPTS $CLASS "$@"
+  exec "$JAVA" -Dproc_$COMMAND -XX:OnOutOfMemoryError="kill -9 %p" 
$HEAP_SETTINGS $HBASE_OPTS $CLASS "$@"
 fi

http://git-wip-us.apache.org/repos/asf/hbase/blob/ea7d5fc8/hbase-checkstyle/src/main/resources/hbase/checkstyle.xml
--
diff --git a/hbase-checkstyle/src/main/resources/hbase/checkstyle.xml 
b/hbase-checkstyle/src/main/resources/hbase/checkstyle.xml
index bdfea28..4643709 100644
--- a/hbase-checkstyle/src/main/resources/hbase/checkstyle.xml
+++ b/hbase-checkstyle/src/main/resources/hbase/checkstyle.xml
@@ -67,7 +67,7 @@
 http://checkstyle.sourceforge.net/config_imports.html -->
 
 
-  
+  
   
   
   

http://git-wip-us.apache.org/repos/asf/hbase/blob/ea7d5fc8/hbase-mapreduce/pom.xml
--
diff --git a/hbase-mapreduce/pom.xml b/hbase-mapreduce/pom.xml
index 645c0e1..38a0684 100644
--- a/hbase-mapreduce/pom.xml
+++ b/hbase-mapreduce/pom.xml
@@ -76,9 +76,6 @@
   
org.apache.hadoop.hbase.ServerResourceCheckerJUnitListener
 
   
-  
-
org.apache.hadoop.hbase.shaded.
-  
 
   
   

http://git-wip-us.apache.org/repos/asf/hbase/blob/ea7d5fc8/hbase-protocol-shaded/pom.xml
--
diff --git a/hbase-protocol-shaded/pom.xml b/hbase-protocol-shaded/pom.xml
index e71a21b..ab04e98 100644
--- a/hbase-protocol-shaded/pom.xml
+++ b/hbase-protocol-shaded/pom.xml
@@ -120,7 +120,7 @@
 
   
 ([^\.])com.google.protobuf 
-
$1org.apache.hadoop.hbase.shaded.com.google.protobuf 
+
$1org.apache.hbase.thirdparty.com.google.protobuf

[09/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-common/src/main/java/org/apache/hadoop/hbase/PrivateCellUtil.java
--
diff --git 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/PrivateCellUtil.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/PrivateCellUtil.java
index de2e482..bdcb8f5 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/PrivateCellUtil.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/PrivateCellUtil.java
@@ -41,7 +41,7 @@ import org.apache.hadoop.hbase.util.Bytes;
 import org.apache.hadoop.hbase.util.ClassSize;
 import org.apache.yetus.audience.InterfaceAudience;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * Utility methods helpful slinging {@link Cell} instances. It has more 
powerful and

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-common/src/main/java/org/apache/hadoop/hbase/ScheduledChore.java
--
diff --git 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/ScheduledChore.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/ScheduledChore.java
index 16842da..468b5d3 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/ScheduledChore.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/ScheduledChore.java
@@ -24,7 +24,7 @@ import java.util.concurrent.TimeUnit;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * ScheduledChore is a task performed on a period in hbase. ScheduledChores 
become active once

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-common/src/main/java/org/apache/hadoop/hbase/ServerName.java
--
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/ServerName.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/ServerName.java
index 10f658c..7a32b44 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/ServerName.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/ServerName.java
@@ -29,7 +29,7 @@ import org.apache.hadoop.hbase.util.Addressing;
 import org.apache.hadoop.hbase.util.Bytes;
 import org.apache.yetus.audience.InterfaceAudience;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.net.InetAddresses;
+import org.apache.hbase.thirdparty.com.google.common.net.InetAddresses;
 
 
 /**

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-common/src/main/java/org/apache/hadoop/hbase/TableName.java
--
diff --git a/hbase-common/src/main/java/org/apache/hadoop/hbase/TableName.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/TableName.java
index 5a43794..e6cabbc 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/TableName.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/TableName.java
@@ -141,7 +141,7 @@ public final class TableName implements 
Comparable {
 }
 
 int namespaceDelimIndex =
-  
org.apache.hadoop.hbase.shaded.com.google.common.primitives.Bytes.lastIndexOf(tableName,
+  
org.apache.hbase.thirdparty.com.google.common.primitives.Bytes.lastIndexOf(tableName,
 (byte) NAMESPACE_DELIM);
 if (namespaceDelimIndex < 0){
   isLegalTableQualifierName(tableName);
@@ -436,7 +436,7 @@ public final class TableName implements 
Comparable {
 }
 
 int namespaceDelimIndex =
-  
org.apache.hadoop.hbase.shaded.com.google.common.primitives.Bytes.lastIndexOf(fullName,
+  
org.apache.hbase.thirdparty.com.google.common.primitives.Bytes.lastIndexOf(fullName,
 (byte) NAMESPACE_DELIM);
 
 if (namespaceDelimIndex < 0) {

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-common/src/main/java/org/apache/hadoop/hbase/io/ByteBufferPool.java
--
diff --git 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/io/ByteBufferPool.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/io/ByteBufferPool.java
index e699ea9..6c009b3 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/io/ByteBufferPool.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/io/ByteBufferPool.java
@@ -26,7 +26,7 @@ import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;

[02/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestSplitTransactionOnCluster.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestSplitTransactionOnCluster.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestSplitTransactionOnCluster.java
index a86ec2f..4c66b79 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestSplitTransactionOnCluster.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestSplitTransactionOnCluster.java
@@ -101,8 +101,8 @@ import org.junit.rules.TestName;
 import org.junit.rules.TestRule;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController;
-import org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
+import org.apache.hbase.thirdparty.com.google.protobuf.RpcController;
+import org.apache.hbase.thirdparty.com.google.protobuf.ServiceException;
 import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
 import 
org.apache.hadoop.hbase.shaded.protobuf.generated.RegionServerStatusProtos.RegionStateTransition.TransitionCode;
 import 
org.apache.hadoop.hbase.shaded.protobuf.generated.RegionServerStatusProtos.ReportRegionStateTransitionRequest;

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestTimestampFilterSeekHint.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestTimestampFilterSeekHint.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestTimestampFilterSeekHint.java
index b3a21bd..7900bd6 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestTimestampFilterSeekHint.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestTimestampFilterSeekHint.java
@@ -20,7 +20,7 @@ package org.apache.hadoop.hbase.regionserver;
 
 import java.io.IOException;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.ImmutableList;
+import org.apache.hbase.thirdparty.com.google.common.collect.ImmutableList;
 import org.apache.commons.lang3.RandomStringUtils;
 import org.apache.hadoop.hbase.HBaseTestingUtility;
 import org.apache.hadoop.hbase.HColumnDescriptor;

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/compactions/MockStoreFileGenerator.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/compactions/MockStoreFileGenerator.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/compactions/MockStoreFileGenerator.java
index 21cee13..cb6c486 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/compactions/MockStoreFileGenerator.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/compactions/MockStoreFileGenerator.java
@@ -31,7 +31,7 @@ import org.apache.hadoop.hbase.regionserver.HStoreFile;
 import org.apache.hadoop.hbase.regionserver.StoreFileReader;
 import org.apache.hadoop.util.StringUtils;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.base.MoreObjects;
+import org.apache.hbase.thirdparty.com.google.common.base.MoreObjects;
 
 /**
  * Base class of objects that can create mock store files with a given size.

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/compactions/TestStripeCompactionPolicy.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/compactions/TestStripeCompactionPolicy.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/compactions/TestStripeCompactionPolicy.java
index 6176597..fea2ae9 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/compactions/TestStripeCompactionPolicy.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/compactions/TestStripeCompactionPolicy.java
@@ -84,8 +84,8 @@ import org.junit.runners.Parameterized.Parameter;
 import org.junit.runners.Parameterized.Parameters;
 import org.mockito.ArgumentMatcher;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.ImmutableList;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Lists;
+import org.apache.hbase.thirdparty.com.google.common.collect.ImmutableList;
+import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
 
 @RunWith(Parameterized.class)
 @Category({RegionServerTests.class, SmallTests.class})

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server

[04/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/security/visibility/ExpressionParser.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/security/visibility/ExpressionParser.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/security/visibility/ExpressionParser.java
index a89de16..0bc74b1 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/security/visibility/ExpressionParser.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/security/visibility/ExpressionParser.java
@@ -86,7 +86,7 @@ public class ExpressionParser {
   // This could be costly. but do we have any alternative?
   // If we don't do this way then we may have to handle while checking 
the authorizations.
   // Better to do it here.
-  byte[] array = 
org.apache.hadoop.hbase.shaded.com.google.common.primitives.Bytes.toArray(list);
+  byte[] array = 
org.apache.hbase.thirdparty.com.google.common.primitives.Bytes.toArray(list);
   String leafExp = Bytes.toString(array).trim();
   if (leafExp.isEmpty()) {
 throw new ParseException("Error parsing expression " + expS + " at 
column : " + index);

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/security/visibility/VisibilityController.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/security/visibility/VisibilityController.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/security/visibility/VisibilityController.java
index b90f104..d4b8e58 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/security/visibility/VisibilityController.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/security/visibility/VisibilityController.java
@@ -106,8 +106,8 @@ import 
org.apache.hadoop.hbase.security.AccessDeniedException;
 import org.apache.hadoop.hbase.security.Superusers;
 import org.apache.hadoop.hbase.security.User;
 import org.apache.hadoop.hbase.security.access.AccessController;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Lists;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.MapMaker;
+import org.apache.hbase.thirdparty.com.google.common.collect.Lists;
+import org.apache.hbase.thirdparty.com.google.common.collect.MapMaker;
 import org.apache.hadoop.hbase.util.Bytes;
 import org.apache.hadoop.hbase.util.Pair;
 import org.apache.hadoop.util.StringUtils;

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/RestoreSnapshotHelper.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/RestoreSnapshotHelper.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/RestoreSnapshotHelper.java
index 009d7f8..404f8ff 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/RestoreSnapshotHelper.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/RestoreSnapshotHelper.java
@@ -66,7 +66,7 @@ import org.apache.hadoop.io.IOUtils;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.ListMultimap;
+import org.apache.hbase.thirdparty.com.google.common.collect.ListMultimap;
 import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
 import 
org.apache.hadoop.hbase.shaded.protobuf.generated.SnapshotProtos.SnapshotDescription;
 import 
org.apache.hadoop.hbase.shaded.protobuf.generated.SnapshotProtos.SnapshotRegionManifest;

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotDescriptionUtils.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotDescriptionUtils.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotDescriptionUtils.java
index d5cab63..293d105 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotDescriptionUtils.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/snapshot/SnapshotDescriptionUtils.java
@@ -42,7 +42,7 @@ import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.ListMultimap;
+import org.apache.hbase.thirdparty.com.google.common.collect.ListMultimap;
 import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
 import 
org.apache.hadoop.hbase.shaded.protobuf.generated.SnapshotProtos.SnapshotDescription;
 

http://git-wip-us.apache.org/repos/as

[08/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/CellCounter.java
--
diff --git 
a/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/CellCounter.java
 
b/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/CellCounter.java
index 6d6125f..aa79aac 100644
--- 
a/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/CellCounter.java
+++ 
b/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/CellCounter.java
@@ -49,7 +49,7 @@ import 
org.apache.hadoop.mapreduce.lib.output.TextOutputFormat;
 import org.apache.hadoop.util.Tool;
 import org.apache.hadoop.util.ToolRunner;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions;
+import org.apache.hbase.thirdparty.com.google.common.base.Preconditions;
 
 
 /**

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/ExportUtils.java
--
diff --git 
a/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/ExportUtils.java
 
b/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/ExportUtils.java
index 34f3398..f164771 100644
--- 
a/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/ExportUtils.java
+++ 
b/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/ExportUtils.java
@@ -38,7 +38,7 @@ import org.apache.hadoop.hbase.filter.PrefixFilter;
 import org.apache.hadoop.hbase.filter.RegexStringComparator;
 import org.apache.hadoop.hbase.filter.RowFilter;
 import org.apache.hadoop.hbase.security.visibility.Authorizations;
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 import org.apache.hadoop.hbase.util.Bytes;
 import org.apache.hadoop.hbase.util.Triple;
 import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat2.java
--
diff --git 
a/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat2.java
 
b/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat2.java
index 312b315..60352ea 100644
--- 
a/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat2.java
+++ 
b/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat2.java
@@ -91,7 +91,7 @@ import org.apache.yetus.audience.InterfaceAudience;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * Writes HFiles. Passed Cells must arrive in order.

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/HashTable.java
--
diff --git 
a/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/HashTable.java
 
b/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/HashTable.java
index e68ac3b..e1c69a5 100644
--- 
a/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/HashTable.java
+++ 
b/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/HashTable.java
@@ -56,9 +56,9 @@ import org.apache.hadoop.util.Tool;
 import org.apache.hadoop.util.ToolRunner;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Charsets;
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Throwables;
-import org.apache.hadoop.hbase.shaded.com.google.common.collect.Ordering;
+import org.apache.hbase.thirdparty.com.google.common.base.Charsets;
+import org.apache.hbase.thirdparty.com.google.common.base.Throwables;
+import org.apache.hbase.thirdparty.com.google.common.collect.Ordering;
 
 public class HashTable extends Configured implements Tool {
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/Import.java
--
diff --git 
a/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/Import.java 
b/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/Import.java
index e2b22d7..d58ff48 100644
--- 
a/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/Import.java
+++ 
b/hbase-mapreduce/src/main/java/org/apache/hadoop/hbase/mapreduce/Import.java
@@ -642,7 +642,7 @@ public class Import extends Configured implements Tool {
 

[12/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
HBASE-19552 find-and-replace thirdparty offset


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

Branch: refs/heads/master
Commit: c3b4f788b16ac4e0e8cfd319f495308ba4d158f5
Parents: ea7d5fc
Author: Mike Drob 
Authored: Thu Dec 28 11:52:32 2017 -0600
Committer: Mike Drob 
Committed: Thu Dec 28 11:52:32 2017 -0600

--
 .../hadoop/hbase/backup/BackupHFileCleaner.java |  6 +--
 .../hbase/backup/impl/BackupAdminImpl.java  |  2 +-
 .../hbase/backup/impl/BackupCommands.java   |  2 +-
 .../hadoop/hbase/backup/impl/BackupManager.java |  2 +-
 .../hbase/backup/impl/TableBackupClient.java|  2 +-
 .../mapreduce/MapReduceHFileSplitterJob.java|  2 +-
 .../hbase/backup/TestBackupBoundaryTests.java   |  2 +-
 .../hadoop/hbase/backup/TestBackupDelete.java   |  2 +-
 .../hbase/backup/TestBackupDeleteRestore.java   |  2 +-
 .../backup/TestBackupDeleteWithFailures.java|  2 +-
 .../hadoop/hbase/backup/TestBackupDescribe.java |  2 +-
 .../hbase/backup/TestBackupMultipleDeletes.java |  2 +-
 .../hbase/backup/TestBackupShowHistory.java |  2 +-
 .../hbase/backup/TestBackupStatusProgress.java  |  2 +-
 .../hadoop/hbase/backup/TestFullRestore.java|  2 +-
 .../hbase/backup/TestIncrementalBackup.java |  2 +-
 .../TestIncrementalBackupDeleteTable.java   |  2 +-
 .../TestIncrementalBackupMergeWithFailures.java |  2 +-
 .../TestIncrementalBackupWithBulkLoad.java  |  2 +-
 .../TestIncrementalBackupWithFailures.java  |  2 +-
 .../hadoop/hbase/backup/TestRemoteBackup.java   |  2 +-
 .../backup/TestRepairAfterFailedDelete.java |  2 +-
 .../backup/master/TestBackupLogCleaner.java |  4 +-
 .../hadoop/hbase/errorprone/AlwaysPasses.java   |  2 +-
 .../hadoop/hbase/ClusterMetricsBuilder.java |  4 +-
 .../org/apache/hadoop/hbase/ClusterStatus.java  |  2 +-
 .../apache/hadoop/hbase/MetaTableAccessor.java  |  2 +-
 .../org/apache/hadoop/hbase/RegionLoad.java |  2 +-
 .../hadoop/hbase/RegionMetricsBuilder.java  |  4 +-
 .../org/apache/hadoop/hbase/ServerLoad.java |  2 +-
 .../hadoop/hbase/ServerMetricsBuilder.java  |  2 +-
 .../main/java/org/apache/hadoop/hbase/Size.java |  2 +-
 .../org/apache/hadoop/hbase/client/Admin.java   |  2 +-
 .../client/AsyncAdminRequestRetryingCaller.java |  2 +-
 .../client/AsyncBatchRpcRetryingCaller.java |  2 +-
 .../client/AsyncBufferedMutatorBuilderImpl.java |  2 +-
 .../hbase/client/AsyncConnectionImpl.java   |  6 +--
 .../AsyncMasterRequestRpcRetryingCaller.java|  2 +-
 .../hadoop/hbase/client/AsyncProcess.java   |  2 +-
 .../hadoop/hbase/client/AsyncRegionLocator.java |  4 +-
 .../hbase/client/AsyncRequestFutureImpl.java|  2 +-
 .../hbase/client/AsyncRpcRetryingCaller.java|  2 +-
 .../client/AsyncRpcRetryingCallerFactory.java   |  6 +--
 .../AsyncScanSingleRegionRpcRetryingCaller.java |  6 +--
 .../AsyncServerRequestRpcRetryingCaller.java|  2 +-
 .../AsyncSingleRequestRpcRetryingCaller.java|  2 +-
 .../apache/hadoop/hbase/client/AsyncTable.java  |  2 +-
 .../hbase/client/AsyncTableResultScanner.java   |  4 +-
 .../hbase/client/BufferedMutatorImpl.java   |  2 +-
 .../client/CancellableRegionServerCallable.java | 12 ++---
 .../client/ClientAsyncPrefetchScanner.java  |  2 +-
 .../hadoop/hbase/client/ClientScanner.java  |  2 +-
 .../hbase/client/ClientServiceCallable.java |  6 +--
 .../hbase/client/ClusterStatusListener.java | 20 
 .../client/ColumnFamilyDescriptorBuilder.java   |  2 +-
 .../hbase/client/ConnectionConfiguration.java   |  2 +-
 .../hbase/client/ConnectionImplementation.java  | 10 ++--
 .../hadoop/hbase/client/ConnectionUtils.java|  6 +--
 .../apache/hadoop/hbase/client/HBaseAdmin.java  |  4 +-
 .../hadoop/hbase/client/HRegionLocator.java |  2 +-
 .../org/apache/hadoop/hbase/client/HTable.java  |  4 +-
 .../hadoop/hbase/client/HTableMultiplexer.java  |  4 +-
 .../client/MasterCoprocessorRpcChannelImpl.java |  2 +-
 .../hadoop/hbase/client/MetricsConnection.java  |  6 +--
 .../hbase/client/MultiServerCallable.java   |  4 +-
 .../apache/hadoop/hbase/client/Mutation.java| 12 ++---
 .../client/PreemptiveFastFailInterceptor.java   |  2 +-
 .../org/apache/hadoop/hbase/client/Query.java   |  6 +--
 .../hadoop/hbase/client/RawAsyncHBaseAdmin.java | 12 ++---
 .../hadoop/hbase/client/RawAsyncTableImpl.java  |  4 +-
 .../client/RegionCoprocessorRpcChannelImpl.java |  2 +-
 .../client/RegionCoprocessorServiceExec.java|  2 +-
 .../apache/hadoop/hbase/client/RegionInfo.java  |  2 +-
 .../hadoop/hbase/client/RegionInfoBuilder.java  |  2 +-
 .../hbase/client/RegionServerCallable.java  |  2 +-
 .../RegionServerCoprocessorRpcChannelImpl.java  |  2 +-
 .../apache/hadoop/hbase/client/RowAccess.java

[07/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/CoprocessorHost.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/CoprocessorHost.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/CoprocessorHost.java
index 9489d69..ca08992 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/CoprocessorHost.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/CoprocessorHost.java
@@ -44,7 +44,7 @@ import org.apache.hadoop.hbase.DoNotRetryIOException;
 import org.apache.hadoop.hbase.HConstants;
 import org.apache.hadoop.hbase.ipc.RpcServer;
 import org.apache.hadoop.hbase.security.User;
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 import org.apache.hadoop.hbase.util.CoprocessorClassLoader;
 import org.apache.hadoop.hbase.util.SortedList;
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/HasRegionServerServices.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/HasRegionServerServices.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/HasRegionServerServices.java
index 1c060cc..89a2c72 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/HasRegionServerServices.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/HasRegionServerServices.java
@@ -34,4 +34,4 @@ public interface HasRegionServerServices {
* @return An instance of RegionServerServices, an object NOT for 
Coprocessor consumption.
*/
   RegionServerServices getRegionServerServices();
-}
\ No newline at end of file
+}

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MetricsCoprocessor.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MetricsCoprocessor.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MetricsCoprocessor.java
index 82e28b3..8c1f9e3 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MetricsCoprocessor.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MetricsCoprocessor.java
@@ -25,7 +25,7 @@ import org.apache.hadoop.hbase.metrics.MetricRegistries;
 import org.apache.hadoop.hbase.metrics.MetricRegistry;
 import org.apache.hadoop.hbase.metrics.MetricRegistryInfo;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * Utility class for tracking metrics for various types of coprocessors. Each 
coprocessor instance

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/ObserverContextImpl.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/ObserverContextImpl.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/ObserverContextImpl.java
index 8ad8ea2..7de6f0b 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/ObserverContextImpl.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/ObserverContextImpl.java
@@ -23,7 +23,7 @@ import org.apache.hadoop.hbase.ipc.RpcServer;
 import org.apache.hadoop.hbase.security.User;
 import org.apache.yetus.audience.InterfaceAudience;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.common.annotations.VisibleForTesting;
+import 
org.apache.hbase.thirdparty.com.google.common.annotations.VisibleForTesting;
 
 /**
  * This is the only implementation of {@link ObserverContext}, which serves as 
the interface for

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-server/src/main/java/org/apache/hadoop/hbase/errorhandling/ForeignException.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/errorhandling/ForeignException.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/errorhandling/ForeignException.java
index 57e0e45..85abc72 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/errorhandling/ForeignException.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/errorhandling/ForeignException.java
@@ -157,7 +157,7 @@ public class ForeignException extends IOException {
* @param bytes
* @return the ForeignExcpetion instance
* @throws InvalidProtocolBufferExcepti

[10/12] hbase git commit: HBASE-19552 find-and-replace thirdparty offset

2017-12-28 Thread mdrob
http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueExcludeFilter.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueExcludeFilter.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueExcludeFilter.java
index f39834a..566c408 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueExcludeFilter.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueExcludeFilter.java
@@ -32,7 +32,7 @@ import 
org.apache.hadoop.hbase.exceptions.DeserializationException;
 import org.apache.hadoop.hbase.filter.CompareFilter.CompareOp;
 import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
 import org.apache.hadoop.hbase.shaded.protobuf.generated.FilterProtos;
-import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.InvalidProtocolBufferException;
+import 
org.apache.hbase.thirdparty.com.google.protobuf.InvalidProtocolBufferException;
 
 /**
  * A {@link Filter} that checks a single column value, but does not emit the

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.java
index d95320a..e5c83b1 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SingleColumnValueFilter.java
@@ -29,15 +29,15 @@ import org.apache.hadoop.hbase.PrivateCellUtil;
 import org.apache.yetus.audience.InterfaceAudience;
 import org.apache.hadoop.hbase.exceptions.DeserializationException;
 import org.apache.hadoop.hbase.filter.CompareFilter.CompareOp;
-import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.InvalidProtocolBufferException;
-import org.apache.hadoop.hbase.shaded.com.google.protobuf.UnsafeByteOperations;
+import 
org.apache.hbase.thirdparty.com.google.protobuf.InvalidProtocolBufferException;
+import org.apache.hbase.thirdparty.com.google.protobuf.UnsafeByteOperations;
 import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
 import org.apache.hadoop.hbase.shaded.protobuf.generated.FilterProtos;
 import org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
 import 
org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos.CompareType;
 import org.apache.hadoop.hbase.util.Bytes;
 
-import org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions;
+import org.apache.hbase.thirdparty.com.google.common.base.Preconditions;
 
 /**
  * This filter is used to filter cells based on value. It takes a {@link 
CompareFilter.CompareOp}

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SkipFilter.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SkipFilter.java 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SkipFilter.java
index d099e32..c710548 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SkipFilter.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SkipFilter.java
@@ -26,7 +26,7 @@ import org.apache.yetus.audience.InterfaceAudience;
 import org.apache.hadoop.hbase.exceptions.DeserializationException;
 import org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
 import org.apache.hadoop.hbase.shaded.protobuf.generated.FilterProtos;
-import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.InvalidProtocolBufferException;
+import 
org.apache.hbase.thirdparty.com.google.protobuf.InvalidProtocolBufferException;
 
 /**
  * A wrapper filter that filters an entire row if any of the Cell checks do

http://git-wip-us.apache.org/repos/asf/hbase/blob/c3b4f788/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SubstringComparator.java
--
diff --git 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SubstringComparator.java
 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SubstringComparator.java
index 3a33116..202a5e3 100644
--- 
a/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SubstringComparator.java
+++ 
b/hbase-client/src/main/java/org/apache/hadoop/hbase/filter/SubstringComparator.java
@@ -24,7 +24,7 @@ import 
org.apache.hadoop.hbase.exceptions.DeserializationException;
 import org.apache.hadoop.hbase.shaded.protobuf.generated.ComparatorProtos;
 import org.apache.hadoop.hbase.util.Bytes;
 
-import 
org.apache.hadoop.hbase.shaded.com.google.proto

hbase git commit: HBASE-19653 Reduce the default hbase.client.start.log.errors.counter

2017-12-28 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/branch-2 33ce14cb2 -> 4dc38aeb2


HBASE-19653 Reduce the default hbase.client.start.log.errors.counter

Signed-off-by: Michael Stack 


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

Branch: refs/heads/branch-2
Commit: 4dc38aeb2fc89cdeebb2801eb52ad0a643c58b7f
Parents: 33ce14c
Author: Guanghao Zhang 
Authored: Thu Dec 28 14:48:54 2017 +0800
Committer: Michael Stack 
Committed: Thu Dec 28 07:56:22 2017 -0800

--
 .../main/java/org/apache/hadoop/hbase/client/AsyncProcess.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/4dc38aeb/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 fc511f5..2a93f59 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
@@ -95,12 +95,12 @@ class AsyncProcess {
   /**
* Configure the number of failures after which the client will start 
logging. A few failures
* is fine: region moved, then is not opened, then is overloaded. We try to 
have an acceptable
-   * heuristic for the number of errors we don't log. 9 was chosen because we 
wait for 1s at
+   * heuristic for the number of errors we don't log. 5 was chosen because we 
wait for 1s at
* this stage.
*/
   public static final String START_LOG_ERRORS_AFTER_COUNT_KEY =
   "hbase.client.start.log.errors.counter";
-  public static final int DEFAULT_START_LOG_ERRORS_AFTER_COUNT = 9;
+  public static final int DEFAULT_START_LOG_ERRORS_AFTER_COUNT = 5;
 
   /**
* Configuration to decide whether to log details for batch error



hbase git commit: HBASE-19653 Reduce the default hbase.client.start.log.errors.counter

2017-12-28 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/master 8580ba7b6 -> 78013a0c1


HBASE-19653 Reduce the default hbase.client.start.log.errors.counter

Signed-off-by: Michael Stack 


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

Branch: refs/heads/master
Commit: 78013a0c1e7deabbdc59af6b269191ece5546557
Parents: 8580ba7
Author: Guanghao Zhang 
Authored: Thu Dec 28 14:48:54 2017 +0800
Committer: Michael Stack 
Committed: Thu Dec 28 07:55:57 2017 -0800

--
 .../main/java/org/apache/hadoop/hbase/client/AsyncProcess.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/78013a0c/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 fc511f5..2a93f59 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
@@ -95,12 +95,12 @@ class AsyncProcess {
   /**
* Configure the number of failures after which the client will start 
logging. A few failures
* is fine: region moved, then is not opened, then is overloaded. We try to 
have an acceptable
-   * heuristic for the number of errors we don't log. 9 was chosen because we 
wait for 1s at
+   * heuristic for the number of errors we don't log. 5 was chosen because we 
wait for 1s at
* this stage.
*/
   public static final String START_LOG_ERRORS_AFTER_COUNT_KEY =
   "hbase.client.start.log.errors.counter";
-  public static final int DEFAULT_START_LOG_ERRORS_AFTER_COUNT = 9;
+  public static final int DEFAULT_START_LOG_ERRORS_AFTER_COUNT = 5;
 
   /**
* Configuration to decide whether to log details for batch error



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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.LastOnRowColByteBufferExtendedCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.LastOnRowColByteBufferExtendedCell.html
 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.LastOnRowColByteBufferExtendedCell.html
new file mode 100644
index 000..5cdfa16
--- /dev/null
+++ 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.LastOnRowColByteBufferExtendedCell.html
@@ -0,0 +1,609 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+PrivateCellUtil.LastOnRowColByteBufferExtendedCell (Apache HBase 
3.0.0-SNAPSHOT API)
+
+
+
+
+
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class PrivateCellUtil.LastOnRowColByteBufferExtendedCell
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.ByteBufferExtendedCell
+
+
+org.apache.hadoop.hbase.PrivateCellUtil.EmptyByteBufferExtendedCell
+
+
+org.apache.hadoop.hbase.PrivateCellUtil.LastOnRowByteBufferExtendedCell
+
+
+org.apache.hadoop.hbase.PrivateCellUtil.LastOnRowColByteBufferExtendedCell
+
+
+
+
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, ExtendedCell, HeapSize, RawCell
+
+
+Enclosing class:
+PrivateCellUtil
+
+
+
+private static class PrivateCellUtil.LastOnRowColByteBufferExtendedCell
+extends PrivateCellUtil.LastOnRowByteBufferExtendedCell
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+
+
+
+Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
+Cell.Type
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+private http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+fBuffer 
+
+
+private static int
+FIXED_OVERHEAD 
+
+
+private byte
+flength 
+
+
+private int
+foffset 
+
+
+private http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+qBuffer 
+
+
+private int
+qlength 
+
+
+private int
+qoffset 
+
+
+
+
+
+
+Fields inherited from interface org.apache.hadoop.hbase.ExtendedCell
+CELL_NOT_BASED_ON_CHUNK
+
+
+
+
+
+Fields inherited from interface org.apache.hadoop.hbase.RawCell
+MAX_TAGS_LENGTH
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+LastOnRowColByteBufferExtendedCell(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer rBuffer,
+  int roffset,
+  short rlength,
+  http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer fBuffer,
+  int foffset,
+  byte flength,
+  http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer qBuffer,
+  int qoffset,
+  int qlength) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+All Methods Instance Methods Concrete Methods 
+
+Modifier and Type
+Method and Description
+
+
+http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+getFamilyByteBuffer() 
+
+
+byte
+getFamilyLength() 
+
+
+int
+getFamilyPosition() 
+
+
+http://docs.oracle.com/javase/8/docs/api/java

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

2017-12-28 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 7254d5f48 -> d449e87f6


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/regionserver/ByteBufferChunkKeyValue.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/ByteBufferChunkKeyValue.html 
b/devapidocs/org/apache/hadoop/hbase/regionserver/ByteBufferChunkKeyValue.html
new file mode 100644
index 000..ead231c
--- /dev/null
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/ByteBufferChunkKeyValue.html
@@ -0,0 +1,389 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+ByteBufferChunkKeyValue (Apache HBase 3.0.0-SNAPSHOT API)
+
+
+
+
+
+var methods = {"i0":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase.regionserver
+Class 
ByteBufferChunkKeyValue
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.ByteBufferExtendedCell
+
+
+org.apache.hadoop.hbase.ByteBufferKeyValue
+
+
+org.apache.hadoop.hbase.regionserver.ByteBufferChunkKeyValue
+
+
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, ExtendedCell, HeapSize, RawCell
+
+
+
+@InterfaceAudience.Private
+public class ByteBufferChunkKeyValue
+extends ByteBufferKeyValue
+ByteBuffer based cell which has the chunkid at the 0th 
offset
+
+See Also:
+MemStoreLAB
+
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+
+
+
+Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
+Cell.Type
+
+
+
+
+
+
+
+
+Field Summary
+
+
+
+
+Fields inherited from class org.apache.hadoop.hbase.ByteBufferKeyValue
+buf,
 FIXED_OVERHEAD,
 length,
 offset
+
+
+
+
+
+Fields inherited from interface org.apache.hadoop.hbase.ExtendedCell
+CELL_NOT_BASED_ON_CHUNK
+
+
+
+
+
+Fields inherited from interface org.apache.hadoop.hbase.RawCell
+MAX_TAGS_LENGTH
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+ByteBufferChunkKeyValue(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer buf,
+   int offset,
+   int length) 
+
+
+ByteBufferChunkKeyValue(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer buf,
+   int offset,
+   int length,
+   long seqId) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+All Methods Instance Methods Concrete Methods 
+
+Modifier and Type
+Method and Description
+
+
+int
+getChunkId()
+Extracts the id of the backing bytebuffer of this cell if 
it was obtained from fixed sized
+ chunks as in case of MemstoreLAB
+
+
+
+
+
+
+
+Methods inherited from class org.apache.hadoop.hbase.ByteBufferKeyValue
+deepClone,
 equals,
 getBuffer,
 getFamilyArray,
 getFamilyByteBuffer,
 getFamilyLength,
 getFamilyOffset,
 getFamilyPosition,
 getOffset,
 getQualifierArray,
 getQualifierByteBuffer,
 getQualifierLength,
 getQualifierOffset,
 getQualifierPosition,
 getRowArray,
 getRowByteBuffer,
 getRowLength,
 getRowOffset, getRowPosition,
 getSequenceId,
 getSerializedSize,
 getTagsArray,
 getTagsByteBuffer,
 getTagsLength,
 getTagsOffset,
 getTagsPosition,
 getTimestamp, getTypeByte,
 getValueArray,
 getValueByteBuffer,
 getValueLength,
 getValueOffset,
 getValuePosition,
 hashCode,
 heapSize,
 setSequenceId,
 setTimestamp,
 setTimestamp,
 toString,
 write,
 write
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--";
 title="class 

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.OffheapDecodedCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.OffheapDecodedCell.html
 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.OffheapDecodedCell.html
deleted file mode 100644
index 41b74b8..000
--- 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.OffheapDecodedCell.html
+++ /dev/null
@@ -1,1365 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-BufferedDataBlockEncoder.OffheapDecodedCell (Apache HBase 
3.0.0-SNAPSHOT API)
-
-
-
-
-
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev Class
-Next Class
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-Summary: 
-Nested | 
-Field | 
-Constr | 
-Method
-
-
-Detail: 
-Field | 
-Constr | 
-Method
-
-
-
-
-
-
-
-
-org.apache.hadoop.hbase.io.encoding
-Class BufferedDataBlockEncoder.OffheapDecodedCell
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
-
-
-org.apache.hadoop.hbase.ByteBufferCell
-
-
-org.apache.hadoop.hbase.io.encoding.BufferedDataBlockEncoder.OffheapDecodedCell
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, ExtendedCell, HeapSize, RawCell
-
-
-Enclosing class:
-BufferedDataBlockEncoder
-
-
-
-protected static class BufferedDataBlockEncoder.OffheapDecodedCell
-extends ByteBufferCell
-implements ExtendedCell
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
-Cell.DataType
-
-
-
-
-
-
-
-
-Field Summary
-
-Fields 
-
-Modifier and Type
-Field and Description
-
-
-private byte
-familyLength 
-
-
-private int
-familyOffset 
-
-
-private static long
-FIXED_OVERHEAD 
-
-
-private http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-keyBuffer 
-
-
-private int
-qualifierLength 
-
-
-private int
-qualifierOffset 
-
-
-private short
-rowLength 
-
-
-private long
-seqId 
-
-
-private http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-tagsBuffer 
-
-
-private int
-tagsLength 
-
-
-private int
-tagsOffset 
-
-
-private long
-timestamp 
-
-
-private byte
-typeByte 
-
-
-private http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-valueBuffer 
-
-
-private int
-valueLength 
-
-
-private int
-valueOffset 
-
-
-
-
-
-
-Fields inherited from interface org.apache.hadoop.hbase.ExtendedCell
-CELL_NOT_BASED_ON_CHUNK
-
-
-
-
-
-Fields inherited from interface org.apache.hadoop.hbase.RawCell
-MAX_TAGS_LENGTH
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors 
-
-Modifier
-Constructor and Description
-
-
-protected 
-OffheapDecodedCell(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer keyBuffer,
-  short rowLength,
-  int familyOffset,
-  byte familyLength,
-  int qualOffset,
-  int qualLength,
-  long timeStamp,
-  byte typeByte,
-  http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer valueBuffer,
-  int valueOffset,
-  int valueLen,
-   

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.html 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.html
index 8301da7..3b1f09e 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.html
@@ -114,7 +114,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Private
-public class BucketCache
+public class BucketCache
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 implements BlockCache, HeapSize
 BucketCache uses BucketAllocator to 
allocate/free blocks, and uses
@@ -781,7 +781,7 @@ implements 
 
 LOG
-private static final org.slf4j.Logger LOG
+private static final org.slf4j.Logger LOG
 
 
 
@@ -790,7 +790,7 @@ implements 
 
 SINGLE_FACTOR_CONFIG_NAME
-static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String SINGLE_FACTOR_CONFIG_NAME
+static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String SINGLE_FACTOR_CONFIG_NAME
 Priority buckets config
 
 See Also:
@@ -804,7 +804,7 @@ implements 
 
 MULTI_FACTOR_CONFIG_NAME
-static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String MULTI_FACTOR_CONFIG_NAME
+static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String MULTI_FACTOR_CONFIG_NAME
 
 See Also:
 Constant
 Field Values
@@ -817,7 +817,7 @@ implements 
 
 MEMORY_FACTOR_CONFIG_NAME
-static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String MEMORY_FACTOR_CONFIG_NAME
+static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String MEMORY_FACTOR_CONFIG_NAME
 
 See Also:
 Constant
 Field Values
@@ -830,7 +830,7 @@ implements 
 
 EXTRA_FREE_FACTOR_CONFIG_NAME
-static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String EXTRA_FREE_FACTOR_CONFIG_NAME
+static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String EXTRA_FREE_FACTOR_CONFIG_NAME
 
 See Also:
 Constant
 Field Values
@@ -843,7 +843,7 @@ implements 
 
 ACCEPT_FACTOR_CONFIG_NAME
-static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String ACCEPT_FACTOR_CONFIG_NAME
+static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String ACCEPT_FACTOR_CONFIG_NAME
 
 See Also:
 Constant
 Field Values
@@ -856,7 +856,7 @@ implements 
 
 MIN_FACTOR_CONFIG_NAME
-static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String MIN_FACTOR_CONFIG_NAME
+static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String MIN_FACTOR_CONFIG_NAME
 
 See Also:
 Constant
 Field Values
@@ -869,7 +869,7 @@ implements 
 
 DEFAULT_SINGLE_FACTOR
-static final float DEFAULT_SINGLE_FACTOR
+static final float DEFAULT_SINGLE_FACTOR
 Priority buckets
 
 See Also:
@@ -883,7 +883,7 @@ implements 
 
 DEFAULT_MULTI_FACTOR
-static final float DEFAULT_MULTI_FACTOR
+static final float DEFAULT_MULTI_FACTOR
 
 See Also:
 Constant
 Field Values
@@ -896,7 +896,7 @@ implements 
 
 DEFAULT_MEMORY_FACTOR
-static final float DEFAULT_MEMORY_FACTOR
+static final float DEFAULT_MEMORY_FACTOR
 
 See Also:
 Constant
 Field Values
@@ -909,7 +909,7 @@ implements 
 
 DEFAULT_MIN_FACTOR
-static final float DEFAULT_MIN_FACTOR
+static final float DEFAULT_MIN_FACTOR
 
 See Also:
 Constant
 Field Values
@@ -922,7 +922,7 @@ implements 
 
 DEFAULT_EXTRA_FREE_FACTOR
-private static final float DEFAULT_EXTRA_FREE_FACTOR
+private static final float DEFAULT_EXTRA_FREE_FACTOR
 
 See Also:
 Constant
 Field Values
@@ -935,7 +935,7 @@ implements 
 
 DEFAULT_ACCEPT_FACTOR
-private static final float DEFAULT_ACCEPT_FACTOR
+private static final float DEFAULT_ACCEPT_FACTOR
 
 See Also:
 Constant
 Field Values
@@ -948,7 +948,7 @@ implements 
 
 DEFAULT_FREE_ENTIRE_BLOCK_FACTOR
-private static final int DEFAULT_FREE_ENTIRE_BLOCK_FACTOR
+private static final int DEFAULT_FREE_ENTIRE_BLOCK_FACTOR
 
 See Also:
 Constant
 Field Values
@@ -

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/master/RegionState.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/master/RegionState.html 
b/devapidocs/org/apache/hadoop/hbase/master/RegionState.html
index 1a0cb4e..c90c499 100644
--- a/devapidocs/org/apache/hadoop/hbase/master/RegionState.html
+++ b/devapidocs/org/apache/hadoop/hbase/master/RegionState.html
@@ -110,7 +110,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Private
-public class RegionState
+public class RegionState
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 State of a Region while undergoing transitions.
  This class is immutable.
@@ -441,7 +441,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 stamp
-private final long stamp
+private final long stamp
 
 
 
@@ -450,7 +450,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 hri
-private final RegionInfo hri
+private final RegionInfo hri
 
 
 
@@ -459,7 +459,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 serverName
-private final ServerName serverName
+private final ServerName serverName
 
 
 
@@ -468,7 +468,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 state
-private final RegionState.State state
+private final RegionState.State state
 
 
 
@@ -477,7 +477,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 ritDuration
-private long ritDuration
+private long ritDuration
 
 
 
@@ -494,7 +494,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 RegionState
-public RegionState(RegionInfo region,
+public RegionState(RegionInfo region,
RegionState.State state,
ServerName serverName)
 
@@ -505,7 +505,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 RegionState
-public RegionState(RegionInfo region,
+public RegionState(RegionInfo region,
RegionState.State state,
long stamp,
ServerName serverName)
@@ -517,7 +517,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 RegionState
-public RegionState(RegionInfo region,
+public RegionState(RegionInfo region,
RegionState.State state,
long stamp,
ServerName serverName,
@@ -538,7 +538,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 createForTesting
-public static RegionState createForTesting(RegionInfo region,
+public static RegionState createForTesting(RegionInfo region,
RegionState.State state)
 
 
@@ -548,7 +548,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 getState
-public RegionState.State getState()
+public RegionState.State getState()
 
 
 
@@ -557,7 +557,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 getStamp
-public long getStamp()
+public long getStamp()
 
 
 
@@ -566,7 +566,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 getRegion
-public RegionInfo getRegion()
+public RegionInfo getRegion()
 
 
 
@@ -575,7 +575,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 getServerName
-public ServerName getServerName()
+public ServerName getServerName()
 
 
 
@@ -584,7 +584,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 getRitDuration
-public long getRitDuration()
+public long getRitDuration()
 
 
 
@@ -594,7 +594,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 updateRitDuration
 @InterfaceAudience.Private
-void updateRitDuration(long previousStamp)
+void updateRitDuration(long previousStamp)
 Update the duration of region in transition
 
 Parameters:
@@ -608,7 +608,7 @@ void 
 
 isClosing
-public boolean isClosing()
+public boolean isClosing()
 
 
 
@@ -617,7 +617,7 @@ void 
 
 isClosed
-public boolean isClosed()
+public boolean isClosed()
 
 
 
@@ -626,7 +626,7 @@ void 
 
 isOpening
-public boolean isOpening()
+public boolean isOpening()
 
 
 
@@ -635,7 +635,7 @@ void 
 
 isOpened
-public boolean isOpened()
+public boolean isOpened()
 
 
 
@@ -644,7 +644,7 @@ void 
 
 isOffline
-public boolean isOffline()
+public boolean isOffline()
 
 
 
@@ -653,7 +653,7 @@ void 
 
 isSplitting
-public boolean isSplitting()
+public boolean isSplitting()
 
 
 
@@ -662,7 +662,7 @@ void 
 
 isSplit
-public boolean isSplit()
+public boolean isSplit()
 
 
 
@@ -671,7 +671,7 @@ void 
 
 isSplittingNew
-public boolean isSplittingNew()
+public boolean isSplittingNew()
 
 
 
@@ -680,7 +680,7 @@ void 
 
 isFailedOpen
-public boolean isFailedOpen()
+public boolea

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/Cell.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/Cell.html 
b/devapidocs/org/apache/hadoop/hbase/Cell.html
index 58be56e..4063735 100644
--- a/devapidocs/org/apache/hadoop/hbase/Cell.html
+++ b/devapidocs/org/apache/hadoop/hbase/Cell.html
@@ -50,7 +50,7 @@ var activeTableTab = "activeTableTab";
 
 
 Prev Class
-Next Class
+Next Class
 
 
 Frames
@@ -105,7 +105,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Known Implementing Classes:
-BufferedDataBlockEncoder.OffheapDecodedCell,
 BufferedDataBlockEncoder.OnheapDecodedCell,
 ByteBufferCell, ByteBufferChunkCell, 
ByteBufferKeyOnlyKeyValue, ByteBufferKeyValue, IndividualBytesFieldCell, KeyOnlyFilter.KeyOnlyByteBufferCell, KeyOnlyFilter.KeyOnlyCell, 
KeyValue, KeyValue.KeyOnlyKeyValue, MapReduceCell, Mutation.CellWrapper, NoTagByteBufferChunkCell, NoTagsByteBufferKeyValue, NoTagsKeyValue, PrivateCellUtil.EmptyByteBufferCell, PrivateCellUtil.EmptyCell, PrivateCellUtil.FirstOnRowByteBufferCell, PrivateCellUtil.FirstOnRowCell, PrivateCellUtil.FirstOnRowColByteBufferCell, PrivateCellUtil.FirstOnRowColCell, PrivateCellUtil.FirstOnRowColTSByteBufferCell, PrivateCellUtil.FirstOnRowColTSCell, Priva
 teCellUtil.FirstOnRowDeleteFamilyCell, PrivateCellUtil.LastOnRowByteBufferCell, PrivateCellUtil.LastOnRowCell, PrivateCellUtil.LastOnRowColByteBufferCell, PrivateCellUtil.LastOnRowColCell, 
PrivateCellUtil.TagRewriteByteBufferCell, PrivateCellUtil.TagRewriteCell, PrivateCellUtil.ValueAndTagRewriteByteBufferCell, 
PrivateCellUtil.ValueAndTagRewriteCell, SizeCachedKeyValue, SizeCachedNoTagsKeyValue
+BufferedDataBlockEncoder.OffheapDecodedExtendedCell,
 BufferedDataBlockEncoder.OnheapDecodedCell,
 ByteBufferChunkKeyValue, ByteBufferExtendedCell, ByteBufferKeyOnlyKeyValue, ByteBufferKeyValue, IndividualBytesFieldCell, KeyOnlyFilter.KeyOnlyByteBufferExtendedCell,
 KeyOnlyFilter.KeyOnlyCell, 
KeyValue, KeyValue.KeyOnlyKeyValue, MapReduceExtendedCell, Mutation.CellWrapper, NoTagByteBufferChunkKeyValue, NoTagsByteBufferKeyValue, NoTagsKeyValue, PrivateCellUtil.EmptyByteBufferExtendedCell, PrivateCellUtil.EmptyCell, PrivateCellUtil.FirstOnRowByteBufferExtendedCell, 
PrivateCellUtil.FirstOnRowCell, PrivateCellUtil.FirstOnRowColByteBufferExtendedCell,
 PrivateCellUtil.FirstOnRowColCell, PrivateCellUtil.FirstOnRowColTSByteBufferExtendedCell,
 PrivateCellUtil.FirstOnRowColTSCell, PrivateCellUtil.FirstOnRowDeleteFamilyCell, PrivateCellUtil.LastOnRowByteBufferExtendedCell, 
PrivateCellUtil.LastOnRowCell, PrivateCellUtil.LastOnRowColByteBufferExtendedCell,
 PrivateCellUtil.LastOnRowColCell, 
PrivateCellUtil.TagRewriteByteBufferExtendedCell, 
PrivateCellUtil.TagRewriteCell, PrivateCellUtil.ValueAndTagRewriteByteBufferExtendedCell,
 PrivateCellUtil.ValueAndTagRewriteCell, SizeCachedKeyValue, SizeCachedNoTagsKeyValue
 
 
 
@@ -166,7 +166,7 @@ public interface 
 static class 
-Cell.DataType
+Cell.Type
 The valid types for user to build the cell.
 
 
@@ -265,9 +265,9 @@ public interface getTimestamp() 
 
 
-Cell.DataType
+Cell.Type
 getType()
-Returns the type of cell in a human readable format using 
Cell.DataType
+Returns the type of cell in a human readable format using 
Cell.Type
 
 
 
@@ -576,8 +576,8 @@ int 
 
 getType
-Cell.DataType getType()
-Returns the type of cell in a human readable format using 
Cell.DataType
+Cell.Type getType()
+Returns the type of cell in a human readable format using 
Cell.Type
 
 Returns:
 The data type this cell: one of Put, Delete, etc
@@ -613,7 +613,7 @@ int 
 
 Prev Class
-Next Class
+Next Class
 
 
 Frames

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/CellBuilder.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/CellBuilder.html 
b/devapidocs/org/apache/hadoop/hbase/CellBuilder.html
index 0559e7b..13f6129 100644
--- a/devapidocs/org/apache/hadoop/hbase/CellBuilder.html
+++ b/devapidocs/org/apache/hadoop/hbase/CellBuilder.html
@@ -49,7 +49,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-Prev Class
+Prev Class
 Next Class
 
 
@@ -176,7 +176,7 @@ public interface 
 CellBuilder
-setType(Cell.DataType type) 
+setType(Cell.Type type) 
 
 
 CellBuilder
@@ -272,13 +272,13 @@ public interface CellBuilder setTimestamp(long timestamp)
 
 
-
+
 
 
 
 
 setType
-CellBuilder setType(Cell.DataType type)
+CellBuilder setType(Cell.Type type)
 
 
 
@@ -352,7 +352,7 @@ public interface 
 
-Prev Class
+Prev Class
 Next Class
 
 



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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.OffheapDecodedExtendedCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.OffheapDecodedExtendedCell.html
 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.OffheapDecodedExtendedCell.html
new file mode 100644
index 000..2665183
--- /dev/null
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.OffheapDecodedExtendedCell.html
@@ -0,0 +1,1302 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+BufferedDataBlockEncoder.OffheapDecodedExtendedCell (Apache HBase 
3.0.0-SNAPSHOT API)
+
+
+
+
+
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase.io.encoding
+Class BufferedDataBlockEncoder.OffheapDecodedExtendedCell
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.ByteBufferExtendedCell
+
+
+org.apache.hadoop.hbase.io.encoding.BufferedDataBlockEncoder.OffheapDecodedExtendedCell
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, ExtendedCell, HeapSize, RawCell
+
+
+Enclosing class:
+BufferedDataBlockEncoder
+
+
+
+protected static class BufferedDataBlockEncoder.OffheapDecodedExtendedCell
+extends ByteBufferExtendedCell
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+
+
+
+Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
+Cell.Type
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+private byte
+familyLength 
+
+
+private int
+familyOffset 
+
+
+private static long
+FIXED_OVERHEAD 
+
+
+private http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+keyBuffer 
+
+
+private int
+qualifierLength 
+
+
+private int
+qualifierOffset 
+
+
+private short
+rowLength 
+
+
+private long
+seqId 
+
+
+private http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+tagsBuffer 
+
+
+private int
+tagsLength 
+
+
+private int
+tagsOffset 
+
+
+private long
+timestamp 
+
+
+private byte
+typeByte 
+
+
+private http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+valueBuffer 
+
+
+private int
+valueLength 
+
+
+private int
+valueOffset 
+
+
+
+
+
+
+Fields inherited from interface org.apache.hadoop.hbase.ExtendedCell
+CELL_NOT_BASED_ON_CHUNK
+
+
+
+
+
+Fields inherited from interface org.apache.hadoop.hbase.RawCell
+MAX_TAGS_LENGTH
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Modifier
+Constructor and Description
+
+
+protected 
+OffheapDecodedExtendedCell(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer keyBuffer,
+  short rowLength,
+  int familyOffset,
+  byte familyLength,
+  int qualOffset,
+  int qualLength,
+  long timeStamp,
+  byte typeByte,
+  http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or inte

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/client/Delete.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/Delete.html 
b/devapidocs/org/apache/hadoop/hbase/client/Delete.html
index 23003e1..3e28886 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/Delete.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/Delete.html
@@ -554,7 +554,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/lang/Comparabl
   http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> familyMap)
 Construct the Delete with user defined data. NOTED:
  1) all cells in the familyMap must have the delete type.
- see Cell.DataType
+ see Cell.Type
  2) the row of each cell must be same with passed row.
 
 Parameters:

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/client/Increment.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/Increment.html 
b/devapidocs/org/apache/hadoop/hbase/client/Increment.html
index 158e274..4642921 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/Increment.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/Increment.html
@@ -505,7 +505,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/lang/Comparabl
  long ts,
  http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> familyMap)
 Construct the Increment with user defined data. NOTED:
- 1) all cells in the familyMap must have the DataType.Put
+ 1) all cells in the familyMap must have the Type.Put
  2) the row of each cell must be same with passed row.
 
 Parameters:

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/client/MultiAction.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/MultiAction.html 
b/devapidocs/org/apache/hadoop/hbase/client/MultiAction.html
index b190086..2669a81 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/MultiAction.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/MultiAction.html
@@ -110,7 +110,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Private
-public final class MultiAction
+public final class MultiAction
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 Container for Actions (i.e. Get, Delete, or Put), which are 
grouped by
  regionName. Intended to be used with AsyncProcess.
@@ -240,7 +240,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 actions
-protected http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList> actions
+protected http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList> actions
 
 
 
@@ -249,7 +249,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 nonceGroup
-private long nonceGroup
+private long nonceGroup
 
 
 
@@ -266,7 +266,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 MultiAction
-public MultiAction()
+public MultiAction()
 
 
 
@@ -283,7 +283,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 size
-public int size()
+public int size()
 Get the total number of Actions
 
 Returns:
@@ -297,7 +297,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 add
-public void add(byte[] regionName,
+public void add(byte[] regionName,
 Action a)
 Add an Action to this container based on it's regionName. 
If the regionName
  is wrong, the initial execution will fail, but will be automatically
@@ -315,7 +315,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 add
-public void add(byte[] regionName,
+public void add(byte[] regionName,
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/RawCell.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/RawCell.html 
b/devapidocs/org/apache/hadoop/hbase/RawCell.html
index a9b9734..0c030f3 100644
--- a/devapidocs/org/apache/hadoop/hbase/RawCell.html
+++ b/devapidocs/org/apache/hadoop/hbase/RawCell.html
@@ -109,7 +109,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Known Implementing Classes:
-BufferedDataBlockEncoder.OffheapDecodedCell,
 BufferedDataBlockEncoder.OnheapDecodedCell,
 ByteBufferChunkCell, 
ByteBufferKeyValue, IndividualBytesFieldCell, KeyValue, KeyValue.KeyOnlyKeyValue, MapReduceCell, Mutation.CellWrapper, NoTagByteBufferChunkCell, NoTagsByteBufferKeyValue, NoTagsKeyValue, Priv
 ateCellUtil.EmptyByteBufferCell, PrivateCellUtil.EmptyCell, PrivateCellUtil.FirstOnRowByteBufferCell, PrivateCellUtil.FirstOnRowCell, PrivateCellUtil.FirstOnRowColByteBufferCell, PrivateCellUtil.FirstOnRowColCell, PrivateCellUtil.FirstOnRowColTSByteBufferCell, PrivateCellUtil.FirstOnRowColTSCell, PrivateCellUtil.FirstOnRowDeleteFamilyCell, PrivateCellUtil.LastOnRowByteBufferCell, PrivateCellUtil.LastOnRowCell, PrivateCellUtil.LastOnRowColByteBufferCell, PrivateCellUtil.LastOnRowColCell, PrivateCellUtil.TagRewriteByteBufferCell, PrivateCellUtil.TagRewriteCell, PrivateCellUtil.ValueAndTagRewriteByteBufferCell, 
PrivateCellUtil.ValueAndTagRewriteCell, SizeCachedKeyValue, SizeCachedNoTagsKeyValue
+BufferedDataBlockEncoder.OffheapDecodedExtendedCell,
 BufferedDataBlockEncoder.OnheapDecodedCell,
 ByteBufferChunkKeyValue, ByteBufferExtendedCell, ByteBufferKeyOnlyKeyValue, ByteBufferKeyValue, IndividualBytesFieldCell, KeyOnlyFilter.KeyOnlyByteBufferExtendedCell,
 KeyValue, KeyValue.KeyOnlyKeyValue, MapReduceExtendedCell, Mutation.CellWrapper, NoTagByteBufferChunkKeyValue, NoTagsByteBufferKeyValue, NoTagsKeyValue, PrivateCellUtil.EmptyByteBufferExtendedCell, PrivateCellUtil.EmptyCell, PrivateCellUtil.FirstOnRowByteBufferExtendedCell, 
PrivateCellUtil.FirstOnRowCell, PrivateCellUtil.FirstOnRowColByteBufferExtendedCell,
 PrivateCellUtil.FirstOnRowColCell, PrivateCellUtil.FirstOnRowColTSByteBufferExtendedCell,
 PrivateCellUtil.FirstOnRowColTSCell, PrivateCellUtil.FirstOnR
 owDeleteFamilyCell, PrivateCellUtil.LastOnRowByteBufferExtendedCell, 
PrivateCellUtil.LastOnRowCell, PrivateCellUtil.LastOnRowColByteBufferExtendedCell,
 PrivateCellUtil.LastOnRowColCell, 
PrivateCellUtil.TagRewriteByteBufferExtendedCell, 
PrivateCellUtil.TagRewriteCell, PrivateCellUtil.ValueAndTagRewriteByteBufferExtendedCell,
 PrivateCellUtil.ValueAndTagRewriteCell, SizeCachedKeyValue, SizeCachedNoTagsKeyValue
 
 
 
@@ -134,7 +134,7 @@ extends Cell
-Cell.DataType
+Cell.Type
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/RawCellBuilder.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/RawCellBuilder.html 
b/devapidocs/org/apache/hadoop/hbase/RawCellBuilder.html
index cc4b37f..d133996 100644
--- a/devapidocs/org/apache/hadoop/hbase/RawCellBuilder.html
+++ b/devapidocs/org/apache/hadoop/hbase/RawCellBuilder.html
@@ -185,7 +185,7 @@ extends 
 RawCellBuilder
-setType(Cell.DataType type) 
+setType(Cell.Type type) 
 
 
 RawCellBuilder
@@ -309,16 +309,16 @@ extends 
+
 
 
 
 
 setType
-RawCellBuilder setType(Cell.DataType type)
+RawCellBuilder setType(Cell.Type type)
 
 Specified by:
-setType in
 interface CellBuilder
+setType in
 interface CellBuilder
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/RegionTooBusyException.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/RegionTooBusyException.html 
b/devapidocs/org/apache/hadoop/hbase/RegionTooBusyException.html
index 3c48a21..3f4a0f7 100644
--- a/devapidocs/org/apache/hadoop/hbase/RegionTooBusyException.html
+++ b/devapidocs/org/apache/hadoop/hbase/RegionTooBusyException.html
@@ -123,11 +123,13 @@
 
 
 @InterfaceAudience.Public
-public class RegionTooBusyException
+public class RegionTooBusyException
 extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Thrown by a region server if it will block and wait to 
serve a request.
  For example, the client wants to insert something to a region while the
- region is compacting.
+ region is compacting. Keep variance in the passed 'msg' low because its msg 
is used as a key
+ over in RetriesExhaustedWithDetailsException
+ grouping failure types.
 
 See Also:
 Serialized
 Form
@@ -169,14 +171,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.ht
 Constructor and Description
 
 
-RegionTooBusyException()
-default constructor
-
-
-
-RegionTooBusyException(http://docs.oracl

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.ValueAndTagRewriteByteBufferCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.ValueAndTagRewriteByteBufferCell.html
 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.ValueAndTagRewriteByteBufferCell.html
deleted file mode 100644
index 1dc3d76..000
--- 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.ValueAndTagRewriteByteBufferCell.html
+++ /dev/null
@@ -1,621 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-PrivateCellUtil.ValueAndTagRewriteByteBufferCell (Apache HBase 
3.0.0-SNAPSHOT API)
-
-
-
-
-
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev Class
-Next Class
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-Summary: 
-Nested | 
-Field | 
-Constr | 
-Method
-
-
-Detail: 
-Field | 
-Constr | 
-Method
-
-
-
-
-
-
-
-
-org.apache.hadoop.hbase
-Class PrivateCellUtil.ValueAndTagRewriteByteBufferCell
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
-
-
-org.apache.hadoop.hbase.ByteBufferCell
-
-
-org.apache.hadoop.hbase.PrivateCellUtil.TagRewriteByteBufferCell
-
-
-org.apache.hadoop.hbase.PrivateCellUtil.ValueAndTagRewriteByteBufferCell
-
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, ExtendedCell, HeapSize, RawCell
-
-
-Enclosing class:
-PrivateCellUtil
-
-
-
-static class PrivateCellUtil.ValueAndTagRewriteByteBufferCell
-extends PrivateCellUtil.TagRewriteByteBufferCell
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
-Cell.DataType
-
-
-
-
-
-
-
-
-Field Summary
-
-Fields 
-
-Modifier and Type
-Field and Description
-
-
-protected byte[]
-value 
-
-
-
-
-
-
-Fields inherited from class org.apache.hadoop.hbase.PrivateCellUtil.TagRewriteByteBufferCell
-cell,
 tags
-
-
-
-
-
-Fields inherited from interface org.apache.hadoop.hbase.ExtendedCell
-CELL_NOT_BASED_ON_CHUNK
-
-
-
-
-
-Fields inherited from interface org.apache.hadoop.hbase.RawCell
-MAX_TAGS_LENGTH
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors 
-
-Constructor and Description
-
-
-ValueAndTagRewriteByteBufferCell(ByteBufferCell cell,
-byte[] value,
-byte[] tags) 
-
-
-
-
-
-
-
-
-
-Method Summary
-
-All Methods Instance Methods Concrete Methods 
-
-Modifier and Type
-Method and Description
-
-
-ExtendedCell
-deepClone()
-Does a deep copy of the contents to a new memory area and 
returns it as a new cell.
-
-
-
-int
-getSerializedSize(boolean withTags) 
-
-
-byte[]
-getValueArray()
-Contiguous raw bytes that may start at any index in the 
containing array.
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-getValueByteBuffer() 
-
-
-int
-getValueLength() 
-
-
-int
-getValueOffset() 
-
-
-int
-getValuePosition() 
-
-
-long
-heapSize() 
-
-
-void
-write(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer buf,
- int offset)
-Write this Cell into the given buf's offset in a KeyValue format.
-
-
-
-int
-write(http://docs.oracle.com/javase/8/docs/api/java/io/OutputStream.html?is-external=true";
 title="class or interface in java.io">OutputStream out,
- boolean withTags)
-Write this cell to an OutputStream in a KeyValue format.
-
-
-
-
-
-
-
-Methods inherited from class org.apache.hadoop.hbase.PrivateCellUtil.TagRewriteByteBufferCell
-getFamilyArray,
 getFamilyByteBuffer,
 getFamilyLength,
 getFamilyOffset,
 getFamilyPosition,
 getQualifierArray,
 getQualifierByteBuffer,
 getQualifierLength,
 getQualifierOffset,
 getQualifierPosition,
 getRowArray,
 getRowByteBu

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/ExtendedCell.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/ExtendedCell.html 
b/devapidocs/org/apache/hadoop/hbase/ExtendedCell.html
index 1165e75..dd93fe7 100644
--- a/devapidocs/org/apache/hadoop/hbase/ExtendedCell.html
+++ b/devapidocs/org/apache/hadoop/hbase/ExtendedCell.html
@@ -105,7 +105,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Known Implementing Classes:
-BufferedDataBlockEncoder.OffheapDecodedCell,
 BufferedDataBlockEncoder.OnheapDecodedCell,
 ByteBufferChunkCell, 
ByteBufferKeyValue, IndividualBytesFieldCell, KeyValue, KeyValue.KeyOnlyKeyValue, MapReduceCell, Mutation.CellWrapper, NoTagByteBufferChunkCell, NoTagsByteBufferKeyValue, NoTagsKeyValue, Priv
 ateCellUtil.EmptyByteBufferCell, PrivateCellUtil.EmptyCell, PrivateCellUtil.FirstOnRowByteBufferCell, PrivateCellUtil.FirstOnRowCell, PrivateCellUtil.FirstOnRowColByteBufferCell, PrivateCellUtil.FirstOnRowColCell, PrivateCellUtil.FirstOnRowColTSByteBufferCell, PrivateCellUtil.FirstOnRowColTSCell, PrivateCellUtil.FirstOnRowDeleteFamilyCell, PrivateCellUtil.LastOnRowByteBufferCell, PrivateCellUtil.LastOnRowCell, PrivateCellUtil.LastOnRowColByteBufferCell, PrivateCellUtil.LastOnRowColCell, PrivateCellUtil.TagRewriteByteBufferCell, PrivateCellUtil.TagRewriteCell, PrivateCellUtil.ValueAndTagRewriteByteBufferCell, 
PrivateCellUtil.ValueAndTagRewriteCell, SizeCachedKeyValue, SizeCachedNoTagsKeyValue
+BufferedDataBlockEncoder.OffheapDecodedExtendedCell,
 BufferedDataBlockEncoder.OnheapDecodedCell,
 ByteBufferChunkKeyValue, ByteBufferExtendedCell, ByteBufferKeyOnlyKeyValue, ByteBufferKeyValue, IndividualBytesFieldCell, KeyOnlyFilter.KeyOnlyByteBufferExtendedCell,
 KeyValue, KeyValue.KeyOnlyKeyValue, MapReduceExtendedCell, Mutation.CellWrapper, NoTagByteBufferChunkKeyValue, NoTagsByteBufferKeyValue, NoTagsKeyValue, PrivateCellUtil.EmptyByteBufferExtendedCell, PrivateCellUtil.EmptyCell, PrivateCellUtil.FirstOnRowByteBufferExtendedCell, 
PrivateCellUtil.FirstOnRowCell, PrivateCellUtil.FirstOnRowColByteBufferExtendedCell,
 PrivateCellUtil.FirstOnRowColCell, PrivateCellUtil.FirstOnRowColTSByteBufferExtendedCell,
 PrivateCellUtil.FirstOnRowColTSCell, PrivateCellUtil.FirstOnR
 owDeleteFamilyCell, PrivateCellUtil.LastOnRowByteBufferExtendedCell, 
PrivateCellUtil.LastOnRowCell, PrivateCellUtil.LastOnRowColByteBufferExtendedCell,
 PrivateCellUtil.LastOnRowColCell, 
PrivateCellUtil.TagRewriteByteBufferExtendedCell, 
PrivateCellUtil.TagRewriteCell, PrivateCellUtil.ValueAndTagRewriteByteBufferExtendedCell,
 PrivateCellUtil.ValueAndTagRewriteCell, SizeCachedKeyValue, SizeCachedNoTagsKeyValue
 
 
 
@@ -131,7 +131,7 @@ extends Cell
-Cell.DataType
+Cell.Type
 
 
 
@@ -213,9 +213,9 @@ extends getTagsOffset() 
 
 
-default Cell.DataType
+default Cell.Type
 getType()
-Returns the type of cell in a human readable format using 
Cell.DataType
+Returns the type of cell in a human readable format using 
Cell.Type
 
 
 
@@ -529,8 +529,8 @@ extends 
 
 getType
-default Cell.DataType getType()
-Returns the type of cell in a human readable format using 
Cell.DataType
+default Cell.Type getType()
+Returns the type of cell in a human readable format using 
Cell.Type
  
  Note : This does not expose the internal types of Cells like KeyValue.Type.Maximum
 and
  KeyValue.Type.Minimum

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/ExtendedCellBuilder.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/ExtendedCellBuilder.html 
b/devapidocs/org/apache/hadoop/hbase/ExtendedCellBuilder.html
index 6ecb159..433a93a 100644
--- a/devapidocs/org/apache/hadoop/hbase/ExtendedCellBuilder.html
+++ b/devapidocs/org/apache/hadoop/hbase/ExtendedCellBuilder.html
@@ -116,7 +116,7 @@ extends Tag and memstoreTS/mvcc are internal 
implementation detail
   that should not be exposed publicly.
  Use ExtendedCellBuilderFactory to get 
ExtendedCellBuilder instance.
- TODO: ditto for ByteBufferCell?
+ TODO: ditto for ByteBufferExtendedCell?
 
 
 
@@ -205,7 +205,7 @@ extends 
 
 ExtendedCellBuilder
-setType(Cell.DataType type) 
+setType(Cell.Type type) 
 
 
 ExtendedCellBuilder
@@ -343,18 +343,18 @@ extends 
 
 
-
+
 
 
 
 
 setType
-ExtendedCellBuilder setType(Cell.DataType type)
+ExtendedCellBuilder setType(Cell.Type type)
 
 Specified by:
-setType in
 interface CellBuilder
+setType in
 interface CellBuilder
 Specified by:
-setType in
 interface RawCellBuilder
+setType in
 interface RawCellBuilder
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/ExtendedCellBuilderImpl.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/ExtendedCellBuilderImpl.html 
b/devapidocs/org/apache/hadoop

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.html 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.html
index d68657d..92659c0 100644
--- a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.html
+++ b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.html
@@ -50,7 +50,7 @@ var activeTableTab = "activeTableTab";
 
 
 Prev Class
-Next Class
+Next Class
 
 
 Frames
@@ -110,7 +110,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Private
-public final class PrivateCellUtil
+public final class PrivateCellUtil
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 Utility methods helpful slinging Cell instances. It has more powerful 
and
  rich set of APIs than those in CellUtil for internal usage.
@@ -134,7 +134,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 private static class 
-PrivateCellUtil.EmptyByteBufferCell
+PrivateCellUtil.EmptyByteBufferExtendedCell
 These cells are used in reseeks/seeks to improve the read 
performance.
 
 
@@ -146,7 +146,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 private static class 
-PrivateCellUtil.FirstOnRowByteBufferCell 
+PrivateCellUtil.FirstOnRowByteBufferExtendedCell 
 
 
 private static class 
@@ -154,7 +154,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 private static class 
-PrivateCellUtil.FirstOnRowColByteBufferCell 
+PrivateCellUtil.FirstOnRowColByteBufferExtendedCell 
 
 
 private static class 
@@ -162,7 +162,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 private static class 
-PrivateCellUtil.FirstOnRowColTSByteBufferCell 
+PrivateCellUtil.FirstOnRowColTSByteBufferExtendedCell 
 
 
 private static class 
@@ -174,7 +174,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 private static class 
-PrivateCellUtil.LastOnRowByteBufferCell 
+PrivateCellUtil.LastOnRowByteBufferExtendedCell 
 
 
 private static class 
@@ -182,7 +182,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 private static class 
-PrivateCellUtil.LastOnRowColByteBufferCell 
+PrivateCellUtil.LastOnRowColByteBufferExtendedCell 
 
 
 private static class 
@@ -190,7 +190,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 (package private) static class 
-PrivateCellUtil.TagRewriteByteBufferCell 
+PrivateCellUtil.TagRewriteByteBufferExtendedCell 
 
 
 (package private) static class 
@@ -200,7 +200,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 (package private) static class 
-PrivateCellUtil.ValueAndTagRewriteByteBufferCell 
+PrivateCellUtil.ValueAndTagRewriteByteBufferExtendedCell 
 
 
 (package private) static class 
@@ -735,12 +735,12 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-static Cell.DataType
-toDataType(byte type) 
+static Cell.Type
+toType(byte type) 
 
 
 static KeyValue.Type
-toTypeByte(Cell.DataType type) 
+toTypeByte(Cell.Type type) 
 
 
 static boolean
@@ -881,7 +881,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 PrivateCellUtil
-private PrivateCellUtil()
+private PrivateCellUtil()
 Private constructor to keep this class from being 
instantiated.
 
 
@@ -899,7 +899,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 fillRowRange
-public static ByteRange fillRowRange(Cell cell,
+public static ByteRange fillRowRange(Cell cell,
  ByteRange range)
 ByteRange
 
@@ -910,7 +910,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 fillFamilyRange
-public static ByteRange fillFamilyRange(Cell cell,
+public static ByteRange fillFamilyRange(Cell cell,
 ByteRange range)
 
 
@@ -920,7 +920,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 fillQualifierRange
-public static ByteRange fillQualifierRange(Cell cell,
+public static ByteRange fillQualifierRange(Cell cell,
ByteRange range)
 
 
@@ -930,7 +930,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 fillValueRange
-public static ByteRange fillValueRange(Cell cell,
+public static ByteRange fillValueRange(Cell cell,
ByteRange range)
 
 
@@ -940,7 +940,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 fillTagRange
-public static ByteRange fillTagRange(Cell cell,
+public static ByteRange fillTagRange(Cell cell,
  ByteRange range)
 
 
@@ -950,7 +950,7 @@ extends 

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/io/HeapSize.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/io/HeapSize.html 
b/devapidocs/org/apache/hadoop/hbase/io/HeapSize.html
index 398945e..abef71d 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/HeapSize.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/HeapSize.html
@@ -105,7 +105,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Known Implementing Classes:
-Append, BlockCacheKey, BucketCache, BufferedDataBlockEncoder.OffheapDecodedCell,
 BufferedDataBlockEncoder.OnheapDecodedCell,
 
 ByteBufferChunkCell, ByteBufferKeyValue, CombinedBlockCache, Delete, HFileBlock, HFileBlockIndex.BlockIndexReader, HFileBlockIndex.ByteArrayKeyBlockIndexReader,
 HFileBlockIndex.CellBasedKeyBlockIndexReader,
 HFileContext, HMobStore, HRegion, HStore, InclusiveCombinedBlockCache, Increment, IndividualBytesFieldCell, KeyValue, KeyValue.KeyOnlyKeyValue, LruBlockCache, LruCachedBlock, LruCachedBlockQueue, MapReduceCell, Mutation, Mutation.CellWrapper, NoTagByteBufferChunkCell, NoTagsByteBufferKeyValue, NoTagsKeyValue, PrivateCellUtil.EmptyByteBufferCell, href="../../../../../org/apache/hadoop/hbase/PrivateCellUtil.EmptyCell.html" 
 >title="class in org.apache.hadoop.hbase">PrivateCellUtil.EmptyCell, href="../../../../../org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowByteBufferCell.html"
 > title="class in 
 >org.apache.hadoop.hbase">PrivateCellUtil.FirstOnRowByteBufferCell, href="../../../../../org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowCell.html"
 > title="class in org.apache.hadoop.hbase">PrivateCellUtil.FirstOnRowCell, 
 >href="../../../../../org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColByteBufferCell.html"
 > title="class in 
 >org.apache.hadoop.hbase">PrivateCellUtil.FirstOnRowColByteBufferCell, href="../../../../../org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColCell.html"
 > title="class in 
 >org.apache.hadoop.hbase">PrivateCellUtil.FirstOnRowColCell, href="../../../../../org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColTSByteBufferCell.html"
 > title="class in org.apache.hadoop.hbase">P
 rivateCellUtil.FirstOnRowColTSByteBufferCell, PrivateCellUtil.FirstOnRowColTSCell, PrivateCellUtil.FirstOnRowDeleteFamilyCell, PrivateCellUtil.LastOnRowByteBufferCell, PrivateCellUtil.LastOnRowCell, PrivateCellUtil.LastOnRowColByteBufferCell, PrivateCellUtil.LastOnRowColCell, PrivateCellUtil.TagRewriteByteBufferCell, PrivateCellUtil.TagRewriteCell, 
PrivateCellUtil.ValueAndTagRewriteByteBufferCell, 
PrivateCellUtil.ValueAndTagRewriteCell, Put, SizeCachedKeyValue, SizeCachedNoTagsKeyValue, WALEdit, WALSplitter.RegionEntryBuffer
+Append, BlockCacheKey, BucketCache, BufferedDataBlockEncoder.OffheapDecodedExtendedCell,
 BufferedDataBlockEncoder.OnheapDecodedCell,
 ByteBufferChunkKeyValue, ByteBufferExtendedCell, ByteBufferKeyOnlyKeyValue, ByteBufferKeyValue, CombinedBlockCache, Delete, HFileBlock, HFileBlockIndex.BlockIndexReader, HFileBlockIndex.ByteArrayKeyBlockIndexReader,
 HFileBlockIndex.CellBasedKeyBlockIndexReader,
 HFileContext, HMobStore, HRegion, HStore, InclusiveCombinedBlockCache, Increment, IndividualBytesFieldCell, KeyOnlyFilter.KeyOnlyByteBufferExtendedCell,
 KeyValue, KeyValue.Key
 OnlyKeyValue, LruBlockCache, LruCachedBlock, LruCachedBlockQueue, MapReduceExtendedCell, Mutation, Mutation.CellWrapper, NoTagByteBufferChunkKeyValue, NoTagsByteBufferKeyValue, NoTagsKeyValue, PrivateCellUtil.EmptyByteBufferExtendedCell, PrivateCellUtil.EmptyCell, PrivateCellUtil.FirstOnRowByteBufferExtendedCell, 
PrivateCellUtil.FirstOnRowCell, PrivateCellUtil.FirstOnRowColByteBufferExtendedCell,
 PrivateCellUtil.FirstOnRowColCell, PrivateCellUtil.FirstOnRowColTSByteBufferExtendedCell,
 PrivateCellUtil.FirstOnRowColTSCell, PrivateCellUtil.FirstOnRo
 wDeleteFamilyCell, PrivateCellUtil.LastOnRowByteBufferExtendedCell, 
PrivateCellUtil.LastOnRowCell, PrivateCellUtil.LastOnRowColByteBufferExtendedCell,
 PrivateCellUtil.LastOnRowColCell, 
PrivateCellUtil.TagRewriteByteBufferExtendedCell, 
PrivateCellUtil.TagRewriteCell, PrivateCellUtil.ValueAndTagRewriteByteBufferExtendedCell,
 PrivateCellUtil.ValueAndTagRewriteCell, Put, SizeCachedKeyValue, SizeCachedNoTagsKeyValue, WALEdit, WALSplitter.RegionEntryBuffer
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/io/class-use/HeapSize.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/io/class-use/HeapSize.html 
b/devapidocs/org/apache/hadoop/hbase/io/class-use/HeapSize.html
index 4817a35..033cb85 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/class-use/HeapSize.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/class-use/HeapSize.html
@@ -93,36 +93,43 @@
 
 
 
+org.apache.hadoop.hbase.filter
+
+Provides row-level filters applied to HRegion scan results 
during calls to

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.TagRewriteByteBufferCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.TagRewriteByteBufferCell.html
 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.TagRewriteByteBufferCell.html
deleted file mode 100644
index a8c2ef3..000
--- 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.TagRewriteByteBufferCell.html
+++ /dev/null
@@ -1,1180 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-PrivateCellUtil.TagRewriteByteBufferCell (Apache HBase 3.0.0-SNAPSHOT 
API)
-
-
-
-
-
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev Class
-Next Class
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-Summary: 
-Nested | 
-Field | 
-Constr | 
-Method
-
-
-Detail: 
-Field | 
-Constr | 
-Method
-
-
-
-
-
-
-
-
-org.apache.hadoop.hbase
-Class 
PrivateCellUtil.TagRewriteByteBufferCell
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
-
-
-org.apache.hadoop.hbase.ByteBufferCell
-
-
-org.apache.hadoop.hbase.PrivateCellUtil.TagRewriteByteBufferCell
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, ExtendedCell, HeapSize, RawCell
-
-
-Direct Known Subclasses:
-PrivateCellUtil.ValueAndTagRewriteByteBufferCell
-
-
-Enclosing class:
-PrivateCellUtil
-
-
-
-static class PrivateCellUtil.TagRewriteByteBufferCell
-extends ByteBufferCell
-implements ExtendedCell
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
-Cell.DataType
-
-
-
-
-
-
-
-
-Field Summary
-
-Fields 
-
-Modifier and Type
-Field and Description
-
-
-protected ByteBufferCell
-cell 
-
-
-private static int
-HEAP_SIZE_OVERHEAD 
-
-
-protected byte[]
-tags 
-
-
-
-
-
-
-Fields inherited from interface org.apache.hadoop.hbase.ExtendedCell
-CELL_NOT_BASED_ON_CHUNK
-
-
-
-
-
-Fields inherited from interface org.apache.hadoop.hbase.RawCell
-MAX_TAGS_LENGTH
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors 
-
-Constructor and Description
-
-
-TagRewriteByteBufferCell(ByteBufferCell cell,
-byte[] tags) 
-
-
-
-
-
-
-
-
-
-Method Summary
-
-All Methods Instance Methods Concrete Methods 
-
-Modifier and Type
-Method and Description
-
-
-ExtendedCell
-deepClone()
-Does a deep copy of the contents to a new memory area and 
returns it as a new cell.
-
-
-
-byte[]
-getFamilyArray()
-Contiguous bytes composed of legal HDFS filename characters 
which may start at any index in the
- containing array.
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-getFamilyByteBuffer() 
-
-
-byte
-getFamilyLength() 
-
-
-int
-getFamilyOffset() 
-
-
-int
-getFamilyPosition() 
-
-
-byte[]
-getQualifierArray()
-Contiguous raw bytes that may start at any index in the 
containing array.
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-getQualifierByteBuffer() 
-
-
-int
-getQualifierLength() 
-
-
-int
-getQualifierOffset() 
-
-
-int
-getQualifierPosition() 
-
-
-byte[]
-getRowArray()
-Contiguous raw bytes that may start at any index in the 
containing array.
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-getRowByteBuffer() 
-
-
-short
-getRowLength() 
-
-
-int
-getRowOffset() 
-
-
-int
-getRowPosition() 
-
-
-long
-getSequenceId()
-A region-specific unique m

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/http/HttpServer.QuotingInputFilter.RequestQuoter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/http/HttpServer.QuotingInputFilter.RequestQuoter.html
 
b/devapidocs/org/apache/hadoop/hbase/http/HttpServer.QuotingInputFilter.RequestQuoter.html
index 99506e3..2271f7b 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/http/HttpServer.QuotingInputFilter.RequestQuoter.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/http/HttpServer.QuotingInputFilter.RequestQuoter.html
@@ -127,7 +127,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-public static class HttpServer.QuotingInputFilter.RequestQuoter
+public static class HttpServer.QuotingInputFilter.RequestQuoter
 extends javax.servlet.http.HttpServletRequestWrapper
 
 
@@ -273,7 +273,7 @@ extends javax.servlet.http.HttpServletRequestWrapper
 
 
 rawRequest
-private final javax.servlet.http.HttpServletRequest rawRequest
+private final javax.servlet.http.HttpServletRequest rawRequest
 
 
 
@@ -290,7 +290,7 @@ extends javax.servlet.http.HttpServletRequestWrapper
 
 
 RequestQuoter
-public RequestQuoter(javax.servlet.http.HttpServletRequest rawRequest)
+public RequestQuoter(javax.servlet.http.HttpServletRequest rawRequest)
 
 
 
@@ -307,7 +307,7 @@ extends javax.servlet.http.HttpServletRequestWrapper
 
 
 getParameterNames
-public http://docs.oracle.com/javase/8/docs/api/java/util/Enumeration.html?is-external=true";
 title="class or interface in java.util">EnumerationString> getParameterNames()
+public http://docs.oracle.com/javase/8/docs/api/java/util/Enumeration.html?is-external=true";
 title="class or interface in java.util">EnumerationString> getParameterNames()
 Return the set of parameter names, quoting each name.
 
 Specified by:
@@ -323,7 +323,7 @@ extends javax.servlet.http.HttpServletRequestWrapper
 
 
 getParameter
-public http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String getParameter(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
+public http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String getParameter(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
 Unquote the name and quote the value.
 
 Specified by:
@@ -339,7 +339,7 @@ extends javax.servlet.http.HttpServletRequestWrapper
 
 
 getParameterValues
-public http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String[] getParameterValues(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
+public http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String[] getParameterValues(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
 
 Specified by:
 getParameterValues in 
interface javax.servlet.ServletRequest
@@ -354,7 +354,7 @@ extends javax.servlet.http.HttpServletRequestWrapper
 
 
 getParameterMap
-public http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String[]> getParameterMap()
+public http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String[]> getParameterMap()
 
 Specified by:
 getParameterMap in 
interface javax.servlet.ServletRequest
@@ -369,7 +369,7 @@ extends javax.servlet.http.HttpServletRequestWrapper
 
 
 getRequestURL
-public http://docs.oracle.com/javase/8/docs/api/java/lang/StringBuffer.html?is-external=true";
 title="class or interface in java.lang">StringBuffer getRequestURL()
+public http://docs.oracle.com/javase/8/docs/api/java/lang/StringBuffer.html?is-external=true";
 title="class or interface in java

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/apidocs/org/apache/hadoop/hbase/RegionTooBusyException.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/RegionTooBusyException.html 
b/apidocs/org/apache/hadoop/hbase/RegionTooBusyException.html
index 36721de..b9321e4 100644
--- a/apidocs/org/apache/hadoop/hbase/RegionTooBusyException.html
+++ b/apidocs/org/apache/hadoop/hbase/RegionTooBusyException.html
@@ -123,11 +123,13 @@
 
 
 @InterfaceAudience.Public
-public class RegionTooBusyException
+public class RegionTooBusyException
 extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Thrown by a region server if it will block and wait to 
serve a request.
  For example, the client wants to insert something to a region while the
- region is compacting.
+ region is compacting. Keep variance in the passed 'msg' low because its msg 
is used as a key
+ over in RetriesExhaustedWithDetailsException
+ grouping failure types.
 
 See Also:
 Serialized
 Form
@@ -150,14 +152,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.ht
 Constructor and Description
 
 
-RegionTooBusyException()
-default constructor
-
-
-
-RegionTooBusyException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String msg)
-Constructor
-
+RegionTooBusyException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String msg) 
 
 
 
@@ -196,28 +191,13 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/IOException.ht
 
 
 Constructor Detail
-
-
-
-
-
-RegionTooBusyException
-public RegionTooBusyException()
-default constructor
-
-
 
 
 
 
 
 RegionTooBusyException
-public RegionTooBusyException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String msg)
-Constructor
-
-Parameters:
-msg - message
-
+public RegionTooBusyException(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String msg)
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/apidocs/org/apache/hadoop/hbase/class-use/CellBuilder.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/CellBuilder.html 
b/apidocs/org/apache/hadoop/hbase/class-use/CellBuilder.html
index 17661be..903b8d1 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/CellBuilder.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/CellBuilder.html
@@ -150,7 +150,7 @@
 
 
 CellBuilder
-CellBuilder.setType(org.apache.hadoop.hbase.Cell.DataType type) 
+CellBuilder.setType(org.apache.hadoop.hbase.Cell.Type type) 
 
 
 CellBuilder

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/apidocs/org/apache/hadoop/hbase/client/Append.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Append.html 
b/apidocs/org/apache/hadoop/hbase/client/Append.html
index db96d4c..33db5ff 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Append.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Append.html
@@ -438,7 +438,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> familyMap)
 Construct the Append with user defined data. NOTED:
- 1) all cells in the familyMap must have the DataType.Put
+ 1) all cells in the familyMap must have the Type.Put
  2) the row of each cell must be same with passed row.
 
 Parameters:

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/apidocs/org/apache/hadoop/hbase/client/Delete.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Delete.html 
b/apidocs/org/apache/hadoop/hbase/client/Delete.html
index 6aafb41..ba8afb3 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Delete.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Delete.html
@@ -554,7 +554,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/lang/Comparabl
   http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> familyMap)
 Construct the Delete with user defined data. NOTED:
  1) all cells in the familyMap must have the delete type.
- see Cell.DataType
+ see Cell.Type
  2) the row of each cell must be same w

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColByteBufferCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColByteBufferCell.html
 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColByteBufferCell.html
deleted file mode 100644
index 25295d9..000
--- 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColByteBufferCell.html
+++ /dev/null
@@ -1,613 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-PrivateCellUtil.FirstOnRowColByteBufferCell (Apache HBase 
3.0.0-SNAPSHOT API)
-
-
-
-
-
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev Class
-Next Class
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-Summary: 
-Nested | 
-Field | 
-Constr | 
-Method
-
-
-Detail: 
-Field | 
-Constr | 
-Method
-
-
-
-
-
-
-
-
-org.apache.hadoop.hbase
-Class PrivateCellUtil.FirstOnRowColByteBufferCell
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
-
-
-org.apache.hadoop.hbase.ByteBufferCell
-
-
-org.apache.hadoop.hbase.PrivateCellUtil.EmptyByteBufferCell
-
-
-org.apache.hadoop.hbase.PrivateCellUtil.FirstOnRowByteBufferCell
-
-
-org.apache.hadoop.hbase.PrivateCellUtil.FirstOnRowColByteBufferCell
-
-
-
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, ExtendedCell, HeapSize, RawCell
-
-
-Direct Known Subclasses:
-PrivateCellUtil.FirstOnRowColTSByteBufferCell
-
-
-Enclosing class:
-PrivateCellUtil
-
-
-
-private static class PrivateCellUtil.FirstOnRowColByteBufferCell
-extends PrivateCellUtil.FirstOnRowByteBufferCell
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
-Cell.DataType
-
-
-
-
-
-
-
-
-Field Summary
-
-Fields 
-
-Modifier and Type
-Field and Description
-
-
-private http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-colBuff 
-
-
-private int
-colLength 
-
-
-private int
-colOffset 
-
-
-private http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-famBuff 
-
-
-private byte
-famLength 
-
-
-private int
-famOffset 
-
-
-private static int
-FIXED_OVERHEAD 
-
-
-
-
-
-
-Fields inherited from interface org.apache.hadoop.hbase.ExtendedCell
-CELL_NOT_BASED_ON_CHUNK
-
-
-
-
-
-Fields inherited from interface org.apache.hadoop.hbase.RawCell
-MAX_TAGS_LENGTH
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors 
-
-Constructor and Description
-
-
-FirstOnRowColByteBufferCell(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer row,
-   int roffset,
-   short rlength,
-   http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer famBuff,
-   int famOffset,
-   byte famLength,
-   http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer col,
-   int colOffset,
-   int colLength) 
-
-
-
-
-
-
-
-
-
-Method Summary
-
-All Methods Instance Methods Concrete Methods 
-
-Modifier and Type
-Method and Description
-
-
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-getFamilyByteBuffer() 
-
-
-byte
-getFamilyLength() 
-
-
-int
-getFamilyPosition() 
-
-
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interfa

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/filter/KeyOnlyFilter.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/filter/KeyOnlyFilter.html 
b/devapidocs/org/apache/hadoop/hbase/filter/KeyOnlyFilter.html
index 1f41ab1..fe2809f 100644
--- a/devapidocs/org/apache/hadoop/hbase/filter/KeyOnlyFilter.html
+++ b/devapidocs/org/apache/hadoop/hbase/filter/KeyOnlyFilter.html
@@ -50,7 +50,7 @@ var activeTableTab = "activeTableTab";
 
 
 Prev Class
-Next Class
+Next Class
 
 
 Frames
@@ -120,7 +120,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Public
-public class KeyOnlyFilter
+public class KeyOnlyFilter
 extends FilterBase
 A filter that will only return the key component of each KV 
(the value will
  be rewritten as empty).
@@ -147,7 +147,7 @@ extends 
 
 (package private) static class 
-KeyOnlyFilter.KeyOnlyByteBufferCell 
+KeyOnlyFilter.KeyOnlyByteBufferExtendedCell 
 
 
 (package private) static class 
@@ -313,7 +313,7 @@ extends 
 
 lenAsVal
-boolean lenAsVal
+boolean lenAsVal
 
 
 
@@ -330,7 +330,7 @@ extends 
 
 KeyOnlyFilter
-public KeyOnlyFilter()
+public KeyOnlyFilter()
 
 
 
@@ -339,7 +339,7 @@ extends 
 
 KeyOnlyFilter
-public KeyOnlyFilter(boolean lenAsVal)
+public KeyOnlyFilter(boolean lenAsVal)
 
 
 
@@ -356,7 +356,7 @@ extends 
 
 filterRowKey
-public boolean filterRowKey(Cell cell)
+public boolean filterRowKey(Cell cell)
  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: Filter
 Filters a row based on the row key. If this returns true, 
the entire row will be excluded. If
@@ -384,7 +384,7 @@ extends 
 
 transformCell
-public Cell transformCell(Cell cell)
+public Cell transformCell(Cell cell)
 Description copied from 
class: FilterBase
 By default no transformation takes place
 
@@ -414,7 +414,7 @@ extends 
 
 createKeyOnlyCell
-private Cell createKeyOnlyCell(Cell c)
+private Cell createKeyOnlyCell(Cell c)
 
 
 
@@ -424,7 +424,7 @@ extends 
 filterKeyValue
 http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
-public Filter.ReturnCode filterKeyValue(Cell ignored)
+public Filter.ReturnCode filterKeyValue(Cell ignored)
  throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Deprecated. 
 Description copied from 
class: Filter
@@ -462,7 +462,7 @@ public 
 
 filterCell
-public Filter.ReturnCode filterCell(Cell ignored)
+public Filter.ReturnCode filterCell(Cell ignored)
  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: Filter
 A way to filter based on the column family, column 
qualifier and/or the column value. Return
@@ -499,7 +499,7 @@ public 
 
 createFilterFromArguments
-public static Filter createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments)
+public static Filter createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments)
 
 
 
@@ -508,7 +508,7 @@ public 
 
 toByteArray
-public byte[] toByteArray()
+public byte[] toByteArray()
 Description copied from 
class: FilterBase
 Return length 0 byte array for Filters that don't require 
special serialization
 
@@ -525,7 +525,7 @@ public 
 
 parseFrom
-public static KeyOnlyFilter parseFrom(byte[] pbBytes)
+public static KeyOnlyFilter parseFrom(byte[] pbBytes)
throws DeserializationException
 
 Parameters:
@@ -545,7 +545,7 @@ public 
 
 areSerializedFieldsEqual
-boolean areSerializedFieldsEqual(Filter o)
+boolean areSerializedFieldsEqual(Filter o)
 Description copied from 
class: FilterBase
 Default implementation so that writers of custom filters 
aren't forced to implement.
 
@@ -588,7 +588,7 @@ public 
 
 Prev Class
-Next Class
+Next Class
 
 
 Frames

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/filter/class-use/KeyOnlyFilter.KeyOnlyByteBufferCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/KeyOnlyFilter.KeyOnlyByteBufferCell.html
 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/KeyOnlyFilter.KeyOnlyByteBufferCell.html
deleted file mode 100644
index 480362a..000
--- 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/KeyOnlyFilter.KeyOnlyBy

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowDeleteFamilyCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowDeleteFamilyCell.html
 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowDeleteFamilyCell.html
index 8ff25d5..3a071d6 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowDeleteFamilyCell.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowDeleteFamilyCell.html
@@ -50,7 +50,7 @@ var activeTableTab = "activeTableTab";
 
 
 Prev Class
-Next Class
+Next Class
 
 
 Frames
@@ -122,7 +122,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-private static class PrivateCellUtil.FirstOnRowDeleteFamilyCell
+private static class PrivateCellUtil.FirstOnRowDeleteFamilyCell
 extends PrivateCellUtil.EmptyCell
 
 
@@ -141,7 +141,7 @@ extends Cell
-Cell.DataType
+Cell.Type
 
 
 
@@ -242,9 +242,9 @@ extends getTimestamp() 
 
 
-Cell.DataType
+Cell.Type
 getType()
-Returns the type of cell in a human readable format using 
Cell.DataType
+Returns the type of cell in a human readable format using 
Cell.Type
 
 
 
@@ -304,7 +304,7 @@ extends 
 
 FIXED_OVERHEAD
-private static final int FIXED_OVERHEAD
+private static final int FIXED_OVERHEAD
 
 
 
@@ -313,7 +313,7 @@ extends 
 
 row
-private final byte[] row
+private final byte[] row
 
 
 
@@ -322,7 +322,7 @@ extends 
 
 fam
-private final byte[] fam
+private final byte[] fam
 
 
 
@@ -339,7 +339,7 @@ extends 
 
 FirstOnRowDeleteFamilyCell
-public FirstOnRowDeleteFamilyCell(byte[] row,
+public FirstOnRowDeleteFamilyCell(byte[] row,
   byte[] fam)
 
 
@@ -357,7 +357,7 @@ extends 
 
 heapSize
-public long heapSize()
+public long heapSize()
 
 Returns:
 Approximate 'exclusive deep size' of implementing object.  Includes
@@ -371,7 +371,7 @@ extends 
 
 getRowArray
-public byte[] getRowArray()
+public byte[] getRowArray()
 Description copied from 
interface: Cell
 Contiguous raw bytes that may start at any index in the 
containing array. Max length is
  Short.MAX_VALUE which is 32,767 bytes.
@@ -391,7 +391,7 @@ extends 
 
 getRowLength
-public short getRowLength()
+public short getRowLength()
 
 Specified by:
 getRowLength in
 interface Cell
@@ -408,7 +408,7 @@ extends 
 
 getFamilyArray
-public byte[] getFamilyArray()
+public byte[] getFamilyArray()
 Description copied from 
interface: Cell
 Contiguous bytes composed of legal HDFS filename characters 
which may start at any index in the
  containing array. Max length is Byte.MAX_VALUE, which is 127 bytes.
@@ -428,7 +428,7 @@ extends 
 
 getFamilyLength
-public byte getFamilyLength()
+public byte getFamilyLength()
 
 Specified by:
 getFamilyLength in
 interface Cell
@@ -445,7 +445,7 @@ extends 
 
 getTimestamp
-public long getTimestamp()
+public long getTimestamp()
 
 Returns:
 Long value representing time at which this cell was "Put" into the row.  
Typically
@@ -459,7 +459,7 @@ extends 
 
 getTypeByte
-public byte getTypeByte()
+public byte getTypeByte()
 
 Returns:
 The byte representation of the KeyValue.TYPE of this cell: one of Put, 
Delete, etc
@@ -472,9 +472,9 @@ extends 
 
 getType
-public Cell.DataType getType()
+public Cell.Type getType()
 Description copied from 
interface: ExtendedCell
-Returns the type of cell in a human readable format using 
Cell.DataType
+Returns the type of cell in a human readable format using 
Cell.Type
  
  Note : This does not expose the internal types of Cells like KeyValue.Type.Maximum
 and
  KeyValue.Type.Minimum
@@ -513,7 +513,7 @@ extends 
 
 Prev Class
-Next Class
+Next Class
 
 
 Frames

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.LastOnRowByteBufferCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.LastOnRowByteBufferCell.html
 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.LastOnRowByteBufferCell.html
deleted file mode 100644
index 83b13ff..000
--- 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.LastOnRowByteBufferCell.html
+++ /dev/null
@@ -1,546 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-PrivateCellUtil.LastOnRowByteBufferCell (Apache HBase 3.0.0-SNAPSHOT 
API)
-
-
-
-
-
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
-
-JavaScript

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.TagRewriteByteBufferExtendedCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.TagRewriteByteBufferExtendedCell.html
 
b/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.TagRewriteByteBufferExtendedCell.html
new file mode 100644
index 000..e5bc7a9
--- /dev/null
+++ 
b/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.TagRewriteByteBufferExtendedCell.html
@@ -0,0 +1,165 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+Uses of Class 
org.apache.hadoop.hbase.PrivateCellUtil.TagRewriteByteBufferExtendedCell 
(Apache HBase 3.0.0-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+
+Uses of 
Classorg.apache.hadoop.hbase.PrivateCellUtil.TagRewriteByteBufferExtendedCell
+
+
+
+
+
+Packages that use PrivateCellUtil.TagRewriteByteBufferExtendedCell 
+
+Package
+Description
+
+
+
+org.apache.hadoop.hbase
+ 
+
+
+
+
+
+
+
+
+
+Uses of PrivateCellUtil.TagRewriteByteBufferExtendedCell 
in org.apache.hadoop.hbase
+
+Subclasses of PrivateCellUtil.TagRewriteByteBufferExtendedCell 
in org.apache.hadoop.hbase 
+
+Modifier and Type
+Class and Description
+
+
+
+(package private) static class 
+PrivateCellUtil.ValueAndTagRewriteByteBufferExtendedCell 
+
+
+
+
+
+
+
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+Copyright © 2007–2017 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+
+

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.ValueAndTagRewriteByteBufferCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.ValueAndTagRewriteByteBufferCell.html
 
b/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.ValueAndTagRewriteByteBufferCell.html
deleted file mode 100644
index a246083..000
--- 
a/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.ValueAndTagRewriteByteBufferCell.html
+++ /dev/null
@@ -1,125 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-Uses of Class 
org.apache.hadoop.hbase.PrivateCellUtil.ValueAndTagRewriteByteBufferCell 
(Apache HBase 3.0.0-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-
-Uses of 
Classorg.apache.hadoop.hbase.PrivateCellUtil.ValueAndTagRewriteByteBufferCell
-
-No usage of 
org.apache.hadoop.hbase.PrivateCellUtil.ValueAndTagRewriteByteBufferCell
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-Copyright © 2007–2017 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
-
-

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.ValueAndT

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/BaseConfigurable.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/BaseConfigurable.html 
b/devapidocs/org/apache/hadoop/hbase/BaseConfigurable.html
index 4e76d5d..1655767 100644
--- a/devapidocs/org/apache/hadoop/hbase/BaseConfigurable.html
+++ b/devapidocs/org/apache/hadoop/hbase/BaseConfigurable.html
@@ -50,7 +50,7 @@ var activeTableTab = "activeTableTab";
 
 
 Prev Class
-Next Class
+Next Class
 
 
 Frames
@@ -298,7 +298,7 @@ implements org.apache.hadoop.conf.Configurable
 
 
 Prev Class
-Next Class
+Next Class
 
 
 Frames

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/ByteBufferCell.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/ByteBufferCell.html 
b/devapidocs/org/apache/hadoop/hbase/ByteBufferCell.html
deleted file mode 100644
index 4ade462..000
--- a/devapidocs/org/apache/hadoop/hbase/ByteBufferCell.html
+++ /dev/null
@@ -1,482 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-ByteBufferCell (Apache HBase 3.0.0-SNAPSHOT API)
-
-
-
-
-
-var methods = 
{"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev Class
-Next Class
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-Summary: 
-Nested | 
-Field | 
-Constr | 
-Method
-
-
-Detail: 
-Field | 
-Constr | 
-Method
-
-
-
-
-
-
-
-
-org.apache.hadoop.hbase
-Class ByteBufferCell
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
-
-
-org.apache.hadoop.hbase.ByteBufferCell
-
-
-
-
-
-
-
-All Implemented Interfaces:
-Cell
-
-
-Direct Known Subclasses:
-BufferedDataBlockEncoder.OffheapDecodedCell,
 ByteBufferKeyOnlyKeyValue, ByteBufferKeyValue, KeyOnlyFilter.KeyOnlyByteBufferCell, MapReduceCell, PrivateCellUtil.EmptyByteBufferCell, PrivateCellUtil.TagRewriteByteBufferCell
-
-
-
-@InterfaceAudience.Private
-public abstract class ByteBufferCell
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
-implements Cell
-This class is a server side extension to the Cell interface. It is used when the
- Cell is backed by a http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer: i.e. 
cell instanceof ByteBufferedCell.
-
- This class has getters for the row, column family, column qualifier, value 
and tags hosting
- ByteBuffers. It also has getters of the *position* within a ByteBuffer where 
these
- field bytes begin. These are needed because a single ByteBuffer may back one 
or many Cell
- instances -- it depends on the implementation -- so the ByteBuffer position 
as returned by
- http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true#arrayOffset--";
 title="class or interface in 
java.nio">ByteBuffer.arrayOffset() cannot be relied upon. 
Also, do not confuse these position
- methods with the getXXXOffset methods from the super Interface, Cell; dependent up on
- implementation, the Cell getXXXOffset methods can return the same value as a 
call to its
- equivalent position method from below BUT they can also stray; if a 
ByteBufferedCell, use the
- below position methods to find where a field begins.
-
- Use the getXXXLength methods from Cell to find a fields length.
-
- A Cell object can be of this type only on the server side.
-
- WARNING: If a Cell is backed by an offheap ByteBuffer, any call to 
getXXXArray() will result
- in a temporary byte array creation and a bytes copy. Avoid these allocations 
by using the
- appropriate Cell access server-side: i.e. ByteBufferedCell when backed by a 
ByteBuffer and Cell
- when it is not.
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
-Cell.DataType
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors 
-
-Constructor an

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/apidocs/org/apache/hadoop/hbase/CellUtil.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/CellUtil.html 
b/apidocs/org/apache/hadoop/hbase/CellUtil.html
index f89905d..957bb01 100644
--- a/apidocs/org/apache/hadoop/hbase/CellUtil.html
+++ b/apidocs/org/apache/hadoop/hbase/CellUtil.html
@@ -1121,7 +1121,7 @@ public static byte[] 
 
 copyRowTo
-public static int copyRowTo(Cell cell,
+public static int copyRowTo(Cell cell,
 http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
 int destinationOffset)
 Copies the row to the given bytebuffer
@@ -1141,7 +1141,7 @@ public static byte[] 
 
 copyRow
-public static byte[] copyRow(Cell cell)
+public static byte[] copyRow(Cell cell)
 Copies the row to a new byte[]
 
 Parameters:
@@ -1157,7 +1157,7 @@ public static byte[] 
 
 copyFamilyTo
-public static int copyFamilyTo(Cell cell,
+public static int copyFamilyTo(Cell cell,
byte[] destination,
int destinationOffset)
 Copies the family to the given byte[]
@@ -1177,7 +1177,7 @@ public static byte[] 
 
 copyFamilyTo
-public static int copyFamilyTo(Cell cell,
+public static int copyFamilyTo(Cell cell,
http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
int destinationOffset)
 Copies the family to the given bytebuffer
@@ -1197,7 +1197,7 @@ public static byte[] 
 
 copyQualifierTo
-public static int copyQualifierTo(Cell cell,
+public static int copyQualifierTo(Cell cell,
   byte[] destination,
   int destinationOffset)
 Copies the qualifier to the given byte[]
@@ -1217,7 +1217,7 @@ public static byte[] 
 
 copyQualifierTo
-public static int copyQualifierTo(Cell cell,
+public static int copyQualifierTo(Cell cell,
   http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
   int destinationOffset)
 Copies the qualifier to the given bytebuffer
@@ -1237,7 +1237,7 @@ public static byte[] 
 
 copyValueTo
-public static int copyValueTo(Cell cell,
+public static int copyValueTo(Cell cell,
   byte[] destination,
   int destinationOffset)
 Copies the value to the given byte[]
@@ -1257,7 +1257,7 @@ public static byte[] 
 
 copyValueTo
-public static int copyValueTo(Cell cell,
+public static int copyValueTo(Cell cell,
   http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
   int destinationOffset)
 Copies the value to the given bytebuffer
@@ -1278,7 +1278,7 @@ public static byte[] 
 copyTagTo
 http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
-public static int copyTagTo(Cell cell,
+public static int copyTagTo(Cell cell,
 byte[] destination,
 int destinationOffset)
 Deprecated. As of HBase-2.0. Will be removed in 
HBase-3.0.
@@ -1300,7 +1300,7 @@ public static int 
 copyTagTo
 http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
-public static int copyTagTo(Cell cell,
+public static int copyTagTo(Cell cell,
 http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
 int destinationOffset)
 Deprecated. As of HBase-2.0. Will be removed in 3.0.
@@ -1322,7 +1322,7 @@ public static int 
 getValueBufferShallowCopy
 http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
-public static http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer getValueBufferShallowCopy(Cell cell)
+public static http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer getValueBufferShallowCopy(Cell cell)
 Deprecated. As of HBase-2.0. Will be removed in 3.0.
 
 
@@ -1333,7 +1333,7 @@ public static http://docs.oracle.com/javase/8/docs/api/java/nio/By
 
 getQualifierBufferShallowCopy
 http

hbase-site git commit: INFRA-10751 Empty commit

2017-12-28 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site d449e87f6 -> b9b25b6b3


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

Branch: refs/heads/asf-site
Commit: b9b25b6b37f13ee9e9dd407a1ac79378429c39d3
Parents: d449e87
Author: jenkins 
Authored: Thu Dec 28 15:19:20 2017 +
Committer: jenkins 
Committed: Thu Dec 28 15:19:20 2017 +

--

--




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

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

Branch: refs/heads/asf-site
Commit: d449e87f690a77049058ccdc18454f54e89ddf07
Parents: 7254d5f
Author: jenkins 
Authored: Thu Dec 28 15:18:38 2017 +
Committer: jenkins 
Committed: Thu Dec 28 15:18:38 2017 +

--
 acid-semantics.html | 4 +-
 apache_hbase_reference_guide.pdf| 4 +-
 apidocs/index-all.html  |12 +-
 apidocs/org/apache/hadoop/hbase/Cell.html   | 8 +-
 .../org/apache/hadoop/hbase/CellBuilder.html| 6 +-
 apidocs/org/apache/hadoop/hbase/CellUtil.html   |   162 +-
 .../hadoop/hbase/RegionTooBusyException.html|32 +-
 .../hadoop/hbase/class-use/CellBuilder.html | 2 +-
 .../org/apache/hadoop/hbase/client/Append.html  | 2 +-
 .../org/apache/hadoop/hbase/client/Delete.html  | 2 +-
 .../apache/hadoop/hbase/client/Increment.html   | 2 +-
 apidocs/org/apache/hadoop/hbase/client/Put.html | 2 +-
 .../RetriesExhaustedWithDetailsException.html   | 2 +-
 .../hadoop/hbase/filter/KeyOnlyFilter.html  |20 +-
 .../src-html/org/apache/hadoop/hbase/Cell.html  | 8 +-
 .../org/apache/hadoop/hbase/CellBuilder.html| 2 +-
 .../org/apache/hadoop/hbase/CellUtil.html   |  2595 +--
 .../hadoop/hbase/RegionTooBusyException.html|33 +-
 .../org/apache/hadoop/hbase/client/Append.html  | 2 +-
 .../org/apache/hadoop/hbase/client/Delete.html  | 2 +-
 .../apache/hadoop/hbase/client/Increment.html   | 2 +-
 .../org/apache/hadoop/hbase/client/Put.html | 2 +-
 .../RetriesExhaustedWithDetailsException.html   |   121 +-
 .../client/replication/ReplicationAdmin.html|32 +-
 .../hadoop/hbase/filter/ColumnPrefixFilter.html | 8 +-
 .../hadoop/hbase/filter/KeyOnlyFilter.html  |   705 +-
 .../hadoop/hbase/filter/PrefixFilter.html   | 8 +-
 .../hadoop/hbase/mapreduce/CellSortReducer.html | 4 +-
 .../hbase/mapreduce/HFileOutputFormat2.html | 8 +-
 .../apache/hadoop/hbase/mapreduce/Import.html   |40 +-
 .../hadoop/hbase/mapreduce/WALPlayer.html   | 6 +-
 book.html   | 2 +-
 bulk-loads.html | 4 +-
 checkstyle-aggregate.html   | 19102 -
 checkstyle.rss  |   170 +-
 coc.html| 4 +-
 cygwin.html | 4 +-
 dependencies.html   | 4 +-
 dependency-convergence.html | 4 +-
 dependency-info.html| 4 +-
 dependency-management.html  | 4 +-
 devapidocs/allclasses-frame.html|30 +-
 devapidocs/allclasses-noframe.html  |30 +-
 devapidocs/constant-values.html | 6 +-
 devapidocs/index-all.html   |   690 +-
 .../apache/hadoop/hbase/BaseConfigurable.html   | 4 +-
 .../org/apache/hadoop/hbase/ByteBufferCell.html |   482 -
 .../hadoop/hbase/ByteBufferExtendedCell.html|   525 +
 .../hadoop/hbase/ByteBufferKeyOnlyKeyValue.html |   357 +-
 .../apache/hadoop/hbase/ByteBufferKeyValue.html |99 +-
 .../org/apache/hadoop/hbase/Cell.DataType.html  |   432 -
 .../org/apache/hadoop/hbase/Cell.Type.html  |   432 +
 devapidocs/org/apache/hadoop/hbase/Cell.html|16 +-
 .../org/apache/hadoop/hbase/CellBuilder.html|10 +-
 .../org/apache/hadoop/hbase/CellUtil.html   |   170 +-
 .../org/apache/hadoop/hbase/ExtendedCell.html   |12 +-
 .../hadoop/hbase/ExtendedCellBuilder.html   |12 +-
 .../hadoop/hbase/ExtendedCellBuilderImpl.html   |12 +-
 .../hadoop/hbase/IndividualBytesFieldCell.html  | 2 +-
 .../hbase/IndividualBytesFieldCellBuilder.html  | 2 +-
 .../hadoop/hbase/KeyValue.KeyOnlyKeyValue.html  | 7 -
 .../org/apache/hadoop/hbase/KeyValue.html   | 7 -
 .../apache/hadoop/hbase/KeyValueBuilder.html| 2 +-
 .../hadoop/hbase/NoTagsByteBufferKeyValue.html  | 6 +-
 .../org/apache/hadoop/hbase/NoTagsKeyValue.html | 7 -
 .../PrivateCellUtil.EmptyByteBufferCell.html|   956 -
 ...ateCellUtil.EmptyByteBufferExtendedCell.html |   909 +
 .../hadoop/hbase/PrivateCellUtil.EmptyCell.html |52 +-
 ...rivateCellUtil.FirstOnRowByteBufferCell.html |   546 -
 ...llUtil.FirstOnRowByteBufferExtendedCell.html |   546 +
 .../hbase/PrivateCellUtil.FirstOnRowCell.html   |42 +-
 ...ateCellUtil.FirstOnRowColByteBufferCell.html |   613 -
 ...til.FirstOnRowColByteBufferExtendedCell.html |   613 +
 .../PrivateCellUtil.FirstOnR

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/index-all.html
--
diff --git a/devapidocs/index-all.html b/devapidocs/index-all.html
index 1b69262..de2f257 100644
--- a/devapidocs/index-all.html
+++ b/devapidocs/index-all.html
@@ -6790,7 +6790,7 @@
  
 BufferedDataBlockEncoder.BufferedEncodedSeeker
 - Class in org.apache.hadoop.hbase.io.encoding
  
-BufferedDataBlockEncoder.OffheapDecodedCell - 
Class in org.apache.hadoop.hbase.io.encoding
+BufferedDataBlockEncoder.OffheapDecodedExtendedCell
 - Class in org.apache.hadoop.hbase.io.encoding
  
 BufferedDataBlockEncoder.OnheapDecodedCell - 
Class in org.apache.hadoop.hbase.io.encoding
 
@@ -7414,19 +7414,19 @@
  
 ByteBufferBackedNode()
 - Constructor for class org.apache.hadoop.hbase.io.util.LRUDictionary.BidirectionalLRUMap.ByteBufferBackedNode
  
-ByteBufferCell - 
Class in org.apache.hadoop.hbase
+ByteBufferChunkKeyValue - Class in org.apache.hadoop.hbase.regionserver
 
-This class is a server side extension to the Cell interface.
+ByteBuffer based cell which has the chunkid at the 0th 
offset
 
-ByteBufferCell()
 - Constructor for class org.apache.hadoop.hbase.ByteBufferCell
+ByteBufferChunkKeyValue(ByteBuffer,
 int, int) - Constructor for class 
org.apache.hadoop.hbase.regionserver.ByteBufferChunkKeyValue
+ 
+ByteBufferChunkKeyValue(ByteBuffer,
 int, int, long) - Constructor for class 
org.apache.hadoop.hbase.regionserver.ByteBufferChunkKeyValue
  
-ByteBufferChunkCell - Class in org.apache.hadoop.hbase.regionserver
+ByteBufferExtendedCell - Class in org.apache.hadoop.hbase
 
-ByteBuffer based cell which has the chunkid at the 0th 
offset
+This class is a server side extension to the Cell interface.
 
-ByteBufferChunkCell(ByteBuffer,
 int, int) - Constructor for class 
org.apache.hadoop.hbase.regionserver.ByteBufferChunkCell
- 
-ByteBufferChunkCell(ByteBuffer,
 int, int, long) - Constructor for class 
org.apache.hadoop.hbase.regionserver.ByteBufferChunkCell
+ByteBufferExtendedCell()
 - Constructor for class org.apache.hadoop.hbase.ByteBufferExtendedCell
  
 ByteBufferInputStream - Class in org.apache.hadoop.hbase.io
 
@@ -7458,7 +7458,7 @@
  
 ByteBufferKeyValue - Class in org.apache.hadoop.hbase
 
-This Cell is an implementation of ByteBufferCell where the data resides 
in
+This Cell is an implementation of ByteBufferExtendedCell where the data 
resides in
  off heap/ on heap ByteBuffer
 
 ByteBufferKeyValue(ByteBuffer,
 int, int, long) - Constructor for class org.apache.hadoop.hbase.ByteBufferKeyValue
@@ -8126,7 +8126,7 @@
 
 Calculates the back-off time for a retrying request to a 
particular server.
 
-calculateHashForKey(ByteBufferCell)
 - Method in class org.apache.hadoop.hbase.ByteBufferKeyValue
+calculateHashForKey(ByteBufferExtendedCell)
 - Method in class org.apache.hadoop.hbase.ByteBufferKeyValue
  
 calculateHashForKey(Cell)
 - Method in class org.apache.hadoop.hbase.KeyValue
  
@@ -9049,11 +9049,11 @@
 
 cell
 - Variable in class org.apache.hadoop.hbase.client.Mutation.CellWrapper
  
-cell
 - Variable in class org.apache.hadoop.hbase.filter.KeyOnlyFilter.KeyOnlyByteBufferCell
+cell
 - Variable in class org.apache.hadoop.hbase.filter.KeyOnlyFilter.KeyOnlyByteBufferExtendedCell
  
 cell
 - Variable in class org.apache.hadoop.hbase.filter.KeyOnlyFilter.KeyOnlyCell
  
-cell
 - Variable in class org.apache.hadoop.hbase.PrivateCellUtil.TagRewriteByteBufferCell
+cell
 - Variable in class org.apache.hadoop.hbase.PrivateCellUtil.TagRewriteByteBufferExtendedCell
  
 cell
 - Variable in class org.apache.hadoop.hbase.PrivateCellUtil.TagRewriteCell
  
@@ -9067,9 +9067,9 @@
 
 Deprecated.
  
-cell - 
Variable in class org.apache.hadoop.hbase.util.MapReduceCell
+cell
 - Variable in class org.apache.hadoop.hbase.util.MapReduceExtendedCell
  
-Cell.DataType - 
Enum in org.apache.hadoop.hbase
+Cell.Type - Enum 
in org.apache.hadoop.hbase
 
 The valid types for user to build the cell.
 
@@ -13219,7 +13219,7 @@
  
 coalescer
 - Variable in class org.apache.hadoop.hbase.thrift.ThriftServerRunner.HBaseHandler
  
-code - 
Variable in enum org.apache.hadoop.hbase.Cell.DataType
+code - Variable 
in enum org.apache.hadoop.hbase.Cell.Type
  
 code - 
Variable in enum org.apache.hadoop.hbase.executor.EventType
  
@@ -13300,7 +13300,7 @@
  
 colAdjust
 - Variable in class org.apache.hadoop.hbase.util.MunkresAssignment
  
-colBuff
 - Variable in class org.apache.hadoop.hbase.PrivateCellUtil.FirstOnRowColByteBufferCell
+colBuff
 - Variable in class org.apache.hadoop.hbase.PrivateCellUtil.FirstOnRowColByteBufferExtendedCell
  
 colDescFromHbase(HColumnDescriptor)
 - Static method in class org.apache.hadoop.hbase.thrift.ThriftUtilities
 
@@ -13350,9 +13350,9 @@
 
 collectRow()
 - Method in class org.apache.hadoop.hbase.io.hfile.HFilePrettyPrinter.KeyValueStatsCollector
  
-colLength
 - Variable in class org.apache.hadoop.hbase.P

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/client/ConnectionImplementation.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/ConnectionImplementation.html 
b/devapidocs/org/apache/hadoop/hbase/client/ConnectionImplementation.html
index caa6c76..ff276f7 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/ConnectionImplementation.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/ConnectionImplementation.html
@@ -118,7 +118,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Private
-class ConnectionImplementation
+class ConnectionImplementation
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 implements ClusterConnection, http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html?is-external=true";
 title="class or interface in java.io">Closeable
 Main implementation of Connection 
and ClusterConnection interfaces.
@@ -843,7 +843,7 @@ implements 
 
 RETRIES_BY_SERVER_KEY
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String RETRIES_BY_SERVER_KEY
+public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String RETRIES_BY_SERVER_KEY
 
 See Also:
 Constant
 Field Values
@@ -856,7 +856,7 @@ implements 
 
 LOG
-private static final org.slf4j.Logger LOG
+private static final org.slf4j.Logger LOG
 
 
 
@@ -865,7 +865,7 @@ implements 
 
 RESOLVE_HOSTNAME_ON_FAIL_KEY
-private static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String RESOLVE_HOSTNAME_ON_FAIL_KEY
+private static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String RESOLVE_HOSTNAME_ON_FAIL_KEY
 
 See Also:
 Constant
 Field Values
@@ -878,7 +878,7 @@ implements 
 
 hostnamesCanChange
-private final boolean hostnamesCanChange
+private final boolean hostnamesCanChange
 
 
 
@@ -887,7 +887,7 @@ implements 
 
 pause
-private final long pause
+private final long pause
 
 
 
@@ -896,7 +896,7 @@ implements 
 
 pauseForCQTBE
-private final long pauseForCQTBE
+private final long pauseForCQTBE
 
 
 
@@ -905,7 +905,7 @@ implements 
 
 useMetaReplicas
-private boolean useMetaReplicas
+private boolean useMetaReplicas
 
 
 
@@ -914,7 +914,7 @@ implements 
 
 metaReplicaCallTimeoutScanInMicroSecond
-private final int metaReplicaCallTimeoutScanInMicroSecond
+private final int metaReplicaCallTimeoutScanInMicroSecond
 
 
 
@@ -923,7 +923,7 @@ implements 
 
 numTries
-private final int numTries
+private final int numTries
 
 
 
@@ -932,7 +932,7 @@ implements 
 
 rpcTimeout
-final int rpcTimeout
+final int rpcTimeout
 
 
 
@@ -941,7 +941,7 @@ implements 
 
 nonceGenerator
-private static volatile NonceGenerator nonceGenerator
+private static volatile NonceGenerator nonceGenerator
 Global nonceGenerator shared per client.Currently there's 
no reason to limit its scope.
  Once it's set under nonceGeneratorCreateLock, it is never unset or 
changed.
 
@@ -952,7 +952,7 @@ implements 
 
 nonceGeneratorCreateLock
-private static final http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object nonceGeneratorCreateLock
+private static final http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object nonceGeneratorCreateLock
 The nonce generator lock. Only taken when creating 
Connection, which gets a private copy.
 
 
@@ -962,7 +962,7 @@ implements 
 
 asyncProcess
-private final AsyncProcess asyncProcess
+private final AsyncProcess asyncProcess
 
 
 
@@ -971,7 +971,7 @@ implements 
 
 stats
-private final ServerStatisticTracker stats
+private final ServerStatisticTracker stats
 
 
 
@@ -980,7 +980,7 @@ implements 
 
 closed
-private volatile boolean closed
+private volatile boolean closed
 
 
 
@@ -989,7 +989,7 @@ implements 
 
 aborted
-private volatile boolean aborted
+private volatile boolean aborted
 
 
 
@@ -998,7 +998,7 @@ implements 
 
 clusterStatusListener
-ClusterStatusListener clusterStatusListener
+ClusterStatusListener clusterStatusListener
 
 
 
@@ -1007,7 +1007,7 @@ implements 
 
 metaRegionLock
-private final http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object metaRegionLock
+private final http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object metaRegionLock
 
 
 
@@ -1016,7 +1016,7 @@ implements 
 
 masterLock
-private final http://docs.oracle.com/javase/8/docs/api/java/lang/Object

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.EmptyByteBufferCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.EmptyByteBufferCell.html 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.EmptyByteBufferCell.html
deleted file mode 100644
index ae739ba..000
--- 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.EmptyByteBufferCell.html
+++ /dev/null
@@ -1,956 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-PrivateCellUtil.EmptyByteBufferCell (Apache HBase 3.0.0-SNAPSHOT 
API)
-
-
-
-
-
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev Class
-Next Class
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-Summary: 
-Nested | 
-Field | 
-Constr | 
-Method
-
-
-Detail: 
-Field | 
-Constr | 
-Method
-
-
-
-
-
-
-
-
-org.apache.hadoop.hbase
-Class 
PrivateCellUtil.EmptyByteBufferCell
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
-
-
-org.apache.hadoop.hbase.ByteBufferCell
-
-
-org.apache.hadoop.hbase.PrivateCellUtil.EmptyByteBufferCell
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, ExtendedCell, HeapSize, RawCell
-
-
-Direct Known Subclasses:
-PrivateCellUtil.FirstOnRowByteBufferCell, PrivateCellUtil.LastOnRowByteBufferCell
-
-
-Enclosing class:
-PrivateCellUtil
-
-
-
-private abstract static class PrivateCellUtil.EmptyByteBufferCell
-extends ByteBufferCell
-implements ExtendedCell
-These cells are used in reseeks/seeks to improve the read 
performance. They are not real cells
- that are returned back to the clients
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
-Cell.DataType
-
-
-
-
-
-
-
-
-Field Summary
-
-
-
-
-Fields inherited from interface org.apache.hadoop.hbase.ExtendedCell
-CELL_NOT_BASED_ON_CHUNK
-
-
-
-
-
-Fields inherited from interface org.apache.hadoop.hbase.RawCell
-MAX_TAGS_LENGTH
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors 
-
-Modifier
-Constructor and Description
-
-
-private 
-EmptyByteBufferCell() 
-
-
-
-
-
-
-
-
-
-Method Summary
-
-All Methods Instance Methods Concrete Methods 
-
-Modifier and Type
-Method and Description
-
-
-byte[]
-getFamilyArray()
-Contiguous bytes composed of legal HDFS filename characters 
which may start at any index in the
- containing array.
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-getFamilyByteBuffer() 
-
-
-byte
-getFamilyLength() 
-
-
-int
-getFamilyOffset() 
-
-
-int
-getFamilyPosition() 
-
-
-byte[]
-getQualifierArray()
-Contiguous raw bytes that may start at any index in the 
containing array.
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-getQualifierByteBuffer() 
-
-
-int
-getQualifierLength() 
-
-
-int
-getQualifierOffset() 
-
-
-int
-getQualifierPosition() 
-
-
-byte[]
-getRowArray()
-Contiguous raw bytes that may start at any index in the 
containing array.
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-getRowByteBuffer() 
-
-
-short
-getRowLength() 
-
-
-int
-getRowOffset() 
-
-
-int
-getRowPosition() 
-
-
-long
-getSequenceId()
-A region-specific unique monotonically increasing sequence 
ID given to each Cell.
-
-
-
-byte[]
-getTagsArray()
-Contiguous raw bytes representing tags that may start at 
any index in the containing array.
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/class-use/Cell.DataType.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.DataType.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.DataType.html
deleted file mode 100644
index 7373038..000
--- a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.DataType.html
+++ /dev/null
@@ -1,272 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-Uses of Class org.apache.hadoop.hbase.Cell.DataType (Apache HBase 
3.0.0-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-
-Uses of Classorg.apache.hadoop.hbase.Cell.DataType
-
-
-
-
-
-Packages that use Cell.DataType 
-
-Package
-Description
-
-
-
-org.apache.hadoop.hbase
- 
-
-
-org.apache.hadoop.hbase.filter
-
-Provides row-level filters applied to HRegion scan results 
during calls to
- ResultScanner.next().
-
-
-
-
-
-
-
-
-
-
-Uses of Cell.DataType in org.apache.hadoop.hbase
-
-Methods in org.apache.hadoop.hbase
 that return Cell.DataType 
-
-Modifier and Type
-Method and Description
-
-
-
-Cell.DataType
-ByteBufferKeyOnlyKeyValue.getType() 
-
-
-Cell.DataType
-Cell.getType()
-Returns the type of cell in a human readable format using 
Cell.DataType
-
-
-
-Cell.DataType
-PrivateCellUtil.FirstOnRowCell.getType() 
-
-
-Cell.DataType
-PrivateCellUtil.FirstOnRowByteBufferCell.getType() 
-
-
-Cell.DataType
-PrivateCellUtil.LastOnRowByteBufferCell.getType() 
-
-
-Cell.DataType
-PrivateCellUtil.LastOnRowCell.getType() 
-
-
-Cell.DataType
-PrivateCellUtil.FirstOnRowDeleteFamilyCell.getType() 
-
-
-default Cell.DataType
-ExtendedCell.getType()
-Returns the type of cell in a human readable format using 
Cell.DataType
-
-
-
-static Cell.DataType
-PrivateCellUtil.toDataType(byte type) 
-
-
-static Cell.DataType
-Cell.DataType.valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
-Returns the enum constant of this type with the specified 
name.
-
-
-
-static Cell.DataType[]
-Cell.DataType.values()
-Returns an array containing the constants of this enum 
type, in
-the order they are declared.
-
-
-
-
-
-Methods in org.apache.hadoop.hbase
 with parameters of type Cell.DataType 
-
-Modifier and Type
-Method and Description
-
-
-
-CellBuilder
-CellBuilder.setType(Cell.DataType type) 
-
-
-RawCellBuilder
-RawCellBuilder.setType(Cell.DataType type) 
-
-
-ExtendedCellBuilder
-ExtendedCellBuilder.setType(Cell.DataType type) 
-
-
-ExtendedCellBuilder
-ExtendedCellBuilderImpl.setType(Cell.DataType type) 
-
-
-static KeyValue.Type
-PrivateCellUtil.toTypeByte(Cell.DataType type) 
-
-
-
-
-
-
-
-Uses of Cell.DataType in org.apache.hadoop.hbase.filter
-
-Methods in org.apache.hadoop.hbase.filter
 that return Cell.DataType 
-
-Modifier and Type
-Method and Description
-
-
-
-Cell.DataType
-KeyOnlyFilter.KeyOnlyCell.getType() 
-
-
-Cell.DataType
-KeyOnlyFilter.KeyOnlyByteBufferCell.getType() 
-
-
-
-
-
-
-
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-Copyright © 2007–2017 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
-
-

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/class-use/Cell.Type.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.Type.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.Type.html
new file mode 100644
index 000..5019eca
--- /dev/null
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.Type.html
@@ -0,0 +1,272 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+Uses of Class org.apache.hadoop.hbase.Cell.Type (Apache HBase 
3.0.0-SNAPSHOT API)
+
+
+
+
+
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class PrivateCellUtil.TagRewriteByteBufferExtendedCell
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.ByteBufferExtendedCell
+
+
+org.apache.hadoop.hbase.PrivateCellUtil.TagRewriteByteBufferExtendedCell
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, ExtendedCell, HeapSize, RawCell
+
+
+Direct Known Subclasses:
+PrivateCellUtil.ValueAndTagRewriteByteBufferExtendedCell
+
+
+Enclosing class:
+PrivateCellUtil
+
+
+
+static class PrivateCellUtil.TagRewriteByteBufferExtendedCell
+extends ByteBufferExtendedCell
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+
+
+
+Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
+Cell.Type
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+protected ByteBufferExtendedCell
+cell 
+
+
+private static int
+HEAP_SIZE_OVERHEAD 
+
+
+protected byte[]
+tags 
+
+
+
+
+
+
+Fields inherited from interface org.apache.hadoop.hbase.ExtendedCell
+CELL_NOT_BASED_ON_CHUNK
+
+
+
+
+
+Fields inherited from interface org.apache.hadoop.hbase.RawCell
+MAX_TAGS_LENGTH
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+TagRewriteByteBufferExtendedCell(ByteBufferExtendedCell cell,
+byte[] tags) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+All Methods Instance Methods Concrete Methods 
+
+Modifier and Type
+Method and Description
+
+
+ExtendedCell
+deepClone()
+Does a deep copy of the contents to a new memory area and 
returns it as a new cell.
+
+
+
+byte[]
+getFamilyArray()
+Contiguous bytes composed of legal HDFS filename characters 
which may start at any index in the
+ containing array.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+getFamilyByteBuffer() 
+
+
+byte
+getFamilyLength() 
+
+
+int
+getFamilyOffset() 
+
+
+int
+getFamilyPosition() 
+
+
+byte[]
+getQualifierArray()
+Contiguous raw bytes that may start at any index in the 
containing array.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+getQualifierByteBuffer() 
+
+
+int
+getQualifierLength() 
+
+
+int
+getQualifierOffset() 
+
+
+int
+getQualifierPosition() 
+
+
+byte[]
+getRowArray()
+Contiguous raw bytes that may start at any index in the 
containing array.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+getRowByteBuffer() 
+
+
+short
+getRowLength() 
+
+
+int
+get

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/client/ConnectionImplementation.ServerErrorTracker.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/ConnectionImplementation.ServerErrorTracker.html
 
b/devapidocs/org/apache/hadoop/hbase/client/ConnectionImplementation.ServerErrorTracker.html
index 57edb86..34dd1aa 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/ConnectionImplementation.ServerErrorTracker.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/ConnectionImplementation.ServerErrorTracker.html
@@ -113,7 +113,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-static class ConnectionImplementation.ServerErrorTracker
+static class ConnectionImplementation.ServerErrorTracker
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 The record of errors for servers.
 
@@ -257,7 +257,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 errorsByServer
-private final http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentMap.html?is-external=true";
 title="class or interface in java.util.concurrent">ConcurrentMap
 errorsByServer
+private final http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentMap.html?is-external=true";
 title="class or interface in java.util.concurrent">ConcurrentMap
 errorsByServer
 
 
 
@@ -266,7 +266,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 canRetryUntil
-private final long canRetryUntil
+private final long canRetryUntil
 
 
 
@@ -275,7 +275,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 maxTries
-private final int maxTries
+private final int maxTries
 
 
 
@@ -284,7 +284,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 startTrackingTime
-private final long startTrackingTime
+private final long startTrackingTime
 
 
 
@@ -301,7 +301,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 ServerErrorTracker
-public ServerErrorTracker(long timeout,
+public ServerErrorTracker(long timeout,
   int maxTries)
 Constructor
 
@@ -325,7 +325,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 canTryMore
-boolean canTryMore(int numAttempt)
+boolean canTryMore(int numAttempt)
 We stop to retry when we have exhausted BOTH the number of 
tries and the time allocated.
 
 Parameters:
@@ -339,7 +339,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 calculateBackoffTime
-long calculateBackoffTime(ServerName server,
+long calculateBackoffTime(ServerName server,
   long basePause)
 Calculates the back-off time for a retrying request to a 
particular server.
 
@@ -357,7 +357,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 reportServerError
-void reportServerError(ServerName server)
+void reportServerError(ServerName server)
 Reports that there was an error on the server to do 
whatever bean-counting necessary.
 
 Parameters:
@@ -371,7 +371,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 getStartTrackingTime
-long getStartTrackingTime()
+long getStartTrackingTime()
 
 
 



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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/http/HttpServer.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/http/HttpServer.html 
b/devapidocs/org/apache/hadoop/hbase/http/HttpServer.html
index 7d4d03e..47b04e4 100644
--- a/devapidocs/org/apache/hadoop/hbase/http/HttpServer.html
+++ b/devapidocs/org/apache/hadoop/hbase/http/HttpServer.html
@@ -115,7 +115,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Private
  @InterfaceStability.Evolving
-public class HttpServer
+public class HttpServer
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 implements FilterContainer
 Create a Jetty embedded server to answer http requests. The 
primary goal
@@ -684,7 +684,7 @@ implements 
 
 LOG
-private static final org.slf4j.Logger LOG
+private static final org.slf4j.Logger LOG
 
 
 
@@ -693,7 +693,7 @@ implements 
 
 EMPTY_STRING
-private static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String EMPTY_STRING
+private static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String EMPTY_STRING
 
 See Also:
 Constant
 Field Values
@@ -706,7 +706,7 @@ implements 
 
 DEFAULT_MAX_HEADER_SIZE
-private static final int DEFAULT_MAX_HEADER_SIZE
+private static final int DEFAULT_MAX_HEADER_SIZE
 
 See Also:
 Constant
 Field Values
@@ -719,7 +719,7 @@ implements 
 
 FILTER_INITIALIZERS_PROPERTY
-static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String FILTER_INITIALIZERS_PROPERTY
+static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String FILTER_INITIALIZERS_PROPERTY
 
 See Also:
 Constant
 Field Values
@@ -732,7 +732,7 @@ implements 
 
 HTTP_MAX_THREADS
-static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String HTTP_MAX_THREADS
+static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String HTTP_MAX_THREADS
 
 See Also:
 Constant
 Field Values
@@ -745,7 +745,7 @@ implements 
 
 HTTP_UI_AUTHENTICATION
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String HTTP_UI_AUTHENTICATION
+public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String HTTP_UI_AUTHENTICATION
 
 See Also:
 Constant
 Field Values
@@ -758,7 +758,7 @@ implements 
 
 HTTP_AUTHENTICATION_PREFIX
-static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String HTTP_AUTHENTICATION_PREFIX
+static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String HTTP_AUTHENTICATION_PREFIX
 
 See Also:
 Constant
 Field Values
@@ -771,7 +771,7 @@ implements 
 
 HTTP_SPNEGO_AUTHENTICATION_PREFIX
-static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String HTTP_SPNEGO_AUTHENTICATION_PREFIX
+static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String HTTP_SPNEGO_AUTHENTICATION_PREFIX
 
 See Also:
 Constant
 Field Values
@@ -784,7 +784,7 @@ implements 
 
 HTTP_SPNEGO_AUTHENTICATION_PRINCIPAL_SUFFIX
-static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String HTTP_SPNEGO_AUTHENTICATION_PRINCIPAL_SUFFIX
+static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String HTTP_SPNEGO_AUTHENTICATION_PRINCIPAL_SUFFIX
 
 See Also:
 Constant
 Field Values
@@ -797,7 +797,7 @@ implements 
 
 HTTP_SPNEGO_AUTHENTICATION_PRINCIPAL_KEY
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String HTTP_SPNEGO_AUTHENTICATION_PRINCIPAL_KEY
+public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String HTTP_SPNEGO_AUTHENTICATION_PRINCIPAL_KEY
 
 See Also:
 Constant
 Field Values
@@ -810,7 +810,7 @@ implements 
 
 HTTP_SPNEGO_AUTHENTICATION_KEYTAB_SUFFIX
-static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title=

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/FileIOEngine.FileAccessor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/FileIOEngine.FileAccessor.html
 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/FileIOEngine.FileAccessor.html
index 8bf6d61..73e6f14 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/FileIOEngine.FileAccessor.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/FileIOEngine.FileAccessor.html
@@ -109,7 +109,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-private static interface FileIOEngine.FileAccessor
+private static interface FileIOEngine.FileAccessor
 
 
 
@@ -155,7 +155,7 @@ var activeTableTab = "activeTableTab";
 
 
 access
-int access(http://docs.oracle.com/javase/8/docs/api/java/nio/channels/FileChannel.html?is-external=true";
 title="class or interface in 
java.nio.channels">FileChannel fileChannel,
+int access(http://docs.oracle.com/javase/8/docs/api/java/nio/channels/FileChannel.html?is-external=true";
 title="class or interface in 
java.nio.channels">FileChannel fileChannel,
http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer byteBuffer,
long accessOffset)
 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://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/FileIOEngine.FileReadAccessor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/FileIOEngine.FileReadAccessor.html
 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/FileIOEngine.FileReadAccessor.html
index 5357055..3475837 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/FileIOEngine.FileReadAccessor.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/FileIOEngine.FileReadAccessor.html
@@ -117,7 +117,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-private static class FileIOEngine.FileReadAccessor
+private static class FileIOEngine.FileReadAccessor
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 implements FileIOEngine.FileAccessor
 
@@ -191,7 +191,7 @@ implements 
 
 FileReadAccessor
-private FileReadAccessor()
+private FileReadAccessor()
 
 
 
@@ -208,7 +208,7 @@ implements 
 
 access
-public int access(http://docs.oracle.com/javase/8/docs/api/java/nio/channels/FileChannel.html?is-external=true";
 title="class or interface in 
java.nio.channels">FileChannel fileChannel,
+public int access(http://docs.oracle.com/javase/8/docs/api/java/nio/channels/FileChannel.html?is-external=true";
 title="class or interface in 
java.nio.channels">FileChannel fileChannel,
   http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer byteBuffer,
   long accessOffset)
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://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/FileIOEngine.FileWriteAccessor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/FileIOEngine.FileWriteAccessor.html
 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/FileIOEngine.FileWriteAccessor.html
index 9c1b746..2f8ba60 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/FileIOEngine.FileWriteAccessor.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/FileIOEngine.FileWriteAccessor.html
@@ -117,7 +117,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-private static class FileIOEngine.FileWriteAccessor
+private static class FileIOEngine.FileWriteAccessor
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 implements FileIOEngine.FileAccessor
 
@@ -191,7 +191,7 @@ implements 
 
 FileWriteAccessor
-private FileWriteAccessor()
+private FileWriteAccessor()
 
 
 
@@ -208,7 +208,7 @@ implements 
 
 access
-public int access(http://docs.oracle.com/javase/8/docs/api/java/nio/channels/FileChannel.html?is-external=true";
 title="class or interface in 
java.nio.channels">FileChannel fileChannel,
+public int access(http://docs.oracle.com/javase/8/docs/api/java/nio/channels/FileChannel.html?is-external=true";
 title="class or interface in 
java.nio.channels">FileChannel fileChannel,
   http://docs.oracle.com/javase/8/do

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/checkstyle-aggregate.html
--
diff --git a/checkstyle-aggregate.html b/checkstyle-aggregate.html
index e9373c7..2b3670e 100644
--- a/checkstyle-aggregate.html
+++ b/checkstyle-aggregate.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – Checkstyle Results
 
@@ -286,10 +286,10 @@
  Warnings
  Errors
 
-3466
+3467
 0
 0
-19152
+19107
 
 Files
 
@@ -299,2035 +299,2035 @@
  W
  E
 
-com/google/protobuf/HBaseZeroCopyByteString.java
-0
-0
-1
-
 org/apache/hadoop/hbase/AcidGuaranteesTestTool.java
 0
 0
 7
-
+
 org/apache/hadoop/hbase/AsyncMetaTableAccessor.java
 0
 0
 49
-
+
 org/apache/hadoop/hbase/AuthUtil.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/ByteBufferKeyOnlyKeyValue.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/CategoryBasedTimeout.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/Cell.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/CellBuilderFactory.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/CellComparatorImpl.java
 0
 0
 13
-
+
 org/apache/hadoop/hbase/CellScanner.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/CellUtil.java
 0
 0
-68
-
+67
+
 org/apache/hadoop/hbase/ChoreService.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/ClassFinder.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/ClusterId.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/ClusterManager.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/ClusterStatus.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/CompoundConfiguration.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/CoordinatedStateException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/CoordinatedStateManager.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/Coprocessor.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/DistributedHBaseCluster.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/DoNotRetryIOException.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/DroppedSnapshotException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/ExtendedCell.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/GenericTestUtils.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/HBaseCluster.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/HBaseClusterManager.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/HBaseCommonTestingUtility.java
 0
 0
 13
-
+
 org/apache/hadoop/hbase/HBaseConfiguration.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/HBaseTestCase.java
 0
 0
 35
-
+
 org/apache/hadoop/hbase/HBaseTestingUtility.java
 0
 0
 267
-
+
 org/apache/hadoop/hbase/HColumnDescriptor.java
 0
 0
 40
-
+
 org/apache/hadoop/hbase/HFilePerformanceEvaluation.java
 0
 0
 15
-
+
 org/apache/hadoop/hbase/HRegionInfo.java
 0
 0
 55
-
+
 org/apache/hadoop/hbase/HRegionLocation.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/HTableDescriptor.java
 0
 0
 38
-
+
 org/apache/hadoop/hbase/HTestConst.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/HadoopShimsImpl.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/HealthChecker.java
 0
 0
 17
-
+
 org/apache/hadoop/hbase/IndividualBytesFieldCell.java
 0
 0
 9
-
+
 org/apache/hadoop/hbase/IntegrationTestBackupRestore.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/IntegrationTestBase.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/IntegrationTestDDLMasterFailover.java
 0
 0
 51
-
+
 org/apache/hadoop/hbase/IntegrationTestIngest.java
 0
 0
 10
-
+
 org/apache/hadoop/hbase/IntegrationTestIngestWithACL.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/IntegrationTestIngestWithEncryption.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/IntegrationTestIngestWithMOB.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/IntegrationTestIngestWithVisibilityLabels.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/IntegrationTestLazyCfLoading.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/IntegrationTestManyRegions.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/IntegrationTestMetaReplicas.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/IntegrationTestRegionReplicaPerf.java
 0
 0
 11
-
+
 org/apache/hadoop/hbase/IntegrationTestRegionReplicaReplication.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/IntegrationTestingUtility.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/JMXListener.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/KeyValue.java
 0
 0
 117
-
+
 org/apache/hadoop/hbase/KeyValueTestUtil.java
 0
 0
 8
-
+
 org/apache/hadoop/hbase/KeyValueUtil.java
 0
 0
 29
-
+
 org/apache/hadoop/hbase/LocalHBaseCluster.java
 0
 0
 24
-
+
 org/apache/hadoop/hbase/MetaMockingUtil.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/MetaMutationAnnotation.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/MetaTableAccessor.java
 0
 0
 114
-
+
 org/apache/hadoop/hbase/MiniHBaseCluster.java
 0
 0
 28
-
+
 org/apache/hadoop/hbase/MockRegionServerServices.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/MultithreadedTestUtil.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/NamespaceDescriptor.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/NotAllMetaRegionsOnlineException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/NotServingRegionException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/PerformanceEvaluation.java
 0
 0
 29
-
+
 org/apache/hadoop/hbase/PerformanceEvaluationComm

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/master/cleaner/CleanerChore.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/cleaner/CleanerChore.html 
b/devapidocs/org/apache/hadoop/hbase/master/cleaner/CleanerChore.html
index 6fac503..cf9ce85 100644
--- a/devapidocs/org/apache/hadoop/hbase/master/cleaner/CleanerChore.html
+++ b/devapidocs/org/apache/hadoop/hbase/master/cleaner/CleanerChore.html
@@ -647,7 +647,7 @@ implements 
 
 updateChorePoolSize
-private void updateChorePoolSize(int updatedSize)
+private void updateChorePoolSize(int updatedSize)
 
 
 
@@ -656,7 +656,7 @@ implements 
 
 newFileCleaner
-private T newFileCleaner(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String className,
+private T newFileCleaner(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String className,
  org.apache.hadoop.conf.Configuration conf)
 A utility method to create new instances of 
LogCleanerDelegate based on the class name of the
  LogCleanerDelegate.
@@ -675,7 +675,7 @@ implements 
 
 chore
-protected void chore()
+protected void chore()
 Description copied from 
class: ScheduledChore
 The task to execute on each scheduled execution of the 
Chore
 
@@ -690,7 +690,7 @@ implements 
 
 preRunCleaner
-private void preRunCleaner()
+private void preRunCleaner()
 
 
 
@@ -699,7 +699,7 @@ implements 
 
 runCleaner
-public http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean runCleaner()
+public http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean runCleaner()
 
 
 
@@ -708,7 +708,7 @@ implements 
 
 sortByConsumedSpace
-private void sortByConsumedSpace(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in 
java.util">List dirs)
+private void sortByConsumedSpace(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in 
java.util">List dirs)
 Sort the given list in (descending) order of the space each 
element takes
 
 Parameters:
@@ -722,7 +722,7 @@ implements 
 
 checkAndDeleteFiles
-private boolean checkAndDeleteFiles(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in 
java.util">List files)
+private boolean checkAndDeleteFiles(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in 
java.util">List files)
 Run the given files through each of the cleaners to see if 
it should be deleted, deleting it if
  necessary.
 
@@ -739,7 +739,7 @@ implements 
 
 deleteFiles
-protected int deleteFiles(http://docs.oracle.com/javase/8/docs/api/java/lang/Iterable.html?is-external=true";
 title="class or interface in 
java.lang">Iterable filesToDelete)
+protected int deleteFiles(http://docs.oracle.com/javase/8/docs/api/java/lang/Iterable.html?is-external=true";
 title="class or interface in 
java.lang">Iterable filesToDelete)
 Delete the given files
 
 Parameters:
@@ -755,7 +755,7 @@ implements 
 
 cleanup
-public void cleanup()
+public void cleanup()
 Description copied from 
class: ScheduledChore
 Override to run cleanup tasks when the Chore encounters an 
error and must stop running
 
@@ -770,7 +770,7 @@ implements 
 
 getChorePoolSize
-int getChorePoolSize()
+int getChorePoolSize()
 
 
 
@@ -779,7 +779,7 @@ implements 
 
 setEnabled
-public boolean setEnabled(boolean enabled)
+public boolean setEnabled(boolean enabled)
 
 Parameters:
 enabled - 
@@ -792,7 +792,7 @@ implements 
 
 getEnabled
-public boolean getEnabled()
+public boolean getEnabled()
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/master/cleaner/class-use/CleanerChore.CleanerTask.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/cleaner/class-use/CleanerChore.CleanerTask.html
 
b/devapidocs/org/apache/hadoop/hbase/master/cleaner/class-use/CleanerChore.CleanerTask.html
index 39a043b..794142f 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/cleaner/class-use/CleanerChore.CleanerTask.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/cleaner/class-use/CleanerChore.CleanerTask.html
@@ -104,7 +104,7 @@
 
 
 private boolean
-CleanerChore.CleanerTask.getCleanRusult(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.SeekerState.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.SeekerState.html
 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.SeekerState.html
index 90ae7c6..a22851d 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.SeekerState.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.SeekerState.html
@@ -117,7 +117,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-protected static class BufferedDataBlockEncoder.SeekerState
+protected static class BufferedDataBlockEncoder.SeekerState
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 
 
@@ -312,7 +312,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 currentBuffer
-protected ByteBuff currentBuffer
+protected ByteBuff currentBuffer
 
 
 
@@ -321,7 +321,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 tagCompressionContext
-protected TagCompressionContext tagCompressionContext
+protected TagCompressionContext tagCompressionContext
 
 
 
@@ -330,7 +330,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 valueOffset
-protected int valueOffset
+protected int valueOffset
 
 
 
@@ -339,7 +339,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 keyLength
-protected int keyLength
+protected int keyLength
 
 
 
@@ -348,7 +348,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 valueLength
-protected int valueLength
+protected int valueLength
 
 
 
@@ -357,7 +357,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 lastCommonPrefix
-protected int lastCommonPrefix
+protected int lastCommonPrefix
 
 
 
@@ -366,7 +366,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 tagsLength
-protected int tagsLength
+protected int tagsLength
 
 
 
@@ -375,7 +375,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 tagsOffset
-protected int tagsOffset
+protected int tagsOffset
 
 
 
@@ -384,7 +384,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 tagsCompressedLength
-protected int tagsCompressedLength
+protected int tagsCompressedLength
 
 
 
@@ -393,7 +393,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 uncompressTags
-protected boolean uncompressTags
+protected boolean uncompressTags
 
 
 
@@ -402,7 +402,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 keyBuffer
-protected byte[] keyBuffer
+protected byte[] keyBuffer
 We need to store a copy of the key.
 
 
@@ -412,7 +412,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 tagsBuffer
-protected byte[] tagsBuffer
+protected byte[] tagsBuffer
 
 
 
@@ -421,7 +421,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 memstoreTS
-protected long memstoreTS
+protected long memstoreTS
 
 
 
@@ -430,7 +430,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 nextKvOffset
-protected int nextKvOffset
+protected int nextKvOffset
 
 
 
@@ -439,7 +439,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 currentKey
-protected KeyValue.KeyOnlyKeyValue currentKey
+protected KeyValue.KeyOnlyKeyValue currentKey
 
 
 
@@ -448,7 +448,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 tmpPair
-private final ObjectIntPairByteBuffer> tmpPair
+private final ObjectIntPairByteBuffer> tmpPair
 
 
 
@@ -457,7 +457,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 includeTags
-private final boolean includeTags
+private final boolean includeTags
 
 
 
@@ -474,7 +474,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 SeekerState
-public SeekerState(ObjectIntPairByteBuffer> tmpPair,
+public SeekerState(ObjectIntPairByteBuffer> tmpPair,
boolean includeTags)
 
 
@@ -492,7 +492,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 isValid
-protected boolean is

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/apidocs/src-html/org/apache/hadoop/hbase/RegionTooBusyException.html
--
diff --git 
a/apidocs/src-html/org/apache/hadoop/hbase/RegionTooBusyException.html 
b/apidocs/src-html/org/apache/hadoop/hbase/RegionTooBusyException.html
index 7b84cc1..769e8aa 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/RegionTooBusyException.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/RegionTooBusyException.html
@@ -32,25 +32,20 @@
 024/**
 025 * Thrown by a region server if it will 
block and wait to serve a request.
 026 * For example, the client wants to 
insert something to a region while the
-027 * region is compacting.
-028 */
-029@InterfaceAudience.Public
-030public class RegionTooBusyException 
extends IOException {
-031  private static final long 
serialVersionUID = 1728345723728342L;
-032
-033  /** default constructor */
-034  public RegionTooBusyException() {
-035super();
-036  }
-037
-038  /**
-039   * Constructor
-040   * @param msg message
-041   */
-042  public RegionTooBusyException(final 
String msg) {
-043super(msg);
-044  }
-045}
+027 * region is compacting. Keep variance in 
the passed 'msg' low because its msg is used as a key
+028 * over in {@link 
org.apache.hadoop.hbase.client.RetriesExhaustedWithDetailsException}
+029 * grouping failure types.
+030 */
+031@InterfaceAudience.Public
+032public class RegionTooBusyException 
extends IOException {
+033  private static final long 
serialVersionUID = 1728345723728342L;
+034
+035  // Be careful. Keep variance in the 
passed 'msg' low because its msg is used as a key over in
+036  // RetriesExhaustedWithDetailsException 
grouping failure types.
+037  public RegionTooBusyException(final 
String msg) {
+038super(msg);
+039  }
+040}
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/apidocs/src-html/org/apache/hadoop/hbase/client/Append.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/client/Append.html 
b/apidocs/src-html/org/apache/hadoop/hbase/client/Append.html
index 2fc6c0d..126d625 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/client/Append.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/client/Append.html
@@ -144,7 +144,7 @@
 136
 137  /**
 138   * Construct the Append with user 
defined data. NOTED:
-139   * 1) all cells in the familyMap must 
have the DataType.Put
+139   * 1) all cells in the familyMap must 
have the Type.Put
 140   * 2) the row of each cell must be same 
with passed row.
 141   * @param row row. CAN'T be null
 142   * @param ts timestamp

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/apidocs/src-html/org/apache/hadoop/hbase/client/Delete.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/client/Delete.html 
b/apidocs/src-html/org/apache/hadoop/hbase/client/Delete.html
index 0f682ab..fd86aae 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/client/Delete.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/client/Delete.html
@@ -151,7 +151,7 @@
 143  /**
 144   * Construct the Delete with user 
defined data. NOTED:
 145   * 1) all cells in the familyMap must 
have the delete type.
-146   * see {@link 
org.apache.hadoop.hbase.Cell.DataType}
+146   * see {@link 
org.apache.hadoop.hbase.Cell.Type}
 147   * 2) the row of each cell must be same 
with passed row.
 148   * @param row row. CAN'T be null
 149   * @param ts timestamp

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/apidocs/src-html/org/apache/hadoop/hbase/client/Increment.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/client/Increment.html 
b/apidocs/src-html/org/apache/hadoop/hbase/client/Increment.html
index 6d58b59..7879f14 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/client/Increment.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/client/Increment.html
@@ -89,7 +89,7 @@
 081
 082  /**
 083   * Construct the Increment with user 
defined data. NOTED:
-084   * 1) all cells in the familyMap must 
have the DataType.Put
+084   * 1) all cells in the familyMap must 
have the Type.Put
 085   * 2) the row of each cell must be same 
with passed row.
 086   * @param row row. CAN'T be null
 087   * @param ts timestamp

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/apidocs/src-html/org/apache/hadoop/hbase/client/Put.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/client/Put.html 
b/apidocs/src-html/org/apache/hadoop/hbase/client/Put.html
index 8c56813..e53000a 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/client/Put.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/client/Put.html
@@ -165,7 +165,7 @@
 157
 158  

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/checkstyle.rss
--
diff --git a/checkstyle.rss b/checkstyle.rss
index 9e2fae0..432915ce 100644
--- a/checkstyle.rss
+++ b/checkstyle.rss
@@ -25,8 +25,8 @@ under the License.
 en-us
 ©2007 - 2017 The Apache Software Foundation
 
-  File: 3466,
- Errors: 19152,
+  File: 3467,
+ Errors: 19107,
  Warnings: 0,
  Infos: 0
   
@@ -1441,7 +1441,7 @@ under the License.
   0
 
 
-  2
+  0
 
   
   
@@ -1455,7 +1455,7 @@ under the License.
   0
 
 
-  1
+  0
 
   
   
@@ -1600,20 +1600,6 @@ under the License.
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.util.MapReduceCell.java";>org/apache/hadoop/hbase/util/MapReduceCell.java
-
-
-  0
-
-
-  0
-
-
-  0
-
-  
-  
-
   http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.regionserver.DefaultStoreFileManager.java";>org/apache/hadoop/hbase/regionserver/DefaultStoreFileManager.java
 
 
@@ -3107,7 +3093,7 @@ under the License.
   0
 
 
-  1
+  0
 
   
   
@@ -7083,7 +7069,7 @@ under the License.
   0
 
 
-  1
+  0
 
   
   
@@ -7424,20 +7410,6 @@ under the License.
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.regionserver.ByteBufferChunkCell.java";>org/apache/hadoop/hbase/regionserver/ByteBufferChunkCell.java
-
-
-  0
-
-
-  0
-
-
-  1
-
-  
-  
-
   http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.security.token.TestDelegationTokenWithEncryption.java";>org/apache/hadoop/hbase/security/token/TestDelegationTokenWithEncryption.java
 
 
@@ -10443,7 +10415,7 @@ under the License.
   0
 
 
-  7
+  6
 
   
   
@@ -10667,7 +10639,7 @@ under the License.
   0
 
 
-  2
+  0
 
   
   
@@ -12795,7 +12767,7 @@ under the License.
   0
 
 
-  1
+  0
 
   
   
@@ -13276,7 +13248,7 @@ under the License.
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.ByteBufferCell.java";>org/apache/hadoop/hbase/ByteBufferCell.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.replication.regionserver.WALEntrySinkFilter.java";>org/apache/hadoop/hbase/replication/regionserver/WALEntrySinkFilter.java
 
 
   0
@@ -13285,12 +13257,12 @@ under the License.
   0
 
 
-  0
+  2
 
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.replication.regionserver.WALEntrySinkFilter.java";>org/apache/hadoop/hbase/replication/regionserver/WALEntrySinkFilter.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.client.TestRetriesExhaustedWithDetailsException.java";>org/apache/hadoop/hbase/client/TestRetriesExhaustedWithDetailsException.java
 
 
   0
@@ -13299,7 +13271,7 @@ under the License.
   0
 
 
-  2
+  4
 
   
   
@@ -15054,6 +15026,20 @@ under the License.
   
   
   

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColCell.html 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColCell.html
index edc3b06..c00cdc9 100644
--- a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColCell.html
+++ b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColCell.html
@@ -49,8 +49,8 @@ var activeTableTab = "activeTableTab";
 
 
 
-Prev Class
-Next Class
+Prev Class
+Next Class
 
 
 Frames
@@ -131,7 +131,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-private static class PrivateCellUtil.FirstOnRowColCell
+private static class PrivateCellUtil.FirstOnRowColCell
 extends PrivateCellUtil.FirstOnRowCell
 
 
@@ -150,7 +150,7 @@ extends Cell
-Cell.DataType
+Cell.Type
 
 
 
@@ -337,7 +337,7 @@ extends 
 
 FIXED_HEAPSIZE
-private static final long FIXED_HEAPSIZE
+private static final long FIXED_HEAPSIZE
 
 
 
@@ -346,7 +346,7 @@ extends 
 
 fArray
-private final byte[] fArray
+private final byte[] fArray
 
 
 
@@ -355,7 +355,7 @@ extends 
 
 foffset
-private final int foffset
+private final int foffset
 
 
 
@@ -364,7 +364,7 @@ extends 
 
 flength
-private final byte flength
+private final byte flength
 
 
 
@@ -373,7 +373,7 @@ extends 
 
 qArray
-private final byte[] qArray
+private final byte[] qArray
 
 
 
@@ -382,7 +382,7 @@ extends 
 
 qoffset
-private final int qoffset
+private final int qoffset
 
 
 
@@ -391,7 +391,7 @@ extends 
 
 qlength
-private final int qlength
+private final int qlength
 
 
 
@@ -408,7 +408,7 @@ extends 
 
 FirstOnRowColCell
-public FirstOnRowColCell(byte[] rArray,
+public FirstOnRowColCell(byte[] rArray,
  int roffset,
  short rlength,
  byte[] fArray,
@@ -433,7 +433,7 @@ extends 
 
 heapSize
-public long heapSize()
+public long heapSize()
 
 Specified by:
 heapSize in
 interface HeapSize
@@ -451,7 +451,7 @@ extends 
 
 getFamilyArray
-public byte[] getFamilyArray()
+public byte[] getFamilyArray()
 Description copied from 
interface: Cell
 Contiguous bytes composed of legal HDFS filename characters 
which may start at any index in the
  containing array. Max length is Byte.MAX_VALUE, which is 127 bytes.
@@ -471,7 +471,7 @@ extends 
 
 getFamilyOffset
-public int getFamilyOffset()
+public int getFamilyOffset()
 
 Specified by:
 getFamilyOffset in
 interface Cell
@@ -488,7 +488,7 @@ extends 
 
 getFamilyLength
-public byte getFamilyLength()
+public byte getFamilyLength()
 
 Specified by:
 getFamilyLength in
 interface Cell
@@ -505,7 +505,7 @@ extends 
 
 getQualifierArray
-public byte[] getQualifierArray()
+public byte[] getQualifierArray()
 Description copied from 
interface: Cell
 Contiguous raw bytes that may start at any index in the 
containing array.
 
@@ -524,7 +524,7 @@ extends 
 
 getQualifierOffset
-public int getQualifierOffset()
+public int getQualifierOffset()
 
 Specified by:
 getQualifierOffset in
 interface Cell
@@ -541,7 +541,7 @@ extends 
 
 getQualifierLength
-public int getQualifierLength()
+public int getQualifierLength()
 
 Specified by:
 getQualifierLength in
 interface Cell
@@ -580,8 +580,8 @@ extends 
 
-Prev Class
-Next Class
+Prev Class
+Next Class
 
 
 Frames

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColTSByteBufferCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColTSByteBufferCell.html
 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColTSByteBufferCell.html
deleted file mode 100644
index 7f29d95..000
--- 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColTSByteBufferCell.html
+++ /dev/null
@@ -1,462 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-PrivateCellUtil.FirstOnRowColTSByteBufferCell (Apache HBase 
3.0.0-SNAPSHOT API)
-
-
-
-
-
-var methods = {"i0":10,"i1":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev Class
-Next Class
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev Class
-Next Class
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase.filter
+Class KeyOnlyFilter.KeyOnlyByteBufferExtendedCell
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.ByteBufferExtendedCell
+
+
+org.apache.hadoop.hbase.filter.KeyOnlyFilter.KeyOnlyByteBufferExtendedCell
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, ExtendedCell, HeapSize, RawCell
+
+
+Enclosing class:
+KeyOnlyFilter
+
+
+
+static class KeyOnlyFilter.KeyOnlyByteBufferExtendedCell
+extends ByteBufferExtendedCell
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+
+
+
+Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
+Cell.Type
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+private ByteBufferExtendedCell
+cell 
+
+
+static int
+FIXED_OVERHEAD 
+
+
+private boolean
+lenAsVal 
+
+
+
+
+
+
+Fields inherited from interface org.apache.hadoop.hbase.ExtendedCell
+CELL_NOT_BASED_ON_CHUNK
+
+
+
+
+
+Fields inherited from interface org.apache.hadoop.hbase.RawCell
+MAX_TAGS_LENGTH
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+KeyOnlyByteBufferExtendedCell(ByteBufferExtendedCell c,
+ boolean lenAsVal) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+All Methods Instance Methods Concrete Methods 
+
+Modifier and Type
+Method and Description
+
+
+byte[]
+getFamilyArray()
+Contiguous bytes composed of legal HDFS filename characters 
which may start at any index in the
+ containing array.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+getFamilyByteBuffer() 
+
+
+byte
+getFamilyLength() 
+
+
+int
+getFamilyOffset() 
+
+
+int
+getFamilyPosition() 
+
+
+byte[]
+getQualifierArray()
+Contiguous raw bytes that may start at any index in the 
containing array.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+getQualifierByteBuffer() 
+
+
+int
+getQualifierLength() 
+
+
+int
+getQualifierOffset() 
+
+
+int
+getQualifierPosition() 
+
+
+byte[]
+getRowArray()
+Contiguous raw bytes that may start at any index in the 
containing array.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+getRowByteBuffer() 
+
+
+short
+getRowLength() 
+
+
+int
+getRowOffset() 
+
+
+int
+getRowPosition() 
+
+
+long
+getSequenceId()
+A region-specific unique monotonically increasing sequence 
ID given to each Cell.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=t

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/filter/KeyOnlyFilter.KeyOnlyByteBufferCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/filter/KeyOnlyFilter.KeyOnlyByteBufferCell.html
 
b/devapidocs/org/apache/hadoop/hbase/filter/KeyOnlyFilter.KeyOnlyByteBufferCell.html
deleted file mode 100644
index 60e7263..000
--- 
a/devapidocs/org/apache/hadoop/hbase/filter/KeyOnlyFilter.KeyOnlyByteBufferCell.html
+++ /dev/null
@@ -1,896 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-KeyOnlyFilter.KeyOnlyByteBufferCell (Apache HBase 3.0.0-SNAPSHOT 
API)
-
-
-
-
-
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev Class
-Next Class
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-Summary: 
-Nested | 
-Field | 
-Constr | 
-Method
-
-
-Detail: 
-Field | 
-Constr | 
-Method
-
-
-
-
-
-
-
-
-org.apache.hadoop.hbase.filter
-Class 
KeyOnlyFilter.KeyOnlyByteBufferCell
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
-
-
-org.apache.hadoop.hbase.ByteBufferCell
-
-
-org.apache.hadoop.hbase.filter.KeyOnlyFilter.KeyOnlyByteBufferCell
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-Cell
-
-
-Enclosing class:
-KeyOnlyFilter
-
-
-
-static class KeyOnlyFilter.KeyOnlyByteBufferCell
-extends ByteBufferCell
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
-Cell.DataType
-
-
-
-
-
-
-
-
-Field Summary
-
-Fields 
-
-Modifier and Type
-Field and Description
-
-
-private ByteBufferCell
-cell 
-
-
-private boolean
-lenAsVal 
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors 
-
-Constructor and Description
-
-
-KeyOnlyByteBufferCell(ByteBufferCell c,
- boolean lenAsVal) 
-
-
-
-
-
-
-
-
-
-Method Summary
-
-All Methods Instance Methods Concrete Methods 
-
-Modifier and Type
-Method and Description
-
-
-byte[]
-getFamilyArray()
-Contiguous bytes composed of legal HDFS filename characters 
which may start at any index in the
- containing array.
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-getFamilyByteBuffer() 
-
-
-byte
-getFamilyLength() 
-
-
-int
-getFamilyOffset() 
-
-
-int
-getFamilyPosition() 
-
-
-byte[]
-getQualifierArray()
-Contiguous raw bytes that may start at any index in the 
containing array.
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-getQualifierByteBuffer() 
-
-
-int
-getQualifierLength() 
-
-
-int
-getQualifierOffset() 
-
-
-int
-getQualifierPosition() 
-
-
-byte[]
-getRowArray()
-Contiguous raw bytes that may start at any index in the 
containing array.
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-getRowByteBuffer() 
-
-
-short
-getRowLength() 
-
-
-int
-getRowOffset() 
-
-
-int
-getRowPosition() 
-
-
-long
-getSequenceId()
-A region-specific unique monotonically increasing sequence 
ID given to each Cell.
-
-
-
-byte[]
-getTagsArray()
-Contiguous raw bytes representing tags that may start at 
any index in the containing array.
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-getTagsByteBuffer() 
-
-
-int
-getTagsLength()
-HBase internally uses 2 bytes to store tags length in 
Cell.
-
-
-
-int
-getTagsOffset() 
-
-
-int
-getTagsPosition() 
-
-
-long
-getTimestamp() 
-
-
-Cell.DataType
-getType()
-Returns the type of cell in a human readable format using 
Cell.DataType
-
-
-
-byte
-getTypeByte() 
-
-
-byte[]
-getValueArray()
-Contiguous raw bytes that m

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/apidocs/src-html/org/apache/hadoop/hbase/filter/KeyOnlyFilter.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/filter/KeyOnlyFilter.html 
b/apidocs/src-html/org/apache/hadoop/hbase/filter/KeyOnlyFilter.html
index bea91fe..bffd9d8 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/filter/KeyOnlyFilter.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/filter/KeyOnlyFilter.html
@@ -26,400 +26,435 @@
 018 */
 019package org.apache.hadoop.hbase.filter;
 020
-021
-022import java.io.IOException;
-023import java.nio.ByteBuffer;
-024import java.util.ArrayList;
-025
-026import 
org.apache.hadoop.hbase.ByteBufferCell;
-027import org.apache.hadoop.hbase.Cell;
-028import 
org.apache.hadoop.hbase.HConstants;
-029import 
org.apache.yetus.audience.InterfaceAudience;
-030import 
org.apache.hadoop.hbase.exceptions.DeserializationException;
-031import 
org.apache.hadoop.hbase.shaded.protobuf.generated.FilterProtos;
+021import java.io.IOException;
+022import java.nio.ByteBuffer;
+023import java.util.ArrayList;
+024import java.util.Collections;
+025import java.util.Iterator;
+026import java.util.Optional;
+027import 
org.apache.hadoop.hbase.ByteBufferExtendedCell;
+028import org.apache.hadoop.hbase.Cell;
+029import 
org.apache.hadoop.hbase.HConstants;
+030import org.apache.hadoop.hbase.Tag;
+031import 
org.apache.hadoop.hbase.exceptions.DeserializationException;
 032import 
org.apache.hadoop.hbase.util.Bytes;
-033
-034import 
org.apache.hadoop.hbase.shaded.com.google.common.base.Preconditions;
-035import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.InvalidProtocolBufferException;
-036
-037/**
-038 * A filter that will only return the key 
component of each KV (the value will
-039 * be rewritten as empty).
-040 * 

-041 * This filter can be used to grab all of the keys without having to also grab -042 * the values. -043 */ -044@InterfaceAudience.Public -045public class KeyOnlyFilter extends FilterBase { -046 -047 boolean lenAsVal; -048 public KeyOnlyFilter() { this(false); } -049 public KeyOnlyFilter(boolean lenAsVal) { this.lenAsVal = lenAsVal; } -050 -051 @Override -052 public boolean filterRowKey(Cell cell) throws IOException { -053// Impl in FilterBase might do unnecessary copy for Off heap backed Cells. -054return false; -055 } -056 -057 @Override -058 public Cell transformCell(Cell cell) { -059return createKeyOnlyCell(cell); -060 } -061 -062 private Cell createKeyOnlyCell(Cell c) { -063if (c instanceof ByteBufferCell) { -064 return new KeyOnlyByteBufferCell((ByteBufferCell) c, lenAsVal); -065} else { -066 return new KeyOnlyCell(c, lenAsVal); -067} -068 } -069 -070 @Deprecated -071 @Override -072 public ReturnCode filterKeyValue(final Cell ignored) throws IOException { -073return filterCell(ignored); -074 } -075 -076 @Override -077 public ReturnCode filterCell(final Cell ignored) throws IOException { -078return ReturnCode.INCLUDE; -079 } -080 -081 public static Filter createFilterFromArguments(ArrayList filterArguments) { -082 Preconditions.checkArgument((filterArguments.isEmpty() || filterArguments.size() == 1), -083 "Expected: 0 or 1 but got: %s", filterArguments.size()); -084KeyOnlyFilter filter = new KeyOnlyFilter(); -085if (filterArguments.size() == 1) { -086 filter.lenAsVal = ParseFilter.convertByteArrayToBoolean(filterArguments.get(0)); -087} -088return filter; -089 } -090 -091 /** -092 * @return The filter serialized using pb -093 */ -094 @Override -095 public byte [] toByteArray() { -096FilterProtos.KeyOnlyFilter.Builder builder = -097 FilterProtos.KeyOnlyFilter.newBuilder(); -098builder.setLenAsVal(this.lenAsVal); -099return builder.build().toByteArray(); -100 } -101 -102 /** -103 * @param pbBytes A pb serialized {@link KeyOnlyFilter} instance -104 * @return An instance of {@link KeyOnlyFilter} made from bytes -105 * @throws DeserializationException -106 * @see #toByteArray -107 */ -108 public static KeyOnlyFilter parseFrom(final byte [] pbBytes) -109 throws DeserializationException { -110FilterProtos.KeyOnlyFilter proto; -111try { -112 proto = FilterProtos.KeyOnlyFilter.parseFrom(pbBytes); -113} catch (InvalidProtocolBufferException e) { -114 throw new DeserializationException(e); -115} -116return new KeyOnlyFilter(proto.getLenAsVal()); -117 } -118 -119 /** -120 * @param o the other filter to compare with -121 * @return true if and only if the fields of the filter that are serialized -122 * are equal to the corresponding fields in other. Used for testing. -123 */ -124 @Override -125 boolean areSerializedFieldsEqual(Filter o) { -126if (o == this) return true; -127if (!(o instanceof KeyOnlyFilter))


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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.BucketEntry.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.BucketEntry.html
 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.BucketEntry.html
index 19ab2eb..468f000 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.BucketEntry.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.BucketEntry.html
@@ -117,7 +117,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-static class BucketCache.BucketEntry
+static class BucketCache.BucketEntry
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable
 Item in cache. We expect this to be where most memory goes. 
Java uses 8
@@ -288,7 +288,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 serialVersionUID
-private static final long serialVersionUID
+private static final long serialVersionUID
 
 See Also:
 Constant
 Field Values
@@ -301,7 +301,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 COMPARATOR
-static final http://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html?is-external=true";
 title="class or interface in java.util">Comparator COMPARATOR
+static final http://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html?is-external=true";
 title="class or interface in java.util">Comparator COMPARATOR
 
 
 
@@ -310,7 +310,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 offsetBase
-private int offsetBase
+private int offsetBase
 
 
 
@@ -319,7 +319,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 length
-private int length
+private int length
 
 
 
@@ -328,7 +328,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 offset1
-private byte offset1
+private byte offset1
 
 
 
@@ -337,7 +337,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 deserialiserIndex
-byte deserialiserIndex
+byte deserialiserIndex
 
 
 
@@ -346,7 +346,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 accessCounter
-private volatile long accessCounter
+private volatile long accessCounter
 
 
 
@@ -355,7 +355,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 priority
-private BlockPriority priority
+private BlockPriority priority
 
 
 
@@ -364,7 +364,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 markedForEvict
-private volatile boolean markedForEvict
+private volatile boolean markedForEvict
 
 
 
@@ -373,7 +373,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 refCount
-private http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicInteger.html?is-external=true";
 title="class or interface in java.util.concurrent.atomic">AtomicInteger refCount
+private http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicInteger.html?is-external=true";
 title="class or interface in java.util.concurrent.atomic">AtomicInteger refCount
 
 
 
@@ -382,7 +382,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 cachedTime
-private final long cachedTime
+private final long cachedTime
 Time this block was cached.  Presumes we are created just 
before we are added to the cache.
 
 
@@ -400,7 +400,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 BucketEntry
-BucketEntry(long offset,
+BucketEntry(long offset,
 int length,
 long accessCounter,
 boolean inMemory)
@@ -420,7 +420,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 offset
-long offset()
+long offset()
 
 
 
@@ -429,7 +429,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 setOffset
-private void setOffset(long value)
+private void setOffset(long value)
 
 
 
@@ -438,7 +438,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 getLength
-public int getLength()
+public int getLength()
 
 
 
@@ -447,7 +447,7 @@ implements http://docs.oracle.com/javase/8/docs/api/java/io/Serializabl
 
 
 deserializerReference
-protected CacheableDeserializer deserializerReference(UniqueIndexMapInteger> deserialiserMap)
+protected CacheableDeserializer deserializerReference(UniqueIndexMap

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/CellUtil.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/CellUtil.html 
b/devapidocs/org/apache/hadoop/hbase/CellUtil.html
index c0a5459..8277d38 100644
--- a/devapidocs/org/apache/hadoop/hbase/CellUtil.html
+++ b/devapidocs/org/apache/hadoop/hbase/CellUtil.html
@@ -1213,7 +1213,7 @@ public static byte[] 
 
 copyRowTo
-public static int copyRowTo(Cell cell,
+public static int copyRowTo(Cell cell,
 http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
 int destinationOffset)
 Copies the row to the given bytebuffer
@@ -1233,7 +1233,7 @@ public static byte[] 
 
 copyRow
-public static byte[] copyRow(Cell cell)
+public static byte[] copyRow(Cell cell)
 Copies the row to a new byte[]
 
 Parameters:
@@ -1249,7 +1249,7 @@ public static byte[] 
 
 copyFamilyTo
-public static int copyFamilyTo(Cell cell,
+public static int copyFamilyTo(Cell cell,
byte[] destination,
int destinationOffset)
 Copies the family to the given byte[]
@@ -1269,7 +1269,7 @@ public static byte[] 
 
 copyFamilyTo
-public static int copyFamilyTo(Cell cell,
+public static int copyFamilyTo(Cell cell,
http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
int destinationOffset)
 Copies the family to the given bytebuffer
@@ -1289,7 +1289,7 @@ public static byte[] 
 
 copyQualifierTo
-public static int copyQualifierTo(Cell cell,
+public static int copyQualifierTo(Cell cell,
   byte[] destination,
   int destinationOffset)
 Copies the qualifier to the given byte[]
@@ -1309,7 +1309,7 @@ public static byte[] 
 
 copyQualifierTo
-public static int copyQualifierTo(Cell cell,
+public static int copyQualifierTo(Cell cell,
   http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
   int destinationOffset)
 Copies the qualifier to the given bytebuffer
@@ -1329,7 +1329,7 @@ public static byte[] 
 
 copyValueTo
-public static int copyValueTo(Cell cell,
+public static int copyValueTo(Cell cell,
   byte[] destination,
   int destinationOffset)
 Copies the value to the given byte[]
@@ -1349,7 +1349,7 @@ public static byte[] 
 
 copyValueTo
-public static int copyValueTo(Cell cell,
+public static int copyValueTo(Cell cell,
   http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
   int destinationOffset)
 Copies the value to the given bytebuffer
@@ -1370,7 +1370,7 @@ public static byte[] 
 copyTagTo
 http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
-public static int copyTagTo(Cell cell,
+public static int copyTagTo(Cell cell,
 byte[] destination,
 int destinationOffset)
 Deprecated. As of HBase-2.0. Will be removed in 
HBase-3.0.
@@ -1392,7 +1392,7 @@ public static int 
 copyTagTo
 http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
-public static int copyTagTo(Cell cell,
+public static int copyTagTo(Cell cell,
 http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer destination,
 int destinationOffset)
 Deprecated. As of HBase-2.0. Will be removed in 3.0.
@@ -1415,7 +1415,7 @@ public static int http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
-public static byte getRowByte(Cell cell,
+public static byte getRowByte(Cell cell,
   
int index)
 Deprecated. 
 misc
@@ -1428,7 +1428,7 @@ public static byte 
 getValueBufferShallowCopy
 http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
-public static http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer getValueBufferShallowCopy(Ce

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowByteBufferCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowByteBufferCell.html
 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowByteBufferCell.html
deleted file mode 100644
index ad7ab6b..000
--- 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowByteBufferCell.html
+++ /dev/null
@@ -1,546 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-PrivateCellUtil.FirstOnRowByteBufferCell (Apache HBase 3.0.0-SNAPSHOT 
API)
-
-
-
-
-
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
-var altColor = "altColor";
-var rowColor = "rowColor";
-var tableTab = "tableTab";
-var activeTableTab = "activeTableTab";
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev Class
-Next Class
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-Summary: 
-Nested | 
-Field | 
-Constr | 
-Method
-
-
-Detail: 
-Field | 
-Constr | 
-Method
-
-
-
-
-
-
-
-
-org.apache.hadoop.hbase
-Class 
PrivateCellUtil.FirstOnRowByteBufferCell
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
-
-
-org.apache.hadoop.hbase.ByteBufferCell
-
-
-org.apache.hadoop.hbase.PrivateCellUtil.EmptyByteBufferCell
-
-
-org.apache.hadoop.hbase.PrivateCellUtil.FirstOnRowByteBufferCell
-
-
-
-
-
-
-
-
-
-
-
-All Implemented Interfaces:
-http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, ExtendedCell, HeapSize, RawCell
-
-
-Direct Known Subclasses:
-PrivateCellUtil.FirstOnRowColByteBufferCell
-
-
-Enclosing class:
-PrivateCellUtil
-
-
-
-private static class PrivateCellUtil.FirstOnRowByteBufferCell
-extends PrivateCellUtil.EmptyByteBufferCell
-
-
-
-
-
-
-
-
-
-
-
-Nested Class Summary
-
-
-
-
-Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
-Cell.DataType
-
-
-
-
-
-
-
-
-Field Summary
-
-Fields 
-
-Modifier and Type
-Field and Description
-
-
-private static int
-FIXED_OVERHEAD 
-
-
-private short
-rlength 
-
-
-private int
-roffset 
-
-
-private http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-rowBuff 
-
-
-
-
-
-
-Fields inherited from interface org.apache.hadoop.hbase.ExtendedCell
-CELL_NOT_BASED_ON_CHUNK
-
-
-
-
-
-Fields inherited from interface org.apache.hadoop.hbase.RawCell
-MAX_TAGS_LENGTH
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors 
-
-Constructor and Description
-
-
-FirstOnRowByteBufferCell(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer row,
-int roffset,
-short rlength) 
-
-
-
-
-
-
-
-
-
-Method Summary
-
-All Methods Instance Methods Concrete Methods 
-
-Modifier and Type
-Method and Description
-
-
-http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
-getRowByteBuffer() 
-
-
-short
-getRowLength() 
-
-
-int
-getRowPosition() 
-
-
-long
-getTimestamp() 
-
-
-Cell.DataType
-getType()
-Returns the type of cell in a human readable format using 
Cell.DataType
-
-
-
-byte
-getTypeByte() 
-
-
-long
-heapSize() 
-
-
-
-
-
-
-Methods inherited from class org.apache.hadoop.hbase.PrivateCellUtil.EmptyByteBufferCell
-getFamilyArray,
 getFamilyByteBuffer,
 getFamilyLength,
 getFamilyOffset,
 getFamilyPosition,
 getQualifierArray,
 getQualifierByteBuffer,
 getQualifierLength, getQualifierOffset,
 getQualifierPosition,
 getRowArray,
 getRowOffset,
 getSequenceId,
 getTagsArray,
 getTagsByteBuffer,
 getTagsLength, getTagsOffset,
 getTagsPosition,
 getValueArray,
 getValueByteBuffer,
 getValueLength,
 getValueOffset,
 getValuePosition,
 setSequenceId, setTimestamp,
 setTimestamp
-
-
-
-
-
-Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
-http://docs.oracle.com/javase/8/docs/api/

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/ByteBufferKeyOnlyKeyValue.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/ByteBufferKeyOnlyKeyValue.html 
b/devapidocs/org/apache/hadoop/hbase/ByteBufferKeyOnlyKeyValue.html
index de2a7ac..6e471c6 100644
--- a/devapidocs/org/apache/hadoop/hbase/ByteBufferKeyOnlyKeyValue.html
+++ b/devapidocs/org/apache/hadoop/hbase/ByteBufferKeyOnlyKeyValue.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -49,7 +49,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-Prev Class
+Prev Class
 Next Class
 
 
@@ -100,7 +100,7 @@ var activeTableTab = "activeTableTab";
 http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-org.apache.hadoop.hbase.ByteBufferCell
+org.apache.hadoop.hbase.ByteBufferExtendedCell
 
 
 org.apache.hadoop.hbase.ByteBufferKeyOnlyKeyValue
@@ -114,13 +114,13 @@ var activeTableTab = "activeTableTab";
 
 
 All Implemented Interfaces:
-Cell
+http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, ExtendedCell, HeapSize, RawCell
 
 
 
 @InterfaceAudience.Private
-public class ByteBufferKeyOnlyKeyValue
-extends ByteBufferCell
+public class ByteBufferKeyOnlyKeyValue
+extends ByteBufferExtendedCell
 This is a key only Cell implementation which is identical 
to KeyValue.KeyOnlyKeyValue
  with respect to key serialization but have its data in the form of Byte buffer
  (onheap and offheap).
@@ -141,7 +141,7 @@ extends 
 
 Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
-Cell.DataType
+Cell.Type
 
 
 
@@ -162,18 +162,36 @@ extends buf 
 
 
+static int
+FIXED_OVERHEAD 
+
+
 private int
 length 
 
-
+
 private int
 offset 
 
-
+
 private short
 rowLen 
 
 
+
+
+
+
+Fields inherited from interface org.apache.hadoop.hbase.ExtendedCell
+CELL_NOT_BASED_ON_CHUNK
+
+
+
+
+
+Fields inherited from interface org.apache.hadoop.hbase.RawCell
+MAX_TAGS_LENGTH
+
 
 
 
@@ -300,70 +318,86 @@ extends 
 
 
+http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+getTag(byte type)
+Returns the specific tag of the given type
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator
+getTags()
+Creates a list of tags in the current cell
+
+
+
 byte[]
 getTagsArray()
 Contiguous raw bytes representing tags that may start at 
any index in the containing array.
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
 getTagsByteBuffer() 
 
-
+
 int
 getTagsLength()
 HBase internally uses 2 bytes to store tags length in 
Cell.
 
 
-
+
 int
 getTagsOffset() 
 
-
+
 int
 getTagsPosition() 
 
-
+
 long
 getTimestamp() 
 
-
+
 private int
 getTimestampOffset() 
 
-
-Cell.DataType
+
+Cell.Type
 getType()
-Returns the type of cell in a human readable format using 
Cell.DataType
+Returns the type of cell in a human readable format using 
Cell.Type
 
 
-
+
 byte
 getTypeByte() 
 
-
+
 byte[]
 getValueArray()
 Contiguous raw bytes that may start at any index in the 
containing array.
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
 getValueByteBuffer() 
 
-
+
 int
 getValueLength() 
 
-
+
 int
 getValueOffset() 
 
-
+
 int
 getValuePosition() 
 
-
+
+long
+heapSize() 
+
+
 void
 setKey(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer key,
   int offset,
@@ -372,7 +406,25 @@ extends 
 
 
-
+
+void
+setSequenceId(long seqId)
+Sets with the given seqId.
+
+
+
+void
+setTimestamp(byte[] ts)
+Sets with the given timestamp.
+
+
+
+void
+setTimestamp(long ts)
+Sets with the given timestamp.
+

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.EmptyByteBufferExtendedCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.EmptyByteBufferExtendedCell.html
 
b/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.EmptyByteBufferExtendedCell.html
new file mode 100644
index 000..da06531
--- /dev/null
+++ 
b/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.EmptyByteBufferExtendedCell.html
@@ -0,0 +1,181 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+Uses of Class 
org.apache.hadoop.hbase.PrivateCellUtil.EmptyByteBufferExtendedCell (Apache 
HBase 3.0.0-SNAPSHOT API)
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+
+Uses of 
Classorg.apache.hadoop.hbase.PrivateCellUtil.EmptyByteBufferExtendedCell
+
+
+
+
+
+Packages that use PrivateCellUtil.EmptyByteBufferExtendedCell 
+
+Package
+Description
+
+
+
+org.apache.hadoop.hbase
+ 
+
+
+
+
+
+
+
+
+
+Uses of PrivateCellUtil.EmptyByteBufferExtendedCell in org.apache.hadoop.hbase
+
+Subclasses of PrivateCellUtil.EmptyByteBufferExtendedCell in org.apache.hadoop.hbase 
+
+Modifier and Type
+Class and Description
+
+
+
+private static class 
+PrivateCellUtil.FirstOnRowByteBufferExtendedCell 
+
+
+private static class 
+PrivateCellUtil.FirstOnRowColByteBufferExtendedCell 
+
+
+private static class 
+PrivateCellUtil.FirstOnRowColTSByteBufferExtendedCell 
+
+
+private static class 
+PrivateCellUtil.LastOnRowByteBufferExtendedCell 
+
+
+private static class 
+PrivateCellUtil.LastOnRowColByteBufferExtendedCell 
+
+
+
+
+
+
+
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+
+
+Copyright © 2007–2017 https://www.apache.org/";>The Apache Software Foundation. All rights 
reserved.
+
+

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.FirstOnRowByteBufferCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.FirstOnRowByteBufferCell.html
 
b/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.FirstOnRowByteBufferCell.html
deleted file mode 100644
index 8630ac9..000
--- 
a/devapidocs/org/apache/hadoop/hbase/class-use/PrivateCellUtil.FirstOnRowByteBufferCell.html
+++ /dev/null
@@ -1,169 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-Uses of Class 
org.apache.hadoop.hbase.PrivateCellUtil.FirstOnRowByteBufferCell (Apache HBase 
3.0.0-SNAPSHOT API)
-
-
-
-
-
-
-
-JavaScript is disabled on your browser.
-
-
-
-
-
-Skip navigation links
-
-
-
-
-Overview
-Package
-Class
-Use
-Tree
-Deprecated
-Index
-Help
-
-
-
-
-Prev
-Next
-
-
-Frames
-No Frames
-
-
-All Classes
-
-
-
-
-
-
-
-
-
-
-Uses of 
Classorg.apache.hadoop.hbase.PrivateCellUtil.FirstOnRowByteBufferCell
-
-
-
-
-
-Packages that use PrivateCellUtil.FirstOnRowByteBufferCell 
-
-Package
-Description
-
-
-
-org.apache.hadoop.hbase
- 
-
-
-
-
-
-
-
-
-
-Uses of PrivateCellUtil.FirstOnRowByteBufferCell in org.apache.hadoop.hbase
-
-Subclasses of PrivateCellUtil.FirstOnRowByteBufferCell in org.apache.hadoop.hbase 
-
-Modifier and Type
-Class and Description
-
-
-
-private static class 
-PrivateCellUtil.FirstOnRowColByteBufferCell 
-
-
-private static class 
-PrivateCellUtil.FirstOnRowColTSByteBufferCell 
-
-
-
-
-
-
-
-
-
-
-
-
-Sk

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/ByteBufferKeyValue.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/ByteBufferKeyValue.html 
b/devapidocs/org/apache/hadoop/hbase/ByteBufferKeyValue.html
index 701164c..b80147f 100644
--- a/devapidocs/org/apache/hadoop/hbase/ByteBufferKeyValue.html
+++ b/devapidocs/org/apache/hadoop/hbase/ByteBufferKeyValue.html
@@ -100,7 +100,7 @@ var activeTableTab = "activeTableTab";
 http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
 
 
-org.apache.hadoop.hbase.ByteBufferCell
+org.apache.hadoop.hbase.ByteBufferExtendedCell
 
 
 org.apache.hadoop.hbase.ByteBufferKeyValue
@@ -118,15 +118,14 @@ var activeTableTab = "activeTableTab";
 
 
 Direct Known Subclasses:
-ByteBufferChunkCell, 
NoTagsByteBufferKeyValue
+ByteBufferChunkKeyValue, NoTagsByteBufferKeyValue
 
 
 
 @InterfaceAudience.Private
 public class ByteBufferKeyValue
-extends ByteBufferCell
-implements ExtendedCell
-This Cell is an implementation of ByteBufferCell where the data resides 
in
+extends ByteBufferExtendedCell
+This Cell is an implementation of ByteBufferExtendedCell where the data 
resides in
  off heap/ on heap ByteBuffer
 
 
@@ -145,7 +144,7 @@ implements 
 
 Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
-Cell.DataType
+Cell.Type
 
 
 
@@ -237,7 +236,7 @@ implements 
 
 private int
-calculateHashForKey(ByteBufferCell cell) 
+calculateHashForKey(ByteBufferExtendedCell cell) 
 
 
 ExtendedCell
@@ -614,8 +613,6 @@ implements Contiguous raw bytes that may start at any index in the 
containing array. Max length is
  Short.MAX_VALUE which is 32,767 bytes.
 
-Specified by:
-getRowArray in
 interface Cell
 Returns:
 The array containing the row bytes.
 
@@ -629,8 +626,6 @@ implements getRowOffset
 public int getRowOffset()
 
-Specified by:
-getRowOffset in
 interface Cell
 Returns:
 Array index of first row byte
 
@@ -644,8 +639,6 @@ implements getRowLength
 public short getRowLength()
 
-Specified by:
-getRowLength in
 interface Cell
 Returns:
 Number of row bytes. Must be < rowArray.length - offset.
 
@@ -671,8 +664,6 @@ implements Contiguous bytes composed of legal HDFS filename characters 
which may start at any index in the
  containing array. Max length is Byte.MAX_VALUE, which is 127 bytes.
 
-Specified by:
-getFamilyArray in
 interface Cell
 Returns:
 the array containing the family bytes.
 
@@ -686,8 +677,6 @@ implements getFamilyOffset
 public int getFamilyOffset()
 
-Specified by:
-getFamilyOffset in
 interface Cell
 Returns:
 Array index of first family byte
 
@@ -701,8 +690,6 @@ implements getFamilyLength
 public byte getFamilyLength()
 
-Specified by:
-getFamilyLength in
 interface Cell
 Returns:
 Number of family bytes.  Must be < familyArray.length - offset.
 
@@ -736,8 +723,6 @@ implements Description copied from 
interface: Cell
 Contiguous raw bytes that may start at any index in the 
containing array.
 
-Specified by:
-getQualifierArray in
 interface Cell
 Returns:
 The array containing the qualifier bytes.
 
@@ -751,8 +736,6 @@ implements getQualifierOffset
 public int getQualifierOffset()
 
-Specified by:
-getQualifierOffset in
 interface Cell
 Returns:
 Array index of first qualifier byte
 
@@ -766,8 +749,6 @@ implements getQualifierLength
 public int getQualifierLength()
 
-Specified by:
-getQualifierLength in
 interface Cell
 Returns:
 Number of qualifier bytes.  Must be < qualifierArray.length - 
offset.
 
@@ -791,8 +772,6 @@ implements getTimestamp
 public long getTimestamp()
 
-Specified by:
-getTimestamp in
 interface Cell
 Returns:
 Long value representing time at which this cell was "Put" into the row.  
Typically
  represents the time of insertion, but can be any value from 0 to 
Long.MAX_VALUE.
@@ -825,10 +804,6 @@ implements getTypeByte
 public byte getTypeByte()
 
-Specified by:
-getTypeByte in
 interface Cell
-Specified by:
-getTypeByte in
 interface ExtendedCell
 Returns:
 The byte representation of the KeyValue.TYPE of this cell: one of Put, 
Delete, etc
 
@@ -847,10 +822,6 @@ implements HConstants.KEEP_SEQID_PERIOD
 days, but generally becomes irrelevant after the cell's
  row is no longer involved in any operations that require strict 
consistency.
 
-Specified by:
-getSequenceId in
 interface Cell
-Specified by:
-getSequenceId in
 interface ExtendedCell
 Returns:
 seqId (always > 0 if exists), or 0 if it no longer exists
 
@@ -866,8 +837,6 @@ implements Description copied from 
interface: ExtendedCell
 Sets with the given seqId.
 
-Specified by:
-setSequenceId in
 interface ExtendedCell
 Parameters:
 seqId - sequence ID
 
@@ -884,8 +853,6 @@ implements Contiguous raw bytes that may start at any index in the 
containing array. Max length is
  Integer.MAX_VALUE which is 2,147,483,647 bytes.
 
-Specified by:
-getValueArray in

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.EmptyByteBufferExtendedCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.EmptyByteBufferExtendedCell.html
 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.EmptyByteBufferExtendedCell.html
new file mode 100644
index 000..7c46fae
--- /dev/null
+++ 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.EmptyByteBufferExtendedCell.html
@@ -0,0 +1,909 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+PrivateCellUtil.EmptyByteBufferExtendedCell (Apache HBase 
3.0.0-SNAPSHOT API)
+
+
+
+
+
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase
+Class PrivateCellUtil.EmptyByteBufferExtendedCell
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">java.lang.Object
+
+
+org.apache.hadoop.hbase.ByteBufferExtendedCell
+
+
+org.apache.hadoop.hbase.PrivateCellUtil.EmptyByteBufferExtendedCell
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, Cell, ExtendedCell, HeapSize, RawCell
+
+
+Direct Known Subclasses:
+PrivateCellUtil.FirstOnRowByteBufferExtendedCell, 
PrivateCellUtil.LastOnRowByteBufferExtendedCell
+
+
+Enclosing class:
+PrivateCellUtil
+
+
+
+private abstract static class PrivateCellUtil.EmptyByteBufferExtendedCell
+extends ByteBufferExtendedCell
+These cells are used in reseeks/seeks to improve the read 
performance. They are not real cells
+ that are returned back to the clients
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+
+
+
+Nested classes/interfaces inherited from 
interface org.apache.hadoop.hbase.Cell
+Cell.Type
+
+
+
+
+
+
+
+
+Field Summary
+
+
+
+
+Fields inherited from interface org.apache.hadoop.hbase.ExtendedCell
+CELL_NOT_BASED_ON_CHUNK
+
+
+
+
+
+Fields inherited from interface org.apache.hadoop.hbase.RawCell
+MAX_TAGS_LENGTH
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Modifier
+Constructor and Description
+
+
+private 
+EmptyByteBufferExtendedCell() 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+All Methods Instance Methods Concrete Methods 
+
+Modifier and Type
+Method and Description
+
+
+byte[]
+getFamilyArray()
+Contiguous bytes composed of legal HDFS filename characters 
which may start at any index in the
+ containing array.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+getFamilyByteBuffer() 
+
+
+byte
+getFamilyLength() 
+
+
+int
+getFamilyOffset() 
+
+
+int
+getFamilyPosition() 
+
+
+byte[]
+getQualifierArray()
+Contiguous raw bytes that may start at any index in the 
containing array.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+getQualifierByteBuffer() 
+
+
+int
+getQualifierLength() 
+
+
+int
+getQualifierOffset() 
+
+
+int
+getQualifierPosition() 
+
+
+byte[]
+getRowArray()
+Contiguous raw bytes that may start at any index in the 
containing array.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer
+getRowByteBuffer() 
+
+
+short
+getRowLength() 
+
+
+int
+getRowOffset() 
+
+
+int
+getRowPosition() 
+
+
+long
+getSequenceId()
+A region-specific unique monotonically increasing sequence 
ID given to each Cell.
+
+
+
+byte[]
+getTagsArray()
+Contiguous raw bytes representing tags that may start at 
any index in the containing 

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

2017-12-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/package-frame.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/package-frame.html 
b/devapidocs/org/apache/hadoop/hbase/package-frame.html
index 7120e99..066606f 100644
--- a/devapidocs/org/apache/hadoop/hbase/package-frame.html
+++ b/devapidocs/org/apache/hadoop/hbase/package-frame.html
@@ -48,7 +48,7 @@
 AsyncMetaTableAccessor.MetaTableScanResultConsumer
 AuthUtil
 BaseConfigurable
-ByteBufferCell
+ByteBufferExtendedCell
 ByteBufferKeyOnlyKeyValue
 ByteBufferKeyValue
 ByteBufferTag
@@ -106,22 +106,22 @@
 NoTagsByteBufferKeyValue
 NoTagsKeyValue
 PrivateCellUtil
-PrivateCellUtil.EmptyByteBufferCell
+PrivateCellUtil.EmptyByteBufferExtendedCell
 PrivateCellUtil.EmptyCell
-PrivateCellUtil.FirstOnRowByteBufferCell
+PrivateCellUtil.FirstOnRowByteBufferExtendedCell
 PrivateCellUtil.FirstOnRowCell
-PrivateCellUtil.FirstOnRowColByteBufferCell
+PrivateCellUtil.FirstOnRowColByteBufferExtendedCell
 PrivateCellUtil.FirstOnRowColCell
-PrivateCellUtil.FirstOnRowColTSByteBufferCell
+PrivateCellUtil.FirstOnRowColTSByteBufferExtendedCell
 PrivateCellUtil.FirstOnRowColTSCell
 PrivateCellUtil.FirstOnRowDeleteFamilyCell
-PrivateCellUtil.LastOnRowByteBufferCell
+PrivateCellUtil.LastOnRowByteBufferExtendedCell
 PrivateCellUtil.LastOnRowCell
-PrivateCellUtil.LastOnRowColByteBufferCell
+PrivateCellUtil.LastOnRowColByteBufferExtendedCell
 PrivateCellUtil.LastOnRowColCell
-PrivateCellUtil.TagRewriteByteBufferCell
+PrivateCellUtil.TagRewriteByteBufferExtendedCell
 PrivateCellUtil.TagRewriteCell
-PrivateCellUtil.ValueAndTagRewriteByteBufferCell
+PrivateCellUtil.ValueAndTagRewriteByteBufferExtendedCell
 PrivateCellUtil.ValueAndTagRewriteCell
 RawCellBuilderFactory
 RegionLoad
@@ -155,7 +155,7 @@
 
 Enums
 
-Cell.DataType
+Cell.Type
 CellBuilderType
 ClusterMetrics.Option
 CompareOperator

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/devapidocs/org/apache/hadoop/hbase/package-summary.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/package-summary.html 
b/devapidocs/org/apache/hadoop/hbase/package-summary.html
index 2ab894e..24faa7c 100644
--- a/devapidocs/org/apache/hadoop/hbase/package-summary.html
+++ b/devapidocs/org/apache/hadoop/hbase/package-summary.html
@@ -289,7 +289,7 @@
 
 
 
-ByteBufferCell
+ByteBufferExtendedCell
 
 This class is a server side extension to the Cell interface.
 
@@ -305,7 +305,7 @@
 
 ByteBufferKeyValue
 
-This Cell is an implementation of ByteBufferCell where the data resides 
in
+This Cell is an implementation of ByteBufferExtendedCell where the data 
resides in
  off heap/ on heap ByteBuffer
 
 
@@ -627,7 +627,7 @@
 
 
 
-PrivateCellUtil.EmptyByteBufferCell
+PrivateCellUtil.EmptyByteBufferExtendedCell
 
 These cells are used in reseeks/seeks to improve the read 
performance.
 
@@ -639,7 +639,7 @@
 
 
 
-PrivateCellUtil.FirstOnRowByteBufferCell
+PrivateCellUtil.FirstOnRowByteBufferExtendedCell
  
 
 
@@ -647,7 +647,7 @@
  
 
 
-PrivateCellUtil.FirstOnRowColByteBufferCell
+PrivateCellUtil.FirstOnRowColByteBufferExtendedCell
  
 
 
@@ -655,7 +655,7 @@
  
 
 
-PrivateCellUtil.FirstOnRowColTSByteBufferCell
+PrivateCellUtil.FirstOnRowColTSByteBufferExtendedCell
  
 
 
@@ -667,7 +667,7 @@
  
 
 
-PrivateCellUtil.LastOnRowByteBufferCell
+PrivateCellUtil.LastOnRowByteBufferExtendedCell
  
 
 
@@ -675,7 +675,7 @@
  
 
 
-PrivateCellUtil.LastOnRowColByteBufferCell
+PrivateCellUtil.LastOnRowColByteBufferExtendedCell
  
 
 
@@ -683,7 +683,7 @@
  
 
 
-PrivateCellUtil.TagRewriteByteBufferCell
+PrivateCellUtil.TagRewriteByteBufferExtendedCell
  
 
 
@@ -693,7 +693,7 @@
 
 
 
-PrivateCellUtil.ValueAndTagRewriteByteBufferCell
+PrivateCellUtil.ValueAndTagRewriteByteBufferExtendedCell
  
 
 
@@ -868,7 +868,7 @@
 
 
 
-Cell.DataType
+Cell.Type
 
 The valid types for user to build the cell.
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d449e87f/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 370110e..2dfb84f 100644
--- a/devapidocs/org/apache/hadoop/hbase/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/package-tree.html
@@ -108,35 +108,35 @@
 org.apache.hadoop.hbase.AsyncMetaTableAccessor.MetaTableScanResultConsumer
 (implements org.apache.hadoop.hbase.client.AdvancedScanResultConsumer)
 org.apache.hadoop.hbase.AuthUtil
 org.apache.hadoop.hbase.BaseConfigurable (implements 
org.apache.hadoop.conf.Configurable)
-org.apache.hadoop.hbase.ByteBufferCell 
(implements org.apache.hadoop.hbase.Cell)
+org.apache.hadoop.hbase.ByteBufferExtendedCell (implements 
org.apache.hadoop.hbase.ExtendedCell)
 
 org.apache.hadoop.hbase.ByteBufferKeyOnlyKeyVal