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

2017-08-11 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/346adc37/apidocs/src-html/org/apache/hadoop/hbase/client/Scan.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/client/Scan.html 
b/apidocs/src-html/org/apache/hadoop/hbase/client/Scan.html
index 8f0943d..63ba3f6 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/client/Scan.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/client/Scan.html
@@ -601,634 +601,657 @@
 593  /**
 594   * Get all available versions.
 595   * @return this
-596   */
-597  public Scan setMaxVersions() {
-598this.maxVersions = 
Integer.MAX_VALUE;
-599return this;
-600  }
-601
-602  /**
-603   * Get up to the specified number of 
versions of each column.
-604   * @param maxVersions maximum versions 
for each column
-605   * @return this
-606   */
-607  public Scan setMaxVersions(int 
maxVersions) {
-608this.maxVersions = maxVersions;
-609return this;
-610  }
-611
-612  /**
-613   * Set the maximum number of cells to 
return for each call to next(). Callers should be aware
-614   * that this is not equivalent to 
calling {@link #setAllowPartialResults(boolean)}.
-615   * If you don't allow partial results, 
the number of cells in each Result must equal to your
-616   * batch setting unless it is the last 
Result for current row. So this method is helpful in paging
-617   * queries. If you just want to prevent 
OOM at client, use setAllowPartialResults(true) is better.
-618   * @param batch the maximum number of 
values
-619   * @see 
Result#mayHaveMoreCellsInRow()
-620   */
-621  public Scan setBatch(int batch) {
-622if (this.hasFilter() && 
this.filter.hasFilterRow()) {
-623  throw new 
IncompatibleFilterException(
-624"Cannot set batch on a scan using 
a filter" +
-625" that returns true for 
filter.hasFilterRow");
-626}
-627this.batch = batch;
-628return this;
-629  }
-630
-631  /**
-632   * Set the maximum number of values to 
return per row per Column Family
-633   * @param limit the maximum number of 
values returned / row / CF
-634   */
-635  public Scan 
setMaxResultsPerColumnFamily(int limit) {
-636this.storeLimit = limit;
-637return this;
-638  }
-639
-640  /**
-641   * Set offset for the row per Column 
Family.
-642   * @param offset is the number of kvs 
that will be skipped.
+596   * @deprecated It is easy to 
misunderstand with column family's max versions, so use
+597   * {@link 
#readAllVersions()} instead.
+598   */
+599  @Deprecated
+600  public Scan setMaxVersions() {
+601return readAllVersions();
+602  }
+603
+604  /**
+605   * Get up to the specified number of 
versions of each column.
+606   * @param maxVersions maximum versions 
for each column
+607   * @return this
+608   * @deprecated It is easy to 
misunderstand with column family's max versions, so use
+609   * {@link 
#readVersions(int)} instead.
+610   */
+611  @Deprecated
+612  public Scan setMaxVersions(int 
maxVersions) {
+613return readVersions(maxVersions);
+614  }
+615
+616  /**
+617   * Get all available versions.
+618   * @return this
+619   */
+620  public Scan readAllVersions() {
+621this.maxVersions = 
Integer.MAX_VALUE;
+622return this;
+623  }
+624
+625  /**
+626   * Get up to the specified number of 
versions of each column.
+627   * @param versions specified number of 
versions for each column
+628   * @return this
+629   */
+630  public Scan readVersions(int versions) 
{
+631this.maxVersions = versions;
+632return this;
+633  }
+634
+635  /**
+636   * Set the maximum number of cells to 
return for each call to next(). Callers should be aware
+637   * that this is not equivalent to 
calling {@link #setAllowPartialResults(boolean)}.
+638   * If you don't allow partial results, 
the number of cells in each Result must equal to your
+639   * batch setting unless it is the last 
Result for current row. So this method is helpful in paging
+640   * queries. If you just want to prevent 
OOM at client, use setAllowPartialResults(true) is better.
+641   * @param batch the maximum number of 
values
+642   * @see 
Result#mayHaveMoreCellsInRow()
 643   */
-644  public Scan 
setRowOffsetPerColumnFamily(int offset) {
-645this.storeOffset = offset;
-646return this;
-647  }
-648
-649  /**
-650   * Set the number of rows for caching 
that will be passed to scanners.
-651   * If not set, the Configuration 
setting {@link HConstants#HBASE_CLIENT_SCANNER_CACHING} will
-652   * apply.
-653   * Higher caching values will enable 
faster scanners but will use more memory.
-654   * @param caching the number of rows 
for caching
-655   */
-656  public Scan setCaching(int caching) {
-657this.caching = caching;
-658return this;
-659  }
-660
-661  /**
-662   * @return the maximum result size in 
bytes. See {@link #setMaxResultSize(long)}
-663   */
-664  public long getMaxResultSize() {
-665return maxResultS

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

2017-08-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/2aec596e/apidocs/org/apache/hadoop/hbase/filter/DependentColumnFilter.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/filter/DependentColumnFilter.html 
b/apidocs/org/apache/hadoop/hbase/filter/DependentColumnFilter.html
index 301b807..2f303d8 100644
--- a/apidocs/org/apache/hadoop/hbase/filter/DependentColumnFilter.html
+++ b/apidocs/org/apache/hadoop/hbase/filter/DependentColumnFilter.html
@@ -125,7 +125,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Public
-public class DependentColumnFilter
+public class DependentColumnFilter
 extends CompareFilter
 A filter for adding inter-column timestamp matching
  Only cells with a correspondingly timestamped entry in
@@ -392,7 +392,7 @@ extends 
 
 columnFamily
-protected byte[] columnFamily
+protected byte[] columnFamily
 
 
 
@@ -401,7 +401,7 @@ extends 
 
 columnQualifier
-protected byte[] columnQualifier
+protected byte[] columnQualifier
 
 
 
@@ -410,7 +410,7 @@ extends 
 
 dropDependentColumn
-protected boolean dropDependentColumn
+protected boolean dropDependentColumn
 
 
 
@@ -419,7 +419,7 @@ extends 
 
 stampSet
-protected http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">SetLong> stampSet
+protected http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">SetLong> stampSet
 
 
 
@@ -436,7 +436,7 @@ extends 
 
 DependentColumnFilter
-public DependentColumnFilter(byte[] family,
+public DependentColumnFilter(byte[] family,
  byte[] qualifier,
  boolean dropDependentColumn,
  CompareFilter.CompareOp valueCompareOp,
@@ -461,7 +461,7 @@ extends 
 
 DependentColumnFilter
-public DependentColumnFilter(byte[] family,
+public DependentColumnFilter(byte[] family,
  byte[] qualifier)
 Constructor for DependentColumn filter.
  Cells where a Cell from target column
@@ -479,7 +479,7 @@ extends 
 
 DependentColumnFilter
-public DependentColumnFilter(byte[] family,
+public DependentColumnFilter(byte[] family,
  byte[] qualifier,
  boolean dropDependentColumn)
 Constructor for DependentColumn filter.
@@ -507,7 +507,7 @@ extends 
 
 getFamily
-public byte[] getFamily()
+public byte[] getFamily()
 
 Returns:
 the column family
@@ -520,7 +520,7 @@ extends 
 
 getQualifier
-public byte[] getQualifier()
+public byte[] getQualifier()
 
 Returns:
 the column qualifier
@@ -533,7 +533,7 @@ extends 
 
 dropDependentColumn
-public boolean dropDependentColumn()
+public boolean dropDependentColumn()
 
 Returns:
 true if we should drop the dependent column, false otherwise
@@ -546,7 +546,7 @@ extends 
 
 getDropDependentColumn
-public boolean getDropDependentColumn()
+public boolean getDropDependentColumn()
 
 
 
@@ -555,7 +555,7 @@ extends 
 
 filterAllRemaining
-public boolean filterAllRemaining()
+public boolean filterAllRemaining()
 Description copied from 
class: org.apache.hadoop.hbase.filter.FilterBase
 Filters that never filter all remaining can inherit this 
implementation that
  never stops the filter early.
@@ -578,7 +578,7 @@ extends 
 
 filterKeyValue
-public Filter.ReturnCode filterKeyValue(Cell c)
+public Filter.ReturnCode filterKeyValue(Cell c)
 Description copied from 
class: Filter
 A way to filter based on the column family, column 
qualifier and/or the column value. Return
  code is described below. This allows filters to filter only certain number of 
columns, then
@@ -612,7 +612,7 @@ extends 
 
 filterRowCells
-public void filterRowCells(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List kvs)
+public void filterRowCells(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List kvs)
 Description copied from 
class: org.apache.hadoop.hbase.filter.FilterBase
 Filters that never filter by modifying the returned List of 
Cells can
  inherit this implementation that does nothing.
@@ -635,7 +635,7 @@ extends 
 
 hasFilterRow
-public boolean hasFilterRow()
+public boolean hasFilterRow()
 Description copied from 
class: org.apache.hadoop.hbase.filter.FilterBase
 Fitlers that never filter by modifying the returned List of 
Cells can
  inherit this implementation that does nothing.
@@ -656,7 +656,7 @@ extends 
 
 filterRow
-public boolean filterRow()
+public boolean filterRow()
 Description copied from 
class: org.apache.hadoop.hbase.filter.

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

2017-07-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/1837997e/devapidocs/org/apache/hadoop/hbase/regionserver/MetricsRegionServerSourceImpl.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/MetricsRegionServerSourceImpl.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/MetricsRegionServerSourceImpl.html
index a3c9989..ec8d970 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/MetricsRegionServerSourceImpl.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/MetricsRegionServerSourceImpl.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};
+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};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -148,6 +148,14 @@ implements appendHisto 
 
 
+private MetricHistogram
+checkAndDeleteHisto 
+
+
+private MetricHistogram
+checkAndPutHisto 
+
+
 private MutableFastCounter
 compactedInputBytes 
 
@@ -177,76 +185,84 @@ implements 
 private MetricHistogram
-deleteHisto 
+deleteBatchHisto 
 
 
+private MetricHistogram
+deleteHisto 
+
+
 private MutableFastCounter
 flushedMemstoreBytes 
 
-
+
 private MutableFastCounter
 flushedOutputBytes 
 
-
+
 private MetricHistogram
 flushMemstoreSizeHisto 
 
-
+
 private MetricHistogram
 flushOutputSizeHisto 
 
-
+
 private MetricHistogram
 flushTimeHisto 
 
-
+
 private MetricHistogram
 getHisto 
 
-
+
 private MetricHistogram
 incrementHisto 
 
-
+
 private MutableFastCounter
 infoPauseThresholdExceeded 
 
-
+
 private MutableFastCounter
 majorCompactedInputBytes 
 
-
+
 private MutableFastCounter
 majorCompactedOutputBytes 
 
-
+
 private MetricHistogram
 majorCompactionInputFileCountHisto 
 
-
+
 private MetricHistogram
 majorCompactionInputSizeHisto 
 
-
+
 private MetricHistogram
 majorCompactionOutputFileCountHisto 
 
-
+
 private MetricHistogram
 majorCompactionOutputSizeHisto 
 
-
+
 private MetricHistogram
 majorCompactionTimeHisto 
 
-
+
 private MetricHistogram
 pausesWithGc 
 
-
+
 private MetricHistogram
 pausesWithoutGc 
 
+
+private MetricHistogram
+putBatchHisto 
+
 
 private MetricHistogram
 putHisto 
@@ -316,7 +332,7 @@ implements MetricsRegionServerSource
-APPEND_KEY,
 AVERAGE_REGION_SIZE,
 AVERAGE_REGION_SIZE_DESC,
 AVG_STORE_FILE_AGE,
 AVG_STORE_FILE_AGE_DESC,
 BLOCK_CACHE_BLOOM_CHUNK_HIT_COUNT,
 BLOCK_CAC
 HE_BLOOM_CHUNK_MISS_COUNT, BLOCK_CACHE_COUNT,
 BLOCK_CACHE_COUNT_DESC,
 BLOCK_CACHE_DATA_HIT_COUNT,
 BLOCK_CACHE_DATA_MISS_COUNT,
 BLOCK_CACHE_DELETE_FAMILY_BLOOM_HIT_COUNT,
 BLOCK_CACHE_DELETE_FAMILY_BLOOM_MISS_COUNT,
 BLOCK_CACHE_ENCODED_DATA_HIT_COUNT,
 BLOCK_CACHE_ENCODED_DATA_MISS_COUNT,
 BLOCK_CACHE_EVICTION_COUNT,
 BLOCK_CACHE_EVICTION_COUNT_DESC,
 BLOCK_CACHE_EXPRESS_HIT_PERCENT,
 BLOCK_CACHE_EXPRESS_HIT_PERCENT_DESC,
 BLOCK_CACHE_FAILED_INSERTION_COUNT,
 BLOCK_CACHE_FAILED_INSERTION_COUNT_DESC,
 BLOCK_CACHE_FILE_INFO_HIT_COUNT,
 BLOCK_CACHE_FILE_INFO_MISS_COUNT,
 BLOCK_CACHE_FREE_DESC,
 BLOCK_CACHE_FREE_SIZE,
 BLOCK_CACHE_GENERAL_BLOOM_META_HIT_COUNT,
 BLOCK_CACHE_GENERAL_BLOOM_META_MISS_COUNT,
 BLOCK_CACHE_HIT_COUNT,
 BLOCK_CACHE_HIT_COUNT_DESC,
 BLOCK_CACHE_HIT_PERCENT,
 BLOCK_CACHE_HIT_PERCENT_DESC,
 BLOCK_CACHE_INTERMEDIATE_INDEX_HIT_COUNT, BLOCK_CACHE_INTERMEDIATE_INDEX_MISS_COUNT,
 BLOCK_CACHE_LEAF_INDEX_HIT_COUNT,
 BLOCK_CACHE_LEAF_INDEX_MISS_COUNT,
 BLOCK_CACHE_META_HIT_COUNT,
 BLOCK_CACHE_META_MISS_COUNT,
 BLOCK_CACHE_MISS_COUNT, BLOCK_CACHE_PRIMARY_EVICTION_COUNT,
 BLOCK_CACHE_PRIMARY_EVICTION_COUNT_DESC,
 BLOCK_CACHE_PRIMARY_HIT_COUNT,
 BLOCK_CACHE_PRIMARY_HIT_COUNT_DESC,
 BLOCK_CACHE_PRIMARY_MISS_COUNT,
 B
 LOCK_CACHE_ROOT_INDEX_HIT_COUNT, BLOCK_CACHE_ROOT_INDEX_MISS_COUNT,
 BLOCK_CACHE_SIZE,
 BLOCK_CACHE_SIZE_DESC,
 BLOCK_CACHE_TRAILER_HIT_COUNT,
 BLOCK_CACHE_TRAILER_MISS_COUNT,
 BLOCK_COUNT_MISS_COUNT_DESC,
 BLOCK_COUNT_PRIMARY_MISS_COUNT_DESC,
 BLOCKED_REQUESTS_COUNT,
 BLOCKED_REQUESTS_COUNT_DESC,
 CELLS_COUNT_COMPACTED_FROM_MOB,
 CELLS_COUNT_COMPACTED_FROM_MOB_DESC,
 CELLS_COUNT_COMPACTED_TO_MOB,
 CELLS_COUNT_COMPACTED_TO_MOB_DESC, CELLS_SIZE_COMPACTED_FROM_MOB,
 CELLS_SIZE_COMPACTED_FROM_MOB_DESC,
 CELLS_SIZE_COMPACTED_TO_MOB,
 CELLS_SIZE_COMPACTED_TO_MOB_DESC,
 CHECK_MUTATE_FAILED_COUNT,
 CHEC
 K_MUTATE_FAILED_COUNT_DESC, CHECK_MUTATE_PASSED_COUNT,
 CHECK_MUTATE_PASSED_COUNT_DESC,
 CLUSTER_ID_DESC,
 CLUSTER_ID_NAME,
 COMPACTED_CELLS,
 COMPACTED_CELLS

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

2017-07-28 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/a2b2dd19/devapidocs/org/apache/hadoop/hbase/regionserver/MemStoreFlusher.FlushQueueEntry.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/MemStoreFlusher.FlushQueueEntry.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/MemStoreFlusher.FlushQueueEntry.html
index 4086524..d58b526 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/MemStoreFlusher.FlushQueueEntry.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/MemStoreFlusher.FlushQueueEntry.html
@@ -107,7 +107,7 @@
 
 
 
-static interface MemStoreFlusher.FlushQueueEntry
+static interface MemStoreFlusher.FlushQueueEntry
 extends http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Delayed.html?is-external=true";
 title="class or interface in java.util.concurrent">Delayed
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/a2b2dd19/devapidocs/org/apache/hadoop/hbase/regionserver/MemStoreFlusher.FlushRegionEntry.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/MemStoreFlusher.FlushRegionEntry.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/MemStoreFlusher.FlushRegionEntry.html
index c64bc30..6d5e7e6 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/MemStoreFlusher.FlushRegionEntry.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/MemStoreFlusher.FlushRegionEntry.html
@@ -117,7 +117,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-static class MemStoreFlusher.FlushRegionEntry
+static class MemStoreFlusher.FlushRegionEntry
 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 MemStoreFlusher.FlushQueueEntry
 Datastructure used in the flush queue.  Holds region and 
retry count.
@@ -261,7 +261,7 @@ implements 
 
 region
-private final Region region
+private final Region region
 
 
 
@@ -270,7 +270,7 @@ implements 
 
 createTime
-private final long createTime
+private final long createTime
 
 
 
@@ -279,7 +279,7 @@ implements 
 
 whenToExpire
-private long whenToExpire
+private long whenToExpire
 
 
 
@@ -288,7 +288,7 @@ implements 
 
 requeueCount
-private int requeueCount
+private int requeueCount
 
 
 
@@ -297,7 +297,7 @@ implements 
 
 forceFlushAllStores
-private boolean forceFlushAllStores
+private boolean forceFlushAllStores
 
 
 
@@ -314,7 +314,7 @@ implements 
 
 FlushRegionEntry
-FlushRegionEntry(Region r,
+FlushRegionEntry(Region r,
  boolean forceFlushAllStores)
 
 
@@ -332,7 +332,7 @@ implements 
 
 isMaximumWait
-public boolean isMaximumWait(long maximumWait)
+public boolean isMaximumWait(long maximumWait)
 
 Parameters:
 maximumWait - 
@@ -347,7 +347,7 @@ implements 
 
 getRequeueCount
-public int getRequeueCount()
+public int getRequeueCount()
 
 Returns:
 Count of times requeue(long)
 was called; i.e this is
@@ -361,7 +361,7 @@ implements 
 
 isForceFlushAllStores
-public boolean isForceFlushAllStores()
+public boolean isForceFlushAllStores()
 
 Returns:
 whether we need to flush all stores.
@@ -374,7 +374,7 @@ implements 
 
 requeue
-public MemStoreFlusher.FlushRegionEntry requeue(long when)
+public MemStoreFlusher.FlushRegionEntry requeue(long when)
 
 Parameters:
 when - When to expire, when to come up out of the queue.
@@ -391,7 +391,7 @@ implements 
 
 getDelay
-public long getDelay(http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
+public long getDelay(http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/TimeUnit.html?is-external=true";
 title="class or interface in 
java.util.concurrent">TimeUnit unit)
 
 Specified by:
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Delayed.html?is-external=true#getDelay-java.util.concurrent.TimeUnit-";
 title="class or interface in java.util.concurrent">getDelay in 
interface http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Delayed.html?is-external=true";
 title="class or interface in java.util.concurrent">Delayed
@@ -404,7 +404,7 @@ implements 
 
 compareTo
-public int compareTo(http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Delayed.html?is-external=true";
 title="class or interface in 
java.util.concurrent">Delayed other)
+public int compareTo(http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Delayed.html?is-external=true";
 title="class or interface in 
java.util.concurrent">Delayed other)
 
 Specified by:
 http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true#compareTo-T-";
 title="class or interface in java.lang">compareTo in 
interface http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable

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

2017-07-26 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/21766f4a/checkstyle.rss
--
diff --git a/checkstyle.rss b/checkstyle.rss
index 7766266..2ab94b5 100644
--- a/checkstyle.rss
+++ b/checkstyle.rss
@@ -25,8 +25,8 @@ under the License.
 en-us
 ©2007 - 2017 The Apache Software Foundation
 
-  File: 2246,
- Errors: 14828,
+  File: 2249,
+ Errors: 14885,
  Warnings: 0,
  Infos: 0
   
@@ -1329,7 +1329,7 @@ under the License.
   0
 
 
-  5
+  6
 
   
   
@@ -4843,7 +4843,7 @@ under the License.
   0
 
 
-  27
+  26
 
   
   
@@ -5338,6 +5338,20 @@ under the License.
   
   
 
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.security.visibility.VisibilityNewVersionBehaivorTracker.java";>org/apache/hadoop/hbase/security/visibility/VisibilityNewVersionBehaivorTracker.java
+
+
+  0
+
+
+  0
+
+
+  15
+
+  
+  
+
   http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.regionserver.wal.MetricsWALSourceImpl.java";>org/apache/hadoop/hbase/regionserver/wal/MetricsWALSourceImpl.java
 
 
@@ -6108,6 +6122,20 @@ under the License.
   
   
 
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.regionserver.querymatcher.NewVersionBehaviorTracker.java";>org/apache/hadoop/hbase/regionserver/querymatcher/NewVersionBehaviorTracker.java
+
+
+  0
+
+
+  0
+
+
+  17
+
+  
+  
+
   http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.util.test.RedundantKVGenerator.java";>org/apache/hadoop/hbase/util/test/RedundantKVGenerator.java
 
 
@@ -9911,7 +9939,7 @@ under the License.
   0
 
 
-  4
+  3
 
   
   
@@ -11157,7 +11185,7 @@ under the License.
   0
 
 
-  53
+  54
 
   
   
@@ -14657,7 +14685,7 @@ under the License.
   0
 
 
-  42
+  44
 
   
   
@@ -22371,7 +22399,7 @@ under the License.
   0
 
 
-  36
+  33
 
   
   
@@ -29376,6 +29404,20 @@ under the License.
   
   
 
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.regionserver.querymatcher.IncludeAllCompactionQueryMatcher.java";>org/apache/hadoop/hbase/regionserver/querymatcher/IncludeAllCompactionQueryMatcher.java
+
+
+  0
+
+
+  0
+
+
+  0
+
+  
+  
+
   http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.mapreduce.VisibilityExpressionResolver.java";>org/apache/hadoop/hbase/mapreduce/VisibilityExpressionResolver.java
 
 
@@ -31205,7 +31247,7 @@ under the License.
   0
 
 
-  9
+  35
 
   
   

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/21766f4a/coc.html
--
diff --git a/coc.html b/coc.html
index 721bd2a..660ceb8 100644
--- a/coc.html
+++ b/coc.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – 
   Code of Conduct Policy
@@ -380,7 +380,7 @@ email to mailto:priv...@hbase.apache.org";>the priv
 https://www.apache.org/";>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-07-24

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

2017-07-24 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/2d5075d7/devapidocs/org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.html
 
b/devapidocs/org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.html
index e1de213..cc57c38 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/assignment/MergeTableRegionsProcedure.html
@@ -527,7 +527,7 @@ extends Procedure
-addStackIndex,
 afterReplay,
 beforeReplay,
 compareTo,
 completionCleanup,
 doAcquireLock,
 doExecute,
 d
 oReleaseLock, doRollback,
 elapsedTime,
 getChildrenLatch,
 getException,
 getLastUpdate,
 getNonceKey,
 getOwner,
 getParentProcId,
 getProcId, getProcIdHashCode,
 getResult,
 getRootProcedureId,
 getRootProcId,
 getStackIndexes,
 getState,
 getSubmittedTime,
 getTimeout,
 <
 a 
href="../../../../../../org/apache/hadoop/hbase/procedure2/Procedure.html#getTimeoutTimestamp--">getTimeoutTimestamp,
 hasChildren,
 hasException,
 hasOwner,
 hasParent,
 hasTimeout,
 haveSameParent,
 incChildrenLatch,
 isFailed,
 isFinished,
 isInitializing,
 isRunnable,
 isSuccess,
 isWaiting,
 removeStackIndex,
 setAbortFailure,
 s
 etChildrenLatch, setFailure,
 setFailure,
 setLastUpdate,
 setNonceKey,
 setOwner,
 setOwner,
 setParentProcId,
 setProcId,
 setResult,
 setRootProcId,
 setStackIndexes,
 setState,
 setSubmittedTime,
 setTimeout,
 setTimeoutFailure,
 shouldWaitClientAck,
 toString,
 toStringClass,
 toStringDetails,
 toStringSimpleSB,
 updateMetricsOnFinish,
 updateMetricsOnSubmit,
 updateTimestamp,
 
 wasExecuted
+addStackIndex,
 afterReplay,
 beforeReplay,
 compareTo,
 completionCleanup,
 doAcquireLock,
 doExecute,
 d
 oReleaseLock, doRollback,
 elapsedTime,
 getChildrenLatch,
 getException,
 getLastUpdate,
 getNonceKey,
 getOwner,
 getParentProcId,
 getProcId, getProcIdHashCode,
 getProcName,
 getResult,
 getRootProcedureId,
 getRootProcId,
 getStackIndexes,
 getState,
 getSubmittedTime,
  getTimeout,
 getTimeoutTimestamp,
 hasChildren,
 hasException,
 hasOwner,
 hasParent,
 hasTimeout,
 haveSameParent,
 incChildrenLatch,
 isFailed,
 isFinished,
 isInitializing,
 isRunnable,
 isSuccess,
 isWaiting,
 removeStackIndex,
 setAbortFailu
 re, setChildrenLatch,
 setFailure,
 setFailure,
 setLastUpdate,
 setNonceKey,
 setOwner,
 setOwner,
 setParentProcId,
 setProcId,
 setResult,
 setRootProcId,
 setStackIndexes,
 setState,
 setSubmittedTime,
 setTimeout,
 setTimeoutFailure,
 shouldWaitClientAck,
 toString,
 toStringClass,
 toStringDetails,
 toStringSimpleSB,
 updateMetricsOnFinish,
 updateMetricsOnSubmit,
 updateTimestamp,
 wasExecuted
 
 
 
@@ -941,7 +941,7 @@ extends Procedure.execute(Object).
  It calls Procedure.releaseLock(Object)
 after the call to execute.
- 
+
  If you need to hold the lock for the life of the Procdure -- i.e. you do 
not
  want any other Procedure interfering while this Procedure is running, see
  Procedure.holdLock(Object).

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/2d5075d7/devapidocs/org/apache/hadoop/hbase/master/assignment/MoveRegionProcedure.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/assignment/MoveRegionProcedure.html 
b/devapidocs/org/apache/hadoop/hbase/master/assignment/MoveRegionProcedure.html
index c5143ca..b90fbf0 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/assignment/MoveRegionProcedure.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/assignment/MoveRegionProcedure.html
@@ -335,7 +335,7 @@ extends Procedure
-addStackIndex,
 afterReplay,
 beforeReplay,
 compareTo,
 completionCleanup,
 doAcquireLock,
 doExecute,
 d
 oReleaseLock, doRollback,
 elapsedTime,
 getChildrenLatch,
 getException,
 getLastUpdate,
 getNonceKey,
 getOwner,
 getParentProcId,
 getProcedureMetrics, getProcId,
 getProcIdHashCode,
 getResult,
 getRootProcedureId,
 getRootProcId,
 getStackIndexes,
 getState,
 getSubmittedTime, getTimeout,
 getTimeoutTimestamp,
 hasChildren,
 hasException,
 hasOwner,
 hasParent,
 hasTimeout,
 haveSameParent, href="../../../../../../org/apache/hadoop/hbase/procedure2/Procedure.html#incChildrenLatch--">incChildrenLatch,
 > href="../../../../../../org/apache/hadoop/hbase/procedure2/Procedure.html#isFailed--">isFailed,
 > href="../../../../../../org/apache/hadoop/hbase/procedure2/Procedure.html#isFinished--">isFinished,
 > href="../../../../../../org/apache/hadoop/hbase/procedure2/Procedure.html#isInitializing--">isInitializing,
 > href="../../../../../../org/apache/hadoop/hbase/procedure2/Procedure.html#isRunnable--">isRunnable,
 > href="../../../../../../org/apache/hadoop/hbase/procedure2/Procedure.html#isSuccess--">isSuccess,
 > href="../../../../../../org/apache/hadoop/hbase/procedure2/Procedure.html#isWaiting--">

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

2017-07-23 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0383a9c2/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.html 
b/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.html
index 60b4d76..df74f06 100644
--- a/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.html
+++ b/devapidocs/org/apache/hadoop/hbase/master/MasterCoprocessorHost.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":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":10,"i79":10,"i80":10,"i81":10,"i82":10,"i83":10,"i84":10,"i85":10,"i86":10,"i87":10,"i88":10,"i89":10,"i90":10,"i91":10,"i92":10,"i93":10,"i94":10,"i95":10,"i96":10,"i97":10,"i98":10,"i99":10,"i100":10,"i101":10,"i102":10,"i103":10,"i104":10,"i105":10,"i106":10,"i107":10,"i108":10,"i
 
109":10,"i110":10,"i111":10,"i112":10,"i113":10,"i114":10,"i115":10,"i116":10,"i117":10,"i118":10,"i119":10,"i120":10,"i121":10,"i122":10,"i123":10,"i124":10,"i125":10,"i126":10,"i127":10,"i128":10,"i129":10,"i130":10,"i131":10,"i132":10,"i133":10,"i134":10,"i135":10,"i136":10,"i137":10,"i138":10,"i139":10,"i140":10,"i141":10,"i142":10,"i143":10,"i144":10};
+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,"i77":10,"i78":10,"i79":10,"i80":10,"i81":10,"i82":10,"i83":10,"i84":10,"i85":10,"i86":10,"i87":10,"i88":10,"i89":10,"i90":10,"i91":10,"i92":10,"i93":10,"i94":10,"i95":10,"i96":10,"i97":10,"i98":10,"i99":10,"i100":10,"i101":10,"i102":10,"i103":10,"i104":10,"i105":10,"i106":10,"i107":10,"i108":10,"i
 
109":10,"i110":10,"i111":10,"i112":10,"i113":10,"i114":10,"i115":10,"i116":10,"i117":10,"i118":10,"i119":10,"i120":10,"i121":10,"i122":10,"i123":10,"i124":10,"i125":10,"i126":10,"i127":10,"i128":10,"i129":10,"i130":10,"i131":10,"i132":10,"i133":10,"i134":10,"i135":10,"i136":10,"i137":10,"i138":10,"i139":10,"i140":10,"i141":10,"i142":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -392,66 +392,61 @@ extends 
 void
-postDispatchMerge(HRegionInfo regionInfoA,
- HRegionInfo regionInfoB) 
-
-
-void
 postEnableReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String peerId) 
 
-
+
 void
 postEnableTable(TableName tableName) 
 
-
+
 void
 postGetNamespaceDescriptor(NamespaceDescriptor ns) 
 
-
+
 void
 postGetReplicationPeerConfig(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String peerId) 
 
-
+
 void
 postGetTableDescriptors(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tableNamesList,
http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List descriptors,
http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String regex) 
 
-
+
 void
 postGetTableNames(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List descriptors,
  http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String regex) 
 
-
+
 void
 postListLocks(http://docs.oracle.com/javase/8/docs/api/java

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

2017-07-22 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/f391bcef/apidocs/org/apache/hadoop/hbase/client/class-use/Delete.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/class-use/Delete.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/Delete.html
index 08b1ad9..878459d 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/Delete.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/Delete.html
@@ -203,11 +203,15 @@
 
 
 Delete
+Delete.setPriority(int priority) 
+
+
+Delete
 Delete.setTimestamp(long timestamp)
 Set the timestamp of the delete.
 
 
-
+
 Delete
 Delete.setTTL(long ttl) 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/f391bcef/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html
index df9cc17..ff8903f 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html
@@ -208,15 +208,19 @@
 
 
 Get
-Get.setReplicaId(int Id) 
+Get.setPriority(int priority) 
 
 
 Get
+Get.setReplicaId(int Id) 
+
+
+Get
 Get.setRowOffsetPerColumnFamily(int offset)
 Set offset for the row per Column Family.
 
 
-
+
 Get
 Get.setTimeRange(long minStamp,
 long maxStamp)
@@ -224,13 +228,13 @@
  [minStamp, maxStamp).
 
 
-
+
 Get
 Get.setTimeRange(TimeRange tr)
 Get versions of columns only within the specified timestamp 
range,
 
 
-
+
 Get
 Get.setTimeStamp(long timestamp)
 Get versions of columns with the specified timestamp.

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/f391bcef/apidocs/org/apache/hadoop/hbase/client/class-use/Increment.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/class-use/Increment.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/Increment.html
index 4ab5486..0b60da8 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/Increment.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/Increment.html
@@ -159,16 +159,20 @@
 
 
 Increment
-Increment.setReturnResults(boolean returnResults) 
+Increment.setPriority(int priority) 
 
 
 Increment
+Increment.setReturnResults(boolean returnResults) 
+
+
+Increment
 Increment.setTimeRange(long minStamp,
 long maxStamp)
 Sets the TimeRange to be used on the Get for this 
increment.
 
 
-
+
 Increment
 Increment.setTTL(long ttl) 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/f391bcef/apidocs/org/apache/hadoop/hbase/client/class-use/OperationWithAttributes.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/class-use/OperationWithAttributes.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/OperationWithAttributes.html
index 1631cfd..14d43c1 100644
--- 
a/apidocs/org/apache/hadoop/hbase/client/class-use/OperationWithAttributes.html
+++ 
b/apidocs/org/apache/hadoop/hbase/client/class-use/OperationWithAttributes.html
@@ -168,6 +168,10 @@
 This method allows you to set an identifier on an 
operation.
 
 
+
+OperationWithAttributes
+OperationWithAttributes.setPriority(int priority) 
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/f391bcef/apidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/class-use/Scan.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
index 4e989fe..92e5dd1 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
@@ -270,46 +270,50 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 Scan
+Scan.setPriority(int priority) 
+
+
+Scan
 Scan.setRaw(boolean raw)
 Enable/disable "raw" mode for this scan.
 
 
-
+
 Scan
 Scan.setReadType(Scan.ReadType readType)
 Set the read type for this scan.
 
 
-
+
 Scan
 Scan.setReplicaId(int Id) 
 
-
+
 Scan
 Scan.setReversed(boolean reversed)
 Set whether this scan is a reversed one
 
 
-
+
 Scan
 Scan.setRowOffsetPerColumnFamily(int offset)
 Set offset for the row per Column Family.
 
 
-
+
 Scan
 Scan.setRowPrefixFilter(byte[] rowPrefix)
 Set a filter (using stopRow and startRow) so the result set 
only contains rows where the
  rowKey starts with the specified prefix.
 
 
-
+
 Scan
 Scan.setScanMetricsEnabled(boolean enabled)
 Enable collection of ScanMetrics.
 
 
-
+
 Scan
 Scan.setSmall(boolean small)
 Deprecated. 
@@ -320,7 +324,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-
+
 Scan
 Scan.setStartRow(byte[] startRow)
 Deprecated. 
@@ -329,7 +333,7 @@ Input/OutputFormats, a table indexing MapRe

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

2017-07-21 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/ca5b0275/devapidocs/index-all.html
--
diff --git a/devapidocs/index-all.html b/devapidocs/index-all.html
index 412070e..8b8f33b 100644
--- a/devapidocs/index-all.html
+++ b/devapidocs/index-all.html
@@ -1351,7 +1351,7 @@
 As of release 2.0.0.
  (https://issues.apache.org/jira/browse/HBASE-1989";>HBASE-1989).
  This will be removed in HBase 3.0.0.
- Use Admin.addColumnFamily(TableName,
 HColumnDescriptor).
+ Use Admin.addColumnFamily(TableName,
 ColumnFamilyDescriptor).
 
 
 addColumn(byte[],
 byte[], byte[]) - Method in class org.apache.hadoop.hbase.client.Append
@@ -1374,7 +1374,7 @@
 
 Deprecated.
 Since 2.0. Will be removed 
in 3.0. Use
- HBaseAdmin.addColumnFamily(TableName,
 HColumnDescriptor) instead.
+ HBaseAdmin.addColumnFamily(TableName,
 ColumnFamilyDescriptor) instead.
 
 
 addColumn(byte[],
 byte[], long) - Method in class org.apache.hadoop.hbase.client.Increment
@@ -1421,7 +1421,7 @@
 
 addColumn(byte[])
 - Method in class org.apache.hadoop.hbase.rest.RowSpec
  
-addColumnFamily(TableName,
 HColumnDescriptor) - Method in interface 
org.apache.hadoop.hbase.client.Admin
+addColumnFamily(TableName,
 ColumnFamilyDescriptor) - Method in interface 
org.apache.hadoop.hbase.client.Admin
 
 Add a column family to an existing table.
 
@@ -1431,7 +1431,7 @@
 
 addColumnFamily(TableName,
 ColumnFamilyDescriptor) - Method in class 
org.apache.hadoop.hbase.client.AsyncHBaseAdmin
  
-addColumnFamily(TableName,
 HColumnDescriptor) - Method in class 
org.apache.hadoop.hbase.client.HBaseAdmin
+addColumnFamily(TableName,
 ColumnFamilyDescriptor) - Method in class 
org.apache.hadoop.hbase.client.HBaseAdmin
  
 addColumnFamily(TableName,
 ColumnFamilyDescriptor) - Method in class 
org.apache.hadoop.hbase.client.RawAsyncHBaseAdmin
  
@@ -1445,11 +1445,11 @@
 
 Add a column family to the table descriptor
 
-addColumnFamilyAsync(TableName,
 HColumnDescriptor) - Method in interface 
org.apache.hadoop.hbase.client.Admin
+addColumnFamilyAsync(TableName,
 ColumnFamilyDescriptor) - Method in interface 
org.apache.hadoop.hbase.client.Admin
 
 Add a column family to an existing table.
 
-addColumnFamilyAsync(TableName,
 HColumnDescriptor) - Method in class 
org.apache.hadoop.hbase.client.HBaseAdmin
+addColumnFamilyAsync(TableName,
 ColumnFamilyDescriptor) - Method in class 
org.apache.hadoop.hbase.client.HBaseAdmin
  
 AddColumnFamilyFuture(HBaseAdmin,
 TableName, MasterProtos.AddColumnResponse) - Constructor for class 
org.apache.hadoop.hbase.client.HBaseAdmin.AddColumnFamilyFuture
  
@@ -1923,6 +1923,8 @@
 
 Listen for failures to a given process.
 
+addListener(Service.Listener,
 Executor) - Method in class 
org.apache.hadoop.hbase.security.visibility.VisibilityReplicationEndpoint
+ 
 addLiveNode(String,
 long, int, int) - Method in class 
org.apache.hadoop.hbase.rest.model.StorageClusterStatusModel
 
 Add a live node to the cluster representation.
@@ -2162,7 +2164,7 @@
  
 addRegionInTransition(RegionStates.RegionStateNode,
 RegionTransitionProcedure) - Method in class 
org.apache.hadoop.hbase.master.assignment.RegionStates
  
-addRegionPlan(MinMaxPriorityQueue,
 boolean, ServerName, List) - Method in class 
org.apache.hadoop.hbase.master.balancer.SimpleLoadBalancer
+addRegionPlan(MinMaxPriorityQueue,
 boolean, ServerName, List) - Method in class 
org.apache.hadoop.hbase.master.balancer.SimpleLoadBalancer
 
 Add a region from the head or tail to the List of regions 
to return.
 
@@ -2293,7 +2295,7 @@
  resolve -- we do NOT want a resolve happening every time we want
  to hold a hostname and port combo).
 
-Address(HostAndPort)
 - Constructor for class org.apache.hadoop.hbase.net.Address
+Address(HostAndPort)
 - Constructor for class org.apache.hadoop.hbase.net.Address
  
 address - 
Variable in class org.apache.hadoop.hbase.ServerName
  
@@ -4654,6 +4656,14 @@
 
 Wait until the read point catches up to the write point; 
i.e.
 
+awaitRunning()
 - Method in class org.apache.hadoop.hbase.security.visibility.VisibilityReplicationEndpoint
+ 
+awaitRunning(long,
 TimeUnit) - Method in class 
org.apache.hadoop.hbase.security.visibility.VisibilityReplicationEndpoint
+ 
+awaitTerminated()
 - Method in class org.apache.hadoop.hbase.security.visibility.VisibilityReplicationEndpoint
+ 
+awaitTerminated(long,
 TimeUnit) - Method in class 
org.apache.hadoop.hbase.security.visibility.VisibilityReplicationEndpoint
+ 
 awaitTermination()
 - Method in class org.apache.hadoop.hbase.procedure2.ProcedureExecutor.StoppableThread
  
 awaitTermination()
 - Method in class org.apache.hadoop.hbase.procedure2.RemoteProcedureDispatcher.TimeoutExecutorThread
@@ -5172,7 +5182,7 @@
 
 Balance the regions that should be on master 
regionserver.
 
-balanceOverall(List,
 Map,

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

2017-07-19 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9eba7fcf/devapidocs/org/apache/hadoop/hbase/regionserver/HRegion.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/regionserver/HRegion.html 
b/devapidocs/org/apache/hadoop/hbase/regionserver/HRegion.html
index 44d7f75..7aaa862 100644
--- a/devapidocs/org/apache/hadoop/hbase/regionserver/HRegion.html
+++ b/devapidocs/org/apache/hadoop/hbase/regionserver/HRegion.html
@@ -3224,7 +3224,7 @@ implements 
 
 FOR_UNIT_TESTS_ONLY
-private static final byte[] FOR_UNIT_TESTS_ONLY
+private static final byte[] FOR_UNIT_TESTS_ONLY
 Row needed by below method.
 
 
@@ -3234,7 +3234,7 @@ implements 
 
 FIXED_OVERHEAD
-public static final long FIXED_OVERHEAD
+public static final long FIXED_OVERHEAD
 
 
 
@@ -3243,7 +3243,7 @@ implements 
 
 DEEP_OVERHEAD
-public static final long DEEP_OVERHEAD
+public static final long DEEP_OVERHEAD
 
 
 
@@ -3252,7 +3252,7 @@ implements 
 
 MOCKED_LIST
-private static final http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List MOCKED_LIST
+private static final http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List MOCKED_LIST
 A mocked list implementation - discards all updates.
 
 
@@ -4937,7 +4937,7 @@ public long 
 
 delete
-void delete(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> familyMap,
+void delete(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> familyMap,
 Durability durability)
  throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 This is used only by unit tests. Not required to be a 
public API.
@@ -4955,7 +4955,7 @@ public long 
 
 prepareDeleteTimestamps
-public void prepareDeleteTimestamps(Mutation mutation,
+public void prepareDeleteTimestamps(Mutation mutation,
 http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList> familyMap,
 byte[] byteNow)
  throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
@@ -4976,7 +4976,7 @@ public long 
 
 updateDeleteLatestVersionTimeStamp
-void updateDeleteLatestVersionTimeStamp(Cell cell,
+void updateDeleteLatestVersionTimeStamp(Cell cell,
 Get get,
 int count,
 byte[] byteNow)
@@ -4993,7 +4993,7 @@ public long 
 
 put
-public void put(Put put)
+public void put(Put put)
  throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 Description copied from 
interface: Region
 Puts some data in the table.
@@ -5011,7 +5011,7 @@ public long 
 
 batchMutate
-public OperationStatus[] batchMutate(Mutation[] mutations,
+public OperationStatus[] batchMutate(Mutation[] mutations,
  long nonceGroup,
  long nonce)
   throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
@@ -5038,7 +5038,7 @@ public long 
 
 batchMutate
-public OperationStatus[] batchMutate(Mutation[] mutations)
+public OperationStatus[] batchMutate(Mutation[] mutations)
   throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 
 Throws:
@@ -5052,7 +5052,7 @@ public long 
 
 batchReplay
-public OperationStatus[] batchReplay(WALSplitter.MutationReplay[] mutations,
+public OperationStatus[] batchReplay(WALSplitter.MutationReplay[] mutations,
  long replaySeqId)
   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: Region
@@ -5076,7 +5076,7 @@ public long 

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

2017-07-15 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/17128d27/devapidocs/index-all.html
--
diff --git a/devapidocs/index-all.html b/devapidocs/index-all.html
index 1af9702..95f5134 100644
--- a/devapidocs/index-all.html
+++ b/devapidocs/index-all.html
@@ -5738,6 +5738,8 @@
  
 bestLocality
 - Variable in class org.apache.hadoop.hbase.master.balancer.StochasticLoadBalancer.LocalityBasedCostFunction
  
+bestSplitRow
 - Variable in class org.apache.hadoop.hbase.master.assignment.SplitTableRegionProcedure
+ 
 BidirectionalLRUMap(int)
 - Constructor for class org.apache.hadoop.hbase.io.util.LRUDictionary.BidirectionalLRUMap
  
 BigDecimalColumnInterpreter - Class in org.apache.hadoop.hbase.client.coprocessor
@@ -10710,8 +10712,10 @@
 
 Return the splitpoint.
 
-checkSplitRow(HRegionInfo,
 byte[]) - Static method in class 
org.apache.hadoop.hbase.master.assignment.SplitTableRegionProcedure
- 
+checkSplittable(MasterProcedureEnv,
 HRegionInfo, byte[]) - Method in class 
org.apache.hadoop.hbase.master.assignment.SplitTableRegionProcedure
+
+Check whether the region is splittable
+
 checkStagingDir()
 - Method in class org.apache.hadoop.hbase.master.MasterFileSystem
 
 Check permissions for bulk load staging directory.
@@ -42495,6 +42499,8 @@
  
 getOperationType()
 - Method in class org.apache.hadoop.hbase.client.HBaseAdmin.RestoreSnapshotFuture
  
+getOperationType()
 - Method in class org.apache.hadoop.hbase.client.HBaseAdmin.SplitTableRegionFuture
+ 
 getOperationType()
 - Method in class org.apache.hadoop.hbase.client.HBaseAdmin.TableFuture
  
 getOperationType()
 - Method in class org.apache.hadoop.hbase.client.HBaseAdmin.TruncateTableFuture
@@ -42523,6 +42529,8 @@
  
 getOperationType()
 - Method in class org.apache.hadoop.hbase.client.RawAsyncHBaseAdmin.NamespaceProcedureBiConsumer
  
+getOperationType()
 - Method in class org.apache.hadoop.hbase.client.RawAsyncHBaseAdmin.SplitTableRegionProcedureBiConsumer
+ 
 getOperationType()
 - Method in class org.apache.hadoop.hbase.client.RawAsyncHBaseAdmin.TableProcedureBiConsumer
  
 getOperationType()
 - Method in class org.apache.hadoop.hbase.client.RawAsyncHBaseAdmin.TruncateTableProcedureBiConsumer
@@ -44500,6 +44508,8 @@
 
 Raw call to remote regionserver to get info on a particular 
region.
 
+getRegionInfoResponse(MasterProcedureEnv,
 ServerName, HRegionInfo, boolean) - Static method in class 
org.apache.hadoop.hbase.master.assignment.Util
+ 
 getRegionInfosFromManifest(SnapshotManifest)
 - Static method in class org.apache.hadoop.hbase.mapreduce.TableSnapshotInputFormatImpl
  
 getRegionList(TableName)
 - Method in class org.apache.hadoop.hbase.backup.util.RestoreTool
@@ -44746,6 +44756,8 @@
  
 getRegionNodes()
 - Method in class org.apache.hadoop.hbase.master.assignment.RegionStates
  
+getRegionNormalizer()
 - Method in class org.apache.hadoop.hbase.master.assignment.AssignmentManager
+ 
 getRegionNormalizer()
 - Method in class org.apache.hadoop.hbase.master.HMaster
  
 getRegionNormalizer()
 - Method in interface org.apache.hadoop.hbase.master.MasterServices
@@ -53360,6 +53372,8 @@
 
 HBaseAdmin.RestoreSnapshotFuture - Class in org.apache.hadoop.hbase.client
  
+HBaseAdmin.SplitTableRegionFuture - Class in org.apache.hadoop.hbase.client
+ 
 HBaseAdmin.TableFuture - Class in org.apache.hadoop.hbase.client
  
 HBaseAdmin.TableFuture.TableWaitForStateCallable
 - Class in org.apache.hadoop.hbase.client
@@ -84359,6 +84373,8 @@ service.
  
 RawAsyncHBaseAdmin.ProcedureBiConsumer - Class 
in org.apache.hadoop.hbase.client
  
+RawAsyncHBaseAdmin.SplitTableRegionProcedureBiConsumer
 - Class in org.apache.hadoop.hbase.client
+ 
 RawAsyncHBaseAdmin.TableOperator - Interface in 
org.apache.hadoop.hbase.client
  
 RawAsyncHBaseAdmin.TableProcedureBiConsumer - 
Class in org.apache.hadoop.hbase.client
@@ -86575,6 +86591,8 @@ service.
 
 regionNode
 - Variable in class org.apache.hadoop.hbase.master.assignment.RegionStates.RegionFailedOpen
  
+regionNormalizer
 - Variable in class org.apache.hadoop.hbase.master.assignment.AssignmentManager
+ 
 RegionNormalizer - Interface in org.apache.hadoop.hbase.master.normalizer
 
 Performs "normalization" of regions on the cluster, making 
sure that suboptimal
@@ -99359,6 +99377,8 @@ service.
 Deprecated.
 Enable or Disable the memstore replication from the primary 
region to the replicas.
 
+setRegionNormalizer(RegionNormalizer)
 - Method in class org.apache.hadoop.hbase.master.assignment.AssignmentManager
+ 
 setRegionReplication(int)
 - Method in class org.apache.hadoop.hbase.client.TableDescriptorBuilder.ModifyableTableDescriptor
 
 Sets the number of replicas per region.
@@ -103495,16 +103515,12 @@ service.
 split(TableName)
 - Method in class org.apache.hadoop.hbase.client.HBaseAdmin
  
 split(TableName,
 byte[]) - Method in class org.apache.hadoop.hbase.client.HBaseAdmin
-
-Split a table.
-
-split(ServerName,
 HRegionInfo, byte[]) - Method in class 
o

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

2017-07-12 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/2777c693/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/ScannerContext.NextState.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/ScannerContext.NextState.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/ScannerContext.NextState.html
index c194625..20aebfe 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/ScannerContext.NextState.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/ScannerContext.NextState.html
@@ -123,22 +123,29 @@
 
 
 
+private ScannerContext.NextState
+StoreScanner.needToReturn(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List outResult)
+If the top cell won't be flushed into disk, the new top 
cell may be
+ changed after #reopenAfterFlush.
+
+
+
 (package private) ScannerContext.NextState
 NoLimitScannerContext.setScannerState(ScannerContext.NextState state) 
 
-
+
 (package private) ScannerContext.NextState
 ScannerContext.setScannerState(ScannerContext.NextState state)
 Note that this is not a typical setter.
 
 
-
+
 static ScannerContext.NextState
 ScannerContext.NextState.valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
 Returns the enum constant of this type with the specified 
name.
 
 
-
+
 static ScannerContext.NextState[]
 ScannerContext.NextState.values()
 Returns an array containing the constants of this enum 
type, in

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/2777c693/devapidocs/org/apache/hadoop/hbase/regionserver/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/regionserver/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/regionserver/package-tree.html
index c70fa82..dd3b2af 100644
--- a/devapidocs/org/apache/hadoop/hbase/regionserver/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/regionserver/package-tree.html
@@ -692,20 +692,20 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
+org.apache.hadoop.hbase.regionserver.RegionOpeningState
 org.apache.hadoop.hbase.regionserver.SplitLogWorker.TaskExecutor.Status
+org.apache.hadoop.hbase.regionserver.ScanType
 org.apache.hadoop.hbase.regionserver.CompactingMemStore.IndexType
-org.apache.hadoop.hbase.regionserver.MemStoreCompactor.Action
+org.apache.hadoop.hbase.regionserver.Region.Operation
+org.apache.hadoop.hbase.regionserver.DefaultHeapMemoryTuner.StepDirection
 org.apache.hadoop.hbase.regionserver.ScannerContext.NextState
 org.apache.hadoop.hbase.regionserver.BloomType
-org.apache.hadoop.hbase.regionserver.RegionOpeningState
-org.apache.hadoop.hbase.regionserver.Region.FlushResult.Result
-org.apache.hadoop.hbase.regionserver.ScannerContext.LimitScope
-org.apache.hadoop.hbase.regionserver.StoreScanner.StoreScannerCompactionRace
-org.apache.hadoop.hbase.regionserver.DefaultHeapMemoryTuner.StepDirection
-org.apache.hadoop.hbase.regionserver.ScanType
+org.apache.hadoop.hbase.regionserver.MemStoreCompactor.Action
 org.apache.hadoop.hbase.regionserver.MetricsRegionServerSourceFactoryImpl.FactoryStorage
-org.apache.hadoop.hbase.regionserver.Region.Operation
 org.apache.hadoop.hbase.regionserver.FlushType
+org.apache.hadoop.hbase.regionserver.ScannerContext.LimitScope
+org.apache.hadoop.hbase.regionserver.StoreScanner.StoreScannerCompactionRace
+org.apache.hadoop.hbase.regionserver.Region.FlushResult.Result
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/2777c693/devapidocs/org/apache/hadoop/hbase/regionserver/querymatcher/package-tree.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/querymatcher/package-tree.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/querymatcher/package-tree.html
index ca6a15f..9ae7db9 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/querymatcher/package-tree.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/querymatcher/package-tree.html
@@ -125,10 +125,10 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java

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

2017-07-11 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/90c7dfe4/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 021cf88..6dd2483 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
@@ -3090,24 +3090,34 @@ service.
 
 
 (package private) http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-AsyncNonMetaRegionLocator.getRegionLocation(TableName tableName,
+AsyncNonMetaRegionLocator.getRegionLocation(TableName tableName,
  byte[] row,
- RegionLocateType locateType) 
+ RegionLocateType locateType,
+ boolean reload) 
 
 
 (package private) http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-AsyncRegionLocator.getRegionLocation(TableName tableName,
+AsyncRegionLocator.getRegionLocation(TableName tableName,
  byte[] row,
  RegionLocateType type,
+ boolean reload,
  long timeoutNs) 
 
 
+(package private) http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
+AsyncRegionLocator.getRegionLocation(TableName tableName,
+ byte[] row,
+ RegionLocateType type,
+ long timeoutNs) 
+
+
 private http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-AsyncNonMetaRegionLocator.getRegionLocationInternal(TableName tableName,
+AsyncNonMetaRegionLocator.getRegionLocationInternal(TableName tableName,
  byte[] row,
- RegionLocateType locateType) 
+ RegionLocateType locateType,
+ boolean reload) 
 
-
+
 (package private) static RegionLocations
 RpcRetryingCallerWithReadReplicas.getRegionLocations(boolean useCache,
   int replicaId,
@@ -3115,7 +3125,7 @@ service.
   TableName tableName,
   byte[] row) 
 
-
+
 static RegionLocations
 RegionAdminServiceCallable.getRegionLocations(ClusterConnection connection,
   TableName tableName,
@@ -3123,83 +3133,83 @@ service.
   boolean useCache,
   int replicaId) 
 
-
+
 RegionLocator
 ConnectionImplementation.getRegionLocator(TableName tableName) 
 
-
+
 AsyncTableRegionLocator
 AsyncConnection.getRegionLocator(TableName tableName)
 Retrieve a AsyncRegionLocator implementation to inspect 
region information on a table.
 
 
-
+
 AsyncTableRegionLocator
 AsyncConnectionImpl.getRegionLocator(TableName tableName) 
 
-
+
 RegionLocator
 Connection.getRegionLocator(TableName tableName)
 Retrieve a RegionLocator implementation to inspect region 
information on a table.
 
 
-
+
 Table
 ConnectionImplementation.getTable(TableName tableName) 
 
-
+
 default Table
 Connection.getTable(TableName tableName)
 Retrieve a Table implementation for accessing a table.
 
 
-
+
 default AsyncTable
 AsyncConnection.getTable(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)
 Retrieve an AsyncTable implementation for accessing a 
table.
 
 
-
+
 default Table
 Connection.getTable(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)
 Retrieve a Table implementation for accessing a table.
 
 
-
+
 TableBuilder
 ConnectionImplementation.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) 
 
-
+
 AsyncTableBuilder
 AsyncConnection.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)
 Returns an AsyncTableBuilder for creating 
AsyncTable.
 
 
-
+
 AsyncTableBuilder
 AsyncConnectionImpl.getTableBuilder(TableName tableName,

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

2017-07-10 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0821e51a/devapidocs/org/apache/hadoop/hbase/client/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/client/package-tree.html
index f51caa5..9b3d915 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/package-tree.html
@@ -531,25 +531,25 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
-org.apache.hadoop.hbase.client.TableState.State
-org.apache.hadoop.hbase.client.AbstractResponse.ResponseType
-org.apache.hadoop.hbase.client.IsolationLevel
-org.apache.hadoop.hbase.client.CompactionState
-org.apache.hadoop.hbase.client.AsyncScanSingleRegionRpcRetryingCaller.ScanResumerState
-org.apache.hadoop.hbase.client.AsyncRequestFutureImpl.Retry
-org.apache.hadoop.hbase.client.ScannerCallable.MoreResults
-org.apache.hadoop.hbase.client.AsyncProcessTask.SubmittedRows
-org.apache.hadoop.hbase.client.Scan.ReadType
-org.apache.hadoop.hbase.client.RequestController.ReturnCode
-org.apache.hadoop.hbase.client.SnapshotType
+org.apache.hadoop.hbase.client.AsyncScanSingleRegionRpcRetryingCaller.ScanControllerState
 org.apache.hadoop.hbase.client.HBaseAdmin.ReplicationState
 org.apache.hadoop.hbase.client.RegionLocateType
-org.apache.hadoop.hbase.client.AsyncScanSingleRegionRpcRetryingCaller.ScanControllerState
+org.apache.hadoop.hbase.client.ScannerCallable.MoreResults
+org.apache.hadoop.hbase.client.AsyncRequestFutureImpl.Retry
+org.apache.hadoop.hbase.client.AbstractResponse.ResponseType
+org.apache.hadoop.hbase.client.AsyncProcessTask.SubmittedRows
+org.apache.hadoop.hbase.client.CompactType
 org.apache.hadoop.hbase.client.MobCompactPartitionPolicy
+org.apache.hadoop.hbase.client.Consistency
+org.apache.hadoop.hbase.client.SnapshotType
 org.apache.hadoop.hbase.client.Durability
-org.apache.hadoop.hbase.client.CompactType
+org.apache.hadoop.hbase.client.IsolationLevel
+org.apache.hadoop.hbase.client.CompactionState
+org.apache.hadoop.hbase.client.RequestController.ReturnCode
+org.apache.hadoop.hbase.client.Scan.ReadType
+org.apache.hadoop.hbase.client.AsyncScanSingleRegionRpcRetryingCaller.ScanResumerState
+org.apache.hadoop.hbase.client.TableState.State
 org.apache.hadoop.hbase.client.MasterSwitchType
-org.apache.hadoop.hbase.client.Consistency
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0821e51a/devapidocs/org/apache/hadoop/hbase/executor/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/executor/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/executor/package-tree.html
index 5bdab95..bbf68db 100644
--- a/devapidocs/org/apache/hadoop/hbase/executor/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/executor/package-tree.html
@@ -104,8 +104,8 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
-org.apache.hadoop.hbase.executor.ExecutorType
 org.apache.hadoop.hbase.executor.EventType
+org.apache.hadoop.hbase.executor.ExecutorType
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/0821e51a/devapidocs/org/apache/hadoop/hbase/filter/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/filter/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/filter/package-tree.html
index 85f8501..2835bdc 100644
--- a/devapidocs/org/apache/hadoop/hbase/filter/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/filter/package-tree.html
@@ -175,14 +175,14 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
-org.apache.hadoop.hbase.filter.BitComparator.Bitwis

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

2017-07-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/2d27954a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ReplicationState.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ReplicationState.html 
b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ReplicationState.html
index 287b6f8..867f520 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ReplicationState.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.ReplicationState.html
@@ -122,7 +122,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-private static enum HBaseAdmin.ReplicationState
+private static enum HBaseAdmin.ReplicationState
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum
 This enum indicates the current state of the replication 
for a given table.
 
@@ -214,7 +214,7 @@ the order they are declared.
 
 
 ENABLED
-public static final HBaseAdmin.ReplicationState 
ENABLED
+public static final HBaseAdmin.ReplicationState 
ENABLED
 
 
 
@@ -223,7 +223,7 @@ the order they are declared.
 
 
 MIXED
-public static final HBaseAdmin.ReplicationState 
MIXED
+public static final HBaseAdmin.ReplicationState 
MIXED
 
 
 
@@ -232,7 +232,7 @@ the order they are declared.
 
 
 DISABLED
-public static final HBaseAdmin.ReplicationState 
DISABLED
+public static final HBaseAdmin.ReplicationState 
DISABLED
 
 
 
@@ -249,7 +249,7 @@ the order they are declared.
 
 
 values
-public static HBaseAdmin.ReplicationState[] values()
+public static HBaseAdmin.ReplicationState[] values()
 Returns an array containing the constants of this enum 
type, in
 the order they are declared.  This method may be used to iterate
 over the constants as follows:
@@ -269,7 +269,7 @@ for (HBaseAdmin.ReplicationState c : 
HBaseAdmin.ReplicationState.values())
 
 
 valueOf
-public static HBaseAdmin.ReplicationState valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
+public static HBaseAdmin.ReplicationState valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
 Returns the enum constant of this type with the specified 
name.
 The string must match exactly an identifier used to declare an
 enum constant in this type.  (Extraneous whitespace characters are 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/2d27954a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html 
b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html
index 6386f5b..5e4b17f 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html
@@ -6924,7 +6924,7 @@ public byte[][] 
 
 listDrainingRegionServers
-public http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List listDrainingRegionServers()
+public http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List listDrainingRegionServers()
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: Admin
 List region servers marked as draining to not get 
additional regions assigned to them.
@@ -6944,7 +6944,7 @@ public byte[][] 
 
 removeDrainFromRegionServers
-public void removeDrainFromRegionServers(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List servers)
+public void removeDrainFromRegionServers(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List servers)
   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: Admin
 Remove drain from a region server to allow additional 
regions assignments.
@@ -6964,7 +6964,7 @@ public byte[][] 
 
 listReplicatedTableCFs
-public http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List listReplicatedTableCFs()
+public http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List listReplicatedTableCFs()
   throws http://docs.oracle.com/javase/8/docs/api/jav

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

2017-07-08 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/9fb0764b/apidocs/org/apache/hadoop/hbase/client/class-use/TableDescriptor.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/class-use/TableDescriptor.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/TableDescriptor.html
index 5c31929..35ed42c 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/TableDescriptor.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/TableDescriptor.html
@@ -92,6 +92,17 @@
 Provides HBase Client
 
 
+
+org.apache.hadoop.hbase.mapreduce
+
+Provides HBase http://wiki.apache.org/hadoop/HadoopMapReduce";>MapReduce
+Input/OutputFormats, a table indexing MapReduce job, and utility methods.
+
+
+
+org.apache.hadoop.hbase.rest.client
+ 
+
 
 
 
@@ -196,6 +207,18 @@
 TableDescriptorBuilder.copy(TableDescriptor desc) 
 
 
+TableDescriptor
+Table.getDescriptor()
+Gets the table 
descriptor for this table.
+
+
+
+TableDescriptor
+Admin.listTableDescriptor(TableName tableName)
+Method for getting the tableDescriptor
+
+
+
 static TableDescriptor
 TableDescriptorBuilder.parseFrom(byte[] pbBytes)
 The input should be created by TableDescriptorBuilder.toByteArray(org.apache.hadoop.hbase.client.TableDescriptor).
@@ -235,12 +258,56 @@
 
 
 
+http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+Admin.listTableDescriptors()
+List all the userspace tables.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+Admin.listTableDescriptors(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tableNames)
+Get tableDescriptors
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+Admin.listTableDescriptors(http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in java.util.regex">Pattern pattern)
+List all the userspace tables matching the given 
pattern.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+Admin.listTableDescriptors(http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in java.util.regex">Pattern pattern,
+boolean includeSysTables)
+List all the tables matching the given pattern.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+Admin.listTableDescriptors(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String regex)
+List all the userspace tables matching the given regular 
expression.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+Admin.listTableDescriptors(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String regex,
+boolean includeSysTables)
+List all the tables matching the given pattern.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+Admin.listTableDescriptorsByNamespace(byte[] name)
+Get list of table descriptors by namespace
+
+
+
 default http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
 AsyncAdmin.listTables()
 List all the userspace tables.
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
 AsyncAdmin.listTables(http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">OptionalPattern> pattern,
   boolean includeSysTables)
@@ -267,6 +334,19 @@
 
 
 
+void
+Admin.createTable(TableDescriptor desc)
+Creates a new table.
+
+
+
+void
+Admin.createTable(TableDescriptor desc,
+   byte[][] splitKeys)
+Creates 

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

2017-07-06 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b3b50f22/devapidocs/org/apache/hadoop/hbase/io/hfile/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/io/hfile/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/package-tree.html
index 426e598..79b4a97 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/hfile/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/package-tree.html
@@ -273,12 +273,12 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
+org.apache.hadoop.hbase.io.hfile.BlockType
 org.apache.hadoop.hbase.io.hfile.BlockType.BlockCategory
 org.apache.hadoop.hbase.io.hfile.Cacheable.MemoryType
-org.apache.hadoop.hbase.io.hfile.CacheConfig.ExternalBlockCaches
-org.apache.hadoop.hbase.io.hfile.BlockType
-org.apache.hadoop.hbase.io.hfile.HFileBlock.Writer.State
 org.apache.hadoop.hbase.io.hfile.BlockPriority
+org.apache.hadoop.hbase.io.hfile.HFileBlock.Writer.State
+org.apache.hadoop.hbase.io.hfile.CacheConfig.ExternalBlockCaches
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b3b50f22/devapidocs/org/apache/hadoop/hbase/io/hfile/package-use.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/io/hfile/package-use.html 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/package-use.html
index ba8b5a8..d26371a 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/hfile/package-use.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/package-use.html
@@ -363,12 +363,12 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 HFileBlock
-Reads HFile 
version 2 blocks to HFiles and via Cacheable Interface to 
caches.
+Cacheable Blocks of an HFile 
version 2 file.
 
 
 
 HFileBlock.BlockIterator
-An interface allowing to iterate HFileBlocks.
+Iterator for HFileBlocks.
 
 
 
@@ -378,7 +378,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 HFileBlock.FSReader
-A full-fledged reader with iteration ability.
+An HFile block reader with iteration ability.
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b3b50f22/devapidocs/org/apache/hadoop/hbase/ipc/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/ipc/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/ipc/package-tree.html
index cdb6af5..08990df 100644
--- a/devapidocs/org/apache/hadoop/hbase/ipc/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/ipc/package-tree.html
@@ -341,8 +341,8 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
-org.apache.hadoop.hbase.ipc.MetricsHBaseServerSourceFactoryImpl.SourceStorage
 org.apache.hadoop.hbase.ipc.BufferCallBeforeInitHandler.BufferCallAction
+org.apache.hadoop.hbase.ipc.MetricsHBaseServerSourceFactoryImpl.SourceStorage
 org.apache.hadoop.hbase.ipc.CallEvent.Type
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b3b50f22/devapidocs/org/apache/hadoop/hbase/mapreduce/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/mapreduce/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/mapreduce/package-tree.html
index 8e1ffb4..453a2bc 100644
--- a/devapidocs/org/apache/hadoop/hbase/mapreduce/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/mapreduce/package-tree.html
@@ -284,10 +284,10 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
-org.apache.hadoop.hbase.mapreduce.SyncTable.SyncMapper.Counter
-org.apache.hadoop.hbase.mapreduce.CellCounter.CellCounterMapper.Counters
 org.apache.hadoop.hbase.mapreduce.TableSplit.Version
+org.apache.hadoop.hbase.mapredu

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

2017-07-05 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/ca9f6925/checkstyle-aggregate.html
--
diff --git a/checkstyle-aggregate.html b/checkstyle-aggregate.html
index f0164fc..f89f16a 100644
--- a/checkstyle-aggregate.html
+++ b/checkstyle-aggregate.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – Checkstyle Results
 
@@ -286,10 +286,10 @@
  Warnings
  Errors
 
-2235
+2242
 0
 0
-14637
+14677
 
 Files
 
@@ -764,290 +764,300 @@
 0
 8
 
+org/apache/hadoop/hbase/client/AsyncAdminBuilder.java
+0
+0
+9
+
 org/apache/hadoop/hbase/client/AsyncAdminRequestRetryingCaller.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/AsyncBatchRpcRetryingCaller.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/AsyncClientScanner.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/client/AsyncConnection.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/AsyncConnectionConfiguration.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/AsyncHBaseAdmin.java
 0
 0
-92
-
+3
+
 org/apache/hadoop/hbase/client/AsyncMetaRegionLocator.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/AsyncNonMetaRegionLocator.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/client/AsyncProcess.java
 0
 0
 11
-
+
 org/apache/hadoop/hbase/client/AsyncProcessTask.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/AsyncRequestFuture.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/AsyncRequestFutureImpl.java
 0
 0
 24
-
+
 org/apache/hadoop/hbase/client/AsyncRpcRetryingCaller.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/AsyncRpcRetryingCallerFactory.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/AsyncSingleRequestRpcRetryingCaller.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/AsyncTableImpl.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/BatchErrors.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/BufferedMutator.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/BufferedMutatorImpl.java
 0
 0
 4
-
+
 org/apache/hadoop/hbase/client/CancellableRegionServerCallable.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/ClientAsyncPrefetchScanner.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/ClientIdGenerator.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/ClientScanner.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/ClientServiceCallable.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/ClientUtil.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/ClusterStatusListener.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/ColumnFamilyDescriptor.java
 0
 0
 12
-
+
 org/apache/hadoop/hbase/client/ColumnFamilyDescriptorBuilder.java
 0
 0
 52
-
+
 org/apache/hadoop/hbase/client/CompactType.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/ConnectionConfiguration.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/ConnectionFactory.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/ConnectionImplementation.java
 0
 0
 7
-
+
 org/apache/hadoop/hbase/client/CoprocessorHConnection.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/DelayingRunner.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/Delete.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/client/Get.java
 0
 0
 9
-
+
 org/apache/hadoop/hbase/client/HBaseAdmin.java
 0
 0
 80
-
+
 org/apache/hadoop/hbase/client/HRegionLocator.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/HTable.java
 0
 0
 25
-
+
 org/apache/hadoop/hbase/client/HTableMultiplexer.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/client/HTableWrapper.java
 0
 0
 8
-
+
 org/apache/hadoop/hbase/client/ImmutableHColumnDescriptor.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/ImmutableHTableDescriptor.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/Increment.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/MasterCallable.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/client/MetaCache.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/client/MetricsConnection.java
 0
 0
 39
-
+
 org/apache/hadoop/hbase/client/MultiAction.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/client/MultiResponse.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/MultiServerCallable.java
 0
 0
 7
-
+
 org/apache/hadoop/hbase/client/Mutation.java
 0
 0
 21
-
+
 org/apache/hadoop/hbase/client/Operation.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/PackagePrivateFieldAccessor.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/client/PreemptiveFastFailInterceptor.java
 0
 0
 11
-
+
 org/apache/hadoop/hbase/client/Put.java
 0
 0
 19
-
+
 org/apache/hadoop/hbase/client/Query.java
 0
 0
 9
-
+
 org/apache/hadoop/hbase/client/QuotaStatusCalls.java
 0
 0
 4
+
+org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.java
+0
+0
+92
 
 org/apache/hadoop/hbase/client/RawAsyncTable.java
 0
@@ -3979,15 +3989,25 @@
 0
 3
 
+org/apache/hadoop/hbase/regionserver/CellArrayImmutableSegment.java
+0
+0
+1
+
 org/apache/hadoop/hbase/regionserver/CellArrayMap.java
 0
 0
 3
+
+org/apache/hadoop/hbase/regionserver/CellChunkImmutableSegment.java
+0
+0
+4
 
 org/apache/hadoop/hbase/regionserver/CellChunkMap.java
 0
 0
-4
+5
 
 org/apache/hadoop/hbas

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

2017-06-27 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8e3b63ca/devapidocs/org/apache/hadoop/hbase/rsgroup/RSGroupBasedLoadBalancer.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/rsgroup/RSGroupBasedLoadBalancer.html 
b/devapidocs/org/apache/hadoop/hbase/rsgroup/RSGroupBasedLoadBalancer.html
index 817959d..8177eca 100644
--- a/devapidocs/org/apache/hadoop/hbase/rsgroup/RSGroupBasedLoadBalancer.html
+++ b/devapidocs/org/apache/hadoop/hbase/rsgroup/RSGroupBasedLoadBalancer.html
@@ -576,7 +576,7 @@ public 
 
 retainAssignment
-public http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList> retainAssignment(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map regions,
+public http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList> retainAssignment(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map regions,
   http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List servers)
throws HBaseIOException
 Description copied from 
interface: LoadBalancer
@@ -597,7 +597,7 @@ public 
 
 randomAssignment
-public ServerName randomAssignment(HRegionInfo region,
+public ServerName randomAssignment(HRegionInfo region,
http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List servers)
 throws HBaseIOException
 Description copied from 
interface: LoadBalancer
@@ -620,7 +620,7 @@ public 
 
 generateGroupMaps
-private void generateGroupMaps(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List regions,
+private void generateGroupMaps(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List regions,
http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List servers,
com.google.common.collect.ListMultimapString,HRegionInfo> regionMap,
com.google.common.collect.ListMultimapString,ServerName> serverMap)
@@ -637,7 +637,7 @@ public 
 
 filterOfflineServers
-private http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List filterOfflineServers(RSGroupInfo RSGroupInfo,
+private http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List filterOfflineServers(RSGroupInfo RSGroupInfo,
   http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List onlineServers)
 
 
@@ -647,7 +647,7 @@ public 
 
 filterServers
-private http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List filterServers(http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
 servers, +private http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true"; title="class or interface in java.util">List filterServers(http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true"; title="class or interface in java.util">Collection
 servers, http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true"; title="class or interface in java.util">Collection onlineServers) Filter servers based on the online servers. @@ -665,7 +665,7 @@ public  getMisplacedRegions -private http://docs.oracle.com/javase/

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

2017-06-26 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/aecb1286/checkstyle.rss
--
diff --git a/checkstyle.rss b/checkstyle.rss
index d806cd3..6709348 100644
--- a/checkstyle.rss
+++ b/checkstyle.rss
@@ -26,7 +26,7 @@ under the License.
 ©2007 - 2017 The Apache Software Foundation
 
   File: 2235,
- Errors: 14601,
+ Errors: 14647,
  Warnings: 0,
  Infos: 0
   
@@ -10429,7 +10429,7 @@ under the License.
   0
 
 
-  35
+  94
 
   
   
@@ -19879,7 +19879,7 @@ under the License.
   0
 
 
-  15
+  8
 
   
   
@@ -20411,7 +20411,7 @@ under the License.
   0
 
 
-  43
+  54
 
   
   
@@ -22049,7 +22049,7 @@ under the License.
   0
 
 
-  237
+  228
 
   
   
@@ -30785,7 +30785,7 @@ under the License.
   0
 
 
-  194
+  186
 
   
   

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/aecb1286/coc.html
--
diff --git a/coc.html b/coc.html
index 0a39890..d742b07 100644
--- a/coc.html
+++ b/coc.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – 
   Code of Conduct Policy
@@ -380,7 +380,7 @@ email to mailto:priv...@hbase.apache.org";>the priv
 https://www.apache.org/";>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-06-25
+  Last Published: 
2017-06-26
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/aecb1286/cygwin.html
--
diff --git a/cygwin.html b/cygwin.html
index 2a75a2f..fd50950 100644
--- a/cygwin.html
+++ b/cygwin.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – Installing Apache HBase (TM) on Windows using 
Cygwin
 
@@ -679,7 +679,7 @@ Now your HBase server is running, start 
coding and build that next
 https://www.apache.org/";>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-06-25
+  Last Published: 
2017-06-26
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/aecb1286/dependencies.html
--
diff --git a/dependencies.html b/dependencies.html
index 9e33933..4cb2287 100644
--- a/dependencies.html
+++ b/dependencies.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – Project Dependencies
 
@@ -524,7 +524,7 @@
 https://www.apache.org/";>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-06-25
+  Last Published: 
2017-06-26
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/aecb1286/dependency-convergence.html
--
diff --git a/dependency-convergence.html b/dependency-convergence.html
index 560c1fd..946690f 100644
--- a/dependency-convergence.html
+++ b/dependency-convergence.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – Reactor Dependency Convergence
 
@@ -1841,7 +1841,7 @@
 https://www.apache.org/";>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-06-25
+  Last Published: 
2017-06-26
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/aecb1286/dependency-info.html
--
diff --git a/dependency-info.html b/dependency-info.html
index e3bf216..6d66e6d 100644
--- a/dependency-info.html
+++ b/dependency-info.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – Dependency Information
 
@@ -318,7 +318,7 @@
 https://www.apache.org/";>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-06-25
+  Las

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

2017-06-20 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/a719cd00/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.ServerLocalityCostFunction.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.ServerLocalityCostFunction.html
 
b/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.ServerLocalityCostFunction.html
new file mode 100644
index 000..ebf7c75
--- /dev/null
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.ServerLocalityCostFunction.html
@@ -0,0 +1,374 @@
+http://www.w3.org/TR/html4/loose.dtd";>
+
+
+
+
+
+StochasticLoadBalancer.ServerLocalityCostFunction (Apache HBase 
3.0.0-SNAPSHOT API)
+
+
+
+
+
+var methods = {"i0":10};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Overview
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev Class
+Next Class
+
+
+Frames
+No Frames
+
+
+All Classes
+
+
+
+
+
+
+
+Summary: 
+Nested | 
+Field | 
+Constr | 
+Method
+
+
+Detail: 
+Field | 
+Constr | 
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase.master.balancer
+Class StochasticLoadBalancer.ServerLocalityCostFunction
+
+
+
+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.master.balancer.StochasticLoadBalancer.CostFunction
+
+
+org.apache.hadoop.hbase.master.balancer.StochasticLoadBalancer.LocalityBasedCostFunction
+
+
+org.apache.hadoop.hbase.master.balancer.StochasticLoadBalancer.ServerLocalityCostFunction
+
+
+
+
+
+
+
+
+
+
+
+Enclosing class:
+StochasticLoadBalancer
+
+
+
+static class StochasticLoadBalancer.ServerLocalityCostFunction
+extends StochasticLoadBalancer.LocalityBasedCostFunction
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields 
+
+Modifier and Type
+Field and Description
+
+
+private static float
+DEFAULT_LOCALITY_COST 
+
+
+private static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+LOCALITY_COST_KEY 
+
+
+
+
+
+
+Fields inherited from 
class org.apache.hadoop.hbase.master.balancer.StochasticLoadBalancer.CostFunction
+cluster
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors 
+
+Constructor and Description
+
+
+ServerLocalityCostFunction(org.apache.hadoop.conf.Configuration conf,
+  MasterServices srv) 
+
+
+
+
+
+
+
+
+
+Method Summary
+
+All Methods Instance Methods Concrete Methods 
+
+Modifier and Type
+Method and Description
+
+
+(package private) int
+regionIndexToEntityIndex(int region)
+Maps region to the current entity (server or rack) on which 
it is stored
+
+
+
+
+
+
+
+Methods inherited from 
class org.apache.hadoop.hbase.master.balancer.StochasticLoadBalancer.LocalityBasedCostFunction
+cost,
 init,
 regionMoved,
 setServices
+
+
+
+
+
+Methods inherited from 
class org.apache.hadoop.hbase.master.balancer.StochasticLoadBalancer.CostFunction
+costFromArray,
 getMultiplier,
 isNeeded,
 postAction,
 scale,
 setMultiplier
+
+
+
+
+
+Methods inherited from class java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
+http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true#clone--";
 title="class 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-

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

2017-06-10 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/476c54ed/devapidocs/org/apache/hadoop/hbase/master/MetricsMaster.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/master/MetricsMaster.html 
b/devapidocs/org/apache/hadoop/hbase/master/MetricsMaster.html
index ffd3511..9d902a1 100644
--- a/devapidocs/org/apache/hadoop/hbase/master/MetricsMaster.html
+++ b/devapidocs/org/apache/hadoop/hbase/master/MetricsMaster.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":9,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10};
+var methods = 
{"i0":9,"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};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -222,23 +222,41 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 void
+incrementSnapshotFetchTime(long executionTime)
+Sets the execution time to fetch the mapping of snapshots 
to originating table.
+
+
+
+void
+incrementSnapshotObserverTime(long executionTime)
+Sets the execution time of a period of the 
SnapshotQuotaObserverChore.
+
+
+
+void
+incrementSnapshotSizeComputationTime(long executionTime)
+Sets the execution time to compute the size of a single 
snapshot.
+
+
+
+void
 setNumNamespacesInSpaceQuotaViolation(long numNamespacesInViolation)
 Sets the number of namespaces in violation of a space 
quota.
 
 
-
+
 void
 setNumRegionSizeReports(long numRegionReports)
 Sets the number of region size reports the master currently 
has in memory.
 
 
-
+
 void
 setNumSpaceQuotas(long numSpaceQuotas)
 Sets the number of space quotas defined.
 
 
-
+
 void
 setNumTableInSpaceQuotaViolation(long numTablesInViolation)
 Sets the number of table in violation of a space 
quota.
@@ -464,7 +482,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 
-
+
 
 convertToProcedureMetrics
 public static ProcedureMetrics convertToProcedureMetrics(OperationMetrics metrics)
@@ -478,6 +496,36 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
  required conversion.
 
 
+
+
+
+
+
+incrementSnapshotObserverTime
+public void incrementSnapshotObserverTime(long executionTime)
+Sets the execution time of a period of the 
SnapshotQuotaObserverChore.
+
+
+
+
+
+
+
+incrementSnapshotSizeComputationTime
+public void incrementSnapshotSizeComputationTime(long executionTime)
+Sets the execution time to compute the size of a single 
snapshot.
+
+
+
+
+
+
+
+incrementSnapshotFetchTime
+public void incrementSnapshotFetchTime(long executionTime)
+Sets the execution time to fetch the mapping of snapshots 
to originating table.
+
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/476c54ed/devapidocs/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.html 
b/devapidocs/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.html
index d1358b1..14b9b22 100644
--- a/devapidocs/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.html
+++ b/devapidocs/org/apache/hadoop/hbase/master/MetricsMasterQuotaSource.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6};
+var methods = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -196,6 +196,30 @@ extends 
 
 static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+SNAPSHOT_OBSERVER_CHORE_TIME_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
+SNAPSHOT_OBSERVER_CHORE_TIME_NAME 
+
+
+static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+SNAPSHOT_OBSERVER_FETCH_TIME_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
+SNAPSHOT_OBSERVER_FETCH_TIME_NAME 
+
+
+static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
+SNAPSHOT_OBSERVER_SIZE_COMPUTATION_TIME_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
+SNAPSHOT_OBSERVER_SIZE_COMPUTATION_TIME_NAME 
+
+
+static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class

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

2017-06-09 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/77a552c4/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 80d816c..d1710e6 100644
--- a/apidocs/org/apache/hadoop/hbase/client/TableDescriptorBuilder.html
+++ b/apidocs/org/apache/hadoop/hbase/client/TableDescriptorBuilder.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":9,"i7":9,"i8":9,"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":42,"i22":42,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":9};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":9,"i6":10,"i7":9,"i8":9,"i9":9,"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":42,"i23":42,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":9};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete 
Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -110,7 +110,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Public
-public class TableDescriptorBuilder
+public class TableDescriptorBuilder
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 
 
@@ -164,6 +164,10 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 DEFAULT_REGION_REPLICATION 
 
 
+static org.apache.commons.logging.Log
+LOG 
+
+
 static TableDescriptor
 NAMESPACE_TABLEDESC
 Table descriptor for namespace table
@@ -186,36 +190,34 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 TableDescriptorBuilder
-addCoprocessor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String className) 
+addColumnFamily(ColumnFamilyDescriptor family) 
 
 
 TableDescriptorBuilder
+addCoprocessor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String className) 
+
+
+TableDescriptorBuilder
 addCoprocessor(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String className,
   org.apache.hadoop.fs.Path jarFilePath,
   int priority,
   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> kvs) 
 
-
-TableDescriptorBuilder
-addCoprocessorWithSpec(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String specStr) 
-
 
 TableDescriptorBuilder
-addFamily(HColumnDescriptor family) 
+addCoprocessorWithSpec(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String specStr) 
 
 
-HTableDescriptor
+TableDescriptor
 build() 
 
 
-TableDescriptorBuilder
-modifyFamily(HColumnDescriptor family) 
+static TableDescriptor
+copy(TableDescriptor desc) 
 
 
-static TableDescriptorBuilder
-newBuilder(byte[] pbBytes)
-The input should be created by toByteArray(org.apache.hadoop.hbase.client.TableDescriptor).
-
+TableDescriptorBuilder
+modifyColumnFamily(ColumnFamilyDescriptor family) 
 
 
 static TableDescriptorBuilder
@@ -228,12 +230,14 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 newBuilder(TableName name) 
 
 
-TableDescriptorBuilder
-remove(byte[] key) 
+static TableDescriptor
+parseFrom(byte[] pbBytes)
+The input should be created by toByteArray(org.apache.hadoop.hbase.client.TableDescriptor).
+
 
 
 TableDescriptorBuilder
-remove(Bytes key) 
+removeColumnFamily(byte[] name) 
 
 
 TableDescriptorBuilder
@@ -245,80 +249,84 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 TableDescriptorBuilder
-removeFamily(byte[] column) 
+removeValue(byte[] key) 
 
 
 TableDescriptorBuilder
-setCompactionEnabled(boolean isEnable) 
+removeValue(Bytes key) 
 
 
 TableDescriptorBuilder
+setCompactionEnabled(boolean isEnable) 
+
+
+TableDescriptorBuilder
 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/jav

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

2017-06-07 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b44796ef/apidocs/org/apache/hadoop/hbase/client/package-tree.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/package-tree.html 
b/apidocs/org/apache/hadoop/hbase/client/package-tree.html
index 5fd72ce..1a3446f 100644
--- a/apidocs/org/apache/hadoop/hbase/client/package-tree.html
+++ b/apidocs/org/apache/hadoop/hbase/client/package-tree.html
@@ -4,7 +4,7 @@
 
 
 
-org.apache.hadoop.hbase.client Class Hierarchy (Apache HBase 
2.0.0-SNAPSHOT API)
+org.apache.hadoop.hbase.client Class Hierarchy (Apache HBase 
3.0.0-SNAPSHOT API)
 
 
 
@@ -12,7 +12,7 @@
 
 
-Uses of Package org.apache.hadoop.hbase.client (Apache HBase 
2.0.0-SNAPSHOT API)
+Uses of Package org.apache.hadoop.hbase.client (Apache HBase 
3.0.0-SNAPSHOT API)