[44/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.ReadType.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/client/Scan.ReadType.html 
b/apidocs/src-html/org/apache/hadoop/hbase/client/Scan.ReadType.html
index 8f0943d..63ba3f6 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/client/Scan.ReadType.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/client/Scan.ReadType.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 

[44/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/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 fd93b0c..ff8903f 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/Get.html
@@ -250,26 +250,26 @@
 
 
 
-boolean
-Table.exists(Getget)
+default http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true;
 title="class or interface in java.lang">Boolean
+AsyncTableBase.exists(Getget)
 Test for the existence of columns in the table, as 
specified by the Get.
 
 
 
-default http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true;
 title="class or interface in java.lang">Boolean
-AsyncTableBase.exists(Getget)
+boolean
+Table.exists(Getget)
 Test for the existence of columns in the table, as 
specified by the Get.
 
 
 
-Result
-Table.get(Getget)
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureResult
+AsyncTableBase.get(Getget)
 Extracts certain cells from a given row.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureResult
-AsyncTableBase.get(Getget)
+Result
+Table.get(Getget)
 Extracts certain cells from a given row.
 
 
@@ -289,26 +289,26 @@
 
 
 
-boolean[]
-Table.existsAll(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListGetgets)
-Test for the existence of columns in the table, as 
specified by the Gets.
-
-
-
 default http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">Listhttp://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true;
 title="class or interface in java.lang">Boolean
 AsyncTableBase.existsAll(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListGetgets)
 A simple version for batch exists.
 
 
+
+boolean[]
+Table.existsAll(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListGetgets)
+Test for the existence of columns in the table, as 
specified by the Gets.
+
+
 
-Result[]
-Table.get(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListGetgets)
+http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">Listhttp://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureResult
+AsyncTableBase.get(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListGetgets)
 Extracts certain cells from the given rows, in batch.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">Listhttp://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFutureResult
-AsyncTableBase.get(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListGetgets)
+Result[]
+Table.get(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListGetgets)
 Extracts certain cells from the given rows, in batch.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/2aec596e/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 09c553d..0b60da8 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/Increment.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/Increment.html
@@ 

[44/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/MetricsRegionServerSource.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/MetricsRegionServerSource.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/MetricsRegionServerSource.html
index 93f9bf3..fe83874 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/MetricsRegionServerSource.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/MetricsRegionServerSource.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6};
+var methods = 
{"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":6,"i26":6,"i27":6};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -376,6 +376,14 @@ 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
+CHECK_AND_DELETE_KEY
+
+
+static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
+CHECK_AND_PUT_KEY
+
+
+static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
 CHECK_MUTATE_FAILED_COUNT
 
 
@@ -488,319 +496,319 @@ 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
-DELETE_KEY
+DELETE_BATCH_KEY
 
 
 static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
-FILTERED_READ_REQUEST_COUNT
+DELETE_KEY
 
 
 static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
-FILTERED_READ_REQUEST_COUNT_DESC
+FILTERED_READ_REQUEST_COUNT
 
 
 static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
-FLUSH_MEMSTORE_SIZE
+FILTERED_READ_REQUEST_COUNT_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
-FLUSH_MEMSTORE_SIZE_DESC
+FLUSH_MEMSTORE_SIZE
 
 
 static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
-FLUSH_OUTPUT_SIZE
+FLUSH_MEMSTORE_SIZE_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
-FLUSH_OUTPUT_SIZE_DESC
+FLUSH_OUTPUT_SIZE
 
 
 static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
-FLUSH_QUEUE_LENGTH
+FLUSH_OUTPUT_SIZE_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
-FLUSH_QUEUE_LENGTH_DESC
+FLUSH_QUEUE_LENGTH
 
 
 static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
-FLUSH_TIME
+FLUSH_QUEUE_LENGTH_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
-FLUSH_TIME_DESC
+FLUSH_TIME
 
 
 static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
-FLUSHED_CELLS
+FLUSH_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
-FLUSHED_CELLS_DESC
+FLUSHED_CELLS
 
 
 static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
-FLUSHED_CELLS_SIZE
+FLUSHED_CELLS_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
-FLUSHED_CELLS_SIZE_DESC
+FLUSHED_CELLS_SIZE
 
 
 static http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String
-FLUSHED_MEMSTORE_BYTES
+FLUSHED_CELLS_SIZE_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
-FLUSHED_MEMSTORE_BYTES_DESC
+FLUSHED_MEMSTORE_BYTES
 
 
 static 

[44/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/HRegion.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/regionserver/HRegion.html 
b/devapidocs/org/apache/hadoop/hbase/regionserver/HRegion.html
index 692e961..334478d 100644
--- a/devapidocs/org/apache/hadoop/hbase/regionserver/HRegion.html
+++ b/devapidocs/org/apache/hadoop/hbase/regionserver/HRegion.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":9,"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":9,"i48":9,"i49":10,"i50":9,"i51":9,"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":9,"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":9,"i103":10,"i104":10,"i105":10,"i106":10,"i107":10,"i108":10,"i109":10
 
,"i110":10,"i111":10,"i112":10,"i113":10,"i114":9,"i115":10,"i116":10,"i117":10,"i118":10,"i119":10,"i120":10,"i121":10,"i122":41,"i123":41,"i124":10,"i125":10,"i126":10,"i127":10,"i128":10,"i129":10,"i130":10,"i131":10,"i132":10,"i133":10,"i134":10,"i135":10,"i136":10,"i137":10,"i138":10,"i139":10,"i140":10,"i141":10,"i142":10,"i143":10,"i144":10,"i145":10,"i146":10,"i147":9,"i148":10,"i149":10,"i150":10,"i151":10,"i152":42,"i153":10,"i154":10,"i155":10,"i156":10,"i157":10,"i158":10,"i159":10,"i160":10,"i161":10,"i162":10,"i163":10,"i164":10,"i165":10,"i166":10,"i167":10,"i168":10,"i169":10,"i170":10,"i171":10,"i172":10,"i173":10,"i174":10,"i175":9,"i176":10,"i177":10,"i178":10,"i179":10,"i180":10,"i181":10,"i182":10,"i183":10,"i184":10,"i185":10,"i186":9,"i187":10,"i188":10,"i189":9,"i190":9,"i191":9,"i192":9,"i193":9,"i194":9,"i195":9,"i196":9,"i197":9,"i198":10,"i199":10,"i200":10,"i201":10,"i202":10,"i203":10,"i204":10,"i205":10,"i206":10,"i207":10,"i208":10,"i209":10,"i210":10
 
,"i211":10,"i212":10,"i213":10,"i214":10,"i215":10,"i216":10,"i217":10,"i218":10,"i219":10,"i220":10,"i221":10,"i222":10,"i223":10,"i224":10,"i225":10,"i226":10,"i227":10,"i228":10,"i229":10,"i230":10,"i231":10,"i232":10,"i233":10,"i234":10,"i235":10,"i236":10,"i237":9,"i238":9,"i239":10,"i240":10,"i241":10,"i242":10,"i243":10,"i244":10,"i245":10,"i246":10,"i247":10,"i248":10,"i249":10,"i250":10,"i251":9,"i252":10,"i253":10,"i254":10,"i255":10,"i256":10,"i257":10,"i258":10,"i259":10,"i260":10,"i261":10,"i262":10,"i263":10,"i264":10,"i265":10,"i266":10,"i267":9,"i268":10,"i269":10,"i270":10,"i271":10};
+var methods = 
{"i0":10,"i1":10,"i2":9,"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":9,"i48":9,"i49":10,"i50":9,"i51":9,"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":9,"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":9,"i104":10,"i105":10,"i106":10,"i107":10,"i108":10,"i109":10
 

[44/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/AssignProcedure.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/assignment/AssignProcedure.html 
b/devapidocs/org/apache/hadoop/hbase/master/assignment/AssignProcedure.html
index 359fbcc..cac8828 100644
--- a/devapidocs/org/apache/hadoop/hbase/master/assignment/AssignProcedure.html
+++ b/devapidocs/org/apache/hadoop/hbase/master/assignment/AssignProcedure.html
@@ -363,7 +363,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,
 isYieldAfterExecutionStep,
 removeStackIndex,
 setAbortFailure, setChildrenLatch,
 setFailure,
 setFailure,
 setLastUpdate,
 setNonceKey,
 setOwner,
 setOwner, setParentProcId,
 setProcId,
 setResult,
 setRootProcId,
 setStackIndexes,
 setState,
 setSubmittedTime,
 setT
 imeout, setTimeoutFailure,
 toString,
 toStringClass,
 toStringDetails,
 toStringSimpleSB,
 updateMetricsOnFinish,
 updateMetricsOnSubmit,
 updateTim
 estamp, 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,
 isYieldAfterExecutionStep,
 removeStackInde
 x, setAbortFailure,
 setChildrenLatch,
 setFailure,
 setFailure,
 setLastUpdate,
 setNonceKey,
 setOwner,
 setOwner,
 setParentProcId,
 setProcId,
 setResult,
 setRootProcId,
 setStackIndexes,
 setState,
 setSubmitte
 dTime, setTimeout,
 setTimeoutFailure,
 toString,
 toStringClass,
 toStringDetails,
 toStringSimpleSB,
 updateMetricsOnFinish,
 updateMetricsOnSubmit, updateTimestamp,
 wasExecuted
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/2d5075d7/devapidocs/org/apache/hadoop/hbase/master/assignment/AssignmentManager.RegionInTransitionChore.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/assignment/AssignmentManager.RegionInTransitionChore.html
 
b/devapidocs/org/apache/hadoop/hbase/master/assignment/AssignmentManager.RegionInTransitionChore.html
index 52c8ff2..394549c 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/assignment/AssignmentManager.RegionInTransitionChore.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/assignment/AssignmentManager.RegionInTransitionChore.html
@@ -211,7 +211,7 @@ extends Procedure
-acquireLock,
 addStackIndex,
 afterReplay,
 beforeReplay,
 compareTo,
 completionCleanup,
 doAcquireLock,
 d
 oExecute, doReleaseLock,
 doRollback,
 elapsedTime,
 getChildrenLatch,
 getException,
 getLastUpdate,
 getNonceKey,
 getOwner,
 getParentProcId, getProcedureMetrics,
 getProcId,
 getProcIdHashCode,
 getResult,
 getRootProcedureId,
 getRootProcId,
 getStackIndexes,
 getState, getSubmittedTime,
 getTimeout,
 getTimeoutTimestamp,
 hasChildren,
 hasException,
 hasLock,
 hasOwner,
 hasParent,
 hasTimeout, haveSameParent,
 holdLock,
 incChildrenLatch,
 isFailed,
 isFinished,
 isInitializing,
 isRunnable,
 isSu
 ccess, isWaiting,
 isYieldAfterExecutionStep,
 releaseLock,
 removeStackIndex,
 setAbortFailure,
 setChildrenLatch,
 setFailure,
 setFailure,
 setLastUpdate,
 setNonceKey,
 setOwner,
 setOwner,
 setParentProcId,
 setProcId,
 setResult,
 setRootProcId, setStackIndexes,
 setState,
 setSubmittedTime,
 setTimeout,
 setTimeoutFailure,
 shouldWaitClientAck,
 toString,
 toStringClass,
 toStringClassDetails,
 toStringDetails,
 toStringSimpleSB,
 toStringState,
 updateMetricsOnFinish,
 updateMetricsOnSubmit,
 updateTimestamp, wasExecuted
+acquireLock,
 addStackIndex,
 afterReplay,
 beforeReplay,
 compareTo,
 completionCleanup,
 doAcquireLock,
 d
 oExecute, doReleaseLock,
 doRollback,
 elapsedTime,
 getChildrenLatch,
 getException,
 getLastUpdate,
 getNonceKey,
 getOwner,
 getParentProcId, getProcedureMetrics,
 getProcId,
 getProcIdHashCode,
 getProcName,

[44/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/HMasterCommandLine.LocalHMaster.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/HMasterCommandLine.LocalHMaster.html
 
b/devapidocs/org/apache/hadoop/hbase/master/HMasterCommandLine.LocalHMaster.html
index eecc848..493d5f8 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/HMasterCommandLine.LocalHMaster.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/HMasterCommandLine.LocalHMaster.html
@@ -248,7 +248,7 @@ extends 
 
 Methods inherited from classorg.apache.hadoop.hbase.master.HMaster
-abort,
 abortProcedure,
 addColumn,
 addReplicationPeer,
 balance,
 balance,
 balanceSwitch,
 canCreateBaseZNode, canUpdateTableDescriptor,
 checkIfShouldMoveSystemRegionAsync,
 checkInitialized,
 checkServiceStarted,
 checkTableModifiable,
 configureInfoServer,
 construct
 Master, createMetaBootstrap,
 createNamespace,
 createQuotaSnapshotNotifier,
 createRpcServices,
 createServerManager,
 createSystemTable,
 createTable,
 deleteColumn,
 deleteNamespace,
 deleteTable,
 disableReplicationPeer,
 disableTable,
 dispatc
 hMergingRegions, drainRegionServer,
 enableReplicationPeer,
 enableTable,
 getAssignmentManager,
 getAverageLoad,
 getCatalogJanitor,
 getClientIdAuditPrefix,
 getCl
 usterSchema, getClusterStatus,
 getDumpServlet,
 getFavoredNodesManager,
 getFsTableDescriptors,
 getHFileCleaner,
 getInitializedEvent,
 getLastMajorCompactionTimestamp,
 getLast
 MajorCompactionTimestampForRegion, getLoadBalancer,
 getLoadBalancerClassName,
 getLoadedCoprocessors,
 getLockManager,
 getLogCleaner,
 getMasterActiveTime,
 getMasterCoprocessorHost,
 getMasterCoprocessors,
 getMasterFileSystem,
 getMasterMetrics,
 getMasterProcedureExecutor,
 getMasterProcedureManagerHost,
 getMasterQuotaManager,
 getMasterRpcServices,
 getMasterStartTime,
 getMasterWalManager,
 getMergePlanCount, getMobCompactionState,
 getNamespace,
 getNamespaces,
 getNumWALFiles,
 getProcessName,
 getQuotaObserverChore,
 getRegionNormalizer,
 getRegionNormalizerTracker,
 <
 a 
href="../../../../../org/apache/hadoop/hbase/master/HMaster.html#getRegionServerFatalLogBuffer--">getRegionServerFatalLogBuffer,
 getRegionServerInfoPort,
 getRegionServerVersion,
 getRemoteInetAddress,
 getReplicationPeerConfig,
 getServerCrashProcessingEnabledEvent,
 getServerManager,
 getServerName,
 getSnapshotManager,
 getSpaceQuotaSnapshotNotifier,
 getSplitOrMergeTracker,
 getSplitPlanCount,
 getTableDescriptors,
 getTableRegionForRow,
 getTableStateManager,
 getWalProcedureStore,
 getZooKeeper,
 initClusterSchemaService,
 initializeZKBasedSystemTrackers,
 initQuotaManager,
 isActiveMaster,
 isBalancerOn,
 isCatalogJanitorEnabled,
 isCleanerChor
 eEnabled, isInitializationStartsMetaRegionAssignment,
 isInitialized,
 isInMaintenanceMode,
 isNormalizerOn,
 isServerCrashProcessingEnabled,
 isSplitOrMergeEnabled,
 listDrainingRegionServers,
 listLocks, listProcedures,
 listReplicationPeers,
 listTableDescriptors,
 listTableDescriptorsByNamespace,
 listTableNames,
 listTableNamesByNamespace,
 login, main,
 mergeRegions,
 modifyColumn,
 modifyNamespace,
 modifyTable,
 move,
 normalizeRegions, registerService,
 removeDrainFromRegionServer,
 removeReplicationPeer,
 reportMobCompactionEnd,
 reportMobCompactionStart,
 requestMobCompaction,
 restoreSnapshot,
 setCatalogJanitorEnabled,
 setInitialized,
 setServerCrashProcessingEnabled,
 shutdown,
 splitRegion,
 stopMaster,
 stopServiceThreads, truncateTable,
 updateConfigurationForSpaceQuotaObserver,
 updateReplicationPeerConfig,
 waitForMasterActive
+abort,
 abortProcedure,
 addColumn,
 addReplicationPeer,
 balance,
 balance,
 balanceSwitch,
 canCreateBaseZNode, canUpdateTableDescriptor,
 checkIfShouldMoveSystemRegionAsync,
 checkInitialized,
 checkServiceStarted,
 checkTableModifiable,
 configureInfoServer,
 construct
 Master, createMetaBootstrap,
 createNamespace,
 createQuotaSnapshotNotifier,
 createRpcServices,
 createServerManager,
 createSystemTable,
 createTable,
 deleteColumn,
 deleteNamespace,
 deleteTable,
 disableReplicationPeer,
 disableTable,
 drainRegionServer,
 enableReplicationPeer,
 enableTable,
 getAssignmentManager,
 getAverageLoad,
 getCatalogJanitor,
 getClientIdAuditPrefix,
 getClusterSchema,
 getClusterStatus,
 getDumpServlet, getFavoredNodesManager,
 getFsTableDescriptors,
 getHFileCleaner,
 getInitializedEvent,
 getLastMajorCompactionTimestamp,
 getLastMajorCompactionTimestampForRegion,
 getLoadBalancer,
 getLoadBalancerClassName, getLoadedCoprocessors,
 getLockManager,
 getLogCleaner,
 getMasterActiveTime,
 getMasterCoprocessorHost,
 getMasterCoprocessors,
 getMasterFileSystem,
 getMasterMetrics,
 getMasterProcedureExecutor,
 getMasterProcedureManagerHost,
 getMasterQuotaManager,
 getMasterRpcServices,
 getMasterStartTime,
 getMasterWalManager,
 getMergePlanCount,
 getMobCompactionState,
 getNamespace,
 getNamespaces,
 

[44/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/Scan.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Scan.html 
b/apidocs/org/apache/hadoop/hbase/client/Scan.html
index c560430..22287de 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Scan.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Scan.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":9,"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":42,"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":42,"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":42,"i64":42,"i65":42,"i66":10,"i67":10,"i68":10,"i69":10,"i70":10,"i71":10,"i72":10,"i73":10};
+var methods = 
{"i0":10,"i1":10,"i2":9,"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":42,"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":42,"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":42,"i65":42,"i66":42,"i67":10,"i68":10,"i69":10,"i70":10,"i71":10,"i72":10,"i73":10,"i74":10};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete 
Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -622,48 +622,52 @@ extends 
 
 Scan
+setPriority(intpriority)
+
+
+Scan
 setRaw(booleanraw)
 Enable/disable "raw" mode for this scan.
 
 
-
+
 Scan
 setReadType(Scan.ReadTypereadType)
 Set the read type for this scan.
 
 
-
+
 Scan
 setReplicaId(intId)
 Specify region replica id where Query will fetch data 
from.
 
 
-
+
 Scan
 setReversed(booleanreversed)
 Set whether this scan is a reversed one
 
 
-
+
 Scan
 setRowOffsetPerColumnFamily(intoffset)
 Set offset for the row per Column Family.
 
 
-
+
 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
 setScanMetricsEnabled(booleanenabled)
 Enable collection of ScanMetrics.
 
 
-
+
 Scan
 setSmall(booleansmall)
 Deprecated.
@@ -674,7 +678,7 @@ extends 
 
 
-
+
 Scan
 setStartRow(byte[]startRow)
 Deprecated.
@@ -683,7 +687,7 @@ extends 
 
 
-
+
 Scan
 setStopRow(byte[]stopRow)
 Deprecated.
@@ -692,7 +696,7 @@ extends 
 
 
-
+
 Scan
 setTimeRange(longminStamp,
 longmaxStamp)
@@ -700,45 +704,45 @@ extends 
 
 
-
+
 Scan
 setTimeRange(TimeRangetr)
 Set versions of columns only within the specified timestamp 
range,
 
 
-
+
 Scan
 setTimeStamp(longtimestamp)
 Get versions of columns with the specified timestamp.
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">Maphttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String,http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
 toMap(intmaxCols)
 Compile the details beyond the scope of getFingerprint 
(row, columns,
  timestamps, etc.) into a Map along with the fingerprinted information.
 
 
-
+
 Scan
 withStartRow(byte[]startRow)
 Set the start row of the scan.
 
 
-
+
 Scan
 withStartRow(byte[]startRow,
 booleaninclusive)
 Set the start row of the scan.
 
 
-
+
 Scan
 withStopRow(byte[]stopRow)
 Set the stop row of the scan.
 
 
-
+
 Scan
 withStopRow(byte[]stopRow,
booleaninclusive)
@@ -758,7 +762,7 @@ extends 
 
 Methods inherited from classorg.apache.hadoop.hbase.client.OperationWithAttributes
-getAttribute,
 getAttributeSize,
 getAttributesMap,
 getId
+getAttribute,
 getAttributeSize,
 getAttributesMap,
 getId,
 getPriority
 
 
 
@@ -953,7 +957,7 @@ public
 
 Scan
-publicScan(Getget)
+publicScan(Getget)
 Builds a scan object with the same specs as get.
 
 Parameters:
@@ -975,7 +979,7 @@ public
 
 isGetScan
-publicbooleanisGetScan()
+publicbooleanisGetScan()
 
 
 
@@ -984,7 +988,7 @@ public
 
 addFamily
-publicScanaddFamily(byte[]family)
+publicScanaddFamily(byte[]family)
 Get all columns from the specified family.
  
  Overrides previous calls to addColumn for this family.
@@ -1002,7 +1006,7 @@ 

[44/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/dependency-management.html
--
diff --git a/dependency-management.html b/dependency-management.html
index e21c9bd..b3f9572 100644
--- a/dependency-management.html
+++ b/dependency-management.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Project Dependency Management
 
@@ -293,299 +293,299 @@
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
 
-com.google.guava
-http://code.google.com/p/guava-libraries/guava;>guava
-12.0.1
-jar
-http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
-
 com.google.protobuf
 http://code.google.com/p/protobuf;>protobuf-java
 2.5.0
 jar
 http://www.opensource.org/licenses/bsd-license.php;>New BSD 
license
-
+
 com.lmax
 http://lmax-exchange.github.com/disruptor;>disruptor
 3.3.6
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
-
+
 commons-cli
 http://commons.apache.org/proper/commons-cli/;>commons-cli
 1.4
 jar
 https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
-
+
 commons-codec
 http://commons.apache.org/proper/commons-codec/;>commons-codec
 1.9
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
-
+
 commons-collections
 http://commons.apache.org/collections/;>commons-collections
 3.2.2
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
-
+
 commons-io
 http://commons.apache.org/proper/commons-io/;>commons-io
 2.5
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
-
+
 commons-lang
 http://commons.apache.org/lang/;>commons-lang
 2.6
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
-
+
 commons-logging
 http://commons.apache.org/proper/commons-logging/;>commons-logging
 1.2
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
-
+
 io.dropwizard.metrics
 http://metrics.codahale.com/metrics-core/;>metrics-core
 3.2.1
 jar
 http://www.apache.org/licenses/LICENSE-2.0.html;>Apache License 
2.0
-
+
 io.netty
 http://netty.io/netty-all/;>netty-all
 4.1.9.Final
 jar
 http://www.apache.org/licenses/LICENSE-2.0;>Apache License, Version 
2.0
-
+
 javax.servlet
 http://servlet-spec.java.net;>javax.servlet-api
 3.1.0
 jar
 https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html;>CDDL + GPLv2 
with classpath exception
-
+
 javax.ws.rs
 http://jax-rs-spec.java.net;>javax.ws.rs-api
 2.0.1
 jar
 http://glassfish.java.net/public/CDDL+GPL_1_1.html;>CDDL 1.1, http://glassfish.java.net/public/CDDL+GPL_1_1.html;>GPL2 w/ 
CPE
-
+
 javax.xml.bind
 http://jaxb.java.net/;>jaxb-api
 2.2.12
 jar
 https://glassfish.java.net/public/CDDL+GPL_1_1.html;>CDDL 1.1, https://glassfish.java.net/public/CDDL+GPL_1_1.html;>GPL2 w/ 
CPE
-
+
 junit
 http://junit.org;>junit
 4.12
 jar
 http://www.eclipse.org/legal/epl-v10.html;>Eclipse Public License 
1.0
-
+
 log4j
 http://logging.apache.org/log4j/1.2/;>log4j
 1.2.17
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
-
+
 net.spy
 http://www.couchbase.org/code/couchbase/java;>spymemcached
 2.12.2
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
-
+
 org.apache.avro
 http://avro.apache.org;>avro
 1.7.7
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
-
+
 org.apache.commons
 http://commons.apache.org/proper/commons-crypto/;>commons-crypto
 1.0.0
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
-
+
 org.apache.commons
 http://commons.apache.org/math/;>commons-math
 2.2
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
-
+
 org.apache.curator
 http://curator.apache.org/curator-client;>curator-client
 2.12.0
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
-
+
 org.apache.curator
 http://curator.apache.org/curator-framework;>curator-framework
 2.12.0
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
-
+
 org.apache.curator
 http://curator.apache.org/curator-recipes;>curator-recipes
 2.12.0
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
-
+
 org.apache.hadoop
 hadoop-auth
 2.7.1
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
-
+
 org.apache.hadoop
 hadoop-client
 2.7.1
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
-
+
 org.apache.hadoop
 hadoop-common
 2.7.1
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
-
+
 org.apache.hadoop
 hadoop-hdfs
 2.7.1
 jar
 http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache 

[44/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.RegionScannerImpl.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/HRegion.RegionScannerImpl.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/HRegion.RegionScannerImpl.html
index 8fb3b5f..a5a0006 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/HRegion.RegionScannerImpl.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/HRegion.RegionScannerImpl.html
@@ -121,7 +121,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-class HRegion.RegionScannerImpl
+class HRegion.RegionScannerImpl
 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 RegionScanner, RpcCallback
 RegionScannerImpl is used to combine scanners from multiple 
Stores (aka column families).
@@ -429,7 +429,7 @@ implements 
 
 storeHeap
-KeyValueHeap storeHeap
+KeyValueHeap storeHeap
 
 
 
@@ -438,7 +438,7 @@ implements 
 
 joinedHeap
-KeyValueHeap joinedHeap
+KeyValueHeap joinedHeap
 Heap of key-values that are not essential for the provided 
filters and are thus read
  on demand, if on-demand column family loading is enabled.
 
@@ -449,7 +449,7 @@ implements 
 
 joinedContinuationRow
-protectedCell joinedContinuationRow
+protectedCell joinedContinuationRow
 If the joined heap data gathering is interrupted due to 
scan limits, this will
  contain the row for which we are populating the values.
 
@@ -460,7 +460,7 @@ implements 
 
 filterClosed
-privateboolean filterClosed
+privateboolean filterClosed
 
 
 
@@ -469,7 +469,7 @@ implements 
 
 stopRow
-protected finalbyte[] stopRow
+protected finalbyte[] stopRow
 
 
 
@@ -478,7 +478,7 @@ implements 
 
 includeStopRow
-protected finalboolean includeStopRow
+protected finalboolean includeStopRow
 
 
 
@@ -487,7 +487,7 @@ implements 
 
 region
-protected finalHRegion region
+protected finalHRegion region
 
 
 
@@ -496,7 +496,7 @@ implements 
 
 comparator
-protected finalCellComparator comparator
+protected finalCellComparator comparator
 
 
 
@@ -505,7 +505,7 @@ implements 
 
 readPt
-private finallong readPt
+private finallong readPt
 
 
 
@@ -514,7 +514,7 @@ implements 
 
 maxResultSize
-private finallong maxResultSize
+private finallong maxResultSize
 
 
 
@@ -523,7 +523,7 @@ implements 
 
 defaultScannerContext
-private finalScannerContext defaultScannerContext
+private finalScannerContext defaultScannerContext
 
 
 
@@ -532,7 +532,7 @@ implements 
 
 filter
-private finalFilterWrapper filter
+private finalFilterWrapper filter
 
 
 
@@ -549,7 +549,7 @@ implements 
 
 RegionScannerImpl
-RegionScannerImpl(Scanscan,
+RegionScannerImpl(Scanscan,
   http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScanneradditionalScanners,
   HRegionregion)
throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
@@ -565,7 +565,7 @@ implements 
 
 RegionScannerImpl
-RegionScannerImpl(Scanscan,
+RegionScannerImpl(Scanscan,
   http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScanneradditionalScanners,
   HRegionregion,
   longnonceGroup,
@@ -591,7 +591,7 @@ implements 
 
 getRegionInfo
-publicHRegionInfogetRegionInfo()
+publicHRegionInfogetRegionInfo()
 
 Specified by:
 getRegionInfoin
 interfaceRegionScanner
@@ -606,7 +606,7 @@ implements 
 
 initializeScanners
-protectedvoidinitializeScanners(Scanscan,
+protectedvoidinitializeScanners(Scanscan,
   http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScanneradditionalScanners)
throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
 
@@ -621,7 +621,7 @@ implements 
 
 initializeKVHeap
-protectedvoidinitializeKVHeap(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScannerscanners,
+protectedvoidinitializeKVHeap(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScannerscanners,
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScannerjoinedScanners,
 HRegionregion)
  throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 

[44/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/checkstyle.rss
--
diff --git a/checkstyle.rss b/checkstyle.rss
index 5153d1c..5107715 100644
--- a/checkstyle.rss
+++ b/checkstyle.rss
@@ -26,7 +26,7 @@ under the License.
 2007 - 2017 The Apache Software Foundation
 
   File: 2247,
- Errors: 14788,
+ Errors: 14812,
  Warnings: 0,
  Infos: 0
   
@@ -9001,7 +9001,7 @@ under the License.
   0
 
 
-  115
+  124
 
   
   
@@ -22385,7 +22385,7 @@ under the License.
   0
 
 
-  34
+  36
 
   
   
@@ -27019,7 +27019,7 @@ under the License.
   0
 
 
-  73
+  80
 
   
   
@@ -29693,7 +29693,7 @@ under the License.
   0
 
 
-  94
+  96
 
   
   
@@ -30337,7 +30337,7 @@ under the License.
   0
 
 
-  97
+  100
 
   
   
@@ -30925,7 +30925,7 @@ under the License.
   0
 
 
-  190
+  191
 
   
   

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/17128d27/coc.html
--
diff --git a/coc.html b/coc.html
index 86dfec0..aaddfa0 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-14
+  Last Published: 
2017-07-15
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/17128d27/cygwin.html
--
diff --git a/cygwin.html b/cygwin.html
index afbb109..2794b3a 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-07-14
+  Last Published: 
2017-07-15
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/17128d27/dependencies.html
--
diff --git a/dependencies.html b/dependencies.html
index b93fb78..e306d5a 100644
--- a/dependencies.html
+++ b/dependencies.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Project Dependencies
 
@@ -527,7 +527,7 @@
 https://www.apache.org/;>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-07-14
+  Last Published: 
2017-07-15
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/17128d27/dependency-convergence.html
--
diff --git a/dependency-convergence.html b/dependency-convergence.html
index 6794f12..ddd99ed 100644
--- a/dependency-convergence.html
+++ b/dependency-convergence.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Reactor Dependency Convergence
 
@@ -287,16 +287,16 @@
 
 
 Number of modules:
-33
+34
 
 Number of dependencies (NOD):
-284
+285
 
 Number of unique artifacts (NOA):
-305
+306
 
 Number of version-conflicting artifacts (NOC):
-13
+14
 
 Number of SNAPSHOT artifacts (NOS):
 0
@@ -319,16 +319,19 @@
 2.3.1
 
 
+org.apache.hbase:hbase-spark-it:jar:3.0.0-SNAPSHOT\-org.apache.spark:spark-core_2.10:jar:1.6.0:provided\-org.json4s:json4s-jackson_2.10:jar:3.2.10:provided\-(com.fasterxml.jackson.core:jackson-databind:jar:2.3.1:provided
 - omitted for conflict with 2.4.4)
 

[44/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/StoreScanner.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/regionserver/StoreScanner.html 
b/devapidocs/org/apache/hadoop/hbase/regionserver/StoreScanner.html
index 53d8460..f661f1c 100644
--- a/devapidocs/org/apache/hadoop/hbase/regionserver/StoreScanner.html
+++ b/devapidocs/org/apache/hadoop/hbase/regionserver/StoreScanner.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":9,"i4":10,"i5":10,"i6":9,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":9,"i4":10,"i5":10,"i6":9,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10};
 var tabs = {65535:["t0","All Methods"],1:["t1","Static 
Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -128,7 +128,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Private
-public class StoreScanner
+public class StoreScanner
 extends NonReversedNonLazyKeyValueScanner
 implements KeyValueScanner, 
InternalScanner, 
ChangedReadersObserver
 Scanner scans both the memstore and the Store. Coalesce 
KeyValue stream into ListKeyValue
@@ -343,6 +343,10 @@ implements 
 private boolean
+topChanged
+
+
+private boolean
 useRowColBloom
 
 
@@ -537,77 +541,84 @@ implements isScanUsePread()
 
 
+private ScannerContext.NextState
+needToReturn(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListCelloutResult)
+If the top cell won't be flushed into disk, the new top 
cell may be
+ changed after #reopenAfterFlush.
+
+
+
 KeyValue
 next()
 Return the next Cell in this scanner, iterating the 
scanner
 
 
-
+
 boolean
 next(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListCelloutResult)
 Grab the next row's worth of values.
 
 
-
+
 boolean
 next(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListCelloutResult,
 ScannerContextscannerContext)
 Get the next row of values from this Store.
 
 
-
+
 private void
 parallelSeek(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">List? extends KeyValueScannerscanners,
 Cellkv)
 Seek storefiles in parallel to optimize IO latency as much 
as possible
 
 
-
+
 Cell
 peek()
 Look at the next Cell in this scanner, but do not iterate 
scanner.
 
 
-
+
 protected boolean
 reopenAfterFlush()
 
-
+
 boolean
 reseek(Cellkv)
 Reseek the scanner at or after the specified KeyValue.
 
 
-
+
 protected void
 resetKVHeap(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">List? extends KeyValueScannerscanners,
CellComparatorcomparator)
 
-
+
 private void
 resetQueryMatcher(CelllastTopKey)
 
-
+
 boolean
 seek(Cellkey)
 Seek the scanner at or after the specified KeyValue.
 
 
-
+
 protected boolean
 seekAsDirection(Cellkv)
 Do a reseek in a normal StoreScanner(scan forward)
 
 
-
+
 private void
 seekOrSkipToNextColumn(Cellcell)
 
-
+
 private void
 seekOrSkipToNextRow(Cellcell)
 
-
+
 protected void
 seekScanners(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">List? extends KeyValueScannerscanners,
 CellseekKey,
@@ -616,40 +627,40 @@ implements Seek the specified scanners with the given key
 
 
-
+
 protected boolean
 seekToNextRow(Cellc)
 
-
+
 protected http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListKeyValueScanner
 selectScannersFrom(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">List? extends KeyValueScannerallScanners)
 Filters the given list of scanners using Bloom filter, time 
range, and
  TTL.
 
 
-
+
 void
 shipped()
 Called after a batch of rows scanned and set to be returned 
to client.
 
 
-
+
 protected boolean
 trySkipToNextColumn(Cellcell)
 See trySkipToNextRow(Cell)
 
 
-
+
 protected boolean
 trySkipToNextRow(Cellcell)
 See if we should actually SEEK or rather just SKIP to the 
next Cell (see HBASE-13109).
 
 
-
+
 (package private) void
 trySwitchToStreamRead()
 
-
+
 void

[44/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/ServerName.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html
index c00c365..7350f85 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html
@@ -861,42 +861,59 @@
 
 
 
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
+AsyncHBaseAdmin.clearCompactionQueues(ServerNameserverName,
+ http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true;
 title="class or interface in java.util">Sethttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in 
java.lang">Stringqueues)
+
+
 void
 Admin.clearCompactionQueues(ServerNamesn,
  http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true;
 title="class or interface in java.util">Sethttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringqueues)
 Clear compacting queues on a regionserver.
 
 
-
+
 void
 HBaseAdmin.clearCompactionQueues(ServerNamesn,
  http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true;
 title="class or interface in java.util">Sethttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in 
java.lang">Stringqueues)
 
+
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
+AsyncAdmin.clearCompactionQueues(ServerNameserverName,
+ http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true;
 title="class or interface in java.util">Sethttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringqueues)
+Clear compacting queues on a region server.
+
+
 
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
+RawAsyncHBaseAdmin.clearCompactionQueues(ServerNameserverName,
+ http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true;
 title="class or interface in java.util">Sethttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in 
java.lang">Stringqueues)
+
+
 private http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true;
 title="class or interface in java.lang">Boolean
 RawAsyncHBaseAdmin.closeRegion(HRegionInfohri,
ServerNameserverName)
 
-
+
 void
 Admin.closeRegion(ServerNamesn,
HRegionInfohri)
 Close a region.
 
 
-
+
 void
 HBaseAdmin.closeRegion(ServerNamesn,
HRegionInfohri)
 
-
+
 private void
 HBaseAdmin.compact(ServerNamesn,
HRegionInfohri,
booleanmajor,
byte[]family)
 
-
+
 private http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
 RawAsyncHBaseAdmin.compact(ServerNamesn,
HRegionInfohri,
@@ -905,55 +922,55 @@
 Compact the region at specific region server.
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
 AsyncHBaseAdmin.compactRegionServer(ServerNameserverName)
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or 

[44/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/RawAsyncHBaseAdmin.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.html 
b/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.html
index 19f2a02..477054a 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/RawAsyncHBaseAdmin.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};
+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};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -114,7 +114,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Private
-public class RawAsyncHBaseAdmin
+public class RawAsyncHBaseAdmin
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
 implements AsyncAdmin
 The implementation of AsyncAdmin.
@@ -985,70 +985,101 @@ implements 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
+shutdown()
+Shuts down the HBase cluster.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
 snapshot(SnapshotDescriptionsnapshotDesc)
 Take a snapshot and wait for the server to complete that 
snapshot asynchronously.
 
 
-
+
 private http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
 split(ServerNamesn,
  HRegionInfohri,
  http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true;
 title="class or interface in 
java.util">Optionalbyte[]splitPoint)
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or 

[44/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/AsyncHBaseAdmin.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/AsyncHBaseAdmin.html 
b/devapidocs/org/apache/hadoop/hbase/client/AsyncHBaseAdmin.html
index f2e7625..f2a53e4 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/AsyncHBaseAdmin.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/AsyncHBaseAdmin.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};
+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};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -334,23 +334,29 @@ implements 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
+drainRegionServers(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListServerNameservers)
+Mark a region server as draining to prevent additional 
regions from getting assigned to it.
+
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
 enableReplicationPeer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">StringpeerId)
 Restart the replication stream to the specified peer
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
 enableTable(TableNametableName)
 Enable a table.
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListTableDescriptor
 enableTables(http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true;
 title="class or interface in java.util.regex">Patternpattern)
 Enable tables matching the passed in pattern.
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true;
 title="class or interface in java.util.concurrent">CompletableFuturehttp://docs.oracle.com/javase/8/docs/api/java/lang/Void.html?is-external=true;
 title="class or interface in java.lang">Void
 execProcedure(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringsignature,
  http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">Stringinstance,
@@ -358,7 

[44/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/Table.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Table.html 
b/apidocs/org/apache/hadoop/hbase/client/Table.html
index 19a4b6c..f35e800 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Table.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Table.html
@@ -18,7 +18,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":38,"i25":6,"i26":6,"i27":6,"i28":6,"i29":38,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":6,"i36":6,"i37":38,"i38":38,"i39":38,"i40":38,"i41":38};
+var methods = 
{"i0":6,"i1":6,"i2":6,"i3":6,"i4":6,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":6,"i24":6,"i25":38,"i26":6,"i27":6,"i28":6,"i29":38,"i30":38,"i31":6,"i32":6,"i33":6,"i34":6,"i35":6,"i36":6,"i37":6,"i38":38,"i39":38,"i40":38,"i41":38,"i42":38};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -327,24 +327,30 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 
+TableDescriptor
+getDescriptor()
+Gets the table 
descriptor for this table.
+
+
+
 TableName
 getName()
 Gets the fully qualified table name instance of this 
table.
 
 
-
+
 int
 getOperationTimeout()
 Get timeout (millisecond) of each operation for in Table 
instance.
 
 
-
+
 int
 getReadRpcTimeout()
 Get timeout (millisecond) of each rpc read request in this 
Table instance.
 
 
-
+
 int
 getRpcTimeout()
 Deprecated.
@@ -352,33 +358,36 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 
-
+
 ResultScanner
 getScanner(byte[]family)
 Gets a scanner on the current table for the given 
family.
 
 
-
+
 ResultScanner
 getScanner(byte[]family,
   byte[]qualifier)
 Gets a scanner on the current table for the given family 
and qualifier.
 
 
-
+
 ResultScanner
 getScanner(Scanscan)
 Returns a scanner on the current table as specified by the 
Scan
  object.
 
 
-
+
 HTableDescriptor
 getTableDescriptor()
-Gets the table descriptor for 
this table.
+Deprecated.
+since 2.0 version and will 
be removed in 3.0 version.
+ use getDescriptor()
+
 
 
-
+
 long
 getWriteBufferSize()
 Deprecated.
@@ -386,19 +395,19 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 
-
+
 int
 getWriteRpcTimeout()
 Get timeout (millisecond) of each rpc write request in this 
Table instance.
 
 
-
+
 Result
 increment(Incrementincrement)
 Increments one or more columns within a single row.
 
 
-
+
 long
 incrementColumnValue(byte[]row,
 byte[]family,
@@ -407,7 +416,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 See incrementColumnValue(byte[],
 byte[], byte[], long, Durability)
 
 
-
+
 long
 incrementColumnValue(byte[]row,
 byte[]family,
@@ -417,25 +426,25 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 Atomically increments a column value.
 
 
-
+
 void
 mutateRow(RowMutationsrm)
 Performs multiple mutations atomically on a single 
row.
 
 
-
+
 void
 put(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true;
 title="class or interface in java.util">ListPutputs)
 Puts some data in the table, in batch.
 
 
-
+
 void
 put(Putput)
 Puts some data in the table.
 
 
-
+
 void
 setOperationTimeout(intoperationTimeout)
 Deprecated.
@@ -443,7 +452,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 
-
+
 void
 setReadRpcTimeout(intreadRpcTimeout)
 Deprecated.
@@ -451,7 +460,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 
-
+
 void
 setRpcTimeout(intrpcTimeout)
 Deprecated.
@@ -459,7 +468,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 
-
+
 void
 setWriteBufferSize(longwriteBufferSize)
 Deprecated.
@@ -468,7 +477,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 
-
+
 void
 setWriteRpcTimeout(intwriteRpcTimeout)
 Deprecated.
@@ -520,8 +529,11 @@ extends http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html
 
 
 getTableDescriptor
-HTableDescriptorgetTableDescriptor()
- throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true;
 title="class or interface in java.io">IOException
+http://docs.oracle.com/javase/8/docs/api/java/lang/Deprecated.html?is-external=true;
 title="class or interface in java.lang">@Deprecated
+HTableDescriptorgetTableDescriptor()
+   

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

2017-07-07 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b3b50f22/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.RAMQueueEntry.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.RAMQueueEntry.html
 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.RAMQueueEntry.html
index e1e7ca2..a060b9b 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.RAMQueueEntry.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.RAMQueueEntry.html
@@ -113,7 +113,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-static class BucketCache.RAMQueueEntry
+static class BucketCache.RAMQueueEntry
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true;
 title="class or interface in java.lang">Object
 Block Entry stored in the memory with key,data and so 
on
 
@@ -232,7 +232,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 key
-privateBlockCacheKey key
+privateBlockCacheKey key
 
 
 
@@ -241,7 +241,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 data
-privateCacheable data
+privateCacheable data
 
 
 
@@ -250,7 +250,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 accessCounter
-privatelong accessCounter
+privatelong accessCounter
 
 
 
@@ -259,7 +259,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 inMemory
-privateboolean inMemory
+privateboolean inMemory
 
 
 
@@ -276,7 +276,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 RAMQueueEntry
-publicRAMQueueEntry(BlockCacheKeybck,
+publicRAMQueueEntry(BlockCacheKeybck,
  Cacheabledata,
  longaccessCounter,
  booleaninMemory)
@@ -296,7 +296,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 getData
-publicCacheablegetData()
+publicCacheablegetData()
 
 
 
@@ -305,7 +305,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 getKey
-publicBlockCacheKeygetKey()
+publicBlockCacheKeygetKey()
 
 
 
@@ -314,7 +314,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 access
-publicvoidaccess(longaccessCounter)
+publicvoidaccess(longaccessCounter)
 
 
 
@@ -323,7 +323,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 writeToCache
-publicBucketCache.BucketEntrywriteToCache(IOEngineioEngine,
+publicBucketCache.BucketEntrywriteToCache(IOEngineioEngine,
 BucketAllocatorbucketAllocator,
 UniqueIndexMaphttp://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true;
 title="class or interface in java.lang">IntegerdeserialiserMap,
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicLong.html?is-external=true;
 title="class or interface in 
java.util.concurrent.atomic">AtomicLongrealCacheSize)

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b3b50f22/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.StatisticsThread.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.StatisticsThread.html
 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.StatisticsThread.html
index 404379e..b2f5459 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.StatisticsThread.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/bucket/BucketCache.StatisticsThread.html
@@ -122,7 +122,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-private static class BucketCache.StatisticsThread
+private static class BucketCache.StatisticsThread
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Thread.html?is-external=true;
 title="class or interface in java.lang">Thread
 
 
@@ -239,7 +239,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Thread.html?
 
 
 bucketCache
-private finalBucketCache bucketCache
+private finalBucketCache bucketCache
 
 
 
@@ -256,7 +256,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Thread.html?
 
 
 StatisticsThread
-publicStatisticsThread(BucketCachebucketCache)
+publicStatisticsThread(BucketCachebucketCache)
 
 
 
@@ -273,7 +273,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Thread.html?
 
 
 run
-publicvoidrun()
+publicvoidrun()
 
 Specified by:
 http://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.html?is-external=true#run--;
 title="class or interface in java.lang">runin 
interfacehttp://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.html?is-external=true;
 title="class or interface in java.lang">Runnable


[44/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/apidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdminBuilder.html
--
diff --git 
a/apidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdminBuilder.html 
b/apidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdminBuilder.html
new file mode 100644
index 000..90cd3ee
--- /dev/null
+++ b/apidocs/src-html/org/apache/hadoop/hbase/client/AsyncAdminBuilder.html
@@ -0,0 +1,165 @@
+http://www.w3.org/TR/html4/loose.dtd;>
+
+
+Source code
+
+
+
+
+001/**
+002 * Licensed to the Apache Software 
Foundation (ASF) under one
+003 * or more contributor license 
agreements.  See the NOTICE file
+004 * distributed with this work for 
additional information
+005 * regarding copyright ownership.  The 
ASF licenses this file
+006 * to you under the Apache License, 
Version 2.0 (the
+007 * "License"); you may not use this file 
except in compliance
+008 * with the License.  You may obtain a 
copy of the License at
+009 *
+010 * 
http://www.apache.org/licenses/LICENSE-2.0
+011 *
+012 * Unless required by applicable law or 
agreed to in writing, software
+013 * distributed under the License is 
distributed on an "AS IS" BASIS,
+014 * WITHOUT WARRANTIES OR CONDITIONS OF 
ANY KIND, either express or implied.
+015 * See the License for the specific 
language governing permissions and
+016 * limitations under the License.
+017 */
+018package org.apache.hadoop.hbase.client;
+019
+020import static 
org.apache.hadoop.hbase.client.ConnectionUtils.retries2Attempts;
+021
+022import java.util.concurrent.TimeUnit;
+023
+024import 
org.apache.hadoop.hbase.classification.InterfaceAudience;
+025
+026/**
+027 * For creating {@link AsyncAdmin}. The 
implementation should have default configurations set before
+028 * returning the builder to user. So 
users are free to only set the configs they care about to
+029 * create a new AsyncAdmin instance.
+030 */
+031@InterfaceAudience.Public
+032public interface AsyncAdminBuilderT 
extends AsyncAdmin {
+033
+034  /**
+035   * Set timeout for a whole admin 
operation. Operation timeout and max attempt times(or max retry
+036   * times) are both limitations for 
retrying, we will stop retrying when we reach any of the
+037   * limitations.
+038   * @param timeout
+039   * @param unit
+040   * @return this for invocation 
chaining
+041   */
+042  AsyncAdminBuilderT 
setOperationTimeout(long timeout, TimeUnit unit);
+043
+044  /**
+045   * Set timeout for each rpc request.
+046   * @param timeout
+047   * @param unit
+048   * @return this for invocation 
chaining
+049   */
+050  AsyncAdminBuilderT 
setRpcTimeout(long timeout, TimeUnit unit);
+051
+052  /**
+053   * Set the base pause time for 
retrying. We use an exponential policy to generate sleep time when
+054   * retrying.
+055   * @param timeout
+056   * @param unit
+057   * @return this for invocation 
chaining
+058   */
+059  AsyncAdminBuilderT 
setRetryPause(long timeout, TimeUnit unit);
+060
+061  /**
+062   * Set the max retry times for an admin 
operation. Usually it is the max attempt times minus 1.
+063   * Operation timeout and max attempt 
times(or max retry times) are both limitations for retrying,
+064   * we will stop retrying when we reach 
any of the limitations.
+065   * @param maxRetries
+066   * @return this for invocation 
chaining
+067   */
+068  default AsyncAdminBuilderT 
setMaxRetries(int maxRetries) {
+069return 
setMaxAttempts(retries2Attempts(maxRetries));
+070  }
+071
+072  /**
+073   * Set the max attempt times for an 
admin operation. Usually it is the max retry times plus 1.
+074   * Operation timeout and max attempt 
times(or max retry times) are both limitations for retrying,
+075   * we will stop retrying when we reach 
any of the limitations.
+076   * @param maxAttempts
+077   * @return this for invocation 
chaining
+078   */
+079  AsyncAdminBuilderT 
setMaxAttempts(int maxAttempts);
+080
+081  /**
+082   * Set the number of retries that are 
allowed before we start to log.
+083   * @param startLogErrorsCnt
+084   * @return this for invocation 
chaining
+085   */
+086  AsyncAdminBuilderT 
setStartLogErrorsCnt(int startLogErrorsCnt);
+087
+088  /**
+089   * Create a {@link AsyncAdmin} 
instance.
+090   * @return a {@link AsyncAdmin} 
instance
+091   */
+092  T build();
+093}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/ca9f6925/apidocs/src-html/org/apache/hadoop/hbase/client/AsyncConnection.html
--
diff --git 
a/apidocs/src-html/org/apache/hadoop/hbase/client/AsyncConnection.html 
b/apidocs/src-html/org/apache/hadoop/hbase/client/AsyncConnection.html
index a4f1601..d372b88 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/client/AsyncConnection.html
+++ 

[44/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/master/balancer/StochasticLoadBalancer.CostFromRegionLoadAsRateFunction.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.CostFromRegionLoadAsRateFunction.html
 
b/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.CostFromRegionLoadAsRateFunction.html
index b864c23..4ec9dcb 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.CostFromRegionLoadAsRateFunction.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.CostFromRegionLoadAsRateFunction.html
@@ -127,7 +127,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-abstract static class StochasticLoadBalancer.CostFromRegionLoadAsRateFunction
+abstract static class StochasticLoadBalancer.CostFromRegionLoadAsRateFunction
 extends StochasticLoadBalancer.CostFromRegionLoadFunction
 Class to be used for the subset of RegionLoad costs that 
should be treated as rates.
  We do not compare about the actual rate in requests per second but rather the 
rate relative
@@ -228,7 +228,7 @@ extends 
 
 CostFromRegionLoadAsRateFunction
-CostFromRegionLoadAsRateFunction(org.apache.hadoop.conf.Configurationconf)
+CostFromRegionLoadAsRateFunction(org.apache.hadoop.conf.Configurationconf)
 
 
 
@@ -245,7 +245,7 @@ extends 
 
 getRegionLoadCost
-protecteddoublegetRegionLoadCost(http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true;
 title="class or interface in java.util">CollectionBalancerRegionLoadregionLoadList)
+protecteddoublegetRegionLoadCost(http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true;
 title="class or interface in java.util">CollectionBalancerRegionLoadregionLoadList)
 
 Overrides:
 getRegionLoadCostin
 classStochasticLoadBalancer.CostFromRegionLoadFunction

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/8e3b63ca/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.CostFromRegionLoadFunction.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.CostFromRegionLoadFunction.html
 
b/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.CostFromRegionLoadFunction.html
index 35294ab..d933fa7 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.CostFromRegionLoadFunction.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.CostFromRegionLoadFunction.html
@@ -122,7 +122,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-abstract static class StochasticLoadBalancer.CostFromRegionLoadFunction
+abstract static class StochasticLoadBalancer.CostFromRegionLoadFunction
 extends StochasticLoadBalancer.CostFunction
 Base class the allows writing costs functions from rolling 
average of some
  number from RegionLoad.
@@ -250,7 +250,7 @@ extends 
 
 clusterStatus
-privateClusterStatus clusterStatus
+privateClusterStatus clusterStatus
 
 
 
@@ -259,7 +259,7 @@ extends 
 
 loads
-privatehttp://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">Maphttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String,http://docs.oracle.com/javase/8/docs/api/java/util/Deque.html?is-external=true;
 title="class or interface in java.util">DequeBalancerRegionLoad loads
+privatehttp://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">Maphttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String,http://docs.oracle.com/javase/8/docs/api/java/util/Deque.html?is-external=true;
 title="class or interface in java.util">DequeBalancerRegionLoad loads
 
 
 
@@ -268,7 +268,7 @@ extends 
 
 stats
-privatedouble[] stats
+privatedouble[] stats
 
 
 
@@ -285,7 +285,7 @@ extends 
 
 CostFromRegionLoadFunction
-CostFromRegionLoadFunction(org.apache.hadoop.conf.Configurationconf)
+CostFromRegionLoadFunction(org.apache.hadoop.conf.Configurationconf)
 
 
 
@@ -302,7 +302,7 @@ extends 
 
 setClusterStatus
-voidsetClusterStatus(ClusterStatusstatus)
+voidsetClusterStatus(ClusterStatusstatus)
 
 
 
@@ -311,7 +311,7 @@ extends 
 
 setLoads
-voidsetLoads(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true;
 title="class or interface in java.util">Maphttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String,http://docs.oracle.com/javase/8/docs/api/java/util/Deque.html?is-external=true;
 title="class or interface in java.util">DequeBalancerRegionLoadl)

[44/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-aggregate.html
--
diff --git a/checkstyle-aggregate.html b/checkstyle-aggregate.html
index 06f208a..b8c89ca 100644
--- a/checkstyle-aggregate.html
+++ b/checkstyle-aggregate.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase  Checkstyle Results
 
@@ -289,7 +289,7 @@
 2235
 0
 0
-14601
+14647
 
 Files
 
@@ -307,7 +307,7 @@
 org/apache/hadoop/hbase/AsyncMetaTableAccessor.java
 0
 0
-43
+54
 
 org/apache/hadoop/hbase/AuthUtil.java
 0
@@ -762,7 +762,7 @@
 org/apache/hadoop/hbase/client/AsyncAdmin.java
 0
 0
-15
+8
 
 org/apache/hadoop/hbase/client/AsyncAdminRequestRetryingCaller.java
 0
@@ -792,7 +792,7 @@
 org/apache/hadoop/hbase/client/AsyncHBaseAdmin.java
 0
 0
-35
+94
 
 org/apache/hadoop/hbase/client/AsyncMetaRegionLocator.java
 0
@@ -6137,12 +6137,12 @@
 org/apache/hadoop/hbase/shaded/protobuf/ProtobufUtil.java
 0
 0
-237
+228
 
 org/apache/hadoop/hbase/shaded/protobuf/RequestConverter.java
 0
 0
-194
+186
 
 org/apache/hadoop/hbase/shaded/protobuf/ResponseConverter.java
 0
@@ -7234,7 +7234,7 @@
 
 
 http://checkstyle.sourceforge.net/config_blocks.html#NeedBraces;>NeedBraces
-1972
+1969
 Error
 
 coding
@@ -7296,7 +7296,7 @@
 ordered: true
 sortStaticImportsAlphabetically: true
 option: top
-934
+935
 Error
 
 
@@ -7308,7 +7308,7 @@
 http://checkstyle.sourceforge.net/config_imports.html#UnusedImports;>UnusedImports
 
 processJavadoc: true
-89
+92
 Error
 
 indentation
@@ -7319,19 +7319,19 @@
 caseIndent: 2
 basicOffset: 2
 lineWrappingIndentation: 2
-5109
+5145
 Error
 
 javadoc
 http://checkstyle.sourceforge.net/config_javadoc.html#JavadocTagContinuationIndentation;>JavadocTagContinuationIndentation
 
 offset: 2
-811
+793
 Error
 
 
 http://checkstyle.sourceforge.net/config_javadoc.html#NonEmptyAtclauseDescription;>NonEmptyAtclauseDescription
-3214
+3231
 Error
 
 misc
@@ -7349,7 +7349,7 @@
 
 max: 100
 ignorePattern: ^package.*|^import.*|a 
href|href|http://|https://|ftp://|org.apache.thrift.|com.google.protobuf.|hbase.protobuf.generated
-928
+934
 Error
 
 
@@ -7369,7 +7369,7 @@
 
 
 http://checkstyle.sourceforge.net/config_whitespace.html#ParenPad;>ParenPad
-111
+115
 Error
 
 Details
@@ -7399,278 +7399,344 @@
 Line
 
 Error
+imports
+UnusedImports
+Unused import - org.apache.hadoop.hbase.client.Connection.
+42
+
+Error
+imports
+ImportOrder
+Wrong order for 'org.apache.hadoop.hbase.client.Scan.ReadType' import.
+51
+
+Error
 design
 HideUtilityClassConstructor
 Utility classes should not have a public or default constructor.
-57
+61
 
 Error
 sizes
 LineLength
 Line is longer than 100 characters (found 102).
-70
+74
 
 Error
-blocks
-NeedBraces
-'if' construct must use '{}'s.
-134
+javadoc
+NonEmptyAtclauseDescription
+At-clause should have a non-empty description.
+107
+
+Error
+indentation
+Indentation
+'lambda arguments' have incorrect indentation level 8, expected level 
should be 14.
+119
+
+Error
+indentation
+Indentation
+'if' have incorrect indentation level 10, expected level should be 16.
+120
+
+Error
+indentation
+Indentation
+'if' child have incorrect indentation level 12, expected level should be 
18.
+121
+
+Error
+indentation
+Indentation
+'if' child have incorrect indentation level 12, expected level should be 
18.
+122
+
+Error
+indentation
+Indentation
+'if rcurly' have incorrect indentation level 10, expected level should be 
16.
+123
+
+Error
+indentation
+Indentation
+'block' child have incorrect indentation level 10, expected level should 
be 16.
+124
 
 Error
+indentation
+Indentation
+'block rcurly' have incorrect indentation level 8, expected level should 
be 14.
+126
+
+Error
 javadoc
 NonEmptyAtclauseDescription
 At-clause should have a non-empty description.
-147
+136
+
+Error
+blocks
+NeedBraces
+'if' construct must use '{}'s.
+176
 
 Error
 javadoc
 NonEmptyAtclauseDescription
 At-clause should have a non-empty description.
-159
+189
 
 Error
+javadoc
+NonEmptyAtclauseDescription
+At-clause should have a non-empty description.
+215
+
+Error
 sizes
 LineLength
 Line is longer than 100 characters (found 119).
-175
-
+231
+
 Error
 blocks
 NeedBraces
 'if' construct must use '{}'s.
-186
-
+242
+
 Error
 javadoc
 NonEmptyAtclauseDescription
 At-clause should have a non-empty description.
-217
-
+273
+
 Error
 javadoc
 NonEmptyAtclauseDescription
 At-clause should have a non-empty description.
-230
-
+286
+
 Error
 sizes
 LineLength
 Line is longer than 100 characters (found 101).
-237
-
+293
+
 Error
 sizes
 LineLength
 Line is longer than 100 characters (found 104).
-268
-
-Error
-blocks
-NeedBraces
-'if' construct must use '{}'s.
-327
+324
 
 Error
 blocks
 NeedBraces
 'if' construct must use '{}'s.
-329
+383
 
 Error
 blocks
 NeedBraces
 'if' construct must use '{}'s.
-337
+385
 
 Error
 blocks
 NeedBraces
 'if' construct must use '{}'s.
-345
+393
 
 Error
 blocks
 NeedBraces
 'if' construct must use 

[44/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.RackLocalityCostFunction.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.RackLocalityCostFunction.html
 
b/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.RackLocalityCostFunction.html
new file mode 100644
index 000..6f294a8
--- /dev/null
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.RackLocalityCostFunction.html
@@ -0,0 +1,374 @@
+http://www.w3.org/TR/html4/loose.dtd;>
+
+
+
+
+
+StochasticLoadBalancer.RackLocalityCostFunction (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
+
+
+
+
+PrevClass
+NextClass
+
+
+Frames
+NoFrames
+
+
+AllClasses
+
+
+
+
+
+
+
+Summary:
+Nested|
+Field|
+Constr|
+Method
+
+
+Detail:
+Field|
+Constr|
+Method
+
+
+
+
+
+
+
+
+org.apache.hadoop.hbase.master.balancer
+Class StochasticLoadBalancer.RackLocalityCostFunction
+
+
+
+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.RackLocalityCostFunction
+
+
+
+
+
+
+
+
+
+
+
+Enclosing class:
+StochasticLoadBalancer
+
+
+
+static class StochasticLoadBalancer.RackLocalityCostFunction
+extends StochasticLoadBalancer.LocalityBasedCostFunction
+
+
+
+
+
+
+
+
+
+
+
+Field Summary
+
+Fields
+
+Modifier and Type
+Field and Description
+
+
+private static float
+DEFAULT_RACK_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
+RACK_LOCALITY_COST_KEY
+
+
+
+
+
+
+Fields inherited from 
classorg.apache.hadoop.hbase.master.balancer.StochasticLoadBalancer.CostFunction
+cluster
+
+
+
+
+
+
+
+
+Constructor Summary
+
+Constructors
+
+Constructor and Description
+
+
+RackLocalityCostFunction(org.apache.hadoop.conf.Configurationconf,
+MasterServicesservices)
+
+
+
+
+
+
+
+
+
+Method Summary
+
+All MethodsInstance MethodsConcrete Methods
+
+Modifier and Type
+Method and Description
+
+
+(package private) int
+regionIndexToEntityIndex(intregion)
+Maps region to the current entity (server or rack) on which 
it is stored
+
+
+
+
+
+
+
+Methods inherited from 
classorg.apache.hadoop.hbase.master.balancer.StochasticLoadBalancer.LocalityBasedCostFunction
+cost,
 init,
 regionMoved,
 setServices
+
+
+
+
+
+Methods inherited from 
classorg.apache.hadoop.hbase.master.balancer.StochasticLoadBalancer.CostFunction
+costFromArray,
 getMultiplier,
 isNeeded,
 postAction,
 scale,
 setMultiplier
+
+
+
+
+
+Methods inherited from classjava.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--" title="class or interface in 

[44/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/HMaster.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/master/HMaster.html 
b/devapidocs/org/apache/hadoop/hbase/master/HMaster.html
index 80447fa..6faced1 100644
--- a/devapidocs/org/apache/hadoop/hbase/master/HMaster.html
+++ b/devapidocs/org/apache/hadoop/hbase/master/HMaster.html
@@ -128,7 +128,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.LimitedPrivate(value="Tools")
-public class HMaster
+public class HMaster
 extends HRegionServer
 implements MasterServices
 HMaster is the "master server" for HBase. An HBase cluster 
has one active
@@ -424,22 +424,26 @@ implements snapshotManager
 
 
+private SnapshotQuotaObserverChore
+snapshotQuotaChore
+
+
 private SpaceQuotaSnapshotNotifier
 spaceQuotaSnapshotNotifier
 
-
+
 private SplitOrMergeTracker
 splitOrMergeTracker
 
-
+
 private long
 splitPlanCount
 
-
+
 private TableStateManager
 tableStateManager
 
-
+
 private MasterWalManager
 walManager
 
@@ -1400,7 +1404,7 @@ implements 
 
 LOG
-private static finalorg.apache.commons.logging.Log LOG
+private static finalorg.apache.commons.logging.Log LOG
 
 
 
@@ -1409,7 +1413,7 @@ implements 
 
 MASTER
-public static finalhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String MASTER
+public static finalhttp://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true;
 title="class or interface in java.lang">String MASTER
 
 See Also:
 Constant
 Field Values
@@ -1422,7 +1426,7 @@ implements 
 
 activeMasterManager
-private finalActiveMasterManager activeMasterManager
+private finalActiveMasterManager activeMasterManager
 
 
 
@@ -1431,7 +1435,7 @@ implements 
 
 regionServerTracker
-RegionServerTracker regionServerTracker
+RegionServerTracker regionServerTracker
 
 
 
@@ -1440,7 +1444,7 @@ implements 
 
 drainingServerTracker
-privateDrainingServerTracker 
drainingServerTracker
+privateDrainingServerTracker 
drainingServerTracker
 
 
 
@@ -1449,7 +1453,7 @@ implements 
 
 loadBalancerTracker
-LoadBalancerTracker loadBalancerTracker
+LoadBalancerTracker loadBalancerTracker
 
 
 
@@ -1458,7 +1462,7 @@ implements 
 
 splitOrMergeTracker
-privateSplitOrMergeTracker splitOrMergeTracker
+privateSplitOrMergeTracker splitOrMergeTracker
 
 
 
@@ -1467,7 +1471,7 @@ implements 
 
 regionNormalizerTracker
-privateRegionNormalizerTracker 
regionNormalizerTracker
+privateRegionNormalizerTracker 
regionNormalizerTracker
 
 
 
@@ -1476,7 +1480,7 @@ implements 
 
 maintenanceModeTracker
-privateMasterMaintenanceModeTracker maintenanceModeTracker
+privateMasterMaintenanceModeTracker maintenanceModeTracker
 
 
 
@@ -1485,7 +1489,7 @@ implements 
 
 clusterSchemaService
-privateClusterSchemaService clusterSchemaService
+privateClusterSchemaService clusterSchemaService
 
 
 
@@ -1494,7 +1498,7 @@ implements 
 
 metricsMaster
-finalMetricsMaster metricsMaster
+finalMetricsMaster metricsMaster
 
 
 
@@ -1503,7 +1507,7 @@ implements 
 
 fileSystemManager
-privateMasterFileSystem fileSystemManager
+privateMasterFileSystem fileSystemManager
 
 
 
@@ -1512,7 +1516,7 @@ implements 
 
 walManager
-privateMasterWalManager walManager
+privateMasterWalManager walManager
 
 
 
@@ -1521,7 +1525,7 @@ implements 
 
 serverManager
-private volatileServerManager serverManager
+private volatileServerManager serverManager
 
 
 
@@ -1530,7 +1534,7 @@ implements 
 
 assignmentManager
-privateAssignmentManager assignmentManager
+privateAssignmentManager assignmentManager
 
 
 
@@ -1539,7 +1543,7 @@ implements 
 
 replicationManager
-privateReplicationManager replicationManager
+privateReplicationManager replicationManager
 
 
 
@@ -1548,7 +1552,7 @@ implements 
 
 rsFatals
-MemoryBoundedLogMessageBuffer rsFatals
+MemoryBoundedLogMessageBuffer rsFatals
 
 
 
@@ -1557,7 +1561,7 @@ implements 
 
 activeMaster
-private volatileboolean activeMaster
+private volatileboolean activeMaster
 
 
 
@@ -1566,7 +1570,7 @@ implements 
 
 initialized
-private finalProcedureEvent initialized
+private finalProcedureEvent initialized
 
 
 
@@ -1575,7 +1579,7 @@ implements 
 
 serviceStarted
-volatileboolean serviceStarted
+volatileboolean serviceStarted
 
 
 
@@ -1584,7 +1588,7 @@ implements 
 
 serverCrashProcessingEnabled
-private finalProcedureEvent serverCrashProcessingEnabled
+private finalProcedureEvent serverCrashProcessingEnabled
 
 
 
@@ -1593,7 +1597,7 @@ implements 
 
 maxBlancingTime
-private finalint maxBlancingTime
+private finalint maxBlancingTime
 
 
 
@@ -1602,7 +1606,7 @@ implements 
 
 maxRitPercent
-private finaldouble maxRitPercent
+private finaldouble maxRitPercent
 
 
 
@@ -1611,7 +1615,7 @@ implements 
 
 lockManager
-private finalLockManager lockManager
+private finalLockManager lockManager
 
 
 
@@ -1620,7 +1624,7 @@ implements 
 
 balancer

[44/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/ImmutableHTableDescriptor.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/ImmutableHTableDescriptor.html 
b/apidocs/org/apache/hadoop/hbase/client/ImmutableHTableDescriptor.html
index a5eef3c..79b51b5 100644
--- a/apidocs/org/apache/hadoop/hbase/client/ImmutableHTableDescriptor.html
+++ b/apidocs/org/apache/hadoop/hbase/client/ImmutableHTableDescriptor.html
@@ -18,6 +18,12 @@
 catch(err) {
 }
 //-->
+var methods = {"i0":42,"i1":42};
+var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"],32:["t6","Deprecated Methods"]};
+var altColor = "altColor";
+var rowColor = "rowColor";
+var tableTab = "tableTab";
+var activeTableTab = "activeTableTab";
 
 
 JavaScript is disabled on your browser.
@@ -71,13 +77,13 @@
 Nested|
 Field|
 Constr|
-Method
+Method
 
 
 Detail:
 Field|
 Constr|
-Method
+Method
 
 
 
@@ -135,7 +141,7 @@ extends 
 
 Fields inherited from classorg.apache.hadoop.hbase.HTableDescriptor
-COMPACTION_ENABLED,
 DEFAULT_COMPACTION_ENABLED,
 DEFAULT_MEMSTORE_FLUSH_SIZE,
 DEFAULT_NORMALIZATION_ENABLED,
 DEFAULT_READONLY,
 DEFAULT_REGION_MEMSTORE_REPLICATION,
 DEFAULT_REGION_REPLICATION,
 DURABILIT
 Y, FLUSH_POLICY,
 IS_META,
 IS_ROOT,
 MAX_FILESIZE,
 MEMSTORE_FLUSHSIZE,
 NAMESPACE_COL_DESC_BYTES,
 NAMESPACE_FAMILY_INFO,
 NAMESPACE_FAMILY_INFO_BYTES,
 NAMESPACE_TABLEDESC
 , NORMALIZATION_ENABLED,
 OWNER,
 OWNER_KEY,
 PRIORITY,
 READONLY,
 REGION_MEMSTORE_REPLICATION,
 REGION_REPLICATION,
 SPLIT_POLICY
+COMPACTION_ENABLED,
 DEFAULT_COMPACTION_ENABLED,
 DEFAULT_MEMSTORE_FLUSH_SIZE,
 DEFAULT_NORMALIZATION_ENABLED,
 DEFAULT_READONLY,
 DEFAULT_REGION_MEMSTORE_REPLICATION,
 DEFAULT_REGION_REPLICATION,
 delegatee<
 /a>, DURABILITY,
 FLUSH_POLICY,
 IS_META,
 IS_ROOT,
 MAX_FILESIZE,
 MEMSTORE_FLUSHSIZE,
 NAMESPACE_COL_DESC_BYTES,
 NAMESPACE_FAMILY_INFO,
 NAMESPACE_FAMILY_INFO_BYTES,
 NAMESPACE_TABLEDESC,
 NORMALIZATION_ENABLED,
 OWNER,
 OWNER_KEY,
 PRIORITY,
 READONLY,
 REGION_MEMSTORE_REPLICATION,
 REGION_REPLICATION,
 SPLIT_POLICY
 
 
 
@@ -164,12 +170,32 @@ extends 
 
 Method Summary
+
+All MethodsInstance MethodsConcrete MethodsDeprecated Methods
+
+Modifier and Type
+Method and Description
+
+
+protected 
org.apache.hadoop.hbase.client.TableDescriptorBuilder.ModifyableTableDescriptor
+getDelegateeForModification()
+Deprecated.
+
+
+
+protected HColumnDescriptor
+toHColumnDescriptor(ColumnFamilyDescriptordesc)
+Deprecated.
+Return a HColumnDescriptor for user to keep the 
compatibility as much as possible.
+
+
+
 
 
 
 
 Methods inherited from classorg.apache.hadoop.hbase.HTableDescriptor
-addCoprocessor,
 addCoprocessor,
 addCoprocessorWithSpec,
 addFamily,
 compareTo,
 equals,
 getColumnFamilies,
 getColumnFamilyCount, getConfiguration,
 getConfigurationValue,
 getCoprocessors,
 getDurability,
 getFamilies,
 getFamiliesKeys,
 getFamily,
 getFlushPolicyClassName,
 getMaxFileSize, 
getMemStoreFlushSize,
 getNameAsString,
 getOwnerString,
 getPriority,
 getRegionReplication,
 getRegionSplitPolicyClassName,
 getTableName,
 getValue,
 getValue,
 getValues,
 hasCoprocessor,
 hasFamily,
 hashCode,
 hasRegionMemstoreReplication,
 hasSerialReplicationScope,
 isCompactionEnabled,
 isMetaR
 egion, isMetaTable,
 isNormalizationEnabled,
 isReadOnly,
 isRootRegion,
 modifyFamily,
 parseFrom,
 remove,
 remove,
 remove, removeConfiguration,
 removeCoprocessor,
 removeFamily,
 setCompactionEnabled,
 setConfiguration,
 setDurability,
 setFlushPolicyClassName,
 setMaxFileSize, setMemStoreFlushSize,
 setNormalizationEnabled,
 setOwner,
 setOwnerString,
 setPriority,
 setReadOnly,
 setRegionMemstoreReplication,
 setRegionReplication, setRegionSplitPolicyClassName,
 setValue,
 setValue,
 setValue,
 toByteArray,
 toString,
 toStringCustomizedValues,
 toStringTableAttributes
+addCoprocessor,
 addCoprocessor,
 addCoprocessorWithSpec,
 addFamily,
 compareTo,
 equals,
 getColumnFamilies,
 getColumnFamily, getColumnFamilyCount,
 getColumnFamilyNames,
 getConfiguration,
 getConfigurationValue,
 getCoprocessors,
 getDurability,
 getFamilies,
 getFamiliesKeys,
 getFamily,
 getFlushPolicyClassName,
 getMaxFileSize,
 getMemStoreFlushSize,
 getNameAsString,
 getOwnerString,
 getPriority,
 getRegionReplication,
 getRegionSplitPolic
 yClassName, getTableName,
 getValue,
 getValue,
 getValue,
 getValues,
 hasColumnFamily,
 hasCoprocessor,
 hasFamily,
 hashCode<
 /a>, hasRegionMemstoreReplication,
 hasSerialReplicationScope,
 isCompactionEnabled,
 isMetaRegion,
 isMetaTable,
 isNormalizationEnabled,
 isReadOnly,
 isRootRegion,
 modifyFamily, parseFrom,
 remove,
 remove,
 remove,
 removeConfiguration,
 removeCoprocessor,
 removeFamily,
 setCompactionEn
 abled, setConfiguration,
 setDurability,
 setFlushPolicyClassName,
 setMaxFileSize,
 setMemStoreFlushSize,
 setNormalizationEnabled,
 setOwner,
 setOwnerString, 

[44/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/class-use/RawScanResultConsumer.ScanResumer.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/class-use/RawScanResultConsumer.ScanResumer.html
 
b/apidocs/org/apache/hadoop/hbase/client/class-use/RawScanResultConsumer.ScanResumer.html
index 23a4929..808ee69 100644
--- 
a/apidocs/org/apache/hadoop/hbase/client/class-use/RawScanResultConsumer.ScanResumer.html
+++ 
b/apidocs/org/apache/hadoop/hbase/client/class-use/RawScanResultConsumer.ScanResumer.html
@@ -4,7 +4,7 @@
 
 
 
-Uses of Interface 
org.apache.hadoop.hbase.client.RawScanResultConsumer.ScanResumer (Apache HBase 
2.0.0-SNAPSHOT API)
+Uses of Interface 
org.apache.hadoop.hbase.client.RawScanResultConsumer.ScanResumer (Apache HBase 
3.0.0-SNAPSHOT API)
 
 
 
@@ -12,7 +12,7 @@
 
 
-Uses of Interface org.apache.hadoop.hbase.client.RawScanResultConsumer 
(Apache HBase 2.0.0-SNAPSHOT API)
+Uses of Interface org.apache.hadoop.hbase.client.RawScanResultConsumer 
(Apache HBase 3.0.0-SNAPSHOT API)