hbase git commit: HBASE-19375 Fixed Checkstyle import order errors in hbase-thrift

2017-12-09 Thread janh
Repository: hbase
Updated Branches:
  refs/heads/branch-2 aec558188 -> 24b2a5bb1


HBASE-19375 Fixed Checkstyle import order errors in hbase-thrift


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

Branch: refs/heads/branch-2
Commit: 24b2a5bb1e0b7a5119443ad7dbe00444f5cf8341
Parents: aec5581
Author: Jan Hentschel 
Authored: Wed Nov 29 13:07:04 2017 +0100
Committer: Jan Hentschel 
Committed: Sat Dec 9 20:19:11 2017 +0100

--
 .../thrift/HThreadedSelectorServerArgs.java |  3 +-
 .../hbase/thrift/HbaseHandlerMetricsProxy.java  |  3 +-
 .../hbase/thrift/TBoundedThreadPoolServer.java  |  2 +-
 .../hadoop/hbase/thrift/ThriftHttpServlet.java  |  2 +-
 .../hadoop/hbase/thrift/ThriftMetrics.java  |  6 +-
 .../hadoop/hbase/thrift/ThriftServer.java   |  2 +-
 .../hadoop/hbase/thrift/ThriftServerRunner.java | 10 +--
 .../hadoop/hbase/thrift/ThriftUtilities.java|  2 +-
 .../thrift2/ThriftHBaseServiceHandler.java  |  2 +-
 .../hadoop/hbase/thrift2/ThriftServer.java  |  2 +-
 .../hbase/thrift/ErrorThrowingGetObserver.java  |  8 +--
 .../hadoop/hbase/thrift/TestCallQueue.java  |  2 +-
 .../hbase/thrift/TestThriftHttpServer.java  |  5 +-
 .../thrift2/TestThriftHBaseServiceHandler.java  | 64 +++-
 ...TestThriftHBaseServiceHandlerWithLabels.java |  1 +
 ...stThriftHBaseServiceHandlerWithReadOnly.java | 23 +++
 16 files changed, 74 insertions(+), 63 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/24b2a5bb/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HThreadedSelectorServerArgs.java
--
diff --git 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HThreadedSelectorServerArgs.java
 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HThreadedSelectorServerArgs.java
index 02d02a0..58146ca 100644
--- 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HThreadedSelectorServerArgs.java
+++ 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HThreadedSelectorServerArgs.java
@@ -20,12 +20,13 @@
 package org.apache.hadoop.hbase.thrift;
 
 import java.util.Locale;
+
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
-import org.apache.yetus.audience.InterfaceAudience;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.thrift.server.TThreadedSelectorServer;
 import org.apache.thrift.transport.TNonblockingServerTransport;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * A TThreadedSelectorServer.Args that reads hadoop configuration

http://git-wip-us.apache.org/repos/asf/hbase/blob/24b2a5bb/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HbaseHandlerMetricsProxy.java
--
diff --git 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HbaseHandlerMetricsProxy.java
 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HbaseHandlerMetricsProxy.java
index 4e9d307..2fc6546 100644
--- 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HbaseHandlerMetricsProxy.java
+++ 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HbaseHandlerMetricsProxy.java
@@ -25,10 +25,9 @@ import java.lang.reflect.Proxy;
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
-import org.apache.yetus.audience.InterfaceAudience;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.hbase.thrift.generated.Hbase;
-
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * Converts a Hbase.Iface using InvocationHandler so that it reports process

http://git-wip-us.apache.org/repos/asf/hbase/blob/24b2a5bb/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/TBoundedThreadPoolServer.java
--
diff --git 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/TBoundedThreadPoolServer.java
 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/TBoundedThreadPoolServer.java
index 59825b1..56736ca 100644
--- 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/TBoundedThreadPoolServer.java
+++ 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/TBoundedThreadPoolServer.java
@@ -27,7 +27,6 @@ import java.util.concurrent.TimeUnit;
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
-import org.apache.yetus.audience.InterfaceAudience;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.hbase.util.Threads;
 import org.apache.thrift.TException;
@@ -39,6 +38,7 @@ import org

hbase git commit: HBASE-19375 Fixed Checkstyle import order errors in hbase-thrift

2017-12-09 Thread janh
Repository: hbase
Updated Branches:
  refs/heads/master 82e278be5 -> 3eb87802c


HBASE-19375 Fixed Checkstyle import order errors in hbase-thrift


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

Branch: refs/heads/master
Commit: 3eb87802c802b553764b38f804f91e87bd27d2b5
Parents: 82e278b
Author: Jan Hentschel 
Authored: Wed Nov 29 13:07:04 2017 +0100
Committer: Jan Hentschel 
Committed: Sat Dec 9 20:18:30 2017 +0100

--
 .../thrift/HThreadedSelectorServerArgs.java |  3 +-
 .../hbase/thrift/HbaseHandlerMetricsProxy.java  |  3 +-
 .../hbase/thrift/TBoundedThreadPoolServer.java  |  2 +-
 .../hadoop/hbase/thrift/ThriftHttpServlet.java  |  2 +-
 .../hadoop/hbase/thrift/ThriftMetrics.java  |  6 +-
 .../hadoop/hbase/thrift/ThriftServer.java   |  2 +-
 .../hadoop/hbase/thrift/ThriftServerRunner.java | 10 +--
 .../hadoop/hbase/thrift/ThriftUtilities.java|  2 +-
 .../thrift2/ThriftHBaseServiceHandler.java  |  2 +-
 .../hadoop/hbase/thrift2/ThriftServer.java  |  2 +-
 .../hbase/thrift/ErrorThrowingGetObserver.java  |  8 +--
 .../hadoop/hbase/thrift/TestCallQueue.java  |  2 +-
 .../hbase/thrift/TestThriftHttpServer.java  |  5 +-
 .../thrift2/TestThriftHBaseServiceHandler.java  | 64 +++-
 ...TestThriftHBaseServiceHandlerWithLabels.java |  1 +
 ...stThriftHBaseServiceHandlerWithReadOnly.java | 23 +++
 16 files changed, 74 insertions(+), 63 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/3eb87802/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HThreadedSelectorServerArgs.java
--
diff --git 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HThreadedSelectorServerArgs.java
 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HThreadedSelectorServerArgs.java
index 02d02a0..58146ca 100644
--- 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HThreadedSelectorServerArgs.java
+++ 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HThreadedSelectorServerArgs.java
@@ -20,12 +20,13 @@
 package org.apache.hadoop.hbase.thrift;
 
 import java.util.Locale;
+
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
-import org.apache.yetus.audience.InterfaceAudience;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.thrift.server.TThreadedSelectorServer;
 import org.apache.thrift.transport.TNonblockingServerTransport;
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * A TThreadedSelectorServer.Args that reads hadoop configuration

http://git-wip-us.apache.org/repos/asf/hbase/blob/3eb87802/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HbaseHandlerMetricsProxy.java
--
diff --git 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HbaseHandlerMetricsProxy.java
 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HbaseHandlerMetricsProxy.java
index 4e9d307..2fc6546 100644
--- 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HbaseHandlerMetricsProxy.java
+++ 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/HbaseHandlerMetricsProxy.java
@@ -25,10 +25,9 @@ import java.lang.reflect.Proxy;
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
-import org.apache.yetus.audience.InterfaceAudience;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.hbase.thrift.generated.Hbase;
-
+import org.apache.yetus.audience.InterfaceAudience;
 
 /**
  * Converts a Hbase.Iface using InvocationHandler so that it reports process

http://git-wip-us.apache.org/repos/asf/hbase/blob/3eb87802/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/TBoundedThreadPoolServer.java
--
diff --git 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/TBoundedThreadPoolServer.java
 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/TBoundedThreadPoolServer.java
index 59825b1..56736ca 100644
--- 
a/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/TBoundedThreadPoolServer.java
+++ 
b/hbase-thrift/src/main/java/org/apache/hadoop/hbase/thrift/TBoundedThreadPoolServer.java
@@ -27,7 +27,6 @@ import java.util.concurrent.TimeUnit;
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
-import org.apache.yetus.audience.InterfaceAudience;
 import org.apache.hadoop.conf.Configuration;
 import org.apache.hadoop.hbase.util.Threads;
 import org.apache.thrift.TException;
@@ -39,6 +38,7 @@ import org.apa

hbase git commit: HBASE-19469 Review Of BackupSystemTable (BELUGA BEHR)

2017-12-09 Thread tedyu
Repository: hbase
Updated Branches:
  refs/heads/master c98bab51d -> 82e278be5


HBASE-19469 Review Of BackupSystemTable (BELUGA BEHR)


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

Branch: refs/heads/master
Commit: 82e278be55ff1096684e29e827e0c90c1a2598d1
Parents: c98bab5
Author: tedyu 
Authored: Sat Dec 9 09:38:00 2017 -0800
Committer: tedyu 
Committed: Sat Dec 9 09:38:00 2017 -0800

--
 .../hbase/backup/impl/BackupSystemTable.java| 215 ++-
 .../hbase/backup/TestBackupSystemTable.java |  35 +--
 2 files changed, 90 insertions(+), 160 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/82e278be/hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.java
--
diff --git 
a/hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.java
 
b/hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.java
index de3ccc7..76e1046 100644
--- 
a/hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.java
+++ 
b/hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.java
@@ -21,6 +21,7 @@ import java.io.Closeable;
 import java.io.IOException;
 import java.util.ArrayList;
 import java.util.Arrays;
+import java.util.Collections;
 import java.util.HashMap;
 import java.util.HashSet;
 import java.util.Iterator;
@@ -28,6 +29,7 @@ import java.util.List;
 import java.util.Map;
 import java.util.Map.Entry;
 import java.util.Set;
+import java.util.stream.Collectors;
 import java.util.TreeMap;
 import java.util.TreeSet;
 
@@ -62,6 +64,7 @@ import org.apache.hadoop.hbase.client.SnapshotDescription;
 import org.apache.hadoop.hbase.client.Table;
 import org.apache.hadoop.hbase.shaded.protobuf.generated.BackupProtos;
 import org.apache.hadoop.hbase.shaded.protobuf.generated.HBaseProtos;
+import org.apache.hadoop.hbase.util.ArrayUtils;
 import org.apache.hadoop.hbase.util.Bytes;
 import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
 import org.apache.hadoop.hbase.util.Pair;
@@ -530,9 +533,8 @@ public final class BackupSystemTable implements Closeable {
* @throws IOException exception
*/
   public String readBackupStartCode(String backupRoot) throws IOException {
-if (LOG.isTraceEnabled()) {
-  LOG.trace("read backup start code from backup system table");
-}
+LOG.trace("read backup start code from backup system table");
+
 try (Table table = connection.getTable(tableName)) {
   Get get = createGetForStartCode(backupRoot);
   Result res = table.get(get);
@@ -570,9 +572,8 @@ public final class BackupSystemTable implements Closeable {
* @throws IOException
*/
   public void startBackupExclusiveOperation() throws IOException {
-if (LOG.isDebugEnabled()) {
-  LOG.debug("Start new backup exclusive operation");
-}
+LOG.debug("Start new backup exclusive operation");
+
 try (Table table = connection.getTable(tableName)) {
   Put put = createPutForStartBackupSession();
   // First try to put if row does not exist
@@ -593,9 +594,8 @@ public final class BackupSystemTable implements Closeable {
   }
 
   public void finishBackupExclusiveOperation() throws IOException {
-if (LOG.isDebugEnabled()) {
-  LOG.debug("Finish backup exclusive operation");
-}
+LOG.debug("Finish backup exclusive operation");
+
 try (Table table = connection.getTable(tableName)) {
   Put put = createPutForStopBackupSession();
   if (!table.checkAndPut(ACTIVE_SESSION_ROW, SESSIONS_FAMILY, 
ACTIVE_SESSION_COL,
@@ -619,9 +619,7 @@ public final class BackupSystemTable implements Closeable {
*/
   public HashMap readRegionServerLastLogRollResult(String 
backupRoot)
   throws IOException {
-if (LOG.isTraceEnabled()) {
-  LOG.trace("read region server last roll log result to backup system 
table");
-}
+LOG.trace("read region server last roll log result to backup system 
table");
 
 Scan scan = createScanForReadRegionServerLastLogRollResult(backupRoot);
 
@@ -650,9 +648,8 @@ public final class BackupSystemTable implements Closeable {
*/
   public void writeRegionServerLastLogRollResult(String server, Long ts, 
String backupRoot)
   throws IOException {
-if (LOG.isTraceEnabled()) {
-  LOG.trace("write region server last roll log result to backup system 
table");
-}
+LOG.trace("write region server last roll log result to backup system 
table");
+
 try (Table table = connection.getTable(tableName)) {
   Put put = createPutForRegionServerLastLogRollRe

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/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
index 74795bd..e712982 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.LastOnRowByteBufferCell.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.LastOnRowByteBufferCell.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -119,7 +119,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Implemented Interfaces:
-Cell, SettableSequenceId
+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:
@@ -131,7 +131,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-private static class PrivateCellUtil.LastOnRowByteBufferCell
+private static class PrivateCellUtil.LastOnRowByteBufferCell
 extends PrivateCellUtil.EmptyByteBufferCell
 
 
@@ -152,18 +152,36 @@ extends 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
+
 
 
 
@@ -217,13 +235,17 @@ extends 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
+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
 
 
 
@@ -232,6 +254,20 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--";
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-";
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--";
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--";
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--";
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--";
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/8/docs/api/java/lang
 /Object.html?is-external=true#notifyAll--" title="class or interface in 
java.lang">notifyAll, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--";
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--";
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-";
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-";
 title="class or interface in java.lang">wait
 
+
+
+
+
+Methods inherited from interface org.apache.hadoop.hbase.ExtendedCell
+deepClone,
 getChunkId,
 getSerializedSize,
 write,
 write
+
+
+
+
+
+Methods inherited

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/src-html/org/apache/hadoop/hbase/ClusterStatus.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/ClusterStatus.html 
b/apidocs/src-html/org/apache/hadoop/hbase/ClusterStatus.html
index 1aaa281..c3eca54 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/ClusterStatus.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/ClusterStatus.html
@@ -201,297 +201,303 @@
 193
 194  /**
 195   * @return the number of requests since 
last report
-196   */
-197  public int getRequestsCount() {
-198int count = 0;
-199if (liveServers != null && 
!liveServers.isEmpty()) {
-200  for (Map.Entry e: this.liveServers.entrySet()) {
-201count += 
e.getValue().getNumberOfRequests();
-202  }
-203}
-204return count;
-205  }
-206
-207  /**
-208   * @return the HBase version string as 
reported by the HMaster
-209   */
-210  public String getHBaseVersion() {
-211return hbaseVersion;
-212  }
-213
-214  /**
-215   * @see 
java.lang.Object#equals(java.lang.Object)
-216   */
-217  public boolean equals(Object o) {
-218if (this == o) {
-219  return true;
-220}
-221if (!(o instanceof ClusterStatus)) 
{
-222  return false;
-223}
-224ClusterStatus other = (ClusterStatus) 
o;
-225return 
Objects.equal(getHBaseVersion(), other.getHBaseVersion()) &&
-226  Objects.equal(this.liveServers, 
other.liveServers) &&
-227  
getDeadServerNames().containsAll(other.getDeadServerNames()) &&
-228  
Arrays.equals(getMasterCoprocessors(), other.getMasterCoprocessors()) 
&&
-229  Objects.equal(getMaster(), 
other.getMaster()) &&
-230  
getBackupMasters().containsAll(other.getBackupMasters()) &&
-231  Objects.equal(getClusterId(), 
other.getClusterId()) &&
-232  getMasterInfoPort() == 
other.getMasterInfoPort();
-233  }
-234
-235  /**
-236   * @see java.lang.Object#hashCode()
-237   */
-238  public int hashCode() {
-239return Objects.hashCode(hbaseVersion, 
liveServers, deadServers, master, backupMasters,
-240  clusterId, masterInfoPort);
-241  }
-242
-243  /**
-244   *
-245   * @return the object version number
-246   * @deprecated As of release 2.0.0, 
this will be removed in HBase 3.0.0
-247   */
-248  @Deprecated
-249  public byte getVersion() {
-250return VERSION;
-251  }
-252
-253  //
-254  // Getters
-255  //
-256
-257  public Collection 
getServers() {
-258if (liveServers == null) {
-259  return Collections.emptyList();
-260}
-261return 
Collections.unmodifiableCollection(this.liveServers.keySet());
-262  }
-263
-264  /**
-265   * Returns detailed information about 
the current master {@link ServerName}.
-266   * @return current master information 
if it exists
-267   */
-268  public ServerName getMaster() {
-269return this.master;
-270  }
-271
-272  /**
-273   * @return the number of backup masters 
in the cluster
-274   */
-275  public int getBackupMastersSize() {
-276return backupMasters != null ? 
backupMasters.size() : 0;
-277  }
-278
-279  /**
-280   * @return the names of backup 
masters
-281   */
-282  public List 
getBackupMasters() {
-283if (backupMasters == null) {
-284  return Collections.emptyList();
-285}
-286return 
Collections.unmodifiableList(this.backupMasters);
-287  }
-288
-289  /**
-290   * @param sn
-291   * @return Server's load or null if not 
found.
-292   */
-293  public ServerLoad getLoad(final 
ServerName sn) {
-294return liveServers != null ? 
liveServers.get(sn) : null;
-295  }
-296
-297  @InterfaceAudience.Private
-298  public List 
getRegionsInTransition() {
-299if (intransition == null) {
-300  return Collections.emptyList();
-301}
-302return 
Collections.unmodifiableList(intransition);
-303  }
-304
-305  public String getClusterId() {
-306return clusterId;
-307  }
-308
-309  public String[] getMasterCoprocessors() 
{
-310return masterCoprocessors;
-311  }
-312
-313  public long 
getLastMajorCompactionTsForTable(TableName table) {
-314long result = Long.MAX_VALUE;
-315for (ServerName server : 
getServers()) {
-316  ServerLoad load = 
getLoad(server);
-317  for (RegionLoad rl : 
load.getRegionsLoad().values()) {
-318if 
(table.equals(HRegionInfo.getTable(rl.getName( {
-319  result = Math.min(result, 
rl.getLastMajorCompactionTs());
-320}
-321  }
-322}
-323return result == Long.MAX_VALUE ? 0 : 
result;
-324  }
-325
-326  public long 
getLastMajorCompactionTsForRegion(final byte[] region) {
-327for (ServerName server : 
getServers()) {
-328  ServerLoad load = 
getLoad(server);
-329  RegionLoad rl = 
load.getRegionsLoad().get(region);
-330  if (rl != null) {
-331return 
rl.getLastMajorCompactionTs();
-332  }
-333}
-334return 0;
-335  }
-336
-337  publ

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/RegionCoprocessorEnvironment.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/RegionCoprocessorEnvironment.html
 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/RegionCoprocessorEnvironment.html
index 1cef5b4..cb7a795 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/RegionCoprocessorEnvironment.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/RegionCoprocessorEnvironment.html
@@ -139,11 +139,10 @@
 
 
 
-boolean
-BackupObserver.postBulkLoadHFile(ObserverContext ctx,
+void
+BackupObserver.postBulkLoadHFile(ObserverContext ctx,
  http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">ListString>> stagingFamilyPaths,
- http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList> finalPaths,
- boolean hasLoaded) 
+ http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList> finalPaths) 
 
 
 void
@@ -243,11 +242,10 @@
 
 
 
-default boolean
-RegionObserver.postBulkLoadHFile(ObserverContext ctx,
+default void
+RegionObserver.postBulkLoadHFile(ObserverContext ctx,
  http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">ListString>> stagingFamilyPaths,
- http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList> finalPaths,
- boolean hasLoaded)
+ http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList> finalPaths)
 Called after bulkLoadHFile.
 
 
@@ -492,12 +490,10 @@
 default void
 RegionObserver.postWALRestore(ObserverContext ctx,
   RegionInfo info,
-  WALKey logKey,
+  WALKey logKey,
   WALEdit logEdit)
-Deprecated. 
-Since hbase-2.0.0. No 
replacement. To be removed in hbase-3.0.0 and replaced
- with something that doesn't expose IntefaceAudience.Private 
classes.
-
+Called after a WALEdit
+ replayed for this region.
 
 
 
@@ -823,12 +819,10 @@
 default void
 RegionObserver.preWALRestore(ObserverContext ctx,
  RegionInfo info,
- WALKey logKey,
+ WALKey logKey,
  WALEdit logEdit)
-Deprecated. 
-Since hbase-2.0.0. No 
replacement. To be removed in hbase-3.0.0 and replaced
- with something that doesn't expose IntefaceAudience.Private 
classes.
-
+Called before a WALEdit
+ replayed for this region.
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/WALCoprocessorEnvironment.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/WALCoprocessorEnvironment.html
 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/WALCoprocessorEnvironment.html
index 1783cb0..dfec323 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/WALCoprocessorEnvironment.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/class-use/WALCoprocessorEnvironment.html
@@ -120,7 +120,7 @@
 default void
 WALObserver.postWALWrite(ObserverContext ctx,
 RegionInfo info,
-WALKey logKey,
+WALKey logKey,
 WALEdit logEdit)
 Deprecated. 
 Since hbase-2.0.0. To be 
replaced with an alternative that does no

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/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 5066209..c481f4d 100644
--- a/devapidocs/org/apache/hadoop/hbase/ExtendedCell.html
+++ b/devapidocs/org/apache/hadoop/hbase/ExtendedCell.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = {"i0":6,"i1":18,"i2":6,"i3":6,"i4":6};
+var methods = {"i0":18,"i1":18,"i2":18,"i3":6,"i4":6,"i5":6,"i6":18,"i7":18};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"],16:["t5","Default Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -101,24 +101,19 @@ var activeTableTab = "activeTableTab";
 
 
 All Superinterfaces:
-Cell, http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, HeapSize, RawCell, SettableSequenceId, SettableTimestamp
+Cell, http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable, HeapSize, RawCell
 
 
 All Known Implementing Classes:
-BufferedDataBlockEncoder.OffheapDecodedCell,
 BufferedDataBlockEncoder.OnheapDecodedCell,
 ByteBufferChunkCell, 
ByteBufferKeyValue, IndividualBytesFieldCell, KeyValue, KeyValue.KeyOnlyKeyValue, MapReduceCell, NoTagByteBufferChunkCell, NoTagsByteBufferKeyValue, NoTagsKeyValue, PrivateCellUtil.TagRewriteByteBufferCell, PrivateCellUtil.TagRewriteCell, PrivateCellUtil.ValueAndTagRewriteByteBufferCell, 
PrivateCellUtil.ValueAndTagRewriteCell, SizeCachedKeyValue, SizeCachedNoTagsKeyValue
+BufferedDataBlockEncoder.OffheapDecodedCell,
 BufferedDataBlockEncoder.OnheapDecodedCell,
 ByteBufferChunkCell, 
ByteBufferKeyValue, IndividualBytesFieldCell, KeyValue, KeyValue.KeyOnlyKeyValue, MapReduceCell, NoTagByteBufferChunkCell, NoTagsByteBufferKeyValue, NoTagsKeyValue, PrivateCellUtil.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
 
 
 
 @InterfaceAudience.Private
-public interface ExtendedCell
-extends RawCell, SettableSequenceId, SettableTimestamp, HeapSize, http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable
+public interface ExtendedCell
+extends RawCell, HeapSize, http://docs.oracle.com/javase/8/docs/api/java/lang/Cloneable.html?is-external=true";
 title="class or interface in java.lang">Cloneable
 Extension to Cell with server side required 
functions. Server side Cell implementations
  must implement this.
-
-See Also:
-SettableSequenceId, 
-SettableTimestamp
-
 
 
 
@@ -164,7 +159,7 @@ extends Method and Description
 
 
-ExtendedCell
+default ExtendedCell
 deepClone()
 Does a deep copy of the contents to a new memory area and 
returns it as a new cell.
 
@@ -177,18 +172,36 @@ extends 
-int
+default int
 getSerializedSize(boolean withTags) 
 
 
 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.
+
+
+
+default 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
+
+default 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.
@@ -210,20 +223,6 @@ extends getFamilyArray,
 getFamilyLength,
 getFamilyOffset,
 getQualifierArray,
 getQualifierLength,
 getQualifierOffset,
 getRowArray,
 getRowLength,
 getRowOffset,
 getSequenceId,
 getTagsArray, getTagsLength,
 getTagsOffset,
 getTimestamp,
 getTypeByte,
 getValueArray,
 getValueLength,
 getValueOffset
 
 
-
-
-
-Methods inherited from interface org.apache.hadoop.hbase.SettableSequenceId
-setSequenceId
-
-
-
-
-
-Methods inherited from interface org.apache.hadoop.hbase.SettableTimestamp
-setTimestamp,
 setTimestamp
-
-
 
 
 
@@ -250,7 +249,7 @@ extends 
 

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/class-use/SettableSequenceId.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/SettableSequenceId.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/SettableSequenceId.html
deleted file mode 100644
index b79b3f2..000
--- a/devapidocs/org/apache/hadoop/hbase/class-use/SettableSequenceId.html
+++ /dev/null
@@ -1,381 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-Uses of Interface org.apache.hadoop.hbase.SettableSequenceId (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 
Interfaceorg.apache.hadoop.hbase.SettableSequenceId
-
-
-
-
-
-Packages that use SettableSequenceId 
-
-Package
-Description
-
-
-
-org.apache.hadoop.hbase
- 
-
-
-org.apache.hadoop.hbase.io.encoding
- 
-
-
-org.apache.hadoop.hbase.regionserver
- 
-
-
-org.apache.hadoop.hbase.util
- 
-
-
-
-
-
-
-
-
-
-Uses of SettableSequenceId in org.apache.hadoop.hbase
-
-Subinterfaces of SettableSequenceId in org.apache.hadoop.hbase 
-
-Modifier and Type
-Interface and Description
-
-
-
-interface 
-ExtendedCell
-Extension to Cell with server side required 
functions.
-
-
-
-
-
-Classes in org.apache.hadoop.hbase
 that implement SettableSequenceId 
-
-Modifier and Type
-Class and Description
-
-
-
-class 
-ByteBufferKeyValue
-This Cell is an implementation of ByteBufferCell where the data 
resides in
- off heap/ on heap ByteBuffer
-
-
-
-class 
-IndividualBytesFieldCell 
-
-
-class 
-KeyValue
-An HBase Key/Value.
-
-
-
-static class 
-KeyValue.KeyOnlyKeyValue
-A simple form of KeyValue that creates a keyvalue with only 
the key part of the byte[]
- Mainly used in places where we need to compare two cells.
-
-
-
-class 
-NoTagsByteBufferKeyValue
-An extension of the ByteBufferKeyValue where the tags 
length is always 0
-
-
-
-class 
-NoTagsKeyValue
-An extension of the KeyValue where the tags length is 
always 0
-
-
-
-private static class 
-PrivateCellUtil.EmptyByteBufferCell
-These cells are used in reseeks/seeks to improve the read 
performance.
-
-
-
-private static class 
-PrivateCellUtil.EmptyCell
-These cells are used in reseeks/seeks to improve the read 
performance.
-
-
-
-private static class 
-PrivateCellUtil.FirstOnRowByteBufferCell 
-
-
-private static class 
-PrivateCellUtil.FirstOnRowCell 
-
-
-private static class 
-PrivateCellUtil.FirstOnRowColByteBufferCell 
-
-
-private static class 
-PrivateCellUtil.FirstOnRowColCell 
-
-
-private static class 
-PrivateCellUtil.FirstOnRowColTSByteBufferCell 
-
-
-private static class 
-PrivateCellUtil.FirstOnRowColTSCell 
-
-
-private static class 
-PrivateCellUtil.FirstOnRowDeleteFamilyCell 
-
-
-private static class 
-PrivateCellUtil.LastOnRowByteBufferCell 
-
-
-private static class 
-PrivateCellUtil.LastOnRowCell 
-
-
-private static class 
-PrivateCellUtil.LastOnRowColByteBufferCell 
-
-
-private static class 
-PrivateCellUtil.LastOnRowColCell 
-
-
-(package private) static class 
-PrivateCellUtil.TagRewriteByteBufferCell 
-
-
-(package private) static class 
-PrivateCellUtil.TagRewriteCell
-This can be used when a Cell has to change with 
addition/removal of one or more tags.
-
-
-
-(package private) static class 
-PrivateCellUtil.ValueAndTagRewriteByteBufferCell 
-
-
-(package private) static class 
-PrivateCellUtil.ValueAndTagRewriteCell 
-
-
-class 
-SizeCachedKeyValue
-This class is an extension to KeyValue where rowLen and 
keyLen are cached.
-
-
-
-class 
-SizeCachedNoTagsKeyValue
-This class is an extension to ContentSizeCachedKeyValue 
where there are no tags in Cell.
-
-
-
-
-
-
-
-
-Uses of SettableSequenceId in org.apache.hadoop.hbase.io.encoding
-
-Classes in org.apache.hadoop.hbase.io.encoding
 that implement SettableSequenceId 
-
-Modifier and Type
-Class and Description
-
-
-
-protected static class 
-BufferedDataBlockEncoder.OffheapDecodedCell 
-
-
-protected static class 
-BufferedDataBlockEncoder.OnheapDecodedCell
-Copies only the key part of the keybuffer by doing a deep 
copy and passes the
- seeker state members for taking a clone.
-
-
-
-
-
-
-
-
-Uses of SettableSequenceId in org.apache.hadoop.hbase.regionserver
-
-Classes in org.apache.hadoop.hbase.regionserver
 that implement S

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/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
index d29eb4b..7c9ae60 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowByteBufferCell.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowByteBufferCell.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -119,7 +119,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Implemented Interfaces:
-Cell, SettableSequenceId
+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:
@@ -131,7 +131,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-private static class PrivateCellUtil.FirstOnRowByteBufferCell
+private static class PrivateCellUtil.FirstOnRowByteBufferCell
 extends PrivateCellUtil.EmptyByteBufferCell
 
 
@@ -152,18 +152,36 @@ extends 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
+
 
 
 
@@ -217,13 +235,17 @@ extends 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
+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
 
 
 
@@ -232,6 +254,20 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--";
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-";
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--";
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--";
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--";
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--";
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/8/docs/api/java/lang
 /Object.html?is-external=true#notifyAll--" title="class or interface in 
java.lang">notifyAll, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--";
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--";
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-";
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-";
 title="class or interface in java.lang">wait
 
+
+
+
+
+Methods inherited from interface org.apache.hadoop.hbase.ExtendedCell
+deepClone,
 getChunkId,
 getSerializedSize,
 write,
 write
+
+
+
+
+
+Methods in

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/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
index f09b3c1..292b87e 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.OffheapDecodedCell.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.OffheapDecodedCell.html
@@ -114,7 +114,7 @@ var activeTableTab = "activeTableTab";
 
 
 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, SettableSequenceId, SettableTimestamp
+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:
@@ -122,7 +122,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-protected static class BufferedDataBlockEncoder.OffheapDecodedCell
+protected static class BufferedDataBlockEncoder.OffheapDecodedCell
 extends ByteBufferCell
 implements ExtendedCell
 
@@ -418,8 +418,7 @@ implements 
 
 void
-setTimestamp(byte[] ts,
-int tsOffset)
+setTimestamp(byte[] ts)
 Sets with the given timestamp.
 
 
@@ -485,7 +484,7 @@ implements 
 
 FIXED_OVERHEAD
-private static final long FIXED_OVERHEAD
+private static final long FIXED_OVERHEAD
 
 
 
@@ -494,7 +493,7 @@ implements 
 
 keyBuffer
-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 http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer keyBuffer
 
 
 
@@ -503,7 +502,7 @@ implements 
 
 rowLength
-private short rowLength
+private short rowLength
 
 
 
@@ -512,7 +511,7 @@ implements 
 
 familyOffset
-private int familyOffset
+private int familyOffset
 
 
 
@@ -521,7 +520,7 @@ implements 
 
 familyLength
-private byte familyLength
+private byte familyLength
 
 
 
@@ -530,7 +529,7 @@ implements 
 
 qualifierOffset
-private int qualifierOffset
+private int qualifierOffset
 
 
 
@@ -539,7 +538,7 @@ implements 
 
 qualifierLength
-private int qualifierLength
+private int qualifierLength
 
 
 
@@ -548,7 +547,7 @@ implements 
 
 timestamp
-private long timestamp
+private long timestamp
 
 
 
@@ -557,7 +556,7 @@ implements 
 
 typeByte
-private byte typeByte
+private byte typeByte
 
 
 
@@ -566,7 +565,7 @@ implements 
 
 valueBuffer
-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 http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer valueBuffer
 
 
 
@@ -575,7 +574,7 @@ implements 
 
 valueOffset
-private int valueOffset
+private int valueOffset
 
 
 
@@ -584,7 +583,7 @@ implements 
 
 valueLength
-private int valueLength
+private int valueLength
 
 
 
@@ -593,7 +592,7 @@ implements 
 
 tagsBuffer
-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 http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in java.nio">ByteBuffer tagsBuffer
 
 
 
@@ -602,7 +601,7 @@ implements 
 
 tagsOffset
-private int tagsOffset
+private int tagsOffset
 
 
 
@@ -611,7 +610,7 @@ implements 
 
 tagsLength
-private int tagsLength
+private int tagsLength
 
 
 
@@ -620,7 +619,7 @@ implements 
 
 seqId
-private long seqId
+private long seqId
 
 
 
@@ -637,7 +636,7 @@ implements 
 
 OffheapDecodedCell
-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,
+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,
@@ -668,7 +667,7 @@ implements 
 
 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.
@@ -686,7 +685,7 @@ implements 
 
 getRowOffset
-public int getRowOffset()
+public int getRowOffset()
 
 Specified by

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.TagRewriteCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.TagRewriteCell.html 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.TagRewriteCell.html
index d6c34f5..02962be 100644
--- a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.TagRewriteCell.html
+++ b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.TagRewriteCell.html
@@ -109,7 +109,7 @@ var activeTableTab = "activeTableTab";
 
 
 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, SettableSequenceId, SettableTimestamp
+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:
@@ -121,7 +121,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-static class PrivateCellUtil.TagRewriteCell
+static class PrivateCellUtil.TagRewriteCell
 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 ExtendedCell
 This can be used when a Cell has to change with 
addition/removal of one or more tags. This is
@@ -313,8 +313,7 @@ implements 
 
 void
-setTimestamp(byte[] ts,
-int tsOffset)
+setTimestamp(byte[] ts)
 Sets with the given timestamp.
 
 
@@ -380,7 +379,7 @@ implements 
 
 cell
-protected Cell cell
+protected Cell cell
 
 
 
@@ -389,7 +388,7 @@ implements 
 
 tags
-protected byte[] tags
+protected byte[] tags
 
 
 
@@ -398,7 +397,7 @@ implements 
 
 HEAP_SIZE_OVERHEAD
-private static final long HEAP_SIZE_OVERHEAD
+private static final long HEAP_SIZE_OVERHEAD
 
 
 
@@ -415,7 +414,7 @@ implements 
 
 TagRewriteCell
-public TagRewriteCell(Cell cell,
+public TagRewriteCell(Cell cell,
   byte[] tags)
 
 Parameters:
@@ -438,7 +437,7 @@ implements 
 
 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.
@@ -456,7 +455,7 @@ implements 
 
 getRowOffset
-public int getRowOffset()
+public int getRowOffset()
 
 Specified by:
 getRowOffset in
 interface Cell
@@ -471,7 +470,7 @@ implements 
 
 getRowLength
-public short getRowLength()
+public short getRowLength()
 
 Specified by:
 getRowLength in
 interface Cell
@@ -486,7 +485,7 @@ implements 
 
 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.
@@ -504,7 +503,7 @@ implements 
 
 getFamilyOffset
-public int getFamilyOffset()
+public int getFamilyOffset()
 
 Specified by:
 getFamilyOffset in
 interface Cell
@@ -519,7 +518,7 @@ implements 
 
 getFamilyLength
-public byte getFamilyLength()
+public byte getFamilyLength()
 
 Specified by:
 getFamilyLength in
 interface Cell
@@ -534,7 +533,7 @@ implements 
 
 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.
 
@@ -551,7 +550,7 @@ implements 
 
 getQualifierOffset
-public int getQualifierOffset()
+public int getQualifierOffset()
 
 Specified by:
 getQualifierOffset in
 interface Cell
@@ -566,7 +565,7 @@ implements 
 
 getQualifierLength
-public int getQualifierLength()
+public int getQualifierLength()
 
 Specified by:
 getQualifierLength in
 interface Cell
@@ -581,7 +580,7 @@ implements 
 
 getTimestamp
-public long getTimestamp()
+public long getTimestamp()
 
 Specified by:
 getTimestamp in
 interface Cell
@@ -597,7 +596,7 @@ implements 
 
 getTypeByte
-public byte getTypeByte()
+public byte getTypeByte()
 
 Specified by:
 getTypeByte in
 interface Cell
@@ -612,7 +611,7 @@ implements 
 
 getSequenceId
-public long getSequenceId()
+public long getSequenceId()
 Description copied from 
interface: Cell
 A region-specific unique monotonically increasing sequence 
ID given to each Cell. It always
  exists for cells in the memstore but is not retained forever. It will be kept 
for
@@ -632,7 +631,7 @@ implements 
 
 getValueArray
-public byte[] getValueArray()
+public byte[] getValueArray()
 Description copied from 
interface: Cell
 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.
@@ -650,7 +649,7 @@ implements 
 
 getValueOffset
-public int getValueOffset()
+public int getValueOffset()

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.html
 
b/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.html
index 7ce259d..2b126d3 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/asyncfs/FanOutOneBlockAsyncDFSOutputHelper.html
@@ -738,7 +738,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 createChecksumCreater28
-private static FanOutOneBlockAsyncDFSOutputHelper.ChecksumCreater createChecksumCreater28(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang">Class confClass)
+private static FanOutOneBlockAsyncDFSOutputHelper.ChecksumCreater createChecksumCreater28(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang">Class confClass)

throws http://docs.oracle.com/javase/8/docs/api/java/lang/NoSuchMethodException.html?is-external=true";
 title="class or interface in java.lang">NoSuchMethodException
 
 Throws:
@@ -752,7 +752,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 createChecksumCreater27
-private static FanOutOneBlockAsyncDFSOutputHelper.ChecksumCreater createChecksumCreater27(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang">Class confClass)
+private static FanOutOneBlockAsyncDFSOutputHelper.ChecksumCreater createChecksumCreater27(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang">Class confClass)

throws http://docs.oracle.com/javase/8/docs/api/java/lang/NoSuchMethodException.html?is-external=true";
 title="class or interface in java.lang">NoSuchMethodException
 
 Throws:
@@ -766,7 +766,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 createChecksumCreater
-private static FanOutOneBlockAsyncDFSOutputHelper.ChecksumCreater createChecksumCreater()
+private static FanOutOneBlockAsyncDFSOutputHelper.ChecksumCreater createChecksumCreater()

  throws http://docs.oracle.com/javase/8/docs/api/java/lang/NoSuchMethodException.html?is-external=true";
 title="class or interface in java.lang">NoSuchMethodException,

 http://docs.oracle.com/javase/8/docs/api/java/lang/ClassNotFoundException.html?is-external=true";
 title="class or interface in java.lang">ClassNotFoundException
 
@@ -782,7 +782,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 createFileCreator3
-private static FanOutOneBlockAsyncDFSOutputHelper.FileCreator createFileCreator3()
+private static FanOutOneBlockAsyncDFSOutputHelper.FileCreator createFileCreator3()
   
throws http://docs.oracle.com/javase/8/docs/api/java/lang/NoSuchMethodException.html?is-external=true";
 title="class or interface in java.lang">NoSuchMethodException
 
 Throws:
@@ -796,7 +796,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 createFileCreator2
-private static FanOutOneBlockAsyncDFSOutputHelper.FileCreator createFileCreator2()
+private static FanOutOneBlockAsyncDFSOutputHelper.FileCreator createFileCreator2()
   
throws http://docs.oracle.com/javase/8/docs/api/java/lang/NoSuchMethodException.html?is-external=true";
 title="class or interface in java.lang">NoSuchMethodException
 
 Throws:
@@ -810,7 +810,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 createFileCreator
-private static FanOutOneBlockAsyncDFSOutputHelper.FileCreator createFileCreator()
+private static FanOutOneBlockAsyncDFSOutputHelper.FileCreator createFileCreator()
  
throws http://docs.oracle.com/javase/8/docs/api/java/lang/NoSuchMethodException.html?is-external=true";
 title="class or interface in java.lang">NoSuchMethodException
 
 Throws:
@@ -824,7 +824,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 beginFileLease
-static void beginFileLease(org.apache.hadoop.hdfs.DFSClient client,
+static void beginFileLease(org.apache.hadoop.hdfs.DFSClient client,
  

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html 
b/devapidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
index ea38a87..f988e84 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":9,"i2":10,"i3":9,"i4":9,"i5":10,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"i12":9,"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,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":9};
+var methods = 
{"i0":10,"i1":9,"i2":10,"i3":9,"i4":9,"i5":10,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"i12":9,"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,"i41":10,"i42":10,"i43":10,"i44":10,"i45":9};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -194,16 +194,6 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
-CACHE_DATA_IN_L1
-Key for cache data into L1 if cache is set up with more 
than one tier.
-
-
-
-private static Bytes
-CACHE_DATA_IN_L1_BYTES 
-
-
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 CACHE_DATA_ON_WRITE 
 
 
@@ -281,260 +271,254 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 static boolean
-DEFAULT_CACHE_DATA_IN_L1
-Default setting for whether to cache data blocks in L1 
tier.
-
-
-
-static boolean
 DEFAULT_CACHE_DATA_ON_WRITE
 Default setting for whether to cache data blocks on write 
if block caching
  is enabled.
 
 
-
+
 static boolean
 DEFAULT_CACHE_INDEX_ON_WRITE
 Default setting for whether to cache index blocks on write 
if block caching
  is enabled.
 
 
-
+
 static boolean
 DEFAULT_COMPRESS_TAGS
 Default compress tags along with any type of 
DataBlockEncoding.
 
 
-
+
 static Compression.Algorithm
 DEFAULT_COMPRESSION
 Default compression type.
 
 
-
+
 static DataBlockEncoding
 DEFAULT_DATA_BLOCK_ENCODING
 Default data block encoding algorithm.
 
 
-
+
 static short
 DEFAULT_DFS_REPLICATION 
 
-
+
 static boolean
 DEFAULT_EVICT_BLOCKS_ON_CLOSE
 Default setting for whether to evict cached blocks from the 
blockcache on
  close.
 
 
-
+
 static boolean
 DEFAULT_IN_MEMORY
 Default setting for whether to try and serve this column 
family from memory
  or not.
 
 
-
+
 static KeepDeletedCells
 DEFAULT_KEEP_DELETED
 Default setting for preventing deleted from being collected 
immediately.
 
 
-
+
 static int
 DEFAULT_MAX_VERSIONS
 Default number of versions of a record to keep.
 
 
-
+
 static int
 DEFAULT_MIN_VERSIONS
 Default is not to keep a minimum of versions.
 
 
-
+
 private static boolean
 DEFAULT_MOB 
 
-
+
 static MobCompactPartitionPolicy
 DEFAULT_MOB_COMPACT_PARTITION_POLICY 
 
-
+
 static long
 DEFAULT_MOB_THRESHOLD 
 
-
+
 static boolean
 DEFAULT_NEW_VERSION_BEHAVIOR 
 
-
+
 static boolean
 DEFAULT_PREFETCH_BLOCKS_ON_OPEN 
 
-
+
 static int
 DEFAULT_REPLICATION_SCOPE
 Default scope.
 
 
-
+
 static int
 DEFAULT_TTL
 Default time to live of cell contents.
 
 
-
+
 private static http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String>
 DEFAULT_VALUES 
 
-
+
 private ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 desc 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 DFS_REPLICATION 
 
-
+
 private static Bytes
 DFS_REPLICATION_BYTES 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 ENCRYPTION 
 
-
+
 private static Bytes
 ENCRYPTION_BYTES 
 
-
+
 static http://docs.oracle.com/javase/8

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/coprocessor/ReadOnlyConfiguration.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/ReadOnlyConfiguration.html 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/ReadOnlyConfiguration.html
new file mode 100644
index 000..11482df
--- /dev/null
+++ b/devapidocs/org/apache/hadoop/hbase/coprocessor/ReadOnlyConfiguration.html
@@ -0,0 +1,1778 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+ReadOnlyConfiguration (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,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":10,"i52":10,"i53":10,"i54":10,"i55":10,"i56":10,"i57":10,"i58":10,"i59":10,"i60":10,"i61":10,"i62":10,"i63":10,"i64":10,"i65":10,"i66":10,"i67":10,"i68":10,"i69":10,"i70":10,"i71":10,"i72":10,"i73":10,"i74":10,"i75":10,"i76":10};
+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.coprocessor
+Class 
ReadOnlyConfiguration
+
+
+
+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.conf.Configuration
+
+
+org.apache.hadoop.hbase.coprocessor.ReadOnlyConfiguration
+
+
+
+
+
+
+
+
+
+All Implemented Interfaces:
+http://docs.oracle.com/javase/8/docs/api/java/lang/Iterable.html?is-external=true";
 title="class or interface in java.lang">IterableMap.EntryString,http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String>>, 
org.apache.hadoop.io.Writable
+
+
+
+@InterfaceAudience.Private
+class ReadOnlyConfiguration
+extends org.apache.hadoop.conf.Configuration
+Wraps a Configuration to make it read-only.
+
+
+
+
+
+
+
+
+
+
+
+Nested Class Summary
+
+
+
+
+Nested classes/interfaces inherited from 
class org.apache.hadoop.conf.Configuration
+org.apache.hadoop.conf.Configuration.DeprecationDelta, 
org.apache.hadoop.conf.Configuration.IntegerRanges
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+private 
org.apache.hadoop.conf.Configuration
+conf 
+
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+ReadOnlyConfiguration(org.apache.hadoop.conf.Configuration conf) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+All Methods Instance Methods Concrete Methods 
+
+Modifier and Type
+Method and Description
+
+
+void
+addResource(org.apache.hadoop.conf.Configuration conf) 
+
+
+void
+addResource(http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true";
 title="class or interface in 
java.io">InputStream in) 
+
+
+void
+addResource(http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true";
 title="class or interface in java.io">InputStream in,
+   http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name) 
+
+
+void
+addResource(org.apache.hadoop.fs.Path file) 
+
+
+void
+addResource(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name) 
+
+
+void
+addResource(http://docs.oracle.com/javase/8/docs/api/java/net/URL.html?is-external=true";
 title="class or inte

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/NoTagsKeyValue.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/NoTagsKeyValue.html 
b/devapidocs/org/apache/hadoop/hbase/NoTagsKeyValue.html
index a468cd5..e887aa2 100644
--- a/devapidocs/org/apache/hadoop/hbase/NoTagsKeyValue.html
+++ b/devapidocs/org/apache/hadoop/hbase/NoTagsKeyValue.html
@@ -114,7 +114,7 @@ var activeTableTab = "activeTableTab";
 
 
 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, SettableSequenceId, SettableTimestamp
+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
 
 
 
@@ -232,7 +232,7 @@ extends KeyValue
-checkParameters,
 clone, 
create,
 create,
 createKeyOnly,
 equals,
 getBuffer,
 getDelimiter,
 getDelimiterInReverse,
 getFamilyArray, getFamilyLength,
 getFamilyLength,
 getFamilyOffset,
 getKey, 
getKeyDataStructureSize,
 getKeyLength,
 getKeyOffset,
 getKeyString,
 getKeyValueDataStructureSize,
 getKeyValueDataStructureSize,
 getKeyValueDataStructureSize,
 getLength,
 getOffset,
 getQualifierArray,
 getQualifierLength,
 getQualifierOffset,
 getRowArray,
 getRowLength,
 get
 RowOffset, getSequenceId,
 getTags, 
getTagsArray,
 getTagsOffset,
 getTimestamp,
 getTimestamp,
 getTimestampOffset,
 getTypeByte,
 getValueArray,
 getValueLength,
 getValueOffset, hashCode,
 heapSize,
 humanReadableTimestamp,
 isLatestTimestamp,
 keyToString,
 keyToString,
 oswrite,
 setSequenceId,
 setTimestamp,
 <
 a 
href="../../../../org/apache/hadoop/hbase/KeyValue.html#setTimestamp-long-">setTimestamp,
 shallowCopy,
 toString,
 toStringMap,
 updateLatestStamp,
 write,
 write,
 writeByteArray
+checkParameters,
 clone, 
create,
 create,
 createKeyOnly,
 equals,
 getBuffer,
 getDelimiter,
 getDelimiterInReverse,
 getFamilyArray, getFamilyLength,
 getFamilyLength,
 getFamilyOffset,
 getKey, 
getKeyDataStructureSize,
 getKeyLength,
 getKeyOffset,
 getKeyString,
 getKeyValueDataStructureSize,
 getKeyValueDataStructureSize,
 getKeyValueDataStructureSize,
 getLength,
 getOffset,
 getQualifierArray,
 getQualifierLength,
 getQualifierOffset,
 getRowArray,
 getRowLength,
 get
 RowOffset, getSequenceId,
 getTags, 
getTagsArray,
 getTagsOffset,
 getTimestamp,
 getTimestamp,
 getTimestampOffset,
 getTypeByte,
 getValueArray,
 getValueLength,
 getValueOffset, hashCode,
 heapSize,
 humanReadableTimestamp,
 isLatestTimestamp,
 keyToString,
 keyToString,
 oswrite,
 setSequenceId,
 setTimestamp,
 setTimestamp,
 shallowCopy,
 toString,
 toStringMap,
 updateLatestStamp,
 write,
 write,
 writeByteArray
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/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
index d2c137e..d12954e 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.EmptyByteBufferCell.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.EmptyByteBufferCell.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};
+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";
@@ -114,7 +114,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Implemented Interfaces:
-Cell, SettableSequenceId
+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:
@@ -126,9 +126,9 @@ var activeTableTab = "activeTableTab";
 
 
 
-private abstract static class PrivateCellUtil.EmptyByteBufferCell
+private abstract static class PrivateCellUtil.EmptyByteBufferCell
 extends ByteBufferCell
-implements SettableSequenceId
+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
 
@@ -137,6 +137,28 @@ implements 
 
 
+
+
+
+
+
+Field Sum

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
index d21d294..a6d1fc5 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
@@ -559,29 +559,37 @@ service.
 TableDescriptors.get(TableName tableName) 
 
 
+BufferedMutator
+SharedConnection.getBufferedMutator(TableName tableName) 
+
+
 static RegionInfo
 MetaTableAccessor.getClosestRegionInfo(Connection connection,
 TableName tableName,
 byte[] row) 
 
-
+
 long
 ClusterStatus.getLastMajorCompactionTsForTable(TableName table) 
 
-
+
 static int
 MetaTableAccessor.getRegionCount(org.apache.hadoop.conf.Configuration c,
   TableName tableName)
 Count regions in hbase:meta for passed 
table.
 
 
-
+
 static int
 MetaTableAccessor.getRegionCount(Connection connection,
   TableName tableName)
 Count regions in hbase:meta for passed 
table.
 
 
+
+RegionLocator
+SharedConnection.getRegionLocator(TableName tableName) 
+
 
 static Scan
 MetaTableAccessor.getScanForTableName(Connection connection,
@@ -590,13 +598,18 @@ service.
 
 
 
+TableBuilder
+SharedConnection.getTableBuilder(TableName tableName,
+   http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ExecutorService pool) 
+
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 MetaTableAccessor.getTableRegions(Connection connection,
TableName tableName)
 Gets all of the regions of the specified table.
 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 MetaTableAccessor.getTableRegions(Connection connection,
TableName tableName,
@@ -604,14 +617,14 @@ service.
 Gets all of the regions of the specified table.
 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List>
 MetaTableAccessor.getTableRegionsAndLocations(Connection connection,
TableName tableName)
 Do not use this method to get meta table regions, use 
methods in MetaTableLocator instead.
 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List>
 MetaTableAccessor.getTableRegionsAndLocations(Connection connection,
TableName tableName,
@@ -619,42 +632,42 @@ service.
 Do not use this method to get meta table regions, use 
methods in MetaTableLocator instead.
 
 
-
+
 static byte[]
 MetaTableAccessor.getTableStartRowForMeta(TableName tableName,
MetaTableAccessor.QueryType type) 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureOptional>
 AsyncMetaTableAccessor.getTableState(AsyncTable metaTable,
  TableName tableName) 
 
-
+
 static TableState
 MetaTableAccessor.getTableState(Connection conn,
  TableName tableName)
 Fetch table state for given table from META table
 
 
-
+
 static byte[]
 MetaTableAccessor.getTableStopRowForMeta(TableName tableName,
   MetaTableAccessor.QueryType type) 
 
-
+
 (package private) static boolean
 MetaTableAccessor.isInsideTable(RegionInfo current,
  TableName tableName) 
 
-
+
 static boolean
 TableName.isMetaTableName(TableName tn) 
 
-
+
 TableDescriptor
 TableDescriptors.remove(TableName tablename) 
 
-
+
 static void
 MetaTableAccessor.scanMeta(Connection connection,
 MetaTableAccessor.Visitor visitor,
@@ -665,7 +678,7 @@ service.
  given row.
 
 
-
+
 static void
 MetaTableAccessor.scanMeta(Connection connection,
 TableName table,
@@ -673,25 +686,25 @@ service.
 int maxRows,
 MetaTableAccessor.Visitor visitor) 
 
-
+
 static void
 MetaTableAccessor.scanMetaForTableRegions(Connection connection,
MetaTableAccessor.Visitor visitor,
TableName tableName) 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/allclasses-frame.html
--
diff --git a/apidocs/allclasses-frame.html b/apidocs/allclasses-frame.html
index 7a2c9d6..4be44d7 100644
--- a/apidocs/allclasses-frame.html
+++ b/apidocs/allclasses-frame.html
@@ -318,7 +318,6 @@
 ServerNotRunningYetException
 ServerTooBusyException
 ServiceCaller
-ShortCircuitMasterConnection
 SimpleByteRange
 SimpleMutableByteRange
 SimplePositionedByteRange

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/allclasses-noframe.html
--
diff --git a/apidocs/allclasses-noframe.html b/apidocs/allclasses-noframe.html
index 05728d4..dd02c7c 100644
--- a/apidocs/allclasses-noframe.html
+++ b/apidocs/allclasses-noframe.html
@@ -318,7 +318,6 @@
 ServerNotRunningYetException
 ServerTooBusyException
 ServiceCaller
-ShortCircuitMasterConnection
 SimpleByteRange
 SimpleMutableByteRange
 SimplePositionedByteRange

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/constant-values.html
--
diff --git a/apidocs/constant-values.html b/apidocs/constant-values.html
index e40e802..a9ef77a 100644
--- a/apidocs/constant-values.html
+++ b/apidocs/constant-values.html
@@ -2833,104 +2833,97 @@
 false
 
 
-
-
-public static final boolean
-DEFAULT_CACHE_DATA_IN_L1
-false
-
-
 
 
 public static final boolean
 DEFAULT_CACHE_DATA_ON_WRITE
 false
 
-
+
 
 
 public static final boolean
 DEFAULT_CACHE_INDEX_ON_WRITE
 false
 
-
+
 
 
 public static final boolean
 DEFAULT_COMPRESS_TAGS
 true
 
-
+
 
 
 public static final short
 DEFAULT_DFS_REPLICATION
 0
 
-
+
 
 
 public static final boolean
 DEFAULT_EVICT_BLOCKS_ON_CLOSE
 false
 
-
+
 
 
 public static final boolean
 DEFAULT_IN_MEMORY
 false
 
-
+
 
 
 public static final int
 DEFAULT_MAX_VERSIONS
 1
 
-
+
 
 
 public static final int
 DEFAULT_MIN_VERSIONS
 0
 
-
+
 
 
 public static final long
 DEFAULT_MOB_THRESHOLD
 102400L
 
-
+
 
 
 public static final boolean
 DEFAULT_NEW_VERSION_BEHAVIOR
 false
 
-
+
 
 
 public static final boolean
 DEFAULT_PREFETCH_BLOCKS_ON_OPEN
 false
 
-
+
 
 
 public static final int
 DEFAULT_REPLICATION_SCOPE
 0
 
-
+
 
 
 public static final int
 DEFAULT_TTL
 2147483647
 
-
+
 
 
 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://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/deprecated-list.html
--
diff --git a/apidocs/deprecated-list.html b/apidocs/deprecated-list.html
index 363d530..41e2a00 100644
--- a/apidocs/deprecated-list.html
+++ b/apidocs/deprecated-list.html
@@ -981,525 +981,538 @@
 
 
 
-org.apache.hadoop.hbase.CellUtil.getRowByte(Cell,
 int)
+org.apache.hadoop.hbase.ClusterStatus.getRequestsCount()
+As of release 2.0.0, this 
will be removed in HBase 3.0.0
+ Use ClusterStatus.getRequestCount()
 instead.
+
 
 
+org.apache.hadoop.hbase.CellUtil.getRowByte(Cell,
 int)
+
+
 org.apache.hadoop.hbase.client.Table.getRpcTimeout()
 use Table.getReadRpcTimeout(TimeUnit)
 or
  Table.getWriteRpcTimeout(TimeUnit)
 instead
 
 
-
+
 org.apache.hadoop.hbase.rest.client.RemoteHTable.getRpcTimeout()
 
-
+
 org.apache.hadoop.hbase.client.Scan.getScanMetrics()
 Use ResultScanner.getScanMetrics()
 instead. And notice that, please do not
  use this method and ResultScanner.getScanMetrics()
 together, the metrics
  will be messed up.
 
 
-
+
 org.apache.hadoop.hbase.ServerName.getServerName(String,
 long)
 Since 2.0. Use ServerName.valueOf(String,
 long) instead.
 
 
-
+
 org.apache.hadoop.hbase.ServerName.getServerNameLessStartCode(String)
 Since 2.0. Use ServerName.getAddress()
 
 
-
+
 org.apache.hadoop.hbase.ServerName.getServerStartcodeFromServerName(String)
 Since 2.0. Use instance of 
ServerName to pull out start code.
 
 
-
+
 org.apache.hadoop.hbase.HRegionInfo.getShortNameToLog(HRegionInfo...)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
  Use RegionInfo.getShortNameToLog(RegionInfo...).
 
 
-
+
 org.apache.hadoop.hbase.HRegionInfo.getShortNameToLog(List)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
  Use RegionInfo.getShortNameToLog(List))}.
 
 
-
+
 org.apache.hadoop.hbase.util.Bytes.getSize()
 use Bytes.getLength()
 instead
 
 
-
+
 org.apache.hadoop.hbase.io.ImmutableBytesWritable.getSize()
 use ImmutableBytesWritable.getLength()
 instead
 
 
-
+
 org.apache.hadoop.hbase.HRegionInfo.getStartKey(byte[])
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
  Use RegionInfo.getStartKey(byte[]).
 
 
-
+
 org.apache.hadoop.hbase.HRegionInfo.getStartKeyForDisplay(HRegionInfo,
 Configuration)
 As of re

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/src-html/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat2.html
--
diff --git 
a/apidocs/src-html/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat2.html 
b/apidocs/src-html/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat2.html
index 5c004ce..63ead06 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat2.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/mapreduce/HFileOutputFormat2.html
@@ -342,584 +342,583 @@
 334}
 335
 336// we now have the proper WAL 
writer. full steam ahead
-337// TODO : Currently in 
SettableTimeStamp but this will also move to ExtendedCell
-338
PrivateCellUtil.updateLatestStamp(cell, this.now);
-339wl.writer.append(kv);
-340wl.written += length;
-341
-342// Copy the row so we know when a 
row transition.
-343this.previousRow = rowKey;
-344  }
-345
-346  private void 
rollWriters(WriterLength writerLength) throws IOException {
-347if (writerLength != null) {
-348  closeWriter(writerLength);
-349} else {
-350  for (WriterLength wl : 
this.writers.values()) {
-351closeWriter(wl);
-352  }
-353}
-354this.rollRequested = false;
-355  }
-356
-357  private void 
closeWriter(WriterLength wl) throws IOException {
-358if (wl.writer != null) {
-359  LOG.info(
-360  "Writer=" + 
wl.writer.getPath() + ((wl.written == 0)? "": ", wrote=" + wl.written));
-361  close(wl.writer);
-362}
-363wl.writer = null;
-364wl.written = 0;
-365  }
-366
-367  /*
-368   * Create a new StoreFile.Writer.
-369   * @param family
-370   * @return A WriterLength, 
containing a new StoreFile.Writer.
-371   * @throws IOException
-372   */
-373  
@edu.umd.cs.findbugs.annotations.SuppressWarnings(value="BX_UNBOXING_IMMEDIATELY_REBOXED",
-374  justification="Not 
important")
-375  private WriterLength 
getNewWriter(byte[] tableName, byte[] family, Configuration
-376  conf, InetSocketAddress[] 
favoredNodes) throws IOException {
-377byte[] tableAndFamily = 
getTableNameSuffixedWithFamily(tableName, family);
-378Path familydir = new 
Path(outputDir, Bytes.toString(family));
-379if (writeMultipleTables) {
-380  familydir = new 
Path(outputDir,
-381  new 
Path(Bytes.toString(tableName), Bytes.toString(family)));
-382}
-383WriterLength wl = new 
WriterLength();
-384Algorithm compression = 
compressionMap.get(tableAndFamily);
-385compression = compression == null 
? defaultCompression : compression;
-386BloomType bloomType = 
bloomTypeMap.get(tableAndFamily);
-387bloomType = bloomType == null ? 
BloomType.NONE : bloomType;
-388Integer blockSize = 
blockSizeMap.get(tableAndFamily);
-389blockSize = blockSize == null ? 
HConstants.DEFAULT_BLOCKSIZE : blockSize;
-390DataBlockEncoding encoding = 
overriddenEncoding;
-391encoding = encoding == null ? 
datablockEncodingMap.get(tableAndFamily) : encoding;
-392encoding = encoding == null ? 
DataBlockEncoding.NONE : encoding;
-393Configuration tempConf = new 
Configuration(conf);
-394
tempConf.setFloat(HConstants.HFILE_BLOCK_CACHE_SIZE_KEY, 0.0f);
-395HFileContextBuilder 
contextBuilder = new HFileContextBuilder()
-396
.withCompression(compression)
-397
.withChecksumType(HStore.getChecksumType(conf))
-398
.withBytesPerCheckSum(HStore.getBytesPerChecksum(conf))
-399
.withBlockSize(blockSize);
-400
-401if (HFile.getFormatVersion(conf) 
>= HFile.MIN_FORMAT_VERSION_WITH_TAGS) {
-402  
contextBuilder.withIncludesTags(true);
-403}
-404
-405
contextBuilder.withDataBlockEncoding(encoding);
-406HFileContext hFileContext = 
contextBuilder.build();
-407if (null == favoredNodes) {
-408  wl.writer =
-409  new 
StoreFileWriter.Builder(conf, new CacheConfig(tempConf), fs)
-410  
.withOutputDir(familydir).withBloomType(bloomType)
-411  
.withComparator(CellComparator.getInstance()).withFileContext(hFileContext).build();
-412} else {
-413  wl.writer =
-414  new 
StoreFileWriter.Builder(conf, new CacheConfig(tempConf), new HFileSystem(fs))
-415  
.withOutputDir(familydir).withBloomType(bloomType)
-416  
.withComparator(CellComparator.getInstance()).withFileContext(hFileContext)
-417  
.withFavoredNodes(favoredNodes).build();
-418}
-419
-420this.writers.put(tableAndFamily, 
wl);
-421  

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/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 b7bbbc8..a6ac9dc 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, NoTagByteBufferChunkCell, NoTagsByteBufferKeyValue, NoTagsKeyValue, PrivateCellUtil.TagRewriteByteBufferCell, PrivateCellUtil.TagRewriteCell, PrivateCellUtil.ValueAndTagRewriteByteBufferCell, 
PrivateCellUtil.ValueAndTagRewriteCell, SizeCachedKeyValue, SizeCachedNoTagsKeyValue
+BufferedDataBlockEncoder.OffheapDecodedCell,
 BufferedDataBlockEncoder.OnheapDecodedCell,
 ByteBufferChunkCell, 
ByteBufferKeyValue, IndividualBytesFieldCell, KeyValue, KeyValue.KeyOnlyKeyValue, MapReduceCell, NoTagByteBufferChunkCell, NoTagsByteBufferKeyValue, NoTagsKeyValue, PrivateCellUtil.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
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/ServiceNotRunningException.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/ServiceNotRunningException.html 
b/devapidocs/org/apache/hadoop/hbase/ServiceNotRunningException.html
index c0390a3..1921bf6 100644
--- a/devapidocs/org/apache/hadoop/hbase/ServiceNotRunningException.html
+++ b/devapidocs/org/apache/hadoop/hbase/ServiceNotRunningException.html
@@ -44,7 +44,7 @@
 
 
 Prev Class
-Next Class
+Next Class
 
 
 Frames
@@ -267,7 +267,7 @@ extends 
 
 Prev Class
-Next Class
+Next Class
 
 
 Frames

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/SettableSequenceId.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/SettableSequenceId.html 
b/devapidocs/org/apache/hadoop/hbase/SettableSequenceId.html
deleted file mode 100644
index 64513b9..000
--- a/devapidocs/org/apache/hadoop/hbase/SettableSequenceId.html
+++ /dev/null
@@ -1,249 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-SettableSequenceId (Apache HBase 3.0.0-SNAPSHOT API)
-
-
-
-
-
-var methods = {"i0":38};
-var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"],32:["t6","Deprecated 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
-Interface 
SettableSequenceId
-
-
-
-
-
-
-All Known Subinterfaces:
-ExtendedCell
-
-
-All Known Implementing Classes:
-BufferedDataBlockEncoder.OffheapDecodedCell,
 BufferedDataBlockEncoder.OnheapDecodedCell,
 ByteBufferChunkCell, 
ByteBufferKeyValue, IndividualBytesFieldCell, KeyValue, KeyValue.KeyOnlyKeyValue, MapReduceCell, NoTagByteBufferChunkCell, NoTagsByteBufferKeyValue, NoTagsKeyValue, PrivateCellUtil.EmptyByteBufferCell, PrivateCellUtil.EmptyCell, PrivateCellUtil.FirstOnRowByteBufferCell, PrivateCellUtil.FirstOnRowCell, PrivateCellUtil.FirstOnRowColByteBufferCell, PrivateCellUtil.FirstOnRowColCell, PrivateCellUtil.FirstO

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
--
diff --git 
a/apidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
 
b/apidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
index 82ffd2f..16fd892 100644
--- 
a/apidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
+++ 
b/apidocs/src-html/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
@@ -106,1295 +106,1259 @@
 098  @InterfaceAudience.Private
 099  public static final String 
EVICT_BLOCKS_ON_CLOSE = "EVICT_BLOCKS_ON_CLOSE";
 100  private static final Bytes 
EVICT_BLOCKS_ON_CLOSE_BYTES = new 
Bytes(Bytes.toBytes(EVICT_BLOCKS_ON_CLOSE));
-101  /**
-102   * Key for cache data into L1 if cache 
is set up with more than one tier. To
-103   * set in the shell, do something like 
this:  hbase(main):003:0> create 't',
-104   *{NAME => 't', 
CONFIGURATION => {CACHE_DATA_IN_L1 => 'true'}}
-105   */
-106  @InterfaceAudience.Private
-107  public static final String 
CACHE_DATA_IN_L1 = "CACHE_DATA_IN_L1";
-108  private static final Bytes 
CACHE_DATA_IN_L1_BYTES = new Bytes(Bytes.toBytes(CACHE_DATA_IN_L1));
-109
-110  /**
-111   * Key for the PREFETCH_BLOCKS_ON_OPEN 
attribute. If set, all INDEX, BLOOM,
-112   * and DATA blocks of HFiles belonging 
to this family will be loaded into the
-113   * cache as soon as the file is opened. 
These loads will not count as cache
-114   * misses.
-115   */
-116  @InterfaceAudience.Private
-117  public static final String 
PREFETCH_BLOCKS_ON_OPEN = "PREFETCH_BLOCKS_ON_OPEN";
-118  private static final Bytes 
PREFETCH_BLOCKS_ON_OPEN_BYTES = new 
Bytes(Bytes.toBytes(PREFETCH_BLOCKS_ON_OPEN));
-119
-120  /**
-121   * Size of storefile/hfile 'blocks'. 
Default is {@link #DEFAULT_BLOCKSIZE}.
-122   * Use smaller block sizes for faster 
random-access at expense of larger
-123   * indices (more memory consumption). 
Note that this is a soft limit and that
-124   * blocks have overhead (metadata, 
CRCs) so blocks will tend to be the size
-125   * specified here and then some; i.e. 
don't expect that setting BLOCKSIZE=4k
-126   * means hbase data will align with an 
SSDs 4k page accesses (TODO).
-127   */
-128  @InterfaceAudience.Private
-129  public static final String BLOCKSIZE = 
"BLOCKSIZE";
-130  private static final Bytes 
BLOCKSIZE_BYTES = new Bytes(Bytes.toBytes(BLOCKSIZE));
-131
-132  @InterfaceAudience.Private
-133  public static final String TTL = 
"TTL";
-134  private static final Bytes TTL_BYTES = 
new Bytes(Bytes.toBytes(TTL));
-135  @InterfaceAudience.Private
-136  public static final String BLOOMFILTER 
= "BLOOMFILTER";
-137  private static final Bytes 
BLOOMFILTER_BYTES = new Bytes(Bytes.toBytes(BLOOMFILTER));
-138  @InterfaceAudience.Private
-139  public static final String 
REPLICATION_SCOPE = "REPLICATION_SCOPE";
-140  private static final Bytes 
REPLICATION_SCOPE_BYTES = new Bytes(Bytes.toBytes(REPLICATION_SCOPE));
-141  @InterfaceAudience.Private
-142  public static final String MAX_VERSIONS 
= HConstants.VERSIONS;
-143  private static final Bytes 
MAX_VERSIONS_BYTES = new Bytes(Bytes.toBytes(MAX_VERSIONS));
+101
+102  /**
+103   * Key for the PREFETCH_BLOCKS_ON_OPEN 
attribute. If set, all INDEX, BLOOM,
+104   * and DATA blocks of HFiles belonging 
to this family will be loaded into the
+105   * cache as soon as the file is opened. 
These loads will not count as cache
+106   * misses.
+107   */
+108  @InterfaceAudience.Private
+109  public static final String 
PREFETCH_BLOCKS_ON_OPEN = "PREFETCH_BLOCKS_ON_OPEN";
+110  private static final Bytes 
PREFETCH_BLOCKS_ON_OPEN_BYTES = new 
Bytes(Bytes.toBytes(PREFETCH_BLOCKS_ON_OPEN));
+111
+112  /**
+113   * Size of storefile/hfile 'blocks'. 
Default is {@link #DEFAULT_BLOCKSIZE}.
+114   * Use smaller block sizes for faster 
random-access at expense of larger
+115   * indices (more memory consumption). 
Note that this is a soft limit and that
+116   * blocks have overhead (metadata, 
CRCs) so blocks will tend to be the size
+117   * specified here and then some; i.e. 
don't expect that setting BLOCKSIZE=4k
+118   * means hbase data will align with an 
SSDs 4k page accesses (TODO).
+119   */
+120  @InterfaceAudience.Private
+121  public static final String BLOCKSIZE = 
"BLOCKSIZE";
+122  private static final Bytes 
BLOCKSIZE_BYTES = new Bytes(Bytes.toBytes(BLOCKSIZE));
+123
+124  @InterfaceAudience.Private
+125  public static final String TTL = 
"TTL";
+126  private static final Bytes TTL_BYTES = 
new Bytes(Bytes.toBytes(TTL));
+127  @InterfaceAudience.Private
+128  public static final String BLOOMFILTER 
= "BLOOMFILTER";
+129  private static final Bytes 
BLOOMFILTER_BYTES = new Bytes(Bytes.toBytes(BLOOMFILTER));
+130  @InterfaceAudience.Private
+131  public static final Str

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html 
b/apidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
index b3153ef..4112629 100644
--- a/apidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
+++ b/apidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":9,"i2":10,"i3":9,"i4":10,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"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,"i41":10,"i42":10,"i43":10,"i44":10,"i45":9};
+var methods = 
{"i0":10,"i1":9,"i2":10,"i3":9,"i4":10,"i5":9,"i6":9,"i7":9,"i8":9,"i9":9,"i10":9,"i11":9,"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,"i41":10,"i42":10,"i43":10,"i44":9};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -161,107 +161,101 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 static boolean
-DEFAULT_CACHE_DATA_IN_L1
-Default setting for whether to cache data blocks in L1 
tier.
-
-
-
-static boolean
 DEFAULT_CACHE_DATA_ON_WRITE
 Default setting for whether to cache data blocks on write 
if block caching
  is enabled.
 
 
-
+
 static boolean
 DEFAULT_CACHE_INDEX_ON_WRITE
 Default setting for whether to cache index blocks on write 
if block caching
  is enabled.
 
 
-
+
 static boolean
 DEFAULT_COMPRESS_TAGS
 Default compress tags along with any type of 
DataBlockEncoding.
 
 
-
+
 static 
org.apache.hadoop.hbase.io.compress.Compression.Algorithm
 DEFAULT_COMPRESSION
 Default compression type.
 
 
-
+
 static DataBlockEncoding
 DEFAULT_DATA_BLOCK_ENCODING
 Default data block encoding algorithm.
 
 
-
+
 static short
 DEFAULT_DFS_REPLICATION 
 
-
+
 static boolean
 DEFAULT_EVICT_BLOCKS_ON_CLOSE
 Default setting for whether to evict cached blocks from the 
blockcache on
  close.
 
 
-
+
 static boolean
 DEFAULT_IN_MEMORY
 Default setting for whether to try and serve this column 
family from memory
  or not.
 
 
-
+
 static KeepDeletedCells
 DEFAULT_KEEP_DELETED
 Default setting for preventing deleted from being collected 
immediately.
 
 
-
+
 static int
 DEFAULT_MAX_VERSIONS
 Default number of versions of a record to keep.
 
 
-
+
 static int
 DEFAULT_MIN_VERSIONS
 Default is not to keep a minimum of versions.
 
 
-
+
 static MobCompactPartitionPolicy
 DEFAULT_MOB_COMPACT_PARTITION_POLICY 
 
-
+
 static long
 DEFAULT_MOB_THRESHOLD 
 
-
+
 static boolean
 DEFAULT_NEW_VERSION_BEHAVIOR 
 
-
+
 static boolean
 DEFAULT_PREFETCH_BLOCKS_ON_OPEN 
 
-
+
 static int
 DEFAULT_REPLICATION_SCOPE
 Default scope.
 
 
-
+
 static int
 DEFAULT_TTL
 Default time to live of cell contents.
 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 NEW_VERSION_BEHAVIOR 
 
@@ -350,121 +344,117 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 ColumnFamilyDescriptorBuilder
-setCacheDataInL1(boolean value) 
-
-
-ColumnFamilyDescriptorBuilder
 setCacheDataOnWrite(boolean value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 setCacheIndexesOnWrite(boolean value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 setCompactionCompressionType(org.apache.hadoop.hbase.io.compress.Compression.Algorithm value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 setCompressionType(org.apache.hadoop.hbase.io.compress.Compression.Algorithm value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 setCompressTags(boolean value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 setConfiguration(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key,
 http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 setDataBlockEncoding(DataBlockEncoding value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 setDFSReplication(short value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 setEncryptionKey(byte[] value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 setEncryptionType(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang"

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

2017-12-09 Thread git-site-role
Published site at .


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

Branch: refs/heads/asf-site
Commit: e23b49ba928eca9f9e1ca3412e87ba36776a4853
Parents: 116e12f
Author: jenkins 
Authored: Sat Dec 9 15:18:29 2017 +
Committer: jenkins 
Committed: Sat Dec 9 15:18:29 2017 +

--
 acid-semantics.html | 4 +-
 apache_hbase_reference_guide.pdf| 36992 ---
 apidocs/allclasses-frame.html   | 1 -
 apidocs/allclasses-noframe.html | 1 -
 apidocs/constant-values.html|33 +-
 apidocs/deprecated-list.html|   201 +-
 apidocs/index-all.html  |   192 +-
 apidocs/org/apache/hadoop/hbase/CellUtil.html   |10 +-
 .../org/apache/hadoop/hbase/ClusterStatus.html  |73 +-
 .../apache/hadoop/hbase/HColumnDescriptor.html  |   212 +-
 .../hbase/class-use/HColumnDescriptor.html  | 8 +-
 .../hbase/client/ColumnFamilyDescriptor.html|54 +-
 .../client/ColumnFamilyDescriptorBuilder.html   |   259 +-
 .../apache/hadoop/hbase/client/RegionInfo.html  |30 +-
 .../hadoop/hbase/client/ServiceCaller.html  | 4 +-
 .../client/ShortCircuitMasterConnection.html|  1775 -
 .../hbase/client/SnapshotDescription.html   | 4 +-
 .../hbase/client/TableDescriptorBuilder.html| 2 +-
 .../ColumnFamilyDescriptorBuilder.html  |56 +-
 .../class-use/ShortCircuitMasterConnection.html |   125 -
 .../hadoop/hbase/client/package-frame.html  | 1 -
 .../hadoop/hbase/client/package-summary.html| 9 +-
 .../hadoop/hbase/client/package-tree.html   | 1 -
 .../hbase/mapreduce/HFileOutputFormat2.html | 6 +-
 .../hbase/quotas/SpaceViolationPolicy.html  | 4 +-
 .../hbase/quotas/ThrottlingException.Type.html  | 4 +-
 apidocs/overview-tree.html  | 1 -
 .../org/apache/hadoop/hbase/CellUtil.html   |42 +-
 .../org/apache/hadoop/hbase/ClusterStatus.html  |   586 +-
 .../apache/hadoop/hbase/HColumnDescriptor.html  |   570 +-
 .../hbase/client/ColumnFamilyDescriptor.html|80 +-
 .../client/ColumnFamilyDescriptorBuilder.html   |  2428 +-
 .../apache/hadoop/hbase/client/RegionInfo.html  |   889 +-
 .../client/ShortCircuitMasterConnection.html|   713 -
 .../hbase/client/TableDescriptorBuilder.html|22 +-
 .../hbase/mapreduce/HFileOutputFormat2.html |  1153 +-
 book.html   |29 +-
 bulk-loads.html | 4 +-
 checkstyle-aggregate.html   | 40332 -
 checkstyle.rss  |   198 +-
 coc.html| 4 +-
 cygwin.html | 4 +-
 dependencies.html   | 4 +-
 dependency-convergence.html |   117 +-
 dependency-info.html| 4 +-
 dependency-management.html  | 4 +-
 devapidocs/allclasses-frame.html| 7 +-
 devapidocs/allclasses-noframe.html  | 7 +-
 devapidocs/constant-values.html |   124 +-
 devapidocs/deprecated-list.html |   313 +-
 devapidocs/index-all.html   |   673 +-
 .../org/apache/hadoop/hbase/Abortable.html  | 2 +-
 .../apache/hadoop/hbase/ByteBufferKeyValue.html |27 +-
 .../org/apache/hadoop/hbase/CellUtil.html   |10 +-
 .../hadoop/hbase/ClusterStatus.Builder.html |46 +-
 .../hadoop/hbase/ClusterStatus.Option.html  |22 +-
 .../org/apache/hadoop/hbase/ClusterStatus.html  |79 +-
 .../hadoop/hbase/CoprocessorEnvironment.html| 7 +-
 .../org/apache/hadoop/hbase/ExtendedCell.html   |   126 +-
 .../apache/hadoop/hbase/HColumnDescriptor.html  |   212 +-
 .../hadoop/hbase/IndividualBytesFieldCell.html  |   290 +-
 .../hadoop/hbase/KeyValue.KeyOnlyKeyValue.html  | 4 +-
 .../org/apache/hadoop/hbase/KeyValue.html   |27 +-
 .../hadoop/hbase/NoTagsByteBufferKeyValue.html  | 4 +-
 .../org/apache/hadoop/hbase/NoTagsKeyValue.html | 4 +-
 .../PrivateCellUtil.EmptyByteBufferCell.html|   159 +-
 .../hadoop/hbase/PrivateCellUtil.EmptyCell.html |   139 +-
 ...rivateCellUtil.FirstOnRowByteBufferCell.html |89 +-
 .../hbase/PrivateCellUtil.FirstOnRowCell.html   |89 +-
 ...ateCellUtil.FirstOnRowColByteBufferCell.html |97 +-
 .../PrivateCellUtil.FirstOnRowColCell.html  |   105 +-
 ...eCellUtil.FirstOnRowColTSByteBufferCell.html |79 +-
 .../PrivateCellUtil.FirstOnRowColTSCell.html|79 +-
 ...vateCellUt

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionInfo.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionInfo.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionInfo.html
index 6b003aa..4642766 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionInfo.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/RegionInfo.html
@@ -1508,19 +1508,17 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 default void
 RegionObserver.postWALRestore(ObserverContext ctx,
   RegionInfo info,
-  WALKey logKey,
+  WALKey logKey,
   WALEdit logEdit)
-Deprecated. 
-Since hbase-2.0.0. No 
replacement. To be removed in hbase-3.0.0 and replaced
- with something that doesn't expose IntefaceAudience.Private 
classes.
-
+Called after a WALEdit
+ replayed for this region.
 
 
 
 default void
 WALObserver.postWALWrite(ObserverContext ctx,
 RegionInfo info,
-WALKey logKey,
+WALKey logKey,
 WALEdit logEdit)
 Deprecated. 
 Since hbase-2.0.0. To be 
replaced with an alternative that does not expose
@@ -1621,19 +1619,17 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 default void
 RegionObserver.preWALRestore(ObserverContext ctx,
  RegionInfo info,
- WALKey logKey,
+ WALKey logKey,
  WALEdit logEdit)
-Deprecated. 
-Since hbase-2.0.0. No 
replacement. To be removed in hbase-3.0.0 and replaced
- with something that doesn't expose IntefaceAudience.Private 
classes.
-
+Called before a WALEdit
+ replayed for this region.
 
 
 
 default void
 WALObserver.preWALWrite(ObserverContext ctx,
RegionInfo info,
-   WALKey logKey,
+   WALKey logKey,
WALEdit logEdit)
 Deprecated. 
 Since hbase-2.0.0. To be 
replaced with an alternative that does not expose
@@ -5082,7 +5078,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 void
 RegionCoprocessorHost.postWALRestore(RegionInfo info,
-  WALKey logKey,
+  WALKey logKey,
   WALEdit logEdit)
 Deprecated. 
 Since hbase-2.0.0. No 
replacement. To be removed in hbase-3.0.0 and replaced
@@ -5098,7 +5094,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 boolean
 RegionCoprocessorHost.preWALRestore(RegionInfo info,
- WALKey logKey,
+ WALKey logKey,
  WALEdit logEdit)
 Deprecated. 
 Since hbase-2.0.0. No 
replacement. To be removed in hbase-3.0.0 and replaced
@@ -5366,22 +5362,22 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 long
-FSHLog.append(RegionInfo hri,
-  WALKey key,
+FSHLog.append(RegionInfo hri,
+  WALKeyImpl key,
   WALEdit edits,
   boolean inMemstore) 
 
 
 long
-AsyncFSWAL.append(RegionInfo hri,
-  WALKey key,
+AsyncFSWAL.append(RegionInfo hri,
+  WALKeyImpl key,
   WALEdit edits,
   boolean inMemstore) 
 
 
 abstract long
-AbstractFSWAL.append(RegionInfo info,
-  WALKey key,
+AbstractFSWAL.append(RegionInfo info,
+  WALKeyImpl key,
   WALEdit edits,
   boolean inMemstore)
 NOTE: This append, at a time that is usually after this 
call returns, starts an mvcc
@@ -5389,7 +5385,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-static WALKey
+static WALKeyImpl
 WALUtil.doFullAppendTransaction(WAL wal,
http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapInteger> replicationScope,
RegionInfo hri,
@@ -5403,29 +5399,19 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 void
 WALCoprocessorHost.postWALWrite(RegionInfo info,
-WALKey logKey,
-WALEdit logEdit)
-Deprecated. 
-Since hbase-2.0.0. No 
replacement. To be removed in hbase-3.0.0 and replaced
- with something that doesn't expose IntefaceAudience.Private 
classes.
-
-
+WALKey logKey,
+WALEdit logEdit) 
 
 
 void
 WALCoprocessorHost.preWALWrite(RegionInfo info,
-   WALKey logKey,
-   WALEdit logEdit)
-Deprecated. 
-Since hbase-2.0.0. No 
replacement. To be removed in hbase-3.0.0 and replaced
- with something that doesn't expose IntefaceAudience.Private 
classes.
-
-
+   WALKey logKey,
+   WALEdit logEdit) 
 
 
 protected long
-AbstractF

hbase-site git commit: INFRA-10751 Empty commit

2017-12-09 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site e23b49ba9 -> 25516f0d1


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

Branch: refs/heads/asf-site
Commit: 25516f0d1bd4a8690a439d5c3cf840c08e64799d
Parents: e23b49b
Author: jenkins 
Authored: Sat Dec 9 15:19:23 2017 +
Committer: jenkins 
Committed: Sat Dec 9 15:19:23 2017 +

--

--




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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/book.html
--
diff --git a/book.html b/book.html
index 26813e2..897e454 100644
--- a/book.html
+++ b/book.html
@@ -3605,21 +3605,6 @@ Some configurations would only appear in source code; 
the only way to identify t
 
 
 
-
-
-hbase.bucketcache.combinedcache.enabled
-
-
-Description
-Whether or not the bucketcache is used in league with the LRU on-heap block 
cache. In this mode, indices and blooms are kept in the LRU blockcache and the 
data blocks are kept in the bucketcache.
-
-
-Default
-true
-
-
-
-
 
 
 hbase.bucketcache.size
@@ -10361,7 +10346,7 @@ You may see an error like the following:
 
 
 
-$ 
HADOOP_CLASSPATH=${HBASE_BUILD_HOME}/hbase-server/target/hbase-server-VERSION-SNAPSHOT.jar:`${HBASE_BUILD_HOME}/bin/hbase
 classpath` ${HADOOP_HOME}/bin/hadoop jar 
${HBASE_BUILD_HOME}/hbase-server/target/hbase-server-VERSION-SNAPSHOT.jar 
rowcounter usertable
+$ 
HADOOP_CLASSPATH=${HBASE_BUILD_HOME}/hbase-mapreduce/target/hbase-mapreduce-VERSION-SNAPSHOT.jar:`${HBASE_BUILD_HOME}/bin/hbase
 classpath` ${HADOOP_HOME}/bin/hadoop jar 
${HBASE_BUILD_HOME}/hbase-mapreduce/target/hbase-mapreduce-VERSION-SNAPSHOT.jar 
rowcounter usertable
 
 
 
@@ -10497,7 +10482,7 @@ To learn about the bundled MapReduce jobs, run the 
following command.
 
 
 
-$ 
${HADOOP_HOME}/bin/hadoop jar ${HBASE_HOME}/hbase-server-VERSION.jar
+$ 
${HADOOP_HOME}/bin/hadoop jar ${HBASE_HOME}/hbase-mapreduce-VERSION.jar
 An example program must be given as the first argument.
 Valid program names are:
   copytable: Export a table from local cluster to peer cluster
@@ -10514,7 +10499,7 @@ To run one of the jobs, model your command after the 
following example.
 
 
 
-$ 
${HADOOP_HOME}/bin/hadoop jar ${HBASE_HOME}/hbase-server-VERSION.jar rowcounter 
myTable
+$ 
${HADOOP_HOME}/bin/hadoop jar ${HBASE_HOME}/hbase-mapreduce-VERSION.jar 
rowcounter myTable
 
 
 
@@ -24538,7 +24523,7 @@ For example (substitute VERSION with your HBase 
version):
 
 
 
-HADOOP_CLASSPATH=`hbase classpath` hadoop jar 
$HBASE_HOME/hbase-server-VERSION.jar rowcounter usertable
+HADOOP_CLASSPATH=`hbase classpath` hadoop jar 
$HBASE_HOME/hbase-mapreduce-VERSION.jar rowcounter usertable
 
 
 
@@ -26498,7 +26483,7 @@ row10   c1  c2
 
 
 
- HADOOP_CLASSPATH=`${HBASE_HOME}/bin/hbase classpath` 
${HADOOP_HOME}/bin/hadoop jar ${HBASE_HOME}/hbase-server-VERSION.jar importtsv 
-Dimporttsv.columns=HBASE_ROW_KEY,d:c1,d:c2 
-Dimporttsv.bulk.output=hdfs://storefileoutput datatsv hdfs://inputfile
+ HADOOP_CLASSPATH=`${HBASE_HOME}/bin/hbase classpath` 
${HADOOP_HOME}/bin/hadoop jar ${HBASE_HOME}/hbase-mapreduce-VERSION.jar 
importtsv -Dimporttsv.columns=HBASE_ROW_KEY,d:c1,d:c2 
-Dimporttsv.bulk.output=hdfs://storefileoutput datatsv hdfs://inputfile
 
 
 
@@ -27848,7 +27833,7 @@ replication as long as peers exist.
 
 
 
-$ 
HADOOP_CLASSPATH=`${HBASE_HOME}/bin/hbase classpath` 
"${HADOOP_HOME}/bin/hadoop" jar 
"${HBASE_HOME}/hbase-server-VERSION.jar" verifyrep 
--starttime= --endtime= 
--families=  
+$ 
HADOOP_CLASSPATH=`${HBASE_HOME}/bin/hbase classpath` 
"${HADOOP_HOME}/bin/hadoop" jar 
"${HBASE_HOME}/hbase-mapreduce-VERSION.jar" verifyrep 
--starttime= --endtime= 
--families=  
 
 
 
@@ -37009,7 +36994,7 @@ The server will return cellblocks compressed using this 
same compressor as long
 
 
 Version 3.0.0-SNAPSHOT
-Last updated 2017-12-06 14:29:39 UTC
+Last updated 2017-12-09 14:29:38 UTC
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/bulk-loads.html
--
diff --git a/bulk-loads.html b/bulk-loads.html
index 53f5cb4..ff86075 100644
--- a/bulk-loads.html
+++ b/bulk-loads.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase –  
   Bulk Loads in Apache HBase (TM)
@@ -311,7 +311,7 @@ under the License. -->
 https://www.apache.org/";>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-12-06
+  Last Published: 
2017-12-09
 
 
 



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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html 
b/apidocs/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
deleted file mode 100644
index 057225e..000
--- a/apidocs/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
+++ /dev/null
@@ -1,1775 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-
-
-
-ShortCircuitMasterConnection (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,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":10,"i52":10,"i53":10,"i54":10,"i55":10,"i56":10,"i57":10,"i58":10,"i59":10,"i60":10,"i61":10,"i62":10,"i63":10,"i64":10,"i65":10,"i66":10,"i67":10,"i68":10,"i69":10,"i70":10,"i71":10,"i72":10,"i73":10,"i74":10,"i75":10};
-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.client
-Class 
ShortCircuitMasterConnection
-
-
-
-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.client.ShortCircuitMasterConnection
-
-
-
-
-
-
-
-
-@InterfaceAudience.Public
-public class ShortCircuitMasterConnection
-extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
-A short-circuit connection that can bypass the RPC layer 
(serialization, deserialization,
- networking, etc..) when talking to a local master
-
-
-
-
-
-
-
-
-
-
-
-Constructor Summary
-
-Constructors 
-
-Constructor and Description
-
-
-ShortCircuitMasterConnection(org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.MasterService.BlockingInterface stub) 
-
-
-
-
-
-
-
-
-
-Method Summary
-
-All Methods Instance Methods Concrete Methods 
-
-Modifier and Type
-Method and Description
-
-
-org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse
-abortProcedure(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
-  
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest request) 
-
-
-org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnResponse
-addColumn(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
- 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnRequest request) 
-
-
-org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.AddReplicationPeerResponse
-addReplicationPeer(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
-  
org.apache.hadoop.hbase.shaded.protobuf.generated.ReplicationProtos.AddReplicationPeerRequest request) 
-
-
-org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AssignRegionResponse
-assignRegion(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
-
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AssignRegionRequest request) 
-
-
-org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.BalanceResponse
-balance(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,
-   
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.BalanceRequest request) 
-
-
-org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ClearDeadServersResponse
-clearDeadServers(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController controller,

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/index-all.html
--
diff --git a/devapidocs/index-all.html b/devapidocs/index-all.html
index 4049048..9018f2b 100644
--- a/devapidocs/index-all.html
+++ b/devapidocs/index-all.html
@@ -176,6 +176,8 @@
  
 abort
 - Variable in class org.apache.hadoop.hbase.replication.ReplicationQueuesArguments
  
+abort(String,
 Throwable) - Method in class org.apache.hadoop.hbase.SharedConnection
+ 
 abort(String,
 Throwable) - Method in class org.apache.hadoop.hbase.zookeeper.ZKWatcher
  
 ABORT_ON_ERROR_KEY
 - Static variable in class org.apache.hadoop.hbase.coprocessor.CoprocessorHost
@@ -1335,7 +1337,7 @@
 
 Add a client port to the list.
 
-addClusterId(UUID)
 - Method in class org.apache.hadoop.hbase.wal.WALKey
+addClusterId(UUID)
 - Method in class org.apache.hadoop.hbase.wal.WALKeyImpl
 
 Marks that the cluster with the given clusterId has 
consumed the change
 
@@ -2214,6 +2216,18 @@
  
 addRequiredOptWithArg(String,
 String, String) - Method in class org.apache.hadoop.hbase.util.AbstractHBaseTool
  
+addResource(String)
 - Method in class org.apache.hadoop.hbase.coprocessor.ReadOnlyConfiguration
+ 
+addResource(URL)
 - Method in class org.apache.hadoop.hbase.coprocessor.ReadOnlyConfiguration
+ 
+addResource(Path)
 - Method in class org.apache.hadoop.hbase.coprocessor.ReadOnlyConfiguration
+ 
+addResource(InputStream)
 - Method in class org.apache.hadoop.hbase.coprocessor.ReadOnlyConfiguration
+ 
+addResource(InputStream,
 String) - Method in class org.apache.hadoop.hbase.coprocessor.ReadOnlyConfiguration
+ 
+addResource(Configuration)
 - Method in class org.apache.hadoop.hbase.coprocessor.ReadOnlyConfiguration
+ 
 address 
- Variable in class org.apache.hadoop.hbase.ipc.ConnectionId
  
 address
 - Variable in class org.apache.hadoop.hbase.ipc.SimpleRpcServer
@@ -3023,16 +3037,16 @@
  
 append(W,
 FSWALEntry) - Method in class 
org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL
  
-append(RegionInfo,
 WALKey, WALEdit, boolean) - Method in class 
org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL
+append(RegionInfo,
 WALKeyImpl, WALEdit, boolean) - Method in class 
org.apache.hadoop.hbase.regionserver.wal.AbstractFSWAL
 
 NOTE: This append, at a time that is usually after this 
call returns, starts an mvcc
  transaction by calling 'begin' wherein which we assign this update a 
sequenceid.
 
-append(RegionInfo,
 WALKey, WALEdit, boolean) - Method in class 
org.apache.hadoop.hbase.regionserver.wal.AsyncFSWAL
+append(RegionInfo,
 WALKeyImpl, WALEdit, boolean) - Method in class 
org.apache.hadoop.hbase.regionserver.wal.AsyncFSWAL
  
 append(WAL.Entry)
 - Method in class org.apache.hadoop.hbase.regionserver.wal.AsyncProtobufLogWriter
  
-append(RegionInfo,
 WALKey, WALEdit, boolean) - Method in class 
org.apache.hadoop.hbase.regionserver.wal.FSHLog
+append(RegionInfo,
 WALKeyImpl, WALEdit, boolean) - Method in class 
org.apache.hadoop.hbase.regionserver.wal.FSHLog
  
 append(FSWALEntry)
 - Method in class org.apache.hadoop.hbase.regionserver.wal.FSHLog.RingBufferEventHandler
 
@@ -3057,9 +3071,9 @@
  
 append(TNode,
 TNode) - Static method in class org.apache.hadoop.hbase.util.AvlUtil.AvlIterableList
  
-append(RegionInfo,
 WALKey, WALEdit, boolean) - Method in class 
org.apache.hadoop.hbase.wal.DisabledWALProvider.DisabledWAL
+append(RegionInfo,
 WALKeyImpl, WALEdit, boolean) - Method in class 
org.apache.hadoop.hbase.wal.DisabledWALProvider.DisabledWAL
  
-append(RegionInfo,
 WALKey, WALEdit, boolean) - Method in interface 
org.apache.hadoop.hbase.wal.WAL
+append(RegionInfo,
 WALKeyImpl, WALEdit, boolean) - Method in interface 
org.apache.hadoop.hbase.wal.WAL
 
 Append a set of edits to the WAL.
 
@@ -6590,12 +6604,6 @@
 
 A comma-delimited array of values for use as bucket 
sizes.
 
-BUCKET_CACHE_COMBINED_KEY
 - Static variable in class org.apache.hadoop.hbase.io.hfile.CacheConfig
-
-If the bucket cache is used in league with the lru on-heap 
block cache (meta blocks such
- as indices and blooms are kept in the lru blockcache and the data blocks in 
the
- bucket cache).
-
 BUCKET_CACHE_IOENGINE_KEY
 - Static variable in class org.apache.hadoop.hbase.HConstants
 
 Current ioengine options in include: heap, offheap and 
file:PATH (where PATH is the path
@@ -7752,16 +7760,10 @@
 
 Configuration key to cache data blocks in compressed and/or 
encrypted format.
 
-CACHE_DATA_IN_L1
 - Static variable in class org.apache.hadoop.hbase.client.ColumnFamilyDescriptorBuilder
-
-Key for cache data into L1 if cache is set up with more 
than one tier.
-
 CACHE_DATA_IN_L1
 - Static variable in class org.apache.hadoop.hbase.HColumnDescriptor
 
 Deprecated.
  
-CACHE_DATA_IN_L1_BYTES
 - Static variable in class org.apache.hadoop.hbase.client.ColumnFamilyDescriptorBuilder
- 
 CACHE_DATA_ON_READ_KEY
 - Static variable in class org.apache.hadoop.hbase.io.hfile.CacheConfig
 
 Configuration ke

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/deprecated-list.html
--
diff --git a/devapidocs/deprecated-list.html b/devapidocs/deprecated-list.html
index c8b1b9c..b4eba88 100644
--- a/devapidocs/deprecated-list.html
+++ b/devapidocs/deprecated-list.html
@@ -117,16 +117,6 @@
 
 
 
-org.apache.hadoop.hbase.SettableSequenceId
-as of 2.0 and will be 
removed in 3.0. Use ExtendedCell 
instead
-
-
-
-org.apache.hadoop.hbase.SettableTimestamp
-as of 2.0 and will be 
removed in 3.0. Use ExtendedCell 
instead
-
-
-
 org.apache.hadoop.hbase.coprocessor.SingletonCoprocessorService
 Since 2.0. Will be removed 
in 3.0
 
@@ -1171,8 +1161,8 @@
 
 
 
-org.apache.hadoop.hbase.wal.WALKey.getLogSeqNum()
-Use WALKey.getSequenceId()
+org.apache.hadoop.hbase.wal.WALKeyImpl.getLogSeqNum()
+Use WALKeyImpl.getSequenceId()
 
 
 
@@ -1330,586 +1320,586 @@
 
 
 
-org.apache.hadoop.hbase.CellUtil.getRowByte(Cell,
 int)
+org.apache.hadoop.hbase.ClusterStatus.getRequestsCount()
+As of release 2.0.0, this 
will be removed in HBase 3.0.0
+ Use ClusterStatus.getRequestCount()
 instead.
+
 
 
+org.apache.hadoop.hbase.CellUtil.getRowByte(Cell,
 int)
+
+
 org.apache.hadoop.hbase.client.Table.getRpcTimeout()
 use Table.getReadRpcTimeout(TimeUnit)
 or
  Table.getWriteRpcTimeout(TimeUnit)
 instead
 
 
-
+
 org.apache.hadoop.hbase.client.HTable.getRpcTimeout()
 
-
+
 org.apache.hadoop.hbase.rest.client.RemoteHTable.getRpcTimeout()
 
-
+
 org.apache.hadoop.hbase.MetaTableAccessor.getScanForTableName(Connection,
 TableName)
 
-
+
 org.apache.hadoop.hbase.client.Scan.getScanMetrics()
 Use ResultScanner.getScanMetrics()
 instead. And notice that, please do not
  use this method and ResultScanner.getScanMetrics()
 together, the metrics
  will be messed up.
 
 
-
+
 org.apache.hadoop.hbase.regionserver.StoreFileReader.getScanner(boolean,
 boolean)
 Do not write further code 
which depends on this call. Instead
use getStoreFileScanner() which uses the StoreFileScanner class/interface
which is the preferred way to scan a store with higher level 
concepts.
 
 
-
+
 org.apache.hadoop.hbase.regionserver.StoreFileReader.getScanner(boolean,
 boolean, boolean)
 Do not write further code 
which depends on this call. Instead
use getStoreFileScanner() which uses the StoreFileScanner class/interface
which is the preferred way to scan a store with higher level 
concepts.
 
 
-
+
 org.apache.hadoop.hbase.ServerName.getServerName(String,
 int, long)
 Since 2.0. Use ServerName.valueOf(String,
 int, long) instead.
 
 
-
+
 org.apache.hadoop.hbase.ServerName.getServerName(String,
 long)
 Since 2.0. Use ServerName.valueOf(String,
 long) instead.
 
 
-
+
 org.apache.hadoop.hbase.ServerName.getServerNameLessStartCode(String)
 Since 2.0. Use ServerName.getAddress()
 
 
-
+
 org.apache.hadoop.hbase.ServerName.getServerStartcodeFromServerName(String)
 Since 2.0. Use instance of 
ServerName to pull out start code.
 
 
-
+
 org.apache.hadoop.hbase.KeyValue.KVComparator.getShortMidpointKey(byte[],
 byte[])
 Since 0.99.2;
 
 
-
+
 org.apache.hadoop.hbase.HRegionInfo.getShortNameToLog(HRegionInfo...)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
  Use RegionInfo.getShortNameToLog(RegionInfo...).
 
 
-
+
 org.apache.hadoop.hbase.HRegionInfo.getShortNameToLog(List)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
  Use RegionInfo.getShortNameToLog(List))}.
 
 
-
+
 org.apache.hadoop.hbase.util.Bytes.getSize()
 use Bytes.getLength()
 instead
 
 
-
+
 org.apache.hadoop.hbase.io.ImmutableBytesWritable.getSize()
 use ImmutableBytesWritable.getLength()
 instead
 
 
-
+
 org.apache.hadoop.hbase.HRegionInfo.getStartKey(byte[])
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
  Use RegionInfo.getStartKey(byte[]).
 
 
-
+
 org.apache.hadoop.hbase.HRegionInfo.getStartKeyForDisplay(HRegionInfo,
 Configuration)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
  Use RegionInfoDisplay#getStartKeyForDisplay(RegionInfo, 
Configuration)
  over in hbase-server module.
 
 
-
+
 org.apache.hadoop.hbase.ServerLoad.getStorefileIndexSizeInMB()
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
  Use ServerLoad.getStorefileIndexSizeKB()
 instead.
 
 
-
+
 org.apache.hadoop.hbase.RegionLoad.getStorefileIndexSizeMB()
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
  ((https://issues.apache.org/jira/browse/HBASE-3935";>HBASE-3935)).
  Use RegionLoad.getStorefileIndexSizeKB()
 instead.
 
 
-
+
 org.apache.hadoop.hbase.ServerLoad.getStorefileSizeInMB()
 As of release 2.0.0, this 
will be removed in HBase 3.0.0
  Use ServerLoad.getStorefileSizeMB()
 instead.
 
 
-
+
 org.apache.hadoop.hbase.regionserver.HStore.getStoreHomedir(Path,
 RegionInfo, byte[])
 
-
+
 org.apache.hadoop.hbase.regionserver.H

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/org/apache/hadoop/hbase/HColumnDescriptor.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/HColumnDescriptor.html 
b/apidocs/org/apache/hadoop/hbase/HColumnDescriptor.html
index c54a3d2..e74fb88 100644
--- a/apidocs/org/apache/hadoop/hbase/HColumnDescriptor.html
+++ b/apidocs/org/apache/hadoop/hbase/HColumnDescriptor.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":42,"i1":42,"i2":42,"i3":42,"i4":42,"i5":42,"i6":42,"i7":42,"i8":42,"i9":42,"i10":42,"i11":41,"i12":42,"i13":42,"i14":42,"i15":42,"i16":42,"i17":42,"i18":42,"i19":42,"i20":42,"i21":42,"i22":42,"i23":42,"i24":42,"i25":42,"i26":42,"i27":41,"i28":42,"i29":42,"i30":42,"i31":42,"i32":42,"i33":42,"i34":42,"i35":42,"i36":42,"i37":42,"i38":42,"i39":42,"i40":42,"i41":41,"i42":42,"i43":42,"i44":42,"i45":41,"i46":42,"i47":42,"i48":42,"i49":42,"i50":42,"i51":42,"i52":42,"i53":42,"i54":42,"i55":42,"i56":42,"i57":42,"i58":42,"i59":42,"i60":42,"i61":42,"i62":42,"i63":42,"i64":42,"i65":42,"i66":42,"i67":42,"i68":42,"i69":42,"i70":42,"i71":42,"i72":42,"i73":42,"i74":42,"i75":42,"i76":42,"i77":42,"i78":42,"i79":42,"i80":42,"i81":42,"i82":42,"i83":42};
+var methods = 
{"i0":42,"i1":42,"i2":42,"i3":42,"i4":42,"i5":42,"i6":42,"i7":42,"i8":42,"i9":42,"i10":42,"i11":41,"i12":42,"i13":42,"i14":42,"i15":42,"i16":42,"i17":42,"i18":42,"i19":42,"i20":42,"i21":42,"i22":42,"i23":42,"i24":42,"i25":42,"i26":42,"i27":41,"i28":42,"i29":42,"i30":42,"i31":42,"i32":42,"i33":42,"i34":42,"i35":42,"i36":42,"i37":42,"i38":42,"i39":42,"i40":41,"i41":42,"i42":42,"i43":42,"i44":41,"i45":42,"i46":42,"i47":42,"i48":42,"i49":42,"i50":42,"i51":42,"i52":42,"i53":42,"i54":42,"i55":42,"i56":42,"i57":42,"i58":42,"i59":42,"i60":42,"i61":42,"i62":42,"i63":42,"i64":42,"i65":42,"i66":42,"i67":42,"i68":42,"i69":42,"i70":42,"i71":42,"i72":42,"i73":42,"i74":42,"i75":42,"i76":42,"i77":42,"i78":42,"i79":42,"i80":42,"i81":42,"i82":42};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete 
Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -781,41 +781,35 @@ implements 
 boolean
-isCacheDataInL1()
-Deprecated. 
- 
-
-
-boolean
 isCacheDataOnWrite()
 Deprecated. 
  
 
-
+
 boolean
 isCacheIndexesOnWrite()
 Deprecated. 
  
 
-
+
 boolean
 isCompressTags()
 Deprecated. 
  
 
-
+
 boolean
 isEvictBlocksOnClose()
 Deprecated. 
  
 
-
+
 boolean
 isInMemory()
 Deprecated. 
  
 
-
+
 static byte[]
 isLegalFamilyName(byte[] b)
 Deprecated. 
@@ -823,109 +817,113 @@ implements 
+
 boolean
 isMobEnabled()
 Deprecated. 
 Gets whether the mob is enabled for the family.
 
 
-
+
 boolean
 isNewVersionBehavior()
 Deprecated. 
 By default, HBase only consider timestamp in versions.
 
 
-
+
 boolean
 isPrefetchBlocksOnOpen()
 Deprecated. 
  
 
-
+
 static HColumnDescriptor
 parseFrom(byte[] bytes)
 Deprecated. 
  
 
-
+
 void
 remove(byte[] key)
 Deprecated. 
  
 
-
+
 void
 removeConfiguration(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key)
 Deprecated. 
 Remove a configuration setting represented by the key.
 
 
-
+
 HColumnDescriptor
 setBlockCacheEnabled(boolean value)
 Deprecated. 
  
 
-
+
 HColumnDescriptor
 setBlocksize(int value)
 Deprecated. 
  
 
-
+
 HColumnDescriptor
 setBloomFilterType(BloomType value)
 Deprecated. 
  
 
-
+
 HColumnDescriptor
 setCacheBloomsOnWrite(boolean value)
 Deprecated. 
  
 
-
+
 HColumnDescriptor
 setCacheDataInL1(boolean value)
-Deprecated. 
- 
+Deprecated. 
+Since 2.0 and will be 
removed in 3.0 with out any replacement. Caching data in on
+ heap Cache, when there are both on heap LRU Cache and Bucket 
Cache will no longer
+ be supported from 2.0.
+
+
 
-
+
 HColumnDescriptor
 setCacheDataOnWrite(boolean value)
 Deprecated. 
  
 
-
+
 HColumnDescriptor
 setCacheIndexesOnWrite(boolean value)
 Deprecated. 
  
 
-
+
 HColumnDescriptor
 setCompactionCompressionType(org.apache.hadoop.hbase.io.compress.Compression.Algorithm value)
 Deprecated. 
 Compression types supported in hbase.
 
 
-
+
 HColumnDescriptor
 setCompressionType(org.apache.hadoop.hbase.io.compress.Compression.Algorithm value)
 Deprecated. 
 Compression types supported in hbase.
 
 
-
+
 HColumnDescriptor
 setCompressTags(boolean value)
 Deprecated. 
 Set whether the tags should be compressed along with 
DataBlockEncoding.
 
 
-
+
 HColumnDescriptor
 setConfiguration(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key,
 http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String value)
@@ -933,143 +931,143 @@ implements Setter for storing a configuration setting.
 
 
-
+
 H

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/IndividualBytesFieldCell.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/IndividualBytesFieldCell.html 
b/devapidocs/org/apache/hadoop/hbase/IndividualBytesFieldCell.html
index 06d9a30..c95c548 100644
--- a/devapidocs/org/apache/hadoop/hbase/IndividualBytesFieldCell.html
+++ b/devapidocs/org/apache/hadoop/hbase/IndividualBytesFieldCell.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};
+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};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -109,12 +109,12 @@ var activeTableTab = "activeTableTab";
 
 
 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, SettableSequenceId, SettableTimestamp
+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 IndividualBytesFieldCell
+public class IndividualBytesFieldCell
 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 ExtendedCell
 
@@ -305,149 +305,124 @@ implements 
 
 
-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.
 
 
-
+
 byte
 getFamilyLength() 
 
-
+
 int
 getFamilyOffset() 
 
-
+
 byte[]
 getQualifierArray()
 Contiguous raw bytes that may start at any index in the 
containing array.
 
 
-
+
 int
 getQualifierLength() 
 
-
+
 int
 getQualifierOffset() 
 
-
+
 byte[]
 getRowArray()
 Implement Cell interface
 
 
-
+
 short
 getRowLength() 
 
-
+
 int
 getRowOffset() 
 
-
+
 long
 getSequenceId()
 A region-specific unique monotonically increasing sequence 
ID given to each Cell.
 
 
-
-int
-getSerializedSize(boolean withTags) 
-
-
+
 byte[]
 getTagsArray()
 Contiguous raw bytes representing tags that may start at 
any index in the containing array.
 
 
-
+
 int
 getTagsLength()
 HBase internally uses 2 bytes to store tags length in 
Cell.
 
 
-
+
 int
 getTagsOffset() 
 
-
+
 long
 getTimestamp() 
 
-
+
 byte
 getTypeByte() 
 
-
+
 byte[]
 getValueArray()
 Contiguous raw bytes that may start at any index in the 
containing array.
 
 
-
+
 int
 getValueLength() 
 
-
+
 int
 getValueOffset() 
 
-
+
 private long
 heapOverhead() 
 
-
+
 long
 heapSize()
 Implement HeapSize interface
 
 
-
+
 void
 setSequenceId(long seqId)
-Implement SettableSequenceId interface
+Sets with the given seqId.
 
 
-
+
 void
-setTimestamp(byte[] ts,
-int tsOffset)
+setTimestamp(byte[] ts)
 Sets with the given timestamp.
 
 
-
+
 void
 setTimestamp(long ts)
-Implement SettableTimestamp interface
+Sets with the given timestamp.
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 toString() 
 
-
-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.
-
-
 
 
 
@@ -461,7 +436,7 @@ implements 
 
 Methods inherited from interface org.apache.hadoop.hbase.ExtendedCell
-getChunkId
+deepClone,
 getChunkId,
 getSerializedSize,
 write,
 write
 
 
 
@@ -490,7 +465,7 @@ implements 
 
 FIXED_OVERHEAD
-private static final long FIXED_OVERHEAD
+private static final long FIXED_OVERHEAD
 
 
 
@@ -499,7 +474,7 @@ implements 
 
 row
-private final byte[] row
+private final byte[] row
 
 
 
@@ -508,7 +483,7 @@ implements 
 
 rOffset
-private final int rOffset
+private final int rOffset
 
 
 
@@ -517,7 +492,7 @@ implements 
 
 rLength
-private final int rLength
+private final int r

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

2017-12-09 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 116e12f36 -> e23b49ba9


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.OnheapDecodedCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.OnheapDecodedCell.html
 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.OnheapDecodedCell.html
index 11b96bc..2dfc324 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.OnheapDecodedCell.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/BufferedDataBlockEncoder.OnheapDecodedCell.html
@@ -109,7 +109,7 @@ var activeTableTab = "activeTableTab";
 
 
 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, SettableSequenceId, SettableTimestamp
+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:
@@ -117,7 +117,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-protected static class BufferedDataBlockEncoder.OnheapDecodedCell
+protected static class BufferedDataBlockEncoder.OnheapDecodedCell
 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 ExtendedCell
 Copies only the key part of the keybuffer by doing a deep 
copy and passes the
@@ -377,8 +377,7 @@ implements 
 
 void
-setTimestamp(byte[] ts,
-int tsOffset)
+setTimestamp(byte[] ts)
 Sets with the given timestamp.
 
 
@@ -448,7 +447,7 @@ implements 
 
 FIXED_OVERHEAD
-private static final long FIXED_OVERHEAD
+private static final long FIXED_OVERHEAD
 
 
 
@@ -457,7 +456,7 @@ implements 
 
 keyOnlyBuffer
-private byte[] keyOnlyBuffer
+private byte[] keyOnlyBuffer
 
 
 
@@ -466,7 +465,7 @@ implements 
 
 rowLength
-private short rowLength
+private short rowLength
 
 
 
@@ -475,7 +474,7 @@ implements 
 
 familyOffset
-private int familyOffset
+private int familyOffset
 
 
 
@@ -484,7 +483,7 @@ implements 
 
 familyLength
-private byte familyLength
+private byte familyLength
 
 
 
@@ -493,7 +492,7 @@ implements 
 
 qualifierOffset
-private int qualifierOffset
+private int qualifierOffset
 
 
 
@@ -502,7 +501,7 @@ implements 
 
 qualifierLength
-private int qualifierLength
+private int qualifierLength
 
 
 
@@ -511,7 +510,7 @@ implements 
 
 timestamp
-private long timestamp
+private long timestamp
 
 
 
@@ -520,7 +519,7 @@ implements 
 
 typeByte
-private byte typeByte
+private byte typeByte
 
 
 
@@ -529,7 +528,7 @@ implements 
 
 valueBuffer
-private byte[] valueBuffer
+private byte[] valueBuffer
 
 
 
@@ -538,7 +537,7 @@ implements 
 
 valueOffset
-private int valueOffset
+private int valueOffset
 
 
 
@@ -547,7 +546,7 @@ implements 
 
 valueLength
-private int valueLength
+private int valueLength
 
 
 
@@ -556,7 +555,7 @@ implements 
 
 tagsBuffer
-private byte[] tagsBuffer
+private byte[] tagsBuffer
 
 
 
@@ -565,7 +564,7 @@ implements 
 
 tagsOffset
-private int tagsOffset
+private int tagsOffset
 
 
 
@@ -574,7 +573,7 @@ implements 
 
 tagsLength
-private int tagsLength
+private int tagsLength
 
 
 
@@ -583,7 +582,7 @@ implements 
 
 seqId
-private long seqId
+private long seqId
 
 
 
@@ -600,7 +599,7 @@ implements 
 
 OnheapDecodedCell
-protected OnheapDecodedCell(byte[] keyBuffer,
+protected OnheapDecodedCell(byte[] keyBuffer,
 short rowLength,
 int familyOffset,
 byte familyLength,
@@ -631,7 +630,7 @@ implements 
 
 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.
@@ -649,7 +648,7 @@ implements 
 
 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.
@@ -667,7 +666,7 @@ implements 
 
 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.
 
@@ -684,7 +683,7 @@ implements 
 
 getRowOffset
-public int getRowOffset()
+public int getRowOffset()
 
 Specified by:
 getRowOffset in
 interface Cell
@@ -699,7 +698,7 @@ implements 
 
 getRowLength
-public short getRowLength()
+public short getRowLength()
 
 Specified by:
 getRowLength in
 interface

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/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 b078c1f..bcc99e7 100644
--- a/apidocs/org/apache/hadoop/hbase/CellUtil.html
+++ b/apidocs/org/apache/hadoop/hbase/CellUtil.html
@@ -2066,7 +2066,7 @@ public static void Throws:
-http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException - when the passed 
cell is not of type SettableSequenceId
+http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException - when the passed 
cell is not of type ExtendedCell
 
 
 
@@ -2087,7 +2087,7 @@ public static void Throws:
-http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException - when the passed 
cell is not of type SettableTimestamp
+http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException - when the passed 
cell is not of type ExtendedCell
 
 
 
@@ -2110,7 +2110,7 @@ public static void Throws:
-http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException - when the passed 
cell is not of type SettableTimestamp
+http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException - when the passed 
cell is not of type ExtendedCell
 
 
 
@@ -2134,7 +2134,7 @@ public static boolean Returns:
 True if cell timestamp is modified.
 Throws:
-http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException - when the passed 
cell is not of type SettableTimestamp
+http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException - when the passed 
cell is not of type ExtendedCell
 
 
 
@@ -2160,7 +2160,7 @@ public static boolean Returns:
 True if cell timestamp is modified.
 Throws:
-http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException - when the passed 
cell is not of type SettableTimestamp
+http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException - when the passed 
cell is not of type ExtendedCell
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/ClusterStatus.html 
b/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
index 2343da4..8bf53a3 100644
--- a/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
+++ b/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":42,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":42,"i21":10,"i22":10,"i23":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":42,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":42,"i19":10,"i20":10,"i21":42,"i22":10,"i23":10,"i24":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -273,18 +273,27 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 getRegionsCount() 
 
 
-int
-getRequestsCount() 
+long
+getRequestCount() 
 
 
+int
+getRequestsCount()
+Deprecated. 
+As of release 2.0.0, this 
will be removed in HBase 3.0.0
+ Use getRequestCount()
 instead.
+
+
+
+
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
 getServers() 
 
-
+
 int
 getServersSize() 
 
-
+
 byte
 getVersion()
 Deprecated. 
@@ -292,15 +301,15 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-
+
 int
 hashCode() 
 
-
+
 boolean
 isBalancerOn() 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 toString() 
 
@@ -444,20 +453,32 @@ public int 
 
 getRequestsCount
-public int getRequestsCount()
+http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true";
 title="class or interface in java.lang">@Deprecated
+public int getRequestsCount()
+Deprecated. As o

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/checkstyle-aggregate.html
--
diff --git a/checkstyle-aggregate.html b/checkstyle-aggregate.html
index 4f806e4..9ad345a 100644
--- a/checkstyle-aggregate.html
+++ b/checkstyle-aggregate.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – Checkstyle Results
 
@@ -286,10 +286,10 @@
  Warnings
  Errors
 
-3449
+3453
 0
 0
-20698
+20655
 
 Files
 
@@ -377,7 +377,7 @@
 org/apache/hadoop/hbase/CellUtil.java
 0
 0
-69
+68
 
 org/apache/hadoop/hbase/ChoreService.java
 0
@@ -492,12 +492,12 @@
 org/apache/hadoop/hbase/HBaseTestingUtility.java
 0
 0
-266
+267
 
 org/apache/hadoop/hbase/HColumnDescriptor.java
 0
 0
-42
+40
 
 org/apache/hadoop/hbase/HConstants.java
 0
@@ -542,7 +542,7 @@
 org/apache/hadoop/hbase/IndividualBytesFieldCell.java
 0
 0
-10
+9
 
 org/apache/hadoop/hbase/IntegrationTestBackupRestore.java
 0
@@ -702,7 +702,7 @@
 org/apache/hadoop/hbase/PerformanceEvaluation.java
 0
 0
-30
+29
 
 org/apache/hadoop/hbase/PerformanceEvaluationCommons.java
 0
@@ -712,7 +712,7 @@
 org/apache/hadoop/hbase/PrivateCellUtil.java
 0
 0
-68
+67
 
 org/apache/hadoop/hbase/QosTestHelper.java
 0
@@ -774,16 +774,6 @@
 0
 27
 
-org/apache/hadoop/hbase/SettableSequenceId.java
-0
-0
-1
-
-org/apache/hadoop/hbase/SettableTimestamp.java
-0
-0
-1
-
 org/apache/hadoop/hbase/SizeCachedKeyValue.java
 0
 0
@@ -937,7 +927,7 @@
 org/apache/hadoop/hbase/TestIndividualBytesFieldCell.java
 0
 0
-10
+9
 
 org/apache/hadoop/hbase/TestInfoServers.java
 0
@@ -1737,7 +1727,7 @@
 org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.java
 0
 0
-56
+54
 
 org/apache/hadoop/hbase/client/CompactType.java
 0
@@ -1834,1450 +1824,1450 @@
 0
 2
 
+org/apache/hadoop/hbase/client/MasterKeepAliveConnection.java
+0
+0
+1
+
 org/apache/hadoop/hbase/client/MetaCache.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/client/MetricsConnection.java
 0
 0
 41
-
+
 org/apache/hadoop/hbase/client/MultiAction.java
 0
 0
 9
-
+
 org/apache/hadoop/hbase/client/MultiResponse.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/MultiServerCallable.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/client/Mutation.java
 0
 0
 23
-
+
 org/apache/hadoop/hbase/client/NoOpRetryableCallerInterceptor.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/NoncedRegionServerCallable.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/Operation.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/OperationWithAttributes.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/PackagePrivateFieldAccessor.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/PreemptiveFastFailInterceptor.java
 0
 0
 13
-
+
 org/apache/hadoop/hbase/client/Put.java
 0
 0
 9
-
+
 org/apache/hadoop/hbase/client/Query.java
 0
 0
 10
-
+
 org/apache/hadoop/hbase/client/QuotaStatusCalls.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.java
 0
 0
 102
-
+
 org/apache/hadoop/hbase/client/RegionAdminServiceCallable.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/client/RegionCoprocessorRpcChannel.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/RegionCoprocessorRpcChannelImpl.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/RegionCoprocessorServiceExec.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/RegionInfo.java
 0
 0
 55
-
+
 org/apache/hadoop/hbase/client/RegionInfoBuilder.java
 0
 0
 7
-
+
 org/apache/hadoop/hbase/client/RegionInfoDisplay.java
 0
 0
 17
-
+
 org/apache/hadoop/hbase/client/RegionLocator.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/RegionReplicaUtil.java
 0
 0
 8
-
+
 org/apache/hadoop/hbase/client/RegionServerCallable.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/client/RegionServerCoprocessorRpcChannelImpl.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/RequestController.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/client/RequestControllerFactory.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/Result.java
 0
 0
 13
-
+
 org/apache/hadoop/hbase/client/ResultBoundedCompletionService.java
 0
 0
 7
-
+
 org/apache/hadoop/hbase/client/ResultScanner.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/RetriesExhaustedException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/RetryingCallerInterceptor.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/client/ReversedClientScanner.java
 0
 0
 8
-
+
 org/apache/hadoop/hbase/client/ReversedScannerCallable.java
 0
 0
 11
-
+
 org/apache/hadoop/hbase/client/RowAccess.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/RowMutations.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/client/RpcRetryingCaller.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/RpcRetryingCallerFactory.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/RpcRetryingCallerImpl.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/RpcRetryingCallerWithReadReplicas.java
 0
 0
 8
-
+
 org/apache/hadoop/hbase/client/Scan.java
 0
 0
 8
-
+
 org/apache/hadoop/hbase/client

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionCoprocessor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionCoprocessor.html 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionCoprocessor.html
index 2ec4ab5..21b91cb 100644
--- a/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionCoprocessor.html
+++ b/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionCoprocessor.html
@@ -49,7 +49,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-Prev Class
+Prev Class
 Next Class
 
 
@@ -250,7 +250,7 @@ extends 
 
 
-Prev Class
+Prev Class
 Next Class
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionCoprocessorEnvironment.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionCoprocessorEnvironment.html
 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionCoprocessorEnvironment.html
index 8964468..d941a19 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionCoprocessorEnvironment.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/RegionCoprocessorEnvironment.html
@@ -134,7 +134,7 @@ extends 
 Connection
 createConnection(org.apache.hadoop.conf.Configuration conf)
-Creates a cluster connection using the passed 
configuration.
+Creates a cluster connection using the passed 
Configuration.
 
 
 
@@ -146,7 +146,7 @@ extends 
 Connection
 getConnection()
-Be careful RPC'ing from a Coprocessor context.
+Returns the hosts' Connection to the Cluster.
 
 
 
@@ -268,22 +268,33 @@ extends 
 
 getConnection
-Connection getConnection()
-Be careful RPC'ing from a Coprocessor context.
- RPC's will fail, stall, retry, and/or crawl because the remote side is not 
online, is
- struggling or it is on the other side of a network partition. Any use of 
Connection from
- inside a Coprocessor must be able to handle all such hiccups.
+Connection getConnection()
+Returns the hosts' Connection to the Cluster. Do not 
close! This is a shared connection
+ with the hosting server. Throws http://docs.oracle.com/javase/8/docs/api/java/lang/UnsupportedOperationException.html?is-external=true";
 title="class or interface in 
java.lang">UnsupportedOperationException if you try to close
+ or abort it.
 
- Using a Connection to get at a local resource -- say a Region that is on 
the local
- Server or using Admin Interface from a Coprocessor hosted on the Master -- 
will result in a
- short-circuit of the RPC framework to make a direct invocation avoiding RPC.
-
- Note: If you want to create Connection with your own Configuration and NOT 
use the RegionServer
- Connection (though its cache of locations will be warm, and its life-cycle is 
not the concern
- of the CP), see createConnection(Configuration).
+ For light-weight usage only. Heavy-duty usage will pull down
+ the hosting RegionServer responsiveness as well as that of other Coprocessors 
making use of
+ this Connection. Use to create table on start or to do administrative 
operations. Coprocessors
+ should create their own Connections if heavy usage to avoid impinging on 
hosting Server
+ operation. To create a Connection or if a Coprocessor requires a region with 
a particular
+ Configuration, use ConnectionFactory or
+ createConnection(Configuration)}.
+
+ Be aware that operations that make use of this Connection are executed as 
the RegionServer
+ User, the hbase super user that started this server process. Exercise caution 
running
+ operations as this User (See createConnection(Configuration)}
 to run as other than
+ the RegionServer User).
+
+ Be careful RPC'ing from a Coprocessor context. RPC's will fail, stall, 
retry, and/or crawl
+ because the remote side is not online, is struggling or it is on the other 
side of a network
+ partition. Any use of Connection from inside a Coprocessor must be able to 
handle all such
+ hiccups.
 
 Returns:
 The host's Connection to the Cluster.
+See Also:
+createConnection(Configuration)
 
 
 
@@ -293,18 +304,26 @@ extends 
 
 createConnection
-Connection createConnection(org.apache.hadoop.conf.Configuration conf)
+Connection createConnection(org.apache.hadoop.conf.Configuration conf)
  throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
-Creates a cluster connection using the passed configuration.
- Using this Connection to get at a local resource -- say a Region that is 
on the local
- Server or using Admin Interface from a Coprocessor hosted on the Master -- 
will result in a
- short-circuit of the RPC framework to make a direct invocation avoiding RPC.
- 
- Note: HBase will NOT cache/maintain this Connection. If Coprocessors need to 
cache and reuse
- this connection, it has to be done by Co

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/org/apache/hadoop/hbase/client/SnapshotDescription.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/SnapshotDescription.html 
b/apidocs/org/apache/hadoop/hbase/client/SnapshotDescription.html
index 266a3fe..6c20df5 100644
--- a/apidocs/org/apache/hadoop/hbase/client/SnapshotDescription.html
+++ b/apidocs/org/apache/hadoop/hbase/client/SnapshotDescription.html
@@ -49,7 +49,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-Prev Class
+Prev Class
 Next Class
 
 
@@ -506,7 +506,7 @@ public http://docs.oracle.com/javase/8/docs/api/java/lang/String.h
 
 
 
-Prev Class
+Prev Class
 Next Class
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/org/apache/hadoop/hbase/client/TableDescriptorBuilder.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/TableDescriptorBuilder.html 
b/apidocs/org/apache/hadoop/hbase/client/TableDescriptorBuilder.html
index f63a07c..3182b67 100644
--- a/apidocs/org/apache/hadoop/hbase/client/TableDescriptorBuilder.html
+++ b/apidocs/org/apache/hadoop/hbase/client/TableDescriptorBuilder.html
@@ -461,7 +461,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 NAMESPACE_TABLEDESC
-public static final TableDescriptor NAMESPACE_TABLEDESC
+public static final TableDescriptor NAMESPACE_TABLEDESC
 Table descriptor for namespace table
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/org/apache/hadoop/hbase/client/class-use/ColumnFamilyDescriptorBuilder.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/class-use/ColumnFamilyDescriptorBuilder.html
 
b/apidocs/org/apache/hadoop/hbase/client/class-use/ColumnFamilyDescriptorBuilder.html
index 1276de1..230c1b2 100644
--- 
a/apidocs/org/apache/hadoop/hbase/client/class-use/ColumnFamilyDescriptorBuilder.html
+++ 
b/apidocs/org/apache/hadoop/hbase/client/class-use/ColumnFamilyDescriptorBuilder.html
@@ -134,116 +134,112 @@
 
 
 ColumnFamilyDescriptorBuilder
-ColumnFamilyDescriptorBuilder.setCacheDataInL1(boolean value) 
-
-
-ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setCacheDataOnWrite(boolean value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setCacheIndexesOnWrite(boolean value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setCompactionCompressionType(org.apache.hadoop.hbase.io.compress.Compression.Algorithm value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setCompressionType(org.apache.hadoop.hbase.io.compress.Compression.Algorithm value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setCompressTags(boolean value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setConfiguration(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key,
 http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setDataBlockEncoding(DataBlockEncoding value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setDFSReplication(short value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setEncryptionKey(byte[] value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setEncryptionType(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setEvictBlocksOnClose(boolean value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setInMemory(boolean value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setInMemoryCompaction(MemoryCompactionPolicy value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setKeepDeletedCells(KeepDeletedCells value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setMaxVersions(int value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setMinVersions(int value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setMobCompactPartitionPolicy(MobCompactPartitionPolicy value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setMobEnabled(boolean value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setMobThreshold(long value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setPrefetchBlocksOnOpen(boolean value) 
 
-
+
 ColumnFamilyDescriptorBuilder
 ColumnFamilyDescriptorBuilder.setScope(int value) 
 
-
+
 ColumnFami

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/client/Connection.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/Connection.html 
b/devapidocs/org/apache/hadoop/hbase/client/Connection.html
index e4a7797..2885fe8 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/Connection.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/Connection.html
@@ -109,7 +109,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Known Implementing Classes:
-ConnectionImplementation, 
ConnectionUtils.MasterlessConnection, ConnectionUtils.ShortCircuitingClusterConnection
+ConnectionImplementation, 
ConnectionUtils.MasterlessConnection, ConnectionUtils.ShortCircuitingClusterConnection,
 SharedConnection
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/client/ImmutableHColumnDescriptor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/ImmutableHColumnDescriptor.html 
b/devapidocs/org/apache/hadoop/hbase/client/ImmutableHColumnDescriptor.html
index 175e2f3..129feec 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/ImmutableHColumnDescriptor.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/ImmutableHColumnDescriptor.html
@@ -200,7 +200,7 @@ extends 
 
 Methods inherited from class org.apache.hadoop.hbase.HColumnDescriptor
-compareTo,
 equals,
 getBlocksize,
 getBloomFilterType,
 getCompactionCompression,
 getCompactionCompressionType,
 getCompression,
 getCompressionType,
 getConfiguration,
 getConfigurationValue,
 getDataBlockEncoding,
 getDefaultValues,
 getDFSReplication,
 getEncryptionKey,
 getEncryptionType,
 getInMemoryCompaction,
 getKeepDeletedCells, getMaxVersions,
 getMinVersions,
 getMobCompactPartitionPolicy,
 getMobThreshold,
 getName,
 getNameAsString,
 getScope,
 getStoragePolicy,
 getTimeToLive, getUnit,
 getValue,
 getValue,
 getValue,
 getValues,
 hashCode,
 isBlockCacheEnabled,
 isCacheBloomsOnWrite,
 isCacheDataInL1, isCacheDataOnWrite,
 isCacheIndexesOnWrite,
 isCompressTags,
 isEvictBlocksOnClose,
 isInMemory,
 isLegalFamilyName,
 isMobEnabled,
 isNewVersionBehavior,
 isPrefetchBlocksOnOpen,
 parseFrom,
 remove,
 removeConfiguration,
 setBlockCacheEnabled,
 setBlocksize,
 setBloomFilterType,
 setCacheBloomsOnWrite,
 setCacheDataInL1,
 setCacheDataOnWrite,
 setCacheIndexesOnWrite,
 setCompactionCompressionType,
 setCompressionType,
 setCompressTags,
 setConfiguration,
 setDataBlockEncoding,
 setDFSReplication,
 setEncryptionKey,
 setEncryptionType,
 setEvictBlocksOnClose,
 setInMemory,
 setInMemoryCompaction,
 setKeepDeletedCells,
 setMaxVersions,
 setMinVersions,
 setMobCompactPartitionPolicy,
 setMobEnabled,
 setMobThreshold,
 setNewVersionBehavior,
 setPrefetchBlocksOnOpen, setScope,
 setStoragePolicy,
 setTimeToLive,
 setTimeToLive,
 setValue,
 setValue,
 setVersions,
 toByteArray,
 toString, toStringCustomizedValues
+compareTo,
 equals,
 getBlocksize,
 getBloomFilterType,
 getCompactionCompression,
 getCompactionCompressionType,
 getCompression,
 getCompressionType,
 getConfiguration,
 getConfigurationValue,
 getDataBlockEncoding,
 getDefaultValues,
 getDFSReplication,
 getEncryptionKey,
 getEncryptionType,
 getInMemoryCompaction,
 getKeepDeletedCells, getMaxVersions,
 getMinVersions,
 getMobCompactPartitionPolicy,
 getMobThreshold,
 getName,
 getNameAsString,
 getScope,
 getStoragePolicy,
 getTimeToLive, getUnit,
 getValue,
 getValue,
 getValue,
 getValues,
 hashCode,
 isBlockCacheEnabled,
 isCacheBloomsOnWrite,
 isCacheDataOnWrite, isCacheIndexesOnWrite,
 isCompressTags,
 isEvictBlocksOnClose,
 isInMemory,
 isLegalFamilyName,
 isMobEnabled,
 isNewVersionBehavior,
 isPrefetchBlocksOnOpen,
 parseFrom,
 remove,
 removeConfiguration,
 setBlockCacheEnabled,
 setBlocksize,
 setBloomFilterType,
 setCacheBloomsOnWrite,
 setCacheDataInL1,
 setCacheDataOnWrite,
 setCacheIndexesOnWrite,
 setCompactionCompressionType,
 setCompressionType,
 setCompressTags,
 setConfiguration,
 setDataBlockEncoding, setDFSReplication,
 setEncryptionKey,
 setEncryptionType,
 setEvictBlocksOnClose,
 setInMemory,
 setInMemoryCompaction,
 setKeepDeletedCells,
 setMaxVersions,
 setMinVersions,
 setMobCompactPartitionPolicy,
 setMobEnabled,
 setMobThreshold,
 setNewVersionBehavior,
 setPrefetchBlocksOnOpen,
 setScope,
 setStoragePolicy,
 setTimeToLive,
 setTimeToLive,
 setValue,
 setValue,
 setVersions,
 toByteArray,
 toString,
 toStringCustomizedValues
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/client/MasterCallable.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/MasterCallable.html 
b/devapidocs/org/apache/hadoop/hbase/client/MasterCallable.html
index 641523e..47be427 100644
--- a/devapidocs/org/apache/hadoop/hbase

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apache_hbase_reference_guide.pdf
--
diff --git a/apache_hbase_reference_guide.pdf b/apache_hbase_reference_guide.pdf
index de4dbaa..4677e43 100644
--- a/apache_hbase_reference_guide.pdf
+++ b/apache_hbase_reference_guide.pdf
@@ -5,16 +5,16 @@
 /Author (Apache HBase Team)
 /Creator (Asciidoctor PDF 1.5.0.alpha.15, based on Prawn 2.2.2)
 /Producer (Apache HBase Team)
-/ModDate (D:20171206144745+00'00')
-/CreationDate (D:20171206144745+00'00')
+/ModDate (D:20171209144828+00'00')
+/CreationDate (D:20171209144828+00'00')
 >>
 endobj
 2 0 obj
 << /Type /Catalog
 /Pages 3 0 R
 /Names 26 0 R
-/Outlines 4517 0 R
-/PageLabels 4741 0 R
+/Outlines 4514 0 R
+/PageLabels 4738 0 R
 /PageMode /UseOutlines
 /OpenAction [7 0 R /FitH 842.89]
 /ViewerPreferences << /DisplayDocTitle true
@@ -23,8 +23,8 @@ endobj
 endobj
 3 0 obj
 << /Type /Pages
-/Count 702
-/Kids [7 0 R 12 0 R 14 0 R 16 0 R 18 0 R 20 0 R 22 0 R 24 0 R 44 0 R 47 0 R 50 
0 R 54 0 R 63 0 R 66 0 R 69 0 R 71 0 R 76 0 R 80 0 R 83 0 R 89 0 R 91 0 R 94 0 
R 96 0 R 103 0 R 109 0 R 114 0 R 116 0 R 130 0 R 133 0 R 142 0 R 151 0 R 161 0 
R 170 0 R 181 0 R 185 0 R 187 0 R 191 0 R 202 0 R 209 0 R 218 0 R 226 0 R 231 0 
R 240 0 R 248 0 R 257 0 R 271 0 R 278 0 R 287 0 R 296 0 R 304 0 R 311 0 R 319 0 
R 325 0 R 332 0 R 339 0 R 347 0 R 356 0 R 366 0 R 378 0 R 387 0 R 394 0 R 401 0 
R 409 0 R 417 0 R 426 0 R 435 0 R 443 0 R 451 0 R 463 0 R 471 0 R 478 0 R 486 0 
R 494 0 R 502 0 R 511 0 R 516 0 R 519 0 R 524 0 R 528 0 R 544 0 R 554 0 R 559 0 
R 573 0 R 579 0 R 584 0 R 586 0 R 588 0 R 591 0 R 593 0 R 595 0 R 603 0 R 609 0 
R 614 0 R 619 0 R 630 0 R 641 0 R 646 0 R 654 0 R 658 0 R 662 0 R 664 0 R 679 0 
R 693 0 R 703 0 R 705 0 R 707 0 R 716 0 R 728 0 R 738 0 R 746 0 R 752 0 R 755 0 
R 759 0 R 763 0 R 766 0 R 769 0 R 771 0 R 774 0 R 778 0 R 780 0 R 785 0 R 789 0 
R 794 0 R 798 0 R 802 0 R 808 0 R 810 0 
 R 814 0 R 823 0 R 825 0 R 828 0 R 832 0 R 835 0 R 838 0 R 852 0 R 859 0 R 867 
0 R 878 0 R 884 0 R 896 0 R 900 0 R 903 0 R 907 0 R 910 0 R 915 0 R 924 0 R 932 
0 R 936 0 R 940 0 R 945 0 R 949 0 R 951 0 R 966 0 R 977 0 R 982 0 R 989 0 R 992 
0 R 1001 0 R 1010 0 R 1014 0 R 1019 0 R 1024 0 R 1026 0 R 1028 0 R 1030 0 R 
1040 0 R 1048 0 R 1052 0 R 1059 0 R 1066 0 R 1074 0 R 1079 0 R 1084 0 R 1089 0 
R 1097 0 R 1101 0 R 1106 0 R 1108 0 R 1115 0 R 1121 0 R 1123 0 R 1130 0 R 1140 
0 R 1144 0 R 1146 0 R 1148 0 R 1152 0 R 1155 0 R 1160 0 R 1163 0 R 1175 0 R 
1179 0 R 1185 0 R 1193 0 R 1198 0 R 1202 0 R 1206 0 R 1208 0 R 1211 0 R 1214 0 
R 1217 0 R 1222 0 R 1226 0 R 1230 0 R 1235 0 R 1239 0 R 1243 0 R 1245 0 R 1255 
0 R 1258 0 R 1266 0 R 1275 0 R 1281 0 R 1285 0 R 1287 0 R 1297 0 R 1300 0 R 
1306 0 R 1315 0 R 1318 0 R 1325 0 R 1333 0 R 1335 0 R 1337 0 R 1346 0 R 1348 0 
R 1350 0 R 1353 0 R 1355 0 R 1357 0 R 1359 0 R 1361 0 R 1364 0 R 1368 0 R 1373 
0 R 1375 0 R 1377 0 R 1379 0 R 1384 0 R 1391 0 R 1397 0 R
  1400 0 R 1402 0 R 1405 0 R 1409 0 R 1411 0 R 1414 0 R 1416 0 R 1418 0 R 1421 
0 R 1426 0 R 1432 0 R 1440 0 R 1454 0 R 1468 0 R 1471 0 R 1476 0 R 1489 0 R 
1498 0 R 1512 0 R 1518 0 R 1527 0 R 1542 0 R 1556 0 R 1568 0 R 1573 0 R 1579 0 
R 1590 0 R 1596 0 R 1601 0 R 1609 0 R 1612 0 R 1621 0 R 1628 0 R 1632 0 R 1645 
0 R 1647 0 R 1653 0 R 1657 0 R 1659 0 R 1667 0 R 1675 0 R 1679 0 R 1681 0 R 
1683 0 R 1695 0 R 1701 0 R 1710 0 R 1716 0 R 1730 0 R 1735 0 R 1744 0 R 1752 0 
R 1758 0 R 1765 0 R 1769 0 R 1772 0 R 1774 0 R 1782 0 R 1786 0 R 1792 0 R 1796 
0 R 1804 0 R 1809 0 R 1815 0 R 1820 0 R 1822 0 R 1831 0 R 1838 0 R 1844 0 R 
1849 0 R 1853 0 R 1856 0 R 1861 0 R 1867 0 R 1874 0 R 1876 0 R 1878 0 R 1881 0 
R 1889 0 R 1892 0 R 1899 0 R 1908 0 R 1911 0 R 1916 0 R 1918 0 R 1921 0 R 1924 
0 R 1927 0 R 1934 0 R 1939 0 R 1941 0 R 1949 0 R 1956 0 R 1963 0 R 1969 0 R 
1974 0 R 1976 0 R 1985 0 R 1995 0 R 2005 0 R 2011 0 R 2019 0 R 2021 0 R 2024 0 
R 2026 0 R 2029 0 R 2032 0 R 2035 0 R 2040 0 R 2044 0 R 2055 0
  R 2058 0 R 2063 0 R 2066 0 R 2068 0 R 2073 0 R 2083 0 R 2085 0 R 2087 0 R 
2089 0 R 2091 0 R 2094 0 R 2096 0 R 2098 0 R 2101 0 R 2103 0 R 2105 0 R 2109 0 
R 2114 0 R 2123 0 R 2125 0 R 2127 0 R 2134 0 R 2136 0 R 2141 0 R 2143 0 R 2145 
0 R 2152 0 R 2157 0 R 2161 0 R 2165 0 R 2169 0 R 2171 0 R 2173 0 R 2177 0 R 
2180 0 R 2182 0 R 2184 0 R 2188 0 R 2190 0 R 2193 0 R 2195 0 R 2197 0 R 2199 0 
R 2206 0 R 2209 0 R 2214 0 R 2216 0 R 2218 0 R 2220 0 R  0 R 2230 0 R 2241 
0 R 2255 0 R 2266 0 R 2270 0 R 2276 0 R 2280 0 R 2283 0 R 2288 0 R 2294 0 R 
2296 0 R 2299 0 R 2301 0 R 2303 0 R 2305 0 R 2309 0 R 2311 0 R 2324 0 R 2327 0 
R 2335 0 R 2341 0 R 2353 0 R 2367 0 R 2381 0 R 2398 0 R 2402 0 R 2404 0 R 2408 
0 R 2426 0 R 2432 0 R 2444 0 R 2448 0 R 2452 0 R 2461 0 R 2471 0 R 2476 0 R 
2487 0 R 2500 0 R 2518 0 R 2527 0 R 2530 0 R 2539 0 R 2557 0 R 2564 0 R 2567 0 
R 2572 0 R 2576 0 R 2579 0 R 2588 0 R 2597 0 R 2600 0 R 2602 0 R 2606 0 R 2621 
0 R 2629 0 R 2634 0 R 2639 0 R 2642 0

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/checkstyle.rss
--
diff --git a/checkstyle.rss b/checkstyle.rss
index 52a5378..e4537d0 100644
--- a/checkstyle.rss
+++ b/checkstyle.rss
@@ -25,8 +25,8 @@ under the License.
 en-us
 ©2007 - 2017 The Apache Software Foundation
 
-  File: 3449,
- Errors: 20698,
+  File: 3453,
+ Errors: 20655,
  Warnings: 0,
  Infos: 0
   
@@ -349,7 +349,7 @@ under the License.
   0
 
 
-  0
+  1
 
   
   
@@ -1511,7 +1511,7 @@ under the License.
   0
 
 
-  68
+  67
 
   
   
@@ -2575,7 +2575,7 @@ under the License.
   0
 
 
-  7
+  8
 
   
   
@@ -2869,7 +2869,7 @@ under the License.
   0
 
 
-  12
+  8
 
   
   
@@ -4465,7 +4465,7 @@ under the License.
   0
 
 
-  4
+  2
 
   
   
@@ -4507,7 +4507,7 @@ under the License.
   0
 
 
-  30
+  29
 
   
   
@@ -5207,7 +5207,7 @@ under the License.
   0
 
 
-  10
+  11
 
   
   
@@ -7307,7 +7307,7 @@ under the License.
   0
 
 
-  0
+  1
 
   
   
@@ -7858,6 +7858,20 @@ under the License.
   
   
 
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.mapreduce.RowCounter_Counters.properties";>org/apache/hadoop/hbase/mapreduce/RowCounter_Counters.properties
+
+
+  0
+
+
+  0
+
+
+  0
+
+  
+  
+
   http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.ipc.SimpleServerRpcConnection.java";>org/apache/hadoop/hbase/ipc/SimpleServerRpcConnection.java
 
 
@@ -8371,7 +8385,7 @@ under the License.
   0
 
 
-  5
+  2
 
   
   
@@ -9827,7 +9841,7 @@ under the License.
   0
 
 
-  10
+  9
 
   
   
@@ -11101,7 +5,7 @@ under the License.
   0
 
 
-  42
+  40
 
   
   
@@ -12333,7 +12347,7 @@ under the License.
   0
 
 
-  10
+  9
 
   
   
@@ -12557,7 +12571,7 @@ under the License.
   0
 
 
-  10
+  6
 
   
   
@@ -14102,6 +14116,20 @@ under the License.
   
   
 
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.wal.WALKeyImpl.java";>org/apache/hadoop/hbase/wal/WALKeyImpl.java
+
+
+  0
+
+
+  0
+
+
+  11
+
+  
+  
+
   http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.ipc.TestRpcMetrics.java";>org/apache/hadoop/hbase/ipc/TestRpcMetrics.java
 
 
@@ -15567,7 +15595,7 @@ under the License.
   0
 
 
-  0
+  1
 
   
   
@@ -15623,7 +15651,7 @@ under the License.
   0
 
 
-  8
+  3
 

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/src-html/org/apache/hadoop/hbase/client/RegionInfo.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/client/RegionInfo.html 
b/apidocs/src-html/org/apache/hadoop/hbase/client/RegionInfo.html
index f5f7342..6df10fd 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/client/RegionInfo.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/client/RegionInfo.html
@@ -313,452 +313,455 @@
 305break;
 306  }
 307}
-308byte[] buff  = new byte[offset];
-309System.arraycopy(regionName, 0, buff, 
0, offset);
-310return TableName.valueOf(buff);
-311  }
-312
-313  /**
-314   * Gets the start key from the 
specified region name.
-315   * @param regionName
-316   * @return Start key.
-317   * @throws java.io.IOException
-318   */
-319  static byte[] getStartKey(final byte[] 
regionName) throws IOException {
-320return 
parseRegionName(regionName)[1];
-321  }
-322
-323  @InterfaceAudience.Private
-324  static boolean 
isEncodedRegionName(byte[] regionName) throws IOException {
-325try {
-326  parseRegionName(regionName);
-327  return false;
-328} catch (IOException e) {
-329  if 
(StringUtils.stringifyException(e)
-330  
.contains(INVALID_REGION_NAME_FORMAT_MESSAGE)) {
-331return true;
-332  }
-333  throw e;
-334}
-335  }
-336
-337  /**
-338   * @param bytes
-339   * @return A deserialized {@link 
RegionInfo}
-340   * or null if we failed deserialize or 
passed bytes null
-341   */
-342  @InterfaceAudience.Private
-343  static RegionInfo parseFromOrNull(final 
byte [] bytes) {
-344if (bytes == null) return null;
-345return parseFromOrNull(bytes, 0, 
bytes.length);
-346  }
-347
-348  /**
-349   * @param bytes
-350   * @param offset
-351   * @param len
-352   * @return A deserialized {@link 
RegionInfo} or null
-353   *  if we failed deserialize or passed 
bytes null
-354   */
-355  @InterfaceAudience.Private
-356  static RegionInfo parseFromOrNull(final 
byte [] bytes, int offset, int len) {
-357if (bytes == null || len <= 0) 
return null;
-358try {
-359  return parseFrom(bytes, offset, 
len);
-360} catch (DeserializationException e) 
{
-361  return null;
-362}
-363  }
-364
-365  /**
-366   * @param bytes A pb RegionInfo 
serialized with a pb magic prefix.
-367   * @return A deserialized {@link 
RegionInfo}
-368   * @throws DeserializationException
-369   */
-370  @InterfaceAudience.Private
-371  static RegionInfo parseFrom(final byte 
[] bytes) throws DeserializationException {
-372if (bytes == null) return null;
-373return parseFrom(bytes, 0, 
bytes.length);
-374  }
-375
-376  /**
-377   * @param bytes A pb RegionInfo 
serialized with a pb magic prefix.
-378   * @param offset starting point in the 
byte array
-379   * @param len length to read on the 
byte array
-380   * @return A deserialized {@link 
RegionInfo}
-381   * @throws DeserializationException
-382   */
-383  @InterfaceAudience.Private
-384  static RegionInfo parseFrom(final byte 
[] bytes, int offset, int len)
-385  throws DeserializationException {
-386if 
(ProtobufUtil.isPBMagicPrefix(bytes, offset, len)) {
-387  int pblen = 
ProtobufUtil.lengthOfPBMagic();
-388  try {
-389HBaseProtos.RegionInfo.Builder 
builder = HBaseProtos.RegionInfo.newBuilder();
-390ProtobufUtil.mergeFrom(builder, 
bytes, pblen + offset, len - pblen);
-391HBaseProtos.RegionInfo ri = 
builder.build();
-392return 
ProtobufUtil.toRegionInfo(ri);
-393  } catch (IOException e) {
-394throw new 
DeserializationException(e);
-395  }
-396} else {
-397  throw new 
DeserializationException("PB encoded RegionInfo expected");
-398}
-399  }
-400
-401  /**
-402   * Check whether two regions are 
adjacent
-403   * @param regionA
-404   * @param regionB
-405   * @return true if two regions are 
adjacent
-406   */
-407  static boolean areAdjacent(RegionInfo 
regionA, RegionInfo regionB) {
-408if (regionA == null || regionB == 
null) {
-409  throw new 
IllegalArgumentException(
-410  "Can't check whether adjacent for 
null region");
-411}
-412RegionInfo a = regionA;
-413RegionInfo b = regionB;
-414if (Bytes.compareTo(a.getStartKey(), 
b.getStartKey()) > 0) {
-415  a = regionB;
-416  b = regionA;
-417}
-418if (Bytes.compareTo(a.getEndKey(), 
b.getStartKey()) == 0) {
-419  return true;
+308if (offset <= 0) {
+309  throw new 
IllegalArgumentException("offset=" + offset);
+310}
+311byte[] buff  = new byte[offset];
+312System.arraycopy(regionName, 0, buff, 
0, offset);
+313return TableName.valueOf(buff);
+314  }
+315
+316  /**
+317   * Gets the start key from the 
specified region name.
+318   * @param regionName
+319   * @return Start key.
+320   * @throws java.io.IOException
+321   */
+322  static byte[]

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.LastOnRowColCell.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.LastOnRowColCell.html 
b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.LastOnRowColCell.html
index fb2a157..fce3633 100644
--- a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.LastOnRowColCell.html
+++ b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.LastOnRowColCell.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
+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";
@@ -119,7 +119,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Implemented Interfaces:
-Cell, SettableSequenceId
+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:
@@ -127,7 +127,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-private static class PrivateCellUtil.LastOnRowColCell
+private static class PrivateCellUtil.LastOnRowColCell
 extends PrivateCellUtil.LastOnRowCell
 
 
@@ -152,26 +152,44 @@ extends fArray 
 
 
+private static long
+FIXED_OVERHEAD 
+
+
 private byte
 flength 
 
-
+
 private int
 foffset 
 
-
+
 private byte[]
 qArray 
 
-
+
 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
+
 
 
 
@@ -240,6 +258,10 @@ extends int
 getQualifierOffset() 
 
+
+long
+heapSize() 
+
 
 
 
@@ -253,7 +275,7 @@ extends PrivateCellUtil.EmptyCell
-getSequenceId,
 getTagsArray,
 getTagsLength,
 getTagsOffset,
 getValueArray,
 getValueLength,
 getValueOffset,
 setSequenceId
+getSequenceId,
 getTagsArray,
 getTagsLength,
 getTagsOffset,
 getValueArray,
 getValueLength,
 getValueOffset,
 setSequenceId,
 setTimestamp, setTimestamp
 
 
 
@@ -262,6 +284,20 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--";
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-";
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--";
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--";
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--";
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--";
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/8/docs/api/java/lang
 /Object.html?is-external=true#notifyAll--" title="class or interface in 
java.lang">notifyAll, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--";
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--";
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-";
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-";
 title="class or interface in java.lang">wait
 
+
+
+
+
+Methods inherited from interface org.apache.hadoop.hbase.ExtendedCell
+deepClone,
 getChunkId,
 getSerializedSize,
 write,
 write
+
+
+
+
+
+Methods inherited from interface org.apache.hadoop.hbase.RawCell
+checkForTagsLength,
 cloneTags,
 getTag,
 getTags
+
 
 
 
@@ -276,13 +312,22 @@ extends 
+
+
+
+
+FIXED_OVERHEAD
+private static final long FIXED_OVERHEAD
+
+
 
 
 
 
 
 fArray
-private final byte[] fArray
+private final byte[] fArray
 
 
 
@@ -291,7 +336,7 @@ extends 
 
 foffset
-private final int foffset
+private final int foffset
 
 
 
@@ -300,7 +345,7 @@ extends 
 
 flength
-private final byte flength
+private final byte flength
 
 
 
@@ -309,7 +354,7 @@ extends 
 
 qArray
-private final byte[] qArray
+private final byte[] qArray
 
 
 
@@ -318,7 +363,7 @@ extends 
 
 qoffset
-private final int qoffset
+private final int qoffset
 
 
 
@@ -327,7 +372,7 @@ extends 
 
 qlength
-private final int qlength
+private final int qlength
 

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/coprocessor/example/ValueRewritingObserver.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/example/ValueRewritingObserver.html
 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/example/ValueRewritingObserver.html
index 075273c..6494589 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/example/ValueRewritingObserver.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/example/ValueRewritingObserver.html
@@ -256,7 +256,7 @@ implements RegionObserver
-postAppend,
 postBatchMutate,
 postBatchMutateIndispensably,
 postBulkLoadHFile,
 postCheckAndDelete,
 postCheckAndPut,
 postClose,
 postCloseRegionOperation, postCommitStoreFile,
 postCompact,
 postCompactSelection,
 postDelete,
 postExists,
 postFlush,
 postFlush,
 postGetOp,
 postIncrement,
 postInstantiateDeleteTracker,
 postMemStoreCompaction, postMutationBeforeWAL,
 postOpen,
 postPut,
 postReplayWALs,
 postScannerClose,
 postScannerFilterRow,
 postScannerNext,
 postScannerOpen,
 postStartRegionOperation,
 postStoreFileReaderOpen,
 postWALRestore,
 preAppend,
 preAppendAfterRowLock,
 preBatchMutate,
 preBulkLoadHFile,
 preCheckAndDelete,
 preCheckAndDeleteAfterRowLock,
 preCheckAndPut,
 preCheckAndPutAfterRowLock,
 preClose,
 preCommitStoreFile,
 preCompactScannerOpen,
 preCompactSelection,
 preDelete,
 preExists,
 preFlush,
 preFlush,
 preFlushScannerOpen,
 preGetOp, preIncrement,
 preIncrementAfterRowLock,
 preMemStoreCompaction,
 preMemStoreCompacti
 onCompact, preMemStoreCompactionCompactScannerOpen,
 preOpen,
 prePrepareTimeStampForDeleteVersion,
 prePut,
 preReplayWALs,
 preScannerClose,
 preScannerNext,
 preScann
 erOpen, preStoreFileReaderOpen,
 preStoreScannerOpen,
 preWALRes
 tore
+postAppend,
 postBatchMutate,
 postBatchMutateIndispensably,
 postBulkLoadHFile,
 postCheckAndDelete,
 postCheckAndPut,
 postClose,
 postCloseRegionOperation, postCommitStoreFile,
 postCompact,
 postCompactSelection,
 postDelete,
 postExists,
 postFlush,
 postFlush,
 postGetOp,
 postIncrement,
 postInstantiateDeleteTracker,
 postMemStoreCompaction, postMutationBeforeWAL,
 postOpen,
 postPut,
 postReplayWALs,
 postScannerClose,
 postScannerFilterRow,
 postScannerNext,
 postScannerOpen,
 postStartRegionOperation,
 postStoreFileReaderOpen,
 postWALRestore,
 preAppend,
 preAppendAfterRowLock,
 preBatchMutate,
 preBulkLoadHFile,
 preCheckAndDelete,
 preCheckAndDeleteAfterRowLock,
 preCheckAndPut,
 preCheckAndPutAfterRowLock,
 preClose,
 preCommitStoreFile,
 preCompactScannerOpen,
 preCompactSelection,
 preDelete,
 preExists,
 preFlush,
 preFlush,
 preFlushScannerOpen,
 preGetOp, preIncrement,
 preIncrementAfterRowLock,
 preMemStoreCompaction,
 preMemStoreCompactionCompac
 t, preMemStoreCompactionCompactScannerOpen,
 preOpen,
 prePrepareTimeStampForDeleteVersion,
 prePut, preReplayWALs,
 preScannerClose,
 preScannerNext,
 preScannerOpen, preStoreFileReaderOpen,
 preStoreScannerOpen,
 preWALRestore
 
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/coprocessor/example/WriteHeavyIncrementObserver.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/example/WriteHeavyIncrementObserver.html
 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/example/WriteHeavyIncrementObserver.html
index 9726790..a8b23e7 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/example/WriteHeavyIncrementObserver.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/example/WriteHeavyIncrementObserver.html
@@ -338,7 +338,7 @@ implements RegionObserver
-postAppend,
 postBatchMutate,
 postBatchMutateIndispensably,
 postBulkLoadHFile,
 postCheckAndDelete,
 postCheckAndPut,
 postClose,
 postCloseRegionOperation, postCommitStoreFile,
 postCompact,
 postCompactSelection,
 postDelete,
 postExists,
 postFlush,
 postFlush,
 postGetOp,
 postIncrement,
 postInstantiateDeleteTracker,
 postMemStoreCompaction, postMutationBeforeWAL,
 postOpen,
 postPut,
 postReplayWALs,
 postScannerClose,
 postScannerFilterRow,
 postScannerNext,
 postScannerOpen,
 postStartRegionOperation,
 postStoreFileReaderOpen,
 postWALRestore,
 preAppend,
 preAppendAfterRowLock,
 preBatchMutate,
 preBulkLoadHFile,
 preCheckAndDelete,
 preCheckAndDeleteAfterRowLock,
 preCheckAndPut,
 preCheckAndPutAfterRowLock,
 preClose,
 preCommitStoreFile,
 preCompactSel
 ection, preDelete,
 preExists,
 preFlush,
 preIncrementAfterRowLock,
 preMemStoreCompaction,
 preOpen,
 prePrepareTimeStampForDeleteVersion,
 prePut,
 preReplayWALs,
 preScannerClose,
 preScannerNext,
 preScannerOpen,
 preStoreFileReaderOpen,
 preWALRestore
+postAppend,
 postBatchMutate,
 postBatchMutateIndispensably,
 postBulkLoadHFile,
 postCheckAndDelete,
 postCheckAndPut,
 postClose,
 postCloseRegionOperation, postCommitStoreFile,
 p

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/SizeCachedKeyValue.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/SizeCachedKeyValue.html 
b/devapidocs/org/apache/hadoop/hbase/SizeCachedKeyValue.html
index 494edb6..5f59155 100644
--- a/devapidocs/org/apache/hadoop/hbase/SizeCachedKeyValue.html
+++ b/devapidocs/org/apache/hadoop/hbase/SizeCachedKeyValue.html
@@ -49,7 +49,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-Prev Class
+Prev Class
 Next Class
 
 
@@ -114,7 +114,7 @@ var activeTableTab = "activeTableTab";
 
 
 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, SettableSequenceId, SettableTimestamp
+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:
@@ -254,7 +254,7 @@ extends KeyValue
-checkParameters,
 clone, 
create,
 create,
 createKeyOnly,
 deepClone,
 equals,
 getBuffer,
 getDelimiter,
 getDelimiterInReverse, getFamilyArray,
 getFamilyLength,
 getFamilyLength,
 getFamilyOffset,
 getKey, 
getKeyDataStructureSize,
 getKeyOffset,
 getKeyString,
 getKeyValueDataStructureSize,
 getKeyValueDataStructureSize,
 getKeyValueDataStructureSize,
 getLength,
 getOffset,
 getQualifierArray,
 getQualifierLength,
 getQualifierOffset,
 getRowArray,
 getRowOffset,
 getSeque
 nceId, getSerializedSize,
 getTags, 
getTagsArray,
 getTagsLength,
 getTagsOffset,
 getTimestamp,
 getTimestamp,
 getTimestampOffset,
 getTypeByte,
 getValueArray,
 getValueLength, getValueOffset,
 hashCode,
 humanReadableTimestamp,
 isLatestTimestamp,
 keyToString,
 keyToString,
 oswrite,
 setSequenceId,
 setTimestamp, setTimestamp,
 shallowCopy,
 toString,
 toStringMap,
 updateLatestStamp,
 write,
 write,
 write,
 writeByteArray
+checkParameters,
 clone, 
create,
 create,
 createKeyOnly,
 deepClone,
 equals,
 getBuffer,
 getDelimiter,
 getDelimiterInReverse, getFamilyArray,
 getFamilyLength,
 getFamilyLength,
 getFamilyOffset,
 getKey, 
getKeyDataStructureSize,
 getKeyOffset,
 getKeyString,
 getKeyValueDataStructureSize,
 getKeyValueDataStructureSize,
 getKeyValueDataStructureSize,
 getLength,
 getOffset,
 getQualifierArray,
 getQualifierLength,
 getQualifierOffset,
 getRowArray,
 getRowOffset,
 getSeque
 nceId, getSerializedSize,
 getTags, 
getTagsArray,
 getTagsLength,
 getTagsOffset,
 getTimestamp,
 getTimestamp,
 getTimestampOffset,
 getTypeByte,
 getValueArray,
 getValueLength, getValueOffset,
 hashCode,
 humanReadableTimestamp,
 isLatestTimestamp,
 keyToString,
 keyToString,
 oswrite,
 setSequenceId,
 se
 tTimestamp, setTimestamp,
 shallowCopy,
 toString,
 toStringMap,
 updateLatestStamp,
 write,
 write,
 write,
 writeByteArray
 
 
 
@@ -433,7 +433,7 @@ extends 
 
-Prev Class
+Prev Class
 Next Class
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/SizeCachedNoTagsKeyValue.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/SizeCachedNoTagsKeyValue.html 
b/devapidocs/org/apache/hadoop/hbase/SizeCachedNoTagsKeyValue.html
index 104c423..b740274 100644
--- a/devapidocs/org/apache/hadoop/hbase/SizeCachedNoTagsKeyValue.html
+++ b/devapidocs/org/apache/hadoop/hbase/SizeCachedNoTagsKeyValue.html
@@ -119,7 +119,7 @@ var activeTableTab = "activeTableTab";
 
 
 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, SettableSequenceId, SettableTimestamp
+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
 
 
 
@@ -241,7 +241,7 @@ extends 
 
 Methods inherited from class org.apache.hadoop.hbase.KeyValue
-checkParameters,
 clone, 
create,
 create,
 createKeyOnly,
 deepClone,
 equals,
 getBuffer,
 getDelimiter,
 getDelimiterInReverse, getFamilyArray,
 getFamilyLength,
 getFamilyLength,
 getFamilyOffset,
 getKey, 
getKeyDataStructureSize,
 getKeyOffset,
 getKeyString,
 getKeyValueDataStructureSize,
 getKeyValueDataStructureSize,
 getKeyValueDataStructureSize,
 getLength,
 getOffset,
 getQualifierArray,
 getQualifierLength,
 getQualifierOffset,
 getRowArray,
 getRowOffset,
 getSeque
 nceId, getTags, 
getTagsArray,
 getTagsOffset,
 getTimestamp,
 getTimestamp,
 getTimestampOffset,
 getTypeByte,
 getValueArray,
 getValueLength,
 getValueOffset,
 hashCode, humanReadableTimestamp,
 isLatestTimestamp,
 keyToString,
 keyToString,
 oswrite,
 setSequenceId,
 setTimestamp,
 setTimestamp,
 shallowCopy, href="../../../../org/apache/hadoo

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/coprocessor/example/ZooKeeperScanPolicyObserver.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/example/ZooKeeperScanPolicyObserver.html
 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/example/ZooKeeperScanPolicyObserver.html
index 8e60154..2b69471 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/example/ZooKeeperScanPolicyObserver.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/example/ZooKeeperScanPolicyObserver.html
@@ -313,7 +313,7 @@ implements RegionObserver
-postAppend,
 postBatchMutate,
 postBatchMutateIndispensably,
 postBulkLoadHFile,
 postCheckAndDelete,
 postCheckAndPut,
 postClose,
 postCloseRegionOperation, postCommitStoreFile,
 postCompact,
 postCompactSelection,
 postDelete,
 postExists,
 postFlush,
 postFlush,
 postGetOp,
 postIncrement,
 postInstantiateDeleteTracker,
 postMemStoreCompaction, postMutationBeforeWAL,
 postOpen,
 postPut,
 postReplayWALs,
 postScannerClose,
 postScannerFilterRow,
 postScannerNext,
 postScannerOpen,
 postStartRegionOperation,
 postStoreFileReaderOpen,
 postWALRestore,
 preAppend,
 preAppendAfterRowLock,
 preBatchMutate,
 preBulkLoadHFile,
 preCheckAndDelete,
 preCheckAndDeleteAfterRowLock,
 preCheckAndPut,
 preCheckAndPutAfterRowLock,
 preClose,
 preCommitStoreFile,
 preCompact,
 preCompactSelection,
 preDelete,
 preExists,
 preFlush,
 preFlush,
 preGetOp,
 preIncrement,
 preIncrementAfterRowLock,
 preMemStoreCompaction,
 preMemStoreCompactionCompact,
 preMemStoreCompactionCompactScannerOpen,
 preOpen,
 prePrepareTimeStampForDeleteVersion,
 prePut,
 preReplayWALs,
 preScannerClose,
 preScannerNext,
 preScannerOpen,
 preStoreFileReaderOpen,
 preStoreScannerOpen,
 preWALRestore
+postAppend,
 postBatchMutate,
 postBatchMutateIndispensably,
 postBulkLoadHFile,
 postCheckAndDelete,
 postCheckAndPut,
 postClose,
 postCloseRegionOperation, postCommitStoreFile,
 postCompact,
 postCompactSelection,
 postDelete,
 postExists,
 postFlush,
 postFlush,
 postGetOp,
 postIncrement,
 postInstantiateDeleteTracker,
 postMemStoreCompaction, postMutationBeforeWAL,
 postOpen,
 postPut,
 postReplayWALs,
 postScannerClose,
 postScannerFilterRow,
 postScannerNext,
 postScannerOpen,
 postStartRegionOperation,
 postStoreFileReaderOpen,
 postWALRestore,
 preAppend,
 preAppendAfterRowLock,
 preBatchMutate,
 preBulkLoadHFile,
 preCheckAndDelete,
 preCheckAndDeleteAfterRowLock,
 preCheckAndPut,
 preCheckAndPutAfterRowLock,
 preClose,
 preCommitStoreFile,
 preCompact,
 preCompactSelection,
 preDelete,
 preExists,
 preFlush,
 preFlush,
 preGetOp,
 preIncrement,
 preIncrementAfterRowLock,
 preMemStoreCompaction,
 preMemStoreCompactionCompact,
 preMemStoreCompactionCompactScannerOpen,
 preOpen,
 prePrepareTimeStampForDeleteVersion,
 prePut,
 preReplayWALs,
 preScannerClose,
 preScannerNext,
 preScannerOpen,
 preStoreFileReaderOpen,
 preStoreScannerOpen,
 preWALRestore
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/coprocessor/package-frame.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/coprocessor/package-frame.html 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/package-frame.html
index 4033378..5b3a1b5 100644
--- a/devapidocs/org/apache/hadoop/hbase/coprocessor/package-frame.html
+++ b/devapidocs/org/apache/hadoop/hbase/coprocessor/package-frame.html
@@ -55,6 +55,7 @@
 MetricsCoprocessor
 MultiRowMutationEndpoint
 ObserverContextImpl
+ReadOnlyConfiguration
 
 Enums
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/coprocessor/package-summary.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/package-summary.html 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/package-summary.html
index d585d17..a48ca99 100644
--- a/devapidocs/org/apache/hadoop/hbase/coprocessor/package-summary.html
+++ b/devapidocs/org/apache/hadoop/hbase/coprocessor/package-summary.html
@@ -312,6 +312,12 @@
  third-party Coprocessor developers.
 
 
+
+ReadOnlyConfiguration
+
+Wraps a Configuration to make it read-only.
+
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/coprocessor/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/coprocessor/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/package-tree.html
index f607cda..695ea65 100644
--- a/devapidocs/org/apache/hadoop/hbase/coprocessor/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/coprocessor/package-tree.html
@@ -88,6 +88,11 @@
 
 org.apache.hadoop.hbase.coprocessor.BaseEnvironment (implements 
org.apache.hadoo

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/client/class-use/ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.html
index b3abbfe..5d768c7 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.html
@@ -204,154 +204,150 @@
 
 
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
-ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setCacheDataInL1(boolean value) 
-
-
-ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setCacheDataOnWrite(boolean value) 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setCacheIndexesOnWrite(boolean value) 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setCompactionCompressionType(Compression.Algorithm type)
 Compression types supported in hbase.
 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setCompressionType(Compression.Algorithm type)
 Compression types supported in hbase.
 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setCompressTags(boolean compressTags)
 Set whether the tags should be compressed along with 
DataBlockEncoding.
 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setConfiguration(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key,
 http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String value)
 Setter for storing a configuration setting in configuration
 map.
 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setDataBlockEncoding(DataBlockEncoding type)
 Set data block encoding algorithm used in block cache.
 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setDFSReplication(short replication)
 Set the replication factor to hfile(s) belonging to this 
family
 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setEncryptionKey(byte[] keyBytes)
 Set the raw crypto key attribute for the family
 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setEncryptionType(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String algorithm)
 Set the encryption algorithm for use with this family
 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setEvictBlocksOnClose(boolean value) 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setInMemory(boolean inMemory) 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setInMemoryCompaction(MemoryCompactionPolicy inMemoryCompaction) 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setKeepDeletedCells(KeepDeletedCells keepDeletedCells) 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setMaxVersions(int maxVersions) 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setMinVersions(int minVersions) 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setMobCompactPartitionPolicy(MobCompactPartitionPolicy policy)
 Set the mob compact partition policy for the family.
 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 ColumnFamilyDescriptorBuilder.M

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/constant-values.html
--
diff --git a/devapidocs/constant-values.html b/devapidocs/constant-values.html
index b98..6853af1 100644
--- a/devapidocs/constant-values.html
+++ b/devapidocs/constant-values.html
@@ -3705,21 +3705,21 @@
 
 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
 date
-"Wed Dec  6 14:42:16 UTC 2017"
+"Sat Dec  9 14:42:54 UTC 2017"
 
 
 
 
 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
 revision
-"ebd8841e0ee9ca1ab7b6dab55178761360b8d85a"
+"c98bab51de22a20990ff8805825e8638e0686464"
 
 
 
 
 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
 srcChecksum
-"3a84e36c1447b2269eb4eb0e7f8272a2"
+"fe57a4ce20b5a7072155e3899b6cdb15"
 
 
 
@@ -5043,89 +5043,75 @@
 "CACHE_BLOOMS_ON_WRITE"
 
 
-
-
-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
-CACHE_DATA_IN_L1
-"CACHE_DATA_IN_L1"
-
-
 
 
 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
 CACHE_DATA_ON_WRITE
 "CACHE_DATA_ON_WRITE"
 
-
+
 
 
 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
 CACHE_INDEX_ON_WRITE
 "CACHE_INDEX_ON_WRITE"
 
-
+
 
 
 private static final byte
 COLUMN_DESCRIPTOR_VERSION
 11
 
-
+
 
 
 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
 COMPRESS_TAGS
 "COMPRESS_TAGS"
 
-
+
 
 
 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
 COMPRESSION
 "COMPRESSION"
 
-
+
 
 
 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
 COMPRESSION_COMPACT
 "COMPRESSION_COMPACT"
 
-
+
 
 
 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
 DATA_BLOCK_ENCODING
 "DATA_BLOCK_ENCODING"
 
-
+
 
 
 public static final boolean
 DEFAULT_BLOCKCACHE
 true
 
-
+
 
 
 public static final int
 DEFAULT_BLOCKSIZE
 65536
 
-
+
 
 
 public static final boolean
 DEFAULT_CACHE_BLOOMS_ON_WRITE
 false
 
-
-
-
-public static final boolean
-DEFAULT_CACHE_DATA_IN_L1
-false
-
 
 
 
@@ -9073,75 +9059,61 @@
 "hbase.bucketcache.bucket.sizes"
 
 
-
-
-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
-BUCKET_CACHE_COMBINED_KEY
-"hbase.bucketcache.combinedcache.enabled"
-
-
 
 
 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
 BUCKET_CACHE_PERSISTENT_PATH_KEY
 "hbase.bucketcache.persistent.path"
 
-
+
 
 
 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
 BUCKET_CACHE_WRITER_QUEUE_KEY
 "hbase.bucketcache.writer.queuelength"
 
-
+
 
 
 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
 BUCKET_CACHE_WRITER_THREADS_KEY
 "hbase.bucketcache.writer.threads"
 
-
+
 
 
 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
 CACHE_BLOCKS_ON_WRITE_KEY
 "hbase.rs.cacheblocksonwrite"
 
-
+
 
 
 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
 CACHE_BLOOM_BLOCKS_ON_WRITE_KEY
 "hfile.block.bloom.cacheonwrite"
 
-
+
 
 
 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
 CACHE_DATA_BLOCKS_COMPRESSED_KEY
 "hbase.block.data.cachecompressed"
 
-
+
 
 
 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
 CACHE_DATA_ON_READ_KEY
 "hbase.block.data.cacheonread"
 
-
+
 
 
 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
 CACHE_INDEX_BLOCKS_ON_WRITE_KEY
 "hfile.block.index.cacheonw

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.html
 
b/devapidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.html
index c33e682..789ce29 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.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,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":9,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":10,"i52":10,"i53":10,"i54":10,"i55":10,"i56":10,"i57":10,"i58":10,"i59":10,"i60":10,"i61":10,"i62":10,"i63":10,"i64":10,"i65":10,"i66":10,"i67":10,"i68":10,"i69":10,"i70":10,"i71":10,"i72":10,"i73":10,"i74":10,"i75":10,"i76":10,"i77":10,"i78":10,"i79":10,"i80":9,"i81":10,"i82":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":9,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":10,"i52":10,"i53":10,"i54":10,"i55":10,"i56":10,"i57":10,"i58":10,"i59":10,"i60":10,"i61":10,"i62":10,"i63":10,"i64":10,"i65":10,"i66":10,"i67":10,"i68":10,"i69":10,"i70":10,"i71":10,"i72":10,"i73":10,"i74":10,"i75":10,"i76":10,"i77":10,"i78":9,"i79":10,"i80":10};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -118,7 +118,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Private
-public static class ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
+public static class ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 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 ColumnFamilyDescriptor, http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable
 An ModifyableFamilyDescriptor contains information about a 
column family such as the
@@ -357,245 +357,237 @@ implements 
 boolean
-isCacheDataInL1() 
-
-
-boolean
 isCacheDataOnWrite() 
 
-
+
 boolean
 isCacheIndexesOnWrite() 
 
-
+
 boolean
 isCompressTags() 
 
-
+
 boolean
 isEvictBlocksOnClose() 
 
-
+
 boolean
 isInMemory() 
 
-
+
 boolean
 isMobEnabled()
 Gets whether the mob is enabled for the family.
 
 
-
+
 boolean
 isNewVersionBehavior()
 By default, HBase only consider timestamp in versions.
 
 
-
+
 boolean
 isPrefetchBlocksOnOpen() 
 
-
+
 private static ColumnFamilyDescriptor
 parseFrom(byte[] bytes) 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 removeConfiguration(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key)
 Remove a configuration setting represented by the key from 
the
  configuration
 map.
 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 removeValue(Bytes key) 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 setBlockCacheEnabled(boolean blockCacheEnabled) 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 setBlocksize(int s) 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 setBloomFilterType(BloomType bt) 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 setCacheBloomsOnWrite(boolean value) 
 
-
-ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
-setCacheDataInL1(boolean value) 
-
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 setCacheDataOnWrite(boolean value) 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 setCacheIndexesOnWrite(boolean value) 
 
-
+
 ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
 setCompactionCompressionType(Compression.Alg

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/org/apache/hadoop/hbase/client/RegionInfo.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/RegionInfo.html 
b/apidocs/org/apache/hadoop/hbase/client/RegionInfo.html
index 06a1b25..258ea60 100644
--- a/apidocs/org/apache/hadoop/hbase/client/RegionInfo.html
+++ b/apidocs/org/apache/hadoop/hbase/client/RegionInfo.html
@@ -600,7 +600,7 @@ public interface 
 
 getStartKey
-static byte[] getStartKey(byte[] regionName)
+static byte[] getStartKey(byte[] regionName)
throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Gets the start key from the specified region name.
 
@@ -619,7 +619,7 @@ public interface 
 
 areAdjacent
-static boolean areAdjacent(RegionInfo regionA,
+static boolean areAdjacent(RegionInfo regionA,
RegionInfo regionB)
 Check whether two regions are adjacent
 
@@ -637,7 +637,7 @@ public interface 
 
 toByteArray
-static byte[] toByteArray(RegionInfo ri)
+static byte[] toByteArray(RegionInfo ri)
 
 Parameters:
 ri - 
@@ -654,7 +654,7 @@ public interface 
 
 prettyPrint
-static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String prettyPrint(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String encodedRegionName)
+static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String prettyPrint(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String encodedRegionName)
 Use logging.
 
 Parameters:
@@ -671,7 +671,7 @@ public interface 
 
 createRegionName
-static byte[] createRegionName(TableName tableName,
+static byte[] createRegionName(TableName tableName,
byte[] startKey,
long regionid,
boolean newFormat)
@@ -694,7 +694,7 @@ public interface 
 
 createRegionName
-static byte[] createRegionName(TableName tableName,
+static byte[] createRegionName(TableName tableName,
byte[] startKey,
http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String id,
boolean newFormat)
@@ -717,7 +717,7 @@ public interface 
 
 createRegionName
-static byte[] createRegionName(TableName tableName,
+static byte[] createRegionName(TableName tableName,
byte[] startKey,
long regionid,
int replicaId,
@@ -742,7 +742,7 @@ public interface 
 
 createRegionName
-static byte[] createRegionName(TableName tableName,
+static byte[] createRegionName(TableName tableName,
byte[] startKey,
byte[] id,
boolean newFormat)
@@ -765,7 +765,7 @@ public interface 
 
 createRegionName
-static byte[] createRegionName(TableName tableName,
+static byte[] createRegionName(TableName tableName,
byte[] startKey,
byte[] id,
int replicaId,
@@ -789,7 +789,7 @@ public interface 
 
 createMobRegionInfo
-static RegionInfo createMobRegionInfo(TableName tableName)
+static RegionInfo createMobRegionInfo(TableName tableName)
 Creates a RegionInfo object for MOB data.
 
 Parameters:
@@ -805,7 +805,7 @@ public interface 
 
 parseRegionName
-static byte[][] parseRegionName(byte[] regionName)
+static byte[][] parseRegionName(byte[] regionName)
  throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Separate elements of a regionName.
 
@@ -824,7 +824,7 @@ public interface 
 
 toDelimitedByteArray
-static byte[] toDelimitedByteArray(RegionInfo... infos)
+static byte[] toDelimitedByteArray(RegionInfo... infos)
 throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Serializes given RegionInfo's as a byte array. Use this 
instead of
  toByteArray(RegionInfo)
 when
@@ -847,7 +847,7 @@ public interface 
 
 toDelimitedByteArray
-static byte[] toDelimitedByteArray(RegionInfo ri)
+static byte[] toDelimitedByteArray(RegionInfo ri)
 throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Use this instead of toByteArray(Region

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/Abortable.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/Abortable.html 
b/devapidocs/org/apache/hadoop/hbase/Abortable.html
index 2a8957c..3d8a5d0 100644
--- a/devapidocs/org/apache/hadoop/hbase/Abortable.html
+++ b/devapidocs/org/apache/hadoop/hbase/Abortable.html
@@ -105,7 +105,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Known Implementing Classes:
-BackupHFileCleaner, ConnectionImplementation, 
ConnectionUtils.MasterlessConnection, ConnectionUtils.ShortCircuitingClusterConnection,
 DumpReplicationQueues.WarnOnlyAbortable,
 HBaseAdmin, HBaseAdmin.ThrowableAbortable, HBaseInterClusterReplicationEndpoint,
 HBaseReplicationEndpoint, HMaster, HMasterCommandLine.LocalHMaster, HRegionServer, LogRollBackupSubprocedurePool, 
RegionReplicaReplicationEndpoint,
 ReplicationHFileCleaner.WarnOnlyAbortable,
 ReplicationLogCleaner.WarnOnlyAbortable,
 ReplicationPeerZKImpl, ReplicationSyncUp.DummyServer,
 ZKWatcher
+BackupHFileCleaner, ConnectionImplementation, 
ConnectionUtils.MasterlessConnection, ConnectionUtils.ShortCircuitingClusterConnection,
 DumpReplicationQueues.WarnOnlyAbortable,
 HBaseAdmin, HBaseAdmin.ThrowableAbortable, HBaseInterClusterReplicationEndpoint,
 HBaseReplicationEndpoint, HMaster, HMasterCommandLine.LocalHMaster, HRegionServer, LogRollBackupSubprocedurePool, 
RegionReplicaReplicationEndpoint,
 ReplicationHFileCleaner.WarnOnlyAbortable,
 ReplicationLogCleaner.WarnOnlyAbortable,
 ReplicationPeerZKImpl, ReplicationSyncUp.DummyServer,
 SharedConnection, ZKWatcher
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/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 14308be..e1ea5a0 100644
--- a/devapidocs/org/apache/hadoop/hbase/ByteBufferKeyValue.html
+++ b/devapidocs/org/apache/hadoop/hbase/ByteBufferKeyValue.html
@@ -114,7 +114,7 @@ var activeTableTab = "activeTableTab";
 
 
 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, SettableSequenceId, SettableTimestamp
+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:
@@ -422,8 +422,7 @@ implements 
 
 void
-setTimestamp(byte[] ts,
-int tsOffset)
+setTimestamp(byte[] ts)
 Sets with the given timestamp.
 
 
@@ -845,11 +844,13 @@ implements 
 setSequenceId
 public void setSequenceId(long seqId)
-Description copied from 
interface: SettableSequenceId
+Description copied from 
interface: ExtendedCell
 Sets with the given seqId.
 
 Specified by:
-setSequenceId in
 interface SettableSequenceId
+setSequenceId in
 interface ExtendedCell
+Parameters:
+seqId - sequence ID
 
 
 
@@ -1212,11 +1213,13 @@ implements setTimestamp
 public void setTimestamp(long ts)
   throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
-Description copied from 
interface: SettableTimestamp
+Description copied from 
interface: ExtendedCell
 Sets with the given timestamp.
 
 Specified by:
-setTimestamp in
 interface SettableTimestamp
+setTimestamp in
 interface ExtendedCell
+Parameters:
+ts - timestamp
 Throws:
 http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 
@@ -1231,23 +1234,21 @@ implements private int getTimestampOffset()
 
 
-
+
 
 
 
 
 setTimestamp
-public void setTimestamp(byte[] ts,
- int tsOffset)
+public void setTimestamp(byte[] ts)
   throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
-Description copied from 
interface: SettableTimestamp
+Description copied from 
interface: ExtendedCell
 Sets with the given timestamp.
 
 Specified by:
-setTimestamp in
 interface SettableTimestamp
+setTimestamp in
 interface ExtendedCell
 Parameters:
 ts - buffer containing the timestamp value
-tsOffset - offset to the new timestamp
 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/e23b49ba/devapidocs/org/apache/hadoop/hbase/CellUtil.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/CellUtil.html 
b/devapidocs/org/

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/HColumnDescriptor.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/HColumnDescriptor.html 
b/devapidocs/org/apache/hadoop/hbase/HColumnDescriptor.html
index ed18c40..eb9af9e 100644
--- a/devapidocs/org/apache/hadoop/hbase/HColumnDescriptor.html
+++ b/devapidocs/org/apache/hadoop/hbase/HColumnDescriptor.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":42,"i1":42,"i2":42,"i3":42,"i4":42,"i5":42,"i6":42,"i7":42,"i8":42,"i9":42,"i10":42,"i11":41,"i12":42,"i13":42,"i14":42,"i15":42,"i16":42,"i17":42,"i18":42,"i19":42,"i20":42,"i21":42,"i22":42,"i23":42,"i24":42,"i25":42,"i26":42,"i27":41,"i28":42,"i29":42,"i30":42,"i31":42,"i32":42,"i33":42,"i34":42,"i35":42,"i36":42,"i37":42,"i38":42,"i39":42,"i40":42,"i41":41,"i42":42,"i43":42,"i44":42,"i45":41,"i46":42,"i47":42,"i48":42,"i49":42,"i50":42,"i51":42,"i52":42,"i53":42,"i54":42,"i55":42,"i56":42,"i57":42,"i58":42,"i59":42,"i60":42,"i61":42,"i62":42,"i63":42,"i64":42,"i65":42,"i66":42,"i67":42,"i68":42,"i69":42,"i70":42,"i71":42,"i72":42,"i73":42,"i74":42,"i75":42,"i76":42,"i77":42,"i78":42,"i79":42,"i80":42,"i81":42,"i82":42,"i83":42};
+var methods = 
{"i0":42,"i1":42,"i2":42,"i3":42,"i4":42,"i5":42,"i6":42,"i7":42,"i8":42,"i9":42,"i10":42,"i11":41,"i12":42,"i13":42,"i14":42,"i15":42,"i16":42,"i17":42,"i18":42,"i19":42,"i20":42,"i21":42,"i22":42,"i23":42,"i24":42,"i25":42,"i26":42,"i27":41,"i28":42,"i29":42,"i30":42,"i31":42,"i32":42,"i33":42,"i34":42,"i35":42,"i36":42,"i37":42,"i38":42,"i39":42,"i40":41,"i41":42,"i42":42,"i43":42,"i44":41,"i45":42,"i46":42,"i47":42,"i48":42,"i49":42,"i50":42,"i51":42,"i52":42,"i53":42,"i54":42,"i55":42,"i56":42,"i57":42,"i58":42,"i59":42,"i60":42,"i61":42,"i62":42,"i63":42,"i64":42,"i65":42,"i66":42,"i67":42,"i68":42,"i69":42,"i70":42,"i71":42,"i72":42,"i73":42,"i74":42,"i75":42,"i76":42,"i77":42,"i78":42,"i79":42,"i80":42,"i81":42,"i82":42};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete 
Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -792,41 +792,35 @@ implements 
 boolean
-isCacheDataInL1()
-Deprecated. 
- 
-
-
-boolean
 isCacheDataOnWrite()
 Deprecated. 
  
 
-
+
 boolean
 isCacheIndexesOnWrite()
 Deprecated. 
  
 
-
+
 boolean
 isCompressTags()
 Deprecated. 
  
 
-
+
 boolean
 isEvictBlocksOnClose()
 Deprecated. 
  
 
-
+
 boolean
 isInMemory()
 Deprecated. 
  
 
-
+
 static byte[]
 isLegalFamilyName(byte[] b)
 Deprecated. 
@@ -834,109 +828,113 @@ implements 
+
 boolean
 isMobEnabled()
 Deprecated. 
 Gets whether the mob is enabled for the family.
 
 
-
+
 boolean
 isNewVersionBehavior()
 Deprecated. 
 By default, HBase only consider timestamp in versions.
 
 
-
+
 boolean
 isPrefetchBlocksOnOpen()
 Deprecated. 
  
 
-
+
 static HColumnDescriptor
 parseFrom(byte[] bytes)
 Deprecated. 
  
 
-
+
 void
 remove(byte[] key)
 Deprecated. 
  
 
-
+
 void
 removeConfiguration(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key)
 Deprecated. 
 Remove a configuration setting represented by the key.
 
 
-
+
 HColumnDescriptor
 setBlockCacheEnabled(boolean value)
 Deprecated. 
  
 
-
+
 HColumnDescriptor
 setBlocksize(int value)
 Deprecated. 
  
 
-
+
 HColumnDescriptor
 setBloomFilterType(BloomType value)
 Deprecated. 
  
 
-
+
 HColumnDescriptor
 setCacheBloomsOnWrite(boolean value)
 Deprecated. 
  
 
-
+
 HColumnDescriptor
 setCacheDataInL1(boolean value)
-Deprecated. 
- 
+Deprecated. 
+Since 2.0 and will be 
removed in 3.0 with out any replacement. Caching data in on
+ heap Cache, when there are both on heap LRU Cache and Bucket 
Cache will no longer
+ be supported from 2.0.
+
+
 
-
+
 HColumnDescriptor
 setCacheDataOnWrite(boolean value)
 Deprecated. 
  
 
-
+
 HColumnDescriptor
 setCacheIndexesOnWrite(boolean value)
 Deprecated. 
  
 
-
+
 HColumnDescriptor
 setCompactionCompressionType(Compression.Algorithm value)
 Deprecated. 
 Compression types supported in hbase.
 
 
-
+
 HColumnDescriptor
 setCompressionType(Compression.Algorithm value)
 Deprecated. 
 Compression types supported in hbase.
 
 
-
+
 HColumnDescriptor
 setCompressTags(boolean value)
 Deprecated. 
 Set whether the tags should be compressed along with 
DataBlockEncoding.
 
 
-
+
 HColumnDescriptor
 setConfiguration(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String key,
 http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String value)
@@ -944,143 +942,143 @@ implements Setter for storing a configuration setting.
 
 
-
+
 HColumnDescriptor
 setDataBlockEncoding(DataBlockEncoding 

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/src-html/org/apache/hadoop/hbase/HColumnDescriptor.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/HColumnDescriptor.html 
b/apidocs/src-html/org/apache/hadoop/hbase/HColumnDescriptor.html
index a07d579..ee48129 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/HColumnDescriptor.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/HColumnDescriptor.html
@@ -60,7 +60,7 @@
 052  public static final String 
CACHE_INDEX_ON_WRITE = ColumnFamilyDescriptorBuilder.CACHE_INDEX_ON_WRITE;
 053  public static final String 
CACHE_BLOOMS_ON_WRITE = ColumnFamilyDescriptorBuilder.CACHE_BLOOMS_ON_WRITE;
 054  public static final String 
EVICT_BLOCKS_ON_CLOSE = ColumnFamilyDescriptorBuilder.EVICT_BLOCKS_ON_CLOSE;
-055  public static final String 
CACHE_DATA_IN_L1 = ColumnFamilyDescriptorBuilder.CACHE_DATA_IN_L1;
+055  public static final String 
CACHE_DATA_IN_L1 = "CACHE_DATA_IN_L1";
 056  public static final String 
PREFETCH_BLOCKS_ON_OPEN = 
ColumnFamilyDescriptorBuilder.PREFETCH_BLOCKS_ON_OPEN;
 057  public static final String BLOCKSIZE = 
ColumnFamilyDescriptorBuilder.BLOCKSIZE;
 058  public static final String LENGTH = 
"LENGTH";
@@ -95,7 +95,7 @@
 087  public static final KeepDeletedCells 
DEFAULT_KEEP_DELETED = ColumnFamilyDescriptorBuilder.DEFAULT_KEEP_DELETED;
 088  public static final boolean 
DEFAULT_BLOCKCACHE = ColumnFamilyDescriptorBuilder.DEFAULT_BLOCKCACHE;
 089  public static final boolean 
DEFAULT_CACHE_DATA_ON_WRITE = 
ColumnFamilyDescriptorBuilder.DEFAULT_CACHE_DATA_ON_WRITE;
-090  public static final boolean 
DEFAULT_CACHE_DATA_IN_L1 = 
ColumnFamilyDescriptorBuilder.DEFAULT_CACHE_DATA_IN_L1;
+090  public static final boolean 
DEFAULT_CACHE_DATA_IN_L1 = false;
 091  public static final boolean 
DEFAULT_CACHE_INDEX_ON_WRITE = 
ColumnFamilyDescriptorBuilder.DEFAULT_CACHE_INDEX_ON_WRITE;
 092  public static final int 
DEFAULT_BLOCKSIZE = ColumnFamilyDescriptorBuilder.DEFAULT_BLOCKSIZE;
 093  public static final String 
DEFAULT_BLOOMFILTER =  
ColumnFamilyDescriptorBuilder.DEFAULT_BLOOMFILTER.name();
@@ -542,290 +542,288 @@
 534return this;
 535  }
 536
-537  @Override
-538  public boolean isCacheDataInL1() {
-539return delegatee.isCacheDataInL1();
-540  }
-541
-542  /**
-543   * @param value true if we should cache 
data blocks in the L1 cache (if block cache deploy
-544   * has more than one tier; e.g. we are 
using CombinedBlockCache).
-545   * @return this (for chained 
invocation)
-546   */
-547  public HColumnDescriptor 
setCacheDataInL1(boolean value) {
-548
getDelegateeForModification().setCacheDataInL1(value);
-549return this;
-550  }
-551
-552  @Override
-553  public boolean isCacheIndexesOnWrite() 
{
-554return 
delegatee.isCacheIndexesOnWrite();
-555  }
-556
-557  /**
-558   * @param value true if we should cache 
index blocks on write
-559   * @return this (for chained 
invocation)
-560   */
-561  public HColumnDescriptor 
setCacheIndexesOnWrite(boolean value) {
-562
getDelegateeForModification().setCacheIndexesOnWrite(value);
-563return this;
-564  }
-565
-566  @Override
-567  public boolean isCacheBloomsOnWrite() 
{
-568return 
delegatee.isCacheBloomsOnWrite();
-569  }
-570
-571  /**
-572   * @param value true if we should cache 
bloomfilter blocks on write
-573   * @return this (for chained 
invocation)
-574   */
-575  public HColumnDescriptor 
setCacheBloomsOnWrite(boolean value) {
-576
getDelegateeForModification().setCacheBloomsOnWrite(value);
-577return this;
-578  }
-579
-580  @Override
-581  public boolean isEvictBlocksOnClose() 
{
-582return 
delegatee.isEvictBlocksOnClose();
-583  }
-584
-585  /**
-586   * @param value true if we should evict 
cached blocks from the blockcache on
-587   * close
-588   * @return this (for chained 
invocation)
-589   */
-590  public HColumnDescriptor 
setEvictBlocksOnClose(boolean value) {
-591
getDelegateeForModification().setEvictBlocksOnClose(value);
-592return this;
-593  }
-594
-595  @Override
-596  public boolean isPrefetchBlocksOnOpen() 
{
-597return 
delegatee.isPrefetchBlocksOnOpen();
-598  }
-599
-600  /**
-601   * @param value true if we should 
prefetch blocks into the blockcache on open
-602   * @return this (for chained 
invocation)
-603   */
-604  public HColumnDescriptor 
setPrefetchBlocksOnOpen(boolean value) {
-605
getDelegateeForModification().setPrefetchBlocksOnOpen(value);
-606return this;
-607  }
-608
-609  /**
-610   * @see java.lang.Object#toString()
-611   */
-612  @Override
-613  public String toString() {
-614return delegatee.toString();
-615  }
-616
-617  /**
-618   * @return Column family descriptor 
with only the customized attributes.
-619   */
-620  @Override
-621  public String 
toStringCustomizedValues() {
-622return 
delegatee.toStringCustomizedValues();
-623  }
-624
-625  public static Unit ge

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/constraint/ConstraintProcessor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/constraint/ConstraintProcessor.html 
b/devapidocs/org/apache/hadoop/hbase/constraint/ConstraintProcessor.html
index 5832fe5..736c955 100644
--- a/devapidocs/org/apache/hadoop/hbase/constraint/ConstraintProcessor.html
+++ b/devapidocs/org/apache/hadoop/hbase/constraint/ConstraintProcessor.html
@@ -271,7 +271,7 @@ implements RegionObserver
-postAppend,
 postBatchMutate,
 postBatchMutateIndispensably,
 postBulkLoadHFile,
 postCheckAndDelete,
 postCheckAndPut,
 postClose,
 postCloseRegionOperation, postCommitStoreFile,
 postCompact,
 postCompactSelection, postDelete,
 postExists,
 postFlush,
 postFlush, postGetOp,
 postIncrement,
 postInstantiateDeleteTracker,
 postMemStore
 Compaction, postMutationBeforeWAL,
 postOpen,
 postPut,
 postReplayWALs, postScannerClose,
 postScannerNext,
 postScannerOpen,
 postStartRegionOperatio
 n, postStoreFileReaderOpen,
 postWALRestore,
 preAppend,
 preAppendAfterRowLock,
 preBatchMutate,
 preBulkLoadHFile,
 preCheckAndDelete,
 preCheckAndDeleteAfterRowLock,
 preCheckAndPut,
 preCheckAndPutAfterRowLock,
 preClose,
 preCommitStoreFile,
 preCompact,
 preCompactScannerOpen,
 preCompactSelection,
 preDelete,
 preExis
 ts, preFlush,
 preFlush,
 preFlushScannerOpen,
 preGetOp, preIncrement,
 preIncrementAfterRowLock,
 preMemStoreCompaction,
 
 preMemStoreCompactionCompact, preMemStoreCompactionCompactScannerOpen,
 preOpen,
 prePrepareTimeStampForDeleteVersion,
 preReplayWALs, preScannerClose,
 preScannerNext,
 preScannerOpen,
 preStoreFileReaderOpen,
 preStoreScannerOpen,
 preWALRestore
+postAppend,
 postBatchMutate,
 postBatchMutateIndispensably,
 postBulkLoadHFile,
 postCheckAndDelete,
 postCheckAndPut,
 postClose,
 postCloseRegionOperation, postCommitStoreFile,
 postCompact,
 postCompactSelection, postDelete,
 postExists,
 postFlush,
 postFlush, postGetOp,
 postIncrement,
 postInstantiateDeleteTracker,
 postMemStoreCompacti
 on, postMutationBeforeWAL,
 postOpen,
 postPut,
 po
 stReplayWALs, postScannerClose,
 postScannerNext,
 postScannerOpen,
 postStartRegionOperation,
 <
 a 
href="../../../../../org/apache/hadoop/hbase/coprocessor/RegionObserver.html#postStoreFileReaderOpen-org.apache.hadoop.hbase.coprocessor.ObserverContext-org.apache.hadoop.fs.FileSystem-org.apache.hadoop.fs.Path-org.apache.hadoop.hbase.io.FSDataInputStreamWrapper-long-org.apache.hadoop.hbase.io.hfile.CacheConfig-org.apache.hadoop.hbase.io.Reference-org.apache.hadoop.hbase.regionserver.StoreFileReader-">postStoreFileReaderOpen,
 postWALRestore,
 preAppend,
 preAppendAfterRowLock,
 preBatchMutate,
 preBulkLoadHFile,
 preCheckAndDelete,
 preCheckAndDeleteAfterRowLock,
 preCheckAndPut,
 preCheckAndPutAfterRowLock,
 preClose,
 preCommitStoreFile,
 preCompact,
 preCompactScannerOpen,
 preCompactSelection,
 preDelete,
 preExists,
 
 preFlush,
 preFlush,
 preFlushScannerOpen,
 preGetOp, preIncrement,
 preIncrementAfterRowLock,
 preMemStoreCompaction,
 preMemSt
 oreCompactionCompact, preMemStoreCompactionCompactScannerOpen,
 preOpen,
 prePrepareTimeStampForDeleteVersion,
 preReplayWALs, preScannerClose,
 preScannerNext,
 preScannerOpen,
 preStoreFileReaderOpen,
 preStoreScannerOpen,
 preWALRestore
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/coprocessor/BaseEnvironment.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/BaseEnvironment.html 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/BaseEnvironment.html
index 3cecc49..4a64995 100644
--- a/devapidocs/org/apache/hadoop/hbase/coprocessor/BaseEnvironment.html
+++ b/devapidocs/org/apache/hadoop/hbase/coprocessor/BaseEnvironment.html
@@ -501,7 +501,8 @@ implements Specified by:
 getConfiguration in
 interface CoprocessorEnvironment
 Returns:
-the configuration
+a Read-only Configuration; throws http://docs.oracle.com/javase/8/docs/api/java/lang/UnsupportedOperationException.html?is-external=true";
 title="class or interface in 
java.lang">UnsupportedOperationException if you try
+   to set a configuration.
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/devapidocs/org/apache/hadoop/hbase/coprocessor/MasterCoprocessorEnvironment.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/MasterCoprocessorEnvironment.html
 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/MasterCoprocessorEnvironment.html
index be05971..141225d 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/coprocessor/MasterCoprocessorEnvironment.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/coprocessor/MasterCoprocessorEnvironment.html
@@ -134,13 +134,13 @@ extends 
 Connection
 crea

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/index-all.html
--
diff --git a/apidocs/index-all.html b/apidocs/index-all.html
index aa5c231..68cf300 100644
--- a/apidocs/index-all.html
+++ b/apidocs/index-all.html
@@ -88,8 +88,6 @@
 
 abort a procedure
 
-abortProcedure(RpcController,
 MasterProtos.AbortProcedureRequest) - Method in class 
org.apache.hadoop.hbase.client.ShortCircuitMasterConnection
- 
 abortProcedureAsync(long,
 boolean) - Method in interface org.apache.hadoop.hbase.client.Admin
 
 Abort a procedure but does not block and wait for 
completion.
@@ -224,8 +222,6 @@
 
 Get the column from the specified family with the specified 
qualifier.
 
-addColumn(RpcController,
 MasterProtos.AddColumnRequest) - Method in class 
org.apache.hadoop.hbase.client.ShortCircuitMasterConnection
- 
 addColumnFamily(TableName,
 ColumnFamilyDescriptor) - Method in interface 
org.apache.hadoop.hbase.client.Admin
 
 Add a column family to an existing table.
@@ -425,8 +421,6 @@
 
 Add a new replication peer for replicating data to slave 
cluster
 
-addReplicationPeer(RpcController,
 ReplicationProtos.AddReplicationPeerRequest) - Method in class 
org.apache.hadoop.hbase.client.ShortCircuitMasterConnection
- 
 Address - 
Class in org.apache.hadoop.hbase.net
 
 An immutable type to hold a hostname and port combo, like 
an Endpoint
@@ -588,8 +582,6 @@
 
 assign(byte[])
 - Method in interface org.apache.hadoop.hbase.client.AsyncAdmin
  
-assignRegion(RpcController,
 MasterProtos.AssignRegionRequest) - Method in class 
org.apache.hadoop.hbase.client.ShortCircuitMasterConnection
- 
 AsyncAdmin - Interface in org.apache.hadoop.hbase.client
 
 The asynchronous administrative API for HBase.
@@ -674,8 +666,6 @@
 
 Invoke the balancer.
 
-balance(RpcController,
 MasterProtos.BalanceRequest) - Method in class 
org.apache.hadoop.hbase.client.ShortCircuitMasterConnection
- 
 balancer()
 - Method in interface org.apache.hadoop.hbase.client.Admin
 
 Deprecated.
@@ -1066,10 +1056,6 @@
 
 Deprecated.
  
-CACHE_DATA_IN_L1
 - Static variable in class org.apache.hadoop.hbase.client.ColumnFamilyDescriptorBuilder
-
-Key for cache data into L1 if cache is set up with more 
than one tier.
-
 CACHE_DATA_IN_L1
 - Static variable in class org.apache.hadoop.hbase.HColumnDescriptor
 
 Deprecated.
@@ -1424,8 +1410,6 @@
 
 Clear dead region servers from master.
 
-clearDeadServers(RpcController,
 MasterProtos.ClearDeadServersRequest) - Method in class 
org.apache.hadoop.hbase.client.ShortCircuitMasterConnection
- 
 Client - Class in org.apache.hadoop.hbase.rest.client
 
 A wrapper around HttpClient which provides some useful 
function and
@@ -1523,8 +1507,6 @@
 
 Closes the scanner and releases any resources it has 
allocated
 
-close()
 - Method in class org.apache.hadoop.hbase.client.ShortCircuitMasterConnection
- 
 close() - 
Method in interface org.apache.hadoop.hbase.client.Table
 
 Releases any resources held or pending changes in internal 
buffers.
@@ -2812,8 +2794,6 @@
 
 Create a new namespace.
 
-createNamespace(RpcController,
 MasterProtos.CreateNamespaceRequest) - Method in class 
org.apache.hadoop.hbase.client.ShortCircuitMasterConnection
- 
 createNamespaceAsync(NamespaceDescriptor)
 - Method in interface org.apache.hadoop.hbase.client.Admin
 
 Create a new namespace.
@@ -2952,8 +2932,6 @@
 
 Creates a new table with an initial set of empty regions 
defined by the specified split keys.
 
-createTable(RpcController,
 MasterProtos.CreateTableRequest) - Method in class 
org.apache.hadoop.hbase.client.ShortCircuitMasterConnection
- 
 createTable(HTableDescriptor)
 - Method in class org.apache.hadoop.hbase.rest.client.RemoteAdmin
 
 Creates a new table.
@@ -3310,8 +3288,6 @@
 Mark region server(s) as decommissioned to prevent 
additional regions from getting
  assigned to them.
 
-decommissionRegionServers(RpcController,
 MasterProtos.DecommissionRegionServersRequest) - Method in class 
org.apache.hadoop.hbase.client.ShortCircuitMasterConnection
- 
 decrement()
 - Method in class org.apache.hadoop.hbase.util.Counter
 
 Deprecated.
@@ -3410,10 +3386,6 @@
 
 Deprecated.
  
-DEFAULT_CACHE_DATA_IN_L1
 - Static variable in class org.apache.hadoop.hbase.client.ColumnFamilyDescriptorBuilder
-
-Default setting for whether to cache data blocks in L1 
tier.
-
 DEFAULT_CACHE_DATA_IN_L1
 - Static variable in class org.apache.hadoop.hbase.HColumnDescriptor
 
 Deprecated.
@@ -3915,8 +3887,6 @@
  Use Admin.deleteColumnFamily(TableName,
 byte[])}.
 
 
-deleteColumn(RpcController,
 MasterProtos.DeleteColumnRequest) - Method in class 
org.apache.hadoop.hbase.client.ShortCircuitMasterConnection
- 
 deleteColumnFamily(TableName,
 byte[]) - Method in interface org.apache.hadoop.hbase.client.Admin
 
 Delete a column family from a table.
@@ -3937,8 +3907,6 @@
 
 Delete an existing namespace.
 
-deleteNamespace(RpcController,
 MasterProtos.DeleteNamespaceReques

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/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 9392488..83099f8 100644
--- a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.html
+++ b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.html
@@ -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.
@@ -710,9 +710,8 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 static void
-setTimestamp(Cell cell,
-byte[] ts,
-int tsOffset)
+setTimestamp(Cell cell,
+byte[] ts)
 Sets the given timestamp to the cell.
 
 
@@ -737,9 +736,8 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 static boolean
-updateLatestStamp(Cell cell,
- byte[] ts,
- int tsOffset)
+updateLatestStamp(Cell cell,
+ byte[] ts)
 Sets the given timestamp to the cell iff current timestamp 
is
  HConstants.LATEST_TIMESTAMP.
 
@@ -875,7 +873,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.
 
 
@@ -893,7 +891,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
 
@@ -904,7 +902,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)
 
 
@@ -914,7 +912,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)
 
 
@@ -924,7 +922,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)
 
 
@@ -934,7 +932,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)
 
 
@@ -944,7 +942,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 getRowByte
-public static byte getRowByte(Cell cell,
+public static byte getRowByte(Cell cell,
   int index)
 misc
 
@@ -955,7 +953,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 getQualifierByte
-public static byte getQualifierByte(Cell cell,
+public static byte getQualifierByte(Cell cell,
 int index)
 
 
@@ -965,7 +963,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 getValueBufferShallowCopy
-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)
 
 
 
@@ -974,7 +972,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 createCell
-public static Cell createCell(Cell cell,
+public static Cell createCell(Cell cell,
   http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tags)
 
 Returns:
@@ -988,7 +986,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 createCell
-public static Cell createCell(Cell cell,
+public static Cell createCell(Cell cell,
   byte[] tags)
 
 Returns:
@@ -1002,7 +1000,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 createCell
-public static Cell createCell(Cell cell,
+public static Cell createCell(Cell cell,
  

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/apidocs/src-html/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
--
diff --git 
a/apidocs/src-html/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
 
b/apidocs/src-html/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
deleted file mode 100644
index fea1e14..000
--- 
a/apidocs/src-html/org/apache/hadoop/hbase/client/ShortCircuitMasterConnection.html
+++ /dev/null
@@ -1,713 +0,0 @@
-http://www.w3.org/TR/html4/loose.dtd";>
-
-
-Source code
-
-
-
-
-001/**
-002 * Licensed to the Apache Software 
Foundation (ASF) under one
-003 * or more contributor license 
agreements.  See the NOTICE file
-004 * distributed with this work for 
additional information
-005 * regarding copyright ownership.  The 
ASF licenses this file
-006 * to you under the Apache License, 
Version 2.0 (the
-007 * "License"); you may not use this file 
except in compliance
-008 * with the License.  You may obtain a 
copy of the License at
-009 *
-010 * 
http://www.apache.org/licenses/LICENSE-2.0
-011 *
-012 * Unless required by applicable law or 
agreed to in writing, software
-013 * distributed under the License is 
distributed on an "AS IS" BASIS,
-014 * WITHOUT WARRANTIES OR CONDITIONS OF 
ANY KIND, either express or implied.
-015 * See the License for the specific 
language governing permissions and
-016 * limitations under the License.
-017 */
-018package org.apache.hadoop.hbase.client;
-019
-020import 
org.apache.yetus.audience.InterfaceAudience;
-021import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcController;
-022import 
org.apache.hadoop.hbase.shaded.com.google.protobuf.ServiceException;
-023import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceRequest;
-024import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.CoprocessorServiceResponse;
-025import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureRequest;
-026import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AbortProcedureResponse;
-027import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnRequest;
-028import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AddColumnResponse;
-029import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AssignRegionRequest;
-030import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.AssignRegionResponse;
-031import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.BalanceRequest;
-032import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.BalanceResponse;
-033import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ClearDeadServersRequest;
-034import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.ClearDeadServersResponse;
-035import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceRequest;
-036import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateNamespaceResponse;
-037import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableRequest;
-038import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.CreateTableResponse;
-039import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DecommissionRegionServersRequest;
-040import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DecommissionRegionServersResponse;
-041import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnRequest;
-042import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteColumnResponse;
-043import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceRequest;
-044import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteNamespaceResponse;
-045import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteSnapshotRequest;
-046import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteSnapshotResponse;
-047import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableRequest;
-048import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DeleteTableResponse;
-049import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableRequest;
-050import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.DisableTableResponse;
-051import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.EnableCatalogJanitorRequest;
-052import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.EnableCatalogJanitorResponse;
-053import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.EnableTableRequest;
-054import 
org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.EnableTableResponse;
-055import 
org.apache.hadoop.hbase.shaded.protobuf.generated.Mas

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

2017-12-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/e23b49ba/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 a5af31c..a668610 100644
--- a/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColCell.html
+++ b/devapidocs/org/apache/hadoop/hbase/PrivateCellUtil.FirstOnRowColCell.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
+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";
@@ -119,7 +119,7 @@ var activeTableTab = "activeTableTab";
 
 
 All Implemented Interfaces:
-Cell, SettableSequenceId
+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:
@@ -131,7 +131,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-private static class PrivateCellUtil.FirstOnRowColCell
+private static class PrivateCellUtil.FirstOnRowColCell
 extends PrivateCellUtil.FirstOnRowCell
 
 
@@ -156,26 +156,44 @@ extends fArray 
 
 
+private static long
+FIXED_HEAPSIZE 
+
+
 private byte
 flength 
 
-
+
 private int
 foffset 
 
-
+
 private byte[]
 qArray 
 
-
+
 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
+
 
 
 
@@ -244,6 +262,10 @@ extends int
 getQualifierOffset() 
 
+
+long
+heapSize() 
+
 
 
 
@@ -257,7 +279,7 @@ extends PrivateCellUtil.EmptyCell
-getSequenceId,
 getTagsArray,
 getTagsLength,
 getTagsOffset,
 getValueArray,
 getValueLength,
 getValueOffset,
 setSequenceId
+getSequenceId,
 getTagsArray,
 getTagsLength,
 getTagsOffset,
 getValueArray,
 getValueLength,
 getValueOffset,
 setSequenceId,
 setTimestamp, setTimestamp
 
 
 
@@ -266,6 +288,20 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--";
 title="class or interface in java.lang">clone, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#equals-java.lang.Object-";
 title="class or interface in java.lang">equals, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#finalize--";
 title="class or interface in java.lang">finalize, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#getClass--";
 title="class or interface in java.lang">getClass, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#hashCode--";
 title="class or interface in java.lang">hashCode, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#notify--";
 title="class or interface in java.lang">notify, http://docs.oracle.com/javase/8/docs/api/java/lang
 /Object.html?is-external=true#notifyAll--" title="class or interface in 
java.lang">notifyAll, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#toString--";
 title="class or interface in java.lang">toString, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait--";
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-";
 title="class or interface in java.lang">wait, http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#wait-long-int-";
 title="class or interface in java.lang">wait
 
+
+
+
+
+Methods inherited from interface org.apache.hadoop.hbase.ExtendedCell
+deepClone,
 getChunkId,
 getSerializedSize,
 write,
 write
+
+
+
+
+
+Methods inherited from interface org.apache.hadoop.hbase.RawCell
+checkForTagsLength,
 cloneTags,
 getTag,
 getTags
+
 
 
 
@@ -280,13 +316,22 @@ extends 
+
+
+
+
+FIXED_HEAPSIZE
+private static final long FIXED_HEAPSIZE
+
+
 
 
 
 
 
 fArray
-private final byte[] fArray
+private final byte[] fArray
 
 
 
@@ -295,7 +340,7 @@ extends 
 
 foffset
-private final int foffset
+private final int foffset
 
 
 
@@ -304,7 +349,7 @@ extends 
 
 flength
-private final byte flength
+private final byte flength
 
 
 
@@ -313,7 +358,7 @@ extends 
 
 qArray
-private final byte[] qArray
+private final byte[] qArray
 
 
 
@@ -322,7 +367,7 @@ extends 
 
 qoffset
-private final int qoffset
+private final int qoffset
 
 
 
@@ -331,7 +376,7 @@ extends 
 
 qlength
-private final int qlength
+private fina

hbase git commit: HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration

2017-12-09 Thread janh
Repository: hbase
Updated Branches:
  refs/heads/master e880946f5 -> c98bab51d


HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration


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

Branch: refs/heads/master
Commit: c98bab51de22a20990ff8805825e8638e0686464
Parents: e880946
Author: Jan Hentschel 
Authored: Wed Jan 4 22:13:39 2017 +0100
Committer: Jan Hentschel 
Committed: Sat Dec 9 14:42:43 2017 +0100

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/c98bab51/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
index 731e02f..d54cb53 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
@@ -49,7 +49,7 @@ public class TestUpdateConfiguration {
   @Test
   public void testOnlineConfigChange() throws IOException {
 LOG.debug("Starting the test");
-Admin admin = TEST_UTIL.getHBaseAdmin();
+Admin admin = TEST_UTIL.getAdmin();
 ServerName server = 
TEST_UTIL.getHBaseCluster().getRegionServer(0).getServerName();
 admin.updateConfiguration(server);
   }
@@ -65,7 +65,7 @@ public class TestUpdateConfiguration {
 // update hbase-site.xml by overwriting it
 Files.copy(cnf2Path, cnfPath, StandardCopyOption.REPLACE_EXISTING);
 
-Admin admin = TEST_UTIL.getHBaseAdmin();
+Admin admin = TEST_UTIL.getAdmin();
 ServerName server = 
TEST_UTIL.getHBaseCluster().getMaster().getServerName();
 admin.updateConfiguration(server);
 Configuration conf = 
TEST_UTIL.getMiniHBaseCluster().getMaster().getConfiguration();



hbase git commit: HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration

2017-12-09 Thread janh
Repository: hbase
Updated Branches:
  refs/heads/branch-1.1 f8a24b4d6 -> 8b1e10ae5


HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration


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

Branch: refs/heads/branch-1.1
Commit: 8b1e10ae5d7ea92ebd6b0291d7ab676bfe1cabe6
Parents: f8a24b4
Author: Jan Hentschel 
Authored: Wed Jan 4 22:13:39 2017 +0100
Committer: Jan Hentschel 
Committed: Sat Dec 9 14:47:01 2017 +0100

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/8b1e10ae/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
index e2af1ab..8525a51 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
@@ -49,7 +49,7 @@ public class TestUpdateConfiguration {
   @Test
   public void testOnlineConfigChange() throws IOException {
 LOG.debug("Starting the test");
-Admin admin = TEST_UTIL.getHBaseAdmin();
+Admin admin = TEST_UTIL.getAdmin();
 ServerName server = 
TEST_UTIL.getHBaseCluster().getRegionServer(0).getServerName();
 admin.updateConfiguration(server);
   }
@@ -65,7 +65,7 @@ public class TestUpdateConfiguration {
 // update hbase-site.xml by overwriting it
 Files.copy(cnf2Path, cnfPath, StandardCopyOption.REPLACE_EXISTING);
 
-Admin admin = TEST_UTIL.getHBaseAdmin();
+Admin admin = TEST_UTIL.getAdmin();
 ServerName server = 
TEST_UTIL.getHBaseCluster().getMaster().getServerName();
 admin.updateConfiguration(server);
 Configuration conf = 
TEST_UTIL.getMiniHBaseCluster().getMaster().getConfiguration();



hbase git commit: HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration

2017-12-09 Thread janh
Repository: hbase
Updated Branches:
  refs/heads/branch-1.3 9dc0d529c -> d2731cee6


HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration


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

Branch: refs/heads/branch-1.3
Commit: d2731cee6d1b7fed8c917aba0c9da0c34969
Parents: 9dc0d52
Author: Jan Hentschel 
Authored: Wed Jan 4 22:13:39 2017 +0100
Committer: Jan Hentschel 
Committed: Sat Dec 9 14:45:54 2017 +0100

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/d2731cee/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
index e2af1ab..8525a51 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
@@ -49,7 +49,7 @@ public class TestUpdateConfiguration {
   @Test
   public void testOnlineConfigChange() throws IOException {
 LOG.debug("Starting the test");
-Admin admin = TEST_UTIL.getHBaseAdmin();
+Admin admin = TEST_UTIL.getAdmin();
 ServerName server = 
TEST_UTIL.getHBaseCluster().getRegionServer(0).getServerName();
 admin.updateConfiguration(server);
   }
@@ -65,7 +65,7 @@ public class TestUpdateConfiguration {
 // update hbase-site.xml by overwriting it
 Files.copy(cnf2Path, cnfPath, StandardCopyOption.REPLACE_EXISTING);
 
-Admin admin = TEST_UTIL.getHBaseAdmin();
+Admin admin = TEST_UTIL.getAdmin();
 ServerName server = 
TEST_UTIL.getHBaseCluster().getMaster().getServerName();
 admin.updateConfiguration(server);
 Configuration conf = 
TEST_UTIL.getMiniHBaseCluster().getMaster().getConfiguration();



hbase git commit: HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration

2017-12-09 Thread janh
Repository: hbase
Updated Branches:
  refs/heads/branch-2 62ccc340f -> aec558188


HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration


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

Branch: refs/heads/branch-2
Commit: aec558188518f95456e2732ce454ea87619d16c6
Parents: 62ccc34
Author: Jan Hentschel 
Authored: Wed Jan 4 22:13:39 2017 +0100
Committer: Jan Hentschel 
Committed: Sat Dec 9 14:44:06 2017 +0100

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/aec55818/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
index 731e02f..d54cb53 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
@@ -49,7 +49,7 @@ public class TestUpdateConfiguration {
   @Test
   public void testOnlineConfigChange() throws IOException {
 LOG.debug("Starting the test");
-Admin admin = TEST_UTIL.getHBaseAdmin();
+Admin admin = TEST_UTIL.getAdmin();
 ServerName server = 
TEST_UTIL.getHBaseCluster().getRegionServer(0).getServerName();
 admin.updateConfiguration(server);
   }
@@ -65,7 +65,7 @@ public class TestUpdateConfiguration {
 // update hbase-site.xml by overwriting it
 Files.copy(cnf2Path, cnfPath, StandardCopyOption.REPLACE_EXISTING);
 
-Admin admin = TEST_UTIL.getHBaseAdmin();
+Admin admin = TEST_UTIL.getAdmin();
 ServerName server = 
TEST_UTIL.getHBaseCluster().getMaster().getServerName();
 admin.updateConfiguration(server);
 Configuration conf = 
TEST_UTIL.getMiniHBaseCluster().getMaster().getConfiguration();



hbase git commit: HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration

2017-12-09 Thread janh
Repository: hbase
Updated Branches:
  refs/heads/branch-1.4 10b9b9fae -> 39fa6006d


HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration


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

Branch: refs/heads/branch-1.4
Commit: 39fa6006d33acfb557098ce5a415890ddf1acc91
Parents: 10b9b9f
Author: Jan Hentschel 
Authored: Wed Jan 4 22:13:39 2017 +0100
Committer: Jan Hentschel 
Committed: Sat Dec 9 14:45:27 2017 +0100

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/39fa6006/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
index 226c9e7..89931ae 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
@@ -49,7 +49,7 @@ public class TestUpdateConfiguration {
   @Test
   public void testOnlineConfigChange() throws IOException {
 LOG.debug("Starting the test");
-Admin admin = TEST_UTIL.getHBaseAdmin();
+Admin admin = TEST_UTIL.getAdmin();
 ServerName server = 
TEST_UTIL.getHBaseCluster().getRegionServer(0).getServerName();
 admin.updateConfiguration(server);
   }
@@ -65,7 +65,7 @@ public class TestUpdateConfiguration {
 // update hbase-site.xml by overwriting it
 Files.copy(cnf2Path, cnfPath, StandardCopyOption.REPLACE_EXISTING);
 
-Admin admin = TEST_UTIL.getHBaseAdmin();
+Admin admin = TEST_UTIL.getAdmin();
 ServerName server = 
TEST_UTIL.getHBaseCluster().getMaster().getServerName();
 admin.updateConfiguration(server);
 Configuration conf = 
TEST_UTIL.getMiniHBaseCluster().getMaster().getConfiguration();



hbase git commit: HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration

2017-12-09 Thread janh
Repository: hbase
Updated Branches:
  refs/heads/branch-1.2 6c008db41 -> bbdccb79d


HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration


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

Branch: refs/heads/branch-1.2
Commit: bbdccb79dd9d44d09f4e79de4dc3bd010bc586a5
Parents: 6c008db
Author: Jan Hentschel 
Authored: Wed Jan 4 22:13:39 2017 +0100
Committer: Jan Hentschel 
Committed: Sat Dec 9 14:46:28 2017 +0100

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/bbdccb79/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
index e2af1ab..8525a51 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
@@ -49,7 +49,7 @@ public class TestUpdateConfiguration {
   @Test
   public void testOnlineConfigChange() throws IOException {
 LOG.debug("Starting the test");
-Admin admin = TEST_UTIL.getHBaseAdmin();
+Admin admin = TEST_UTIL.getAdmin();
 ServerName server = 
TEST_UTIL.getHBaseCluster().getRegionServer(0).getServerName();
 admin.updateConfiguration(server);
   }
@@ -65,7 +65,7 @@ public class TestUpdateConfiguration {
 // update hbase-site.xml by overwriting it
 Files.copy(cnf2Path, cnfPath, StandardCopyOption.REPLACE_EXISTING);
 
-Admin admin = TEST_UTIL.getHBaseAdmin();
+Admin admin = TEST_UTIL.getAdmin();
 ServerName server = 
TEST_UTIL.getHBaseCluster().getMaster().getServerName();
 admin.updateConfiguration(server);
 Configuration conf = 
TEST_UTIL.getMiniHBaseCluster().getMaster().getConfiguration();



hbase git commit: HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration

2017-12-09 Thread janh
Repository: hbase
Updated Branches:
  refs/heads/branch-1 4698cf16e -> c434cab5d


HBASE-17425 Fixed deprecated calls in TestUpdateConfiguration


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

Branch: refs/heads/branch-1
Commit: c434cab5d1e45be8aff018d1b6c91e2994154ea5
Parents: 4698cf1
Author: Jan Hentschel 
Authored: Wed Jan 4 22:13:39 2017 +0100
Committer: Jan Hentschel 
Committed: Sat Dec 9 14:44:50 2017 +0100

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


http://git-wip-us.apache.org/repos/asf/hbase/blob/c434cab5/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
--
diff --git 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
index 226c9e7..89931ae 100644
--- 
a/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
+++ 
b/hbase-server/src/test/java/org/apache/hadoop/hbase/client/TestUpdateConfiguration.java
@@ -49,7 +49,7 @@ public class TestUpdateConfiguration {
   @Test
   public void testOnlineConfigChange() throws IOException {
 LOG.debug("Starting the test");
-Admin admin = TEST_UTIL.getHBaseAdmin();
+Admin admin = TEST_UTIL.getAdmin();
 ServerName server = 
TEST_UTIL.getHBaseCluster().getRegionServer(0).getServerName();
 admin.updateConfiguration(server);
   }
@@ -65,7 +65,7 @@ public class TestUpdateConfiguration {
 // update hbase-site.xml by overwriting it
 Files.copy(cnf2Path, cnfPath, StandardCopyOption.REPLACE_EXISTING);
 
-Admin admin = TEST_UTIL.getHBaseAdmin();
+Admin admin = TEST_UTIL.getAdmin();
 ServerName server = 
TEST_UTIL.getHBaseCluster().getMaster().getServerName();
 admin.updateConfiguration(server);
 Configuration conf = 
TEST_UTIL.getMiniHBaseCluster().getMaster().getConfiguration();



hbase git commit: HBASE-19463 Make CPEnv#getConnection return a facade that throws Unsupported if CP calls #close

2017-12-09 Thread zghao
Repository: hbase
Updated Branches:
  refs/heads/branch-2 e8ba7b232 -> 62ccc340f


HBASE-19463 Make CPEnv#getConnection return a facade that throws Unsupported if 
CP calls #close


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

Branch: refs/heads/branch-2
Commit: 62ccc340fdf232491c11581aea2b1b09e306c377
Parents: e8ba7b2
Author: Guanghao Zhang 
Authored: Sat Dec 9 10:57:51 2017 +0800
Committer: Guanghao Zhang 
Committed: Sat Dec 9 20:26:37 2017 +0800

--
 .../apache/hadoop/hbase/SharedConnection.java   | 93 
 .../MasterCoprocessorEnvironment.java   |  7 +-
 .../RegionCoprocessorEnvironment.java   |  7 +-
 .../RegionServerCoprocessorEnvironment.java |  7 +-
 .../hbase/master/MasterCoprocessorHost.java |  3 +-
 .../regionserver/RegionCoprocessorHost.java |  3 +-
 .../RegionServerCoprocessorHost.java|  3 +-
 .../TestCoprocessorShortCircuitRPC.java | 28 --
 8 files changed, 132 insertions(+), 19 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/62ccc340/hbase-server/src/main/java/org/apache/hadoop/hbase/SharedConnection.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/SharedConnection.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/SharedConnection.java
new file mode 100644
index 000..d28303c
--- /dev/null
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/SharedConnection.java
@@ -0,0 +1,93 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.hadoop.hbase;
+
+import java.io.IOException;
+import java.util.concurrent.ExecutorService;
+
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.hbase.client.Admin;
+import org.apache.hadoop.hbase.client.BufferedMutator;
+import org.apache.hadoop.hbase.client.BufferedMutatorParams;
+import org.apache.hadoop.hbase.client.Connection;
+import org.apache.hadoop.hbase.client.RegionLocator;
+import org.apache.hadoop.hbase.client.TableBuilder;
+import org.apache.yetus.audience.InterfaceAudience;
+
+/**
+ * Wraps a Connection to make it can't be closed or aborted.
+ */
+@InterfaceAudience.Private
+public class SharedConnection implements Connection {
+
+  private final Connection conn;
+
+  public SharedConnection(Connection conn) {
+this.conn = conn;
+  }
+
+  @Override
+  public void close() throws IOException {
+throw new UnsupportedOperationException("Shared connection");
+  }
+
+  @Override
+  public boolean isClosed() {
+return this.conn.isClosed();
+  }
+
+  @Override
+  public void abort(String why, Throwable e) {
+throw new UnsupportedOperationException("Shared connection");
+  }
+
+  @Override
+  public boolean isAborted() {
+return this.conn.isAborted();
+  }
+
+  @Override
+  public Configuration getConfiguration() {
+return this.conn.getConfiguration();
+  }
+
+  @Override
+  public BufferedMutator getBufferedMutator(TableName tableName) throws 
IOException {
+return this.conn.getBufferedMutator(tableName);
+  }
+
+  @Override
+  public BufferedMutator getBufferedMutator(BufferedMutatorParams params) 
throws IOException {
+return this.conn.getBufferedMutator(params);
+  }
+
+  @Override
+  public RegionLocator getRegionLocator(TableName tableName) throws 
IOException {
+return this.conn.getRegionLocator(tableName);
+  }
+
+  @Override
+  public Admin getAdmin() throws IOException {
+return this.conn.getAdmin();
+  }
+
+  @Override
+  public TableBuilder getTableBuilder(TableName tableName, ExecutorService 
pool) {
+return this.conn.getTableBuilder(tableName, pool);
+  }
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/hbase/blob/62ccc340/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterCoprocessorEnvironment.java
---

hbase git commit: HBASE-19463 Make CPEnv#getConnection return a facade that throws Unsupported if CP calls #close

2017-12-09 Thread zghao
Repository: hbase
Updated Branches:
  refs/heads/master 7092b814b -> e880946f5


HBASE-19463 Make CPEnv#getConnection return a facade that throws Unsupported if 
CP calls #close


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

Branch: refs/heads/master
Commit: e880946f53a9217f322c75dda8b9285e566c7406
Parents: 7092b81
Author: Guanghao Zhang 
Authored: Sat Dec 9 10:57:51 2017 +0800
Committer: Guanghao Zhang 
Committed: Sat Dec 9 20:20:18 2017 +0800

--
 .../apache/hadoop/hbase/SharedConnection.java   | 93 
 .../MasterCoprocessorEnvironment.java   |  7 +-
 .../RegionCoprocessorEnvironment.java   |  7 +-
 .../RegionServerCoprocessorEnvironment.java |  7 +-
 .../hbase/master/MasterCoprocessorHost.java |  3 +-
 .../regionserver/RegionCoprocessorHost.java |  3 +-
 .../RegionServerCoprocessorHost.java|  3 +-
 .../TestCoprocessorShortCircuitRPC.java | 28 --
 8 files changed, 132 insertions(+), 19 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/e880946f/hbase-server/src/main/java/org/apache/hadoop/hbase/SharedConnection.java
--
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/SharedConnection.java 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/SharedConnection.java
new file mode 100644
index 000..d28303c
--- /dev/null
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/SharedConnection.java
@@ -0,0 +1,93 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.hadoop.hbase;
+
+import java.io.IOException;
+import java.util.concurrent.ExecutorService;
+
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.hbase.client.Admin;
+import org.apache.hadoop.hbase.client.BufferedMutator;
+import org.apache.hadoop.hbase.client.BufferedMutatorParams;
+import org.apache.hadoop.hbase.client.Connection;
+import org.apache.hadoop.hbase.client.RegionLocator;
+import org.apache.hadoop.hbase.client.TableBuilder;
+import org.apache.yetus.audience.InterfaceAudience;
+
+/**
+ * Wraps a Connection to make it can't be closed or aborted.
+ */
+@InterfaceAudience.Private
+public class SharedConnection implements Connection {
+
+  private final Connection conn;
+
+  public SharedConnection(Connection conn) {
+this.conn = conn;
+  }
+
+  @Override
+  public void close() throws IOException {
+throw new UnsupportedOperationException("Shared connection");
+  }
+
+  @Override
+  public boolean isClosed() {
+return this.conn.isClosed();
+  }
+
+  @Override
+  public void abort(String why, Throwable e) {
+throw new UnsupportedOperationException("Shared connection");
+  }
+
+  @Override
+  public boolean isAborted() {
+return this.conn.isAborted();
+  }
+
+  @Override
+  public Configuration getConfiguration() {
+return this.conn.getConfiguration();
+  }
+
+  @Override
+  public BufferedMutator getBufferedMutator(TableName tableName) throws 
IOException {
+return this.conn.getBufferedMutator(tableName);
+  }
+
+  @Override
+  public BufferedMutator getBufferedMutator(BufferedMutatorParams params) 
throws IOException {
+return this.conn.getBufferedMutator(params);
+  }
+
+  @Override
+  public RegionLocator getRegionLocator(TableName tableName) throws 
IOException {
+return this.conn.getRegionLocator(tableName);
+  }
+
+  @Override
+  public Admin getAdmin() throws IOException {
+return this.conn.getAdmin();
+  }
+
+  @Override
+  public TableBuilder getTableBuilder(TableName tableName, ExecutorService 
pool) {
+return this.conn.getTableBuilder(tableName, pool);
+  }
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/hbase/blob/e880946f/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/MasterCoprocessorEnvironment.java
---