hbase git commit: HBASE-17821: The CompoundConfiguration#toString is wrong

2017-03-31 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/master 0ec145946 -> a9682ca5d


HBASE-17821: The CompoundConfiguration#toString is wrong

Signed-off-by: CHIA-PING TSAI 


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

Branch: refs/heads/master
Commit: a9682ca5dc46a74edca3da630560fbaf5d0cf38b
Parents: 0ec1459
Author: Yi Liang 
Authored: Thu Mar 23 13:29:23 2017 -0700
Committer: CHIA-PING TSAI 
Committed: Fri Mar 31 15:05:44 2017 +0800

--
 .../main/java/org/apache/hadoop/hbase/CompoundConfiguration.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/a9682ca5/hbase-common/src/main/java/org/apache/hadoop/hbase/CompoundConfiguration.java
--
diff --git 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/CompoundConfiguration.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/CompoundConfiguration.java
index a7fcba6..5812cca 100644
--- 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/CompoundConfiguration.java
+++ 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/CompoundConfiguration.java
@@ -264,7 +264,7 @@ public class CompoundConfiguration extends Configuration {
 StringBuffer sb = new StringBuffer();
 sb.append("CompoundConfiguration: " + this.configs.size() + " configs");
 for (ImmutableConfigMap m : this.configs) {
-  sb.append(this.configs);
+  sb.append(m);
 }
 return sb.toString();
   }



hbase git commit: HBASE-17821: The CompoundConfiguration#toString is wrong

2017-03-31 Thread chia7712
Repository: hbase
Updated Branches:
  refs/heads/branch-1 589a0e2ef -> cc700ef4c


HBASE-17821: The CompoundConfiguration#toString is wrong

Signed-off-by: CHIA-PING TSAI 


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

Branch: refs/heads/branch-1
Commit: cc700ef4c14d6b5c1e5ef03444196ed02e5e605e
Parents: 589a0e2
Author: Yi Liang 
Authored: Thu Mar 23 13:29:23 2017 -0700
Committer: CHIA-PING TSAI 
Committed: Fri Mar 31 15:13:58 2017 +0800

--
 .../main/java/org/apache/hadoop/hbase/CompoundConfiguration.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/cc700ef4/hbase-common/src/main/java/org/apache/hadoop/hbase/CompoundConfiguration.java
--
diff --git 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/CompoundConfiguration.java 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/CompoundConfiguration.java
index 6b2c8b2..ff84642 100644
--- 
a/hbase-common/src/main/java/org/apache/hadoop/hbase/CompoundConfiguration.java
+++ 
b/hbase-common/src/main/java/org/apache/hadoop/hbase/CompoundConfiguration.java
@@ -266,7 +266,7 @@ public class CompoundConfiguration extends Configuration {
 StringBuffer sb = new StringBuffer();
 sb.append("CompoundConfiguration: " + this.configs.size() + " configs");
 for (ImmutableConfigMap m : this.configs) {
-  sb.append(this.configs);
+  sb.append(m);
 }
 return sb.toString();
   }



hbase git commit: HBASE-16780 Since move to protobuf3.1, Cells are limited to 64MB where previous they had no limit Update internal pb to 3.2 from 3.1.

2017-03-31 Thread stack
Repository: hbase
Updated Branches:
  refs/heads/master a9682ca5d -> 7700a7fac


HBASE-16780 Since move to protobuf3.1, Cells are limited to 64MB where previous 
they had no limit Update internal pb to 3.2 from 3.1.


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

Branch: refs/heads/master
Commit: 7700a7fac1262934fe538a96b040793c6ff171ce
Parents: a9682ca
Author: Michael Stack 
Authored: Mon Mar 27 07:43:22 2017 -0700
Committer: Michael Stack 
Committed: Fri Mar 31 12:44:59 2017 -0700

--
 hbase-protocol-shaded/pom.xml | 2 +-
 hbase-server/pom.xml  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/7700a7fa/hbase-protocol-shaded/pom.xml
--
diff --git a/hbase-protocol-shaded/pom.xml b/hbase-protocol-shaded/pom.xml
index 6c0e971..a6b8777 100644
--- a/hbase-protocol-shaded/pom.xml
+++ b/hbase-protocol-shaded/pom.xml
@@ -33,7 +33,7 @@
 true
 
-3.1.0
+3.2.0
 
 ${project.build.directory}/classes
 

http://git-wip-us.apache.org/repos/asf/hbase/blob/7700a7fa/hbase-server/pom.xml
--
diff --git a/hbase-server/pom.xml b/hbase-server/pom.xml
index 1eba784..10093cb 100644
--- a/hbase-server/pom.xml
+++ b/hbase-server/pom.xml
@@ -28,7 +28,7 @@
   
   hbase-server
   Apache HBase - Server
-  Main functionality for HBase
+  Server functionality for HBase
   
 target/test-classes/webapps
 true



hbase git commit: Add diversity statement to CoC

2017-03-31 Thread misty
Repository: hbase
Updated Branches:
  refs/heads/master 7700a7fac -> 1c4d9c896


Add diversity statement to CoC

Signed-off-by: Misty Stanley-Jones 


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

Branch: refs/heads/master
Commit: 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7
Parents: 7700a7f
Author: Misty Stanley-Jones 
Authored: Fri Mar 31 12:49:02 2017 -0700
Committer: Misty Stanley-Jones 
Committed: Fri Mar 31 12:49:37 2017 -0700

--
 src/main/site/xdoc/coc.xml | 46 +
 1 file changed, 42 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hbase/blob/1c4d9c89/src/main/site/xdoc/coc.xml
--
diff --git a/src/main/site/xdoc/coc.xml b/src/main/site/xdoc/coc.xml
index e091507..fc2b549 100644
--- a/src/main/site/xdoc/coc.xml
+++ b/src/main/site/xdoc/coc.xml
@@ -32,13 +32,25 @@ under the License.
   
   
 
-We expect participants in discussions on the HBase project mailing lists, IRC 
channels, and JIRA issues to abide by the Apache Software Foundation's http://apache.org/foundation/policies/conduct.html";>Code of Conduct.
+We expect participants in discussions on the HBase project mailing lists, IRC
+channels, and JIRA issues to abide by the Apache Software Foundation's
+http://apache.org/foundation/policies/conduct.html";>Code of 
Conduct.
 
 
-If you feel there had been a violation of this code, please point out your 
concerns publicly in a friendly and matter of fact manner. Nonverbal 
communication is prone to misinterpretation and misunderstanding. Everyone has 
bad days and sometimes says things they regret later. Someone else's 
communication style may clash with yours, but the difference can be amicably 
resolved. After pointing out your concerns please be generous upon receiving an 
apology.
+If you feel there has been a violation of this code, please point out your
+concerns publicly in a friendly and matter of fact manner. Nonverbal
+communication is prone to misinterpretation and misunderstanding. Everyone has
+bad days and sometimes says things they regret later. Someone else's
+communication style may clash with yours, but the difference can be amicably
+resolved. After pointing out your concerns please be generous upon receiving an
+apology.
 
 
-Should there be repeated instances of code of conduct violations, or if there 
is an obvious and severe violation, the HBase PMC may become involved. When 
this happens the PMC will openly discuss the matter, most likely on the 
dev@hbase mailing list, and will consider taking the following actions, in 
order, if there is a continuing problem with an individual:
+Should there be repeated instances of code of conduct violations, or if there 
is
+an obvious and severe violation, the HBase PMC may become involved. When this
+happens the PMC will openly discuss the matter, most likely on the dev@hbase
+mailing list, and will consider taking the following actions, in order, if 
there
+is a continuing problem with an individual:
 
 A friendly off-list warning;
 A friendly public warning, if the communication at issue was on list, 
otherwise another off-list warning;
@@ -47,7 +59,33 @@ Should there be repeated instances of code of conduct 
violations, or if there is
 
 
 
-For flagrant violations requiring a firm response the PMC may opt to skip 
early steps. No action will be taken before public discussion leading to 
consensus or a successful majority vote. 
+For flagrant violations requiring a firm response the PMC may opt to skip early
+steps. No action will be taken before public discussion leading to consensus or
+a successful majority vote.
+
+  
+  
+
+As a project and a community, we encourage you to participate in the HBase 
project
+in whatever capacity suits you, whether it involves development, documentation,
+answering questions on mailing lists, triaging issue and patch review, managing
+releases, or any other way that you want to help. We appreciate your
+contributions and the time you dedicate to the HBase project. We strive to
+recognize the work of participants publicly. Please let us know if we can
+improve in this area.
+
+
+We value diversity and strive to support participation by people with all
+different backgrounds. Rich projects grow from groups with different points of
+view and different backgrounds. We welcome your suggestions about how we can
+welcome participation by people at all skill levels and with all aspects of the
+project.
+
+
+If you can think of something we are doing that we shouldn't, or something that
+we should do but aren't, please let us know. If y

[37/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/bulk-loads.html
--
diff --git a/bulk-loads.html b/bulk-loads.html
index 9d8121b..b124162 100644
--- a/bulk-loads.html
+++ b/bulk-loads.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase –  
   Bulk Loads in Apache HBase (TM)
@@ -195,7 +195,7 @@
 
   
 
-
+  
   
   1.1 Documentation
   
@@ -207,7 +207,7 @@
 
   
 
-
+  
   
   0.94 Documentation
   
@@ -323,7 +323,7 @@ under the License. -->
 https://www.apache.org/";>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-03-29
+  Last Published: 
2017-03-31
 
 
 



[32/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/deprecated-list.html
--
diff --git a/devapidocs/deprecated-list.html b/devapidocs/deprecated-list.html
index e6301da..b2ff15d 100644
--- a/devapidocs/deprecated-list.html
+++ b/devapidocs/deprecated-list.html
@@ -339,12 +339,6 @@
 
 
 
-org.apache.hadoop.hbase.client.HBaseAdmin.addColumn(TableName,
 HColumnDescriptor)
-Since 2.0. Will be removed 
in 3.0. Use
- HBaseAdmin.addColumnFamily(TableName,
 HColumnDescriptor) instead.
-
-
-
 org.apache.hadoop.hbase.client.Admin.addColumn(TableName,
 HColumnDescriptor)
 As of release 2.0.0.
  (https://issues.apache.org/jira/browse/HBASE-1989";>HBASE-1989).
@@ -352,6 +346,12 @@
  Use Admin.addColumnFamily(TableName,
 HColumnDescriptor).
 
 
+
+org.apache.hadoop.hbase.client.HBaseAdmin.addColumn(TableName,
 HColumnDescriptor)
+Since 2.0. Will be removed 
in 3.0. Use
+ HBaseAdmin.addColumnFamily(TableName,
 HColumnDescriptor) instead.
+
+
 
 org.apache.hadoop.hbase.mapreduce.TableMapReduceUtil.addDependencyJars(Configuration,
 Class...)
 rely on TableMapReduceUtil.addDependencyJars(Job)
 instead.
@@ -439,10 +439,10 @@
 org.apache.hadoop.hbase.mapreduce.CellCreator.create(byte[],
 int, int, byte[], int, int, byte[], int, int, long, byte[], int, int, 
String)
 
 
-org.apache.hadoop.hbase.regionserver.SimpleRpcSchedulerFactory.create(Configuration,
 PriorityFunction)
+org.apache.hadoop.hbase.regionserver.FifoRpcSchedulerFactory.create(Configuration,
 PriorityFunction)
 
 
-org.apache.hadoop.hbase.regionserver.FifoRpcSchedulerFactory.create(Configuration,
 PriorityFunction)
+org.apache.hadoop.hbase.regionserver.SimpleRpcSchedulerFactory.create(Configuration,
 PriorityFunction)
 
 
 org.apache.hadoop.hbase.regionserver.RpcSchedulerFactory.create(Configuration,
 PriorityFunction)
@@ -451,12 +451,6 @@
 org.apache.hadoop.hbase.coprocessor.ObserverContext.createAndPrepare(T,
 ObserverContext)
 
 
-org.apache.hadoop.hbase.client.HBaseAdmin.deleteColumn(TableName,
 byte[])
-Since 2.0. Will be removed 
in 3.0. Use
- HBaseAdmin.deleteColumnFamily(TableName,
 byte[]) instead.
-
-
-
 org.apache.hadoop.hbase.client.Admin.deleteColumn(TableName,
 byte[])
 As of release 2.0.0.
  (https://issues.apache.org/jira/browse/HBASE-1989";>HBASE-1989).
@@ -464,6 +458,12 @@
  Use Admin.deleteColumnFamily(TableName,
 byte[])}.
 
 
+
+org.apache.hadoop.hbase.client.HBaseAdmin.deleteColumn(TableName,
 byte[])
+Since 2.0. Will be removed 
in 3.0. Use
+ HBaseAdmin.deleteColumnFamily(TableName,
 byte[]) instead.
+
+
 
 org.apache.hadoop.hbase.client.replication.ReplicationAdmin.disablePeer(String)
 use Admin.disableReplicationPeer(String)
@@ -505,15 +505,15 @@
 org.apache.hadoop.hbase.rest.client.RemoteHTable.exists(List)
 
 
-org.apache.hadoop.hbase.filter.Filter.filterRowKey(byte[],
 int, int)
+org.apache.hadoop.hbase.filter.FilterBase.filterRowKey(byte[],
 int, int)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
- Instead use Filter.filterRowKey(Cell)
+ Instead use FilterBase.filterRowKey(Cell)
 
 
 
-org.apache.hadoop.hbase.filter.FilterBase.filterRowKey(byte[],
 int, int)
+org.apache.hadoop.hbase.filter.Filter.filterRowKey(byte[],
 int, int)
 As of release 2.0.0, this 
will be removed in HBase 3.0.0.
- Instead use FilterBase.filterRowKey(Cell)
+ Instead use Filter.filterRowKey(Cell)
 
 
 
@@ -657,10 +657,10 @@
 
 
 
-org.apache.hadoop.hbase.http.InfoServer.getPort()
+org.apache.hadoop.hbase.http.HttpServer.getPort()
 
 
-org.apache.hadoop.hbase.http.HttpServer.getPort()
+org.apache.hadoop.hbase.http.InfoServer.getPort()
 
 
 org.apache.hadoop.hbase.CellUtil.getQualifierBufferShallowCopy(Cell)
@@ -837,12 +837,12 @@
 org.apache.hadoop.hbase.master.cleaner.BaseLogCleanerDelegate.isLogDeletable(FileStatus)
 
 
-org.apache.hadoop.hbase.client.ConnectionImplementation.isMasterRunning()
+org.apache.hadoop.hbase.client.ClusterConnection.isMasterRunning()
 this has been deprecated 
without a replacement
 
 
 
-org.apache.hadoop.hbase.client.ClusterConnection.isMasterRunning()
+org.apache.hadoop.hbase.client.ConnectionImplementation.isMasterRunning()
 this has been deprecated 
without a replacement
 
 
@@ -884,24 +884,18 @@
 
 
 
-org.apache.hadoop.hbase.client.HBaseAdmin.mergeRegions(byte[],
 byte[], boolean)
+org.apache.hadoop.hbase.client.Admin.mergeRegions(byte[],
 byte[], boolean)
 Since 2.0. Will be removed 
in 3.0. Use
- HBaseAdmin.mergeRegionsAsync(byte[],
 byte[], boolean) instead.
+ Admin.mergeRegionsAsync(byte[],
 byte[], boolean) instead.
 
 
 
-org.apache.hadoop.hbase.client.Admin.mergeRegions(byte[],
 byte[], boolean)
+org.apache.hadoop.hbase.client.HBaseAdmin.mergeRegions(byte[],
 byte[], boolean)
 Since 2.0. Will be removed 
in 3.0. Use
- Admin.mergeRegionsAsync(byte[],
 byte[], boolean) instead.
+ HBas

[31/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/index-all.html
--
diff --git a/devapidocs/index-all.html b/devapidocs/index-all.html
index 56eee1a..b79563c 100644
--- a/devapidocs/index-all.html
+++ b/devapidocs/index-all.html
@@ -3854,6 +3854,8 @@
 
 AsyncMetaTableAccessor()
 - Constructor for class org.apache.hadoop.hbase.AsyncMetaTableAccessor
  
+AsyncMetaTableAccessor.MetaTableRawScanResultConsumer
 - Class in org.apache.hadoop.hbase
+ 
 AsyncNonMetaRegionLocator - Class in org.apache.hadoop.hbase.client
 
 The asynchronous locator for regions other than meta.
@@ -13224,8 +13226,6 @@
  
 compactedCellsSize
 - Variable in class org.apache.hadoop.hbase.regionserver.MetricsRegionServerWrapperImpl
  
-compactedFileDischarger
 - Variable in class org.apache.hadoop.hbase.regionserver.HRegion
- 
 compactedFileDischarger
 - Variable in class org.apache.hadoop.hbase.regionserver.HRegionServer
  
 compactedfiles
 - Variable in class org.apache.hadoop.hbase.regionserver.DefaultStoreFileManager
@@ -19582,6 +19582,8 @@
 
 currentRow()
 - Method in class org.apache.hadoop.hbase.regionserver.querymatcher.ScanQueryMatcher
  
+currentRowCount
 - Variable in class org.apache.hadoop.hbase.AsyncMetaTableAccessor.MetaTableRawScanResultConsumer
+ 
 currentRowKey
 - Variable in class org.apache.hadoop.hbase.mapreduce.CellCounter.CellCounterMapper
  
 currentRowNode
 - Variable in class org.apache.hadoop.hbase.codec.prefixtree.decode.PrefixTreeArrayScanner
@@ -21837,7 +21839,9 @@
 defRegionserverRMIRegistryPort
 - Static variable in class org.apache.hadoop.hbase.JMXListener
  
 DELAYED_POISON
 - Static variable in class org.apache.hadoop.hbase.procedure2.util.DelayedUtil
- 
+
+POISON implementation; used to mark special state: 
e.g.
+
 DelayedAssignCallable(Callable)
 - Constructor for class org.apache.hadoop.hbase.master.AssignmentManager.DelayedAssignCallable
  
 DelayedContainer(T)
 - Constructor for class org.apache.hadoop.hbase.procedure2.util.DelayedUtil.DelayedContainer
@@ -21863,7 +21867,9 @@
 DelayedUtil.DelayedObject - Class in org.apache.hadoop.hbase.procedure2.util
  
 DelayedUtil.DelayedWithTimeout - Interface in 
org.apache.hadoop.hbase.procedure2.util
- 
+
+Add a timeout to a Delay
+
 DelayingRunner - Class in org.apache.hadoop.hbase.client
 
 A wrapper for a runnable for a group of actions for a 
single regionserver.
@@ -24153,6 +24159,10 @@
  
 dumpExecutors(ExecutorService,
 PrintWriter) - Method in class 
org.apache.hadoop.hbase.monitoring.StateDumpServlet
  
+dumpLocks()
 - Method in class org.apache.hadoop.hbase.master.procedure.MasterProcedureScheduler
+
+For debugging.
+
 DumpOptions()
 - Constructor for class org.apache.hadoop.hbase.replication.regionserver.DumpReplicationQueues.DumpOptions
  
 DumpOptions(DumpReplicationQueues.DumpOptions)
 - Constructor for class org.apache.hadoop.hbase.replication.regionserver.DumpReplicationQueues.DumpOptions
@@ -28436,6 +28446,8 @@
 
 FilterType()
 - Constructor for enum org.apache.hadoop.hbase.rest.model.ScannerModel.FilterModel.FilterType
  
+filterUnlocked(Map) - Method in class 
org.apache.hadoop.hbase.master.procedure.MasterProcedureScheduler.SchemaLocking
+ 
 FilterWrapper - Class in org.apache.hadoop.hbase.filter
 
 This is a Filter wrapper class which is used in the server 
side.
@@ -30078,6 +30090,8 @@
  
 fut - 
Static variable in class org.apache.hadoop.metrics2.impl.JmxCacheBuster
  
+future
 - Variable in class org.apache.hadoop.hbase.AsyncMetaTableAccessor.MetaTableRawScanResultConsumer
+ 
 future
 - Variable in class org.apache.hadoop.hbase.client.AsyncRpcRetryingCaller
  
 future
 - Variable in class org.apache.hadoop.hbase.client.AsyncScanSingleRegionRpcRetryingCaller
@@ -32197,6 +32211,10 @@
 See StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue)
  for details on this methods.
 
+getCatalogFamily()
 - Static method in class org.apache.hadoop.hbase.AsyncMetaTableAccessor
+
+Returns the column family used for meta columns.
+
 getCatalogFamily()
 - Static method in class org.apache.hadoop.hbase.MetaTableAccessor
 
 Returns the column family used for meta columns.
@@ -36013,6 +36031,11 @@
  
 getHRegion()
 - Method in class org.apache.hadoop.hbase.regionserver.HStore
  
+getHRegionInfo(Result,
 byte[]) - Static method in class org.apache.hadoop.hbase.AsyncMetaTableAccessor
+
+Returns the HRegionInfo object from the column HConstants.CATALOG_FAMILY
 and
+ qualifier of the catalog table result.
+
 getHRegionInfo()
 - Method in class org.apache.hadoop.hbase.client.MultiServerCallable
  
 getHRegionInfo()
 - Method in class org.apache.hadoop.hbase.client.RegionServerCallable
@@ -38105,6 +38128,8 @@
 
 Get the znodes corresponding to the meta replicas from 
ZK
 
+getMetaScan(RawAsyncTable,
 int) - Static method in class org.apache.hadoop.hbase.AsyncMetaTableAccessor
+ 
 getMetaScan(Connection,
 int) - Static method in class org.apache

[44/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/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 52079a5..db23811 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/Increment.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/Increment.html
@@ -182,14 +182,14 @@
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
-AsyncTableBase.increment(Increment increment)
+Result
+Table.increment(Increment increment)
 Increments one or more columns within a single row.
 
 
 
-Result
-Table.increment(Increment increment)
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture
+AsyncTableBase.increment(Increment increment)
 Increments one or more columns within a single row.
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/org/apache/hadoop/hbase/client/class-use/IsolationLevel.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/class-use/IsolationLevel.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/IsolationLevel.html
index f6bdf0a..2a7b626 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/IsolationLevel.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/IsolationLevel.html
@@ -139,19 +139,19 @@ the order they are declared.
 
 
 
+Scan
+Scan.setIsolationLevel(IsolationLevel level) 
+
+
 Query
 Query.setIsolationLevel(IsolationLevel level)
 Set the isolation level for this query.
 
 
-
+
 Get
 Get.setIsolationLevel(IsolationLevel level) 
 
-
-Scan
-Scan.setIsolationLevel(IsolationLevel level) 
-
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/org/apache/hadoop/hbase/client/class-use/Put.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/class-use/Put.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/Put.html
index 0f6abbd..ca9a462 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/Put.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/Put.html
@@ -290,47 +290,47 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-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">CompletableFutureBoolean>
-AsyncTableBase.checkAndPut(byte[] row,
+boolean
+Table.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
Put put)
-Atomically checks if a row/family/qualifier value equals to 
the expected value.
+Atomically checks if a row/family/qualifier value matches 
the expected
+ value.
 
 
 
-boolean
-Table.checkAndPut(byte[] row,
+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">CompletableFutureBoolean>
+AsyncTableBase.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
Put put)
-Atomically checks if a row/family/qualifier value matches 
the expected
- value.
+Atomically checks if a row/family/qualifier value equals to 
the expected value.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureBoolean>
-AsyncTableBase.checkAndPut(byte[] row,
+boolean
+Table.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
CompareFilter.CompareOp compareOp,
byte[] value,
Put put)
-Atomically checks if a row/family/qualifier value matches 
the expected value.
+Atomically checks if a row/family/qualifier value matches 
the expected
+ value.
 
 
 
-boolean
-Table.checkAndPut(byte[] 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">CompletableFuture

[22/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/class-use/MasterNotRunningException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/MasterNotRunningException.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/MasterNotRunningException.html
index c4b28e0..89ffa47 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/class-use/MasterNotRunningException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/class-use/MasterNotRunningException.html
@@ -141,23 +141,23 @@
 
 
 MasterKeepAliveConnection
-ConnectionImplementation.getKeepAliveMasterService() 
-
-
-MasterKeepAliveConnection
 ClusterConnection.getKeepAliveMasterService()
 Deprecated. 
 Since 0.96.0
 
 
 
+
+MasterKeepAliveConnection
+ConnectionImplementation.getKeepAliveMasterService() 
+
 
 org.apache.hadoop.hbase.shaded.protobuf.generated.MasterProtos.MasterService.BlockingInterface
 ConnectionImplementation.getMaster() 
 
 
 boolean
-ConnectionImplementation.isMasterRunning()
+ClusterConnection.isMasterRunning()
 Deprecated. 
 this has been deprecated 
without a replacement
 
@@ -165,7 +165,7 @@
 
 
 boolean
-ClusterConnection.isMasterRunning()
+ConnectionImplementation.isMasterRunning()
 Deprecated. 
 this has been deprecated 
without a replacement
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/class-use/MetaTableAccessor.QueryType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/MetaTableAccessor.QueryType.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/MetaTableAccessor.QueryType.html
index e547069..ee3e2ac 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/class-use/MetaTableAccessor.QueryType.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/class-use/MetaTableAccessor.QueryType.html
@@ -132,10 +132,20 @@ the order they are declared.
 
 
 
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getTableStartRowForMeta(http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional tableName,
+   MetaTableAccessor.QueryType type) 
+
+
 static byte[]
 MetaTableAccessor.getTableStartRowForMeta(TableName tableName,
MetaTableAccessor.QueryType type) 
 
+
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getTableStopRowForMeta(http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional tableName,
+  MetaTableAccessor.QueryType type) 
+
 
 static byte[]
 MetaTableAccessor.getTableStopRowForMeta(TableName tableName,
@@ -168,6 +178,26 @@ the order they are declared.
 int maxRows,
 MetaTableAccessor.Visitor visitor) 
 
+
+private static http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
+AsyncMetaTableAccessor.scanMeta(RawAsyncTable metaTable,
+http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in 
java.util">Optional startRow,
+http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in 
java.util">Optional stopRow,
+MetaTableAccessor.QueryType type,
+int maxRows,
+MetaTableAccessor.Visitor visitor)
+Performs a scan of META table for given table.
+
+
+
+private static http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
+AsyncMetaTableAccessor.scanMeta(RawAsyncTable metaTable,
+http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional tableName,
+MetaTableAccessor.QueryType type,
+MetaTableAccessor.Visitor visitor)
+Performs a scan of META table for given table.
+
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/class-use/MetaTableAccessor.Visitor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/cl

[14/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
index 7e6cfcc..83dcf5c 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
@@ -270,13 +270,21 @@ service.
 
 
 
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getHRegionInfo(Result r,
+  byte[] qualifier)
+Returns the HRegionInfo object from the column HConstants.CATALOG_FAMILY
 and
+ qualifier of the catalog table result.
+
+
+
 static PairOfSameType
 MetaTableAccessor.getMergeRegions(Result data)
 Returns the merge regions by reading the corresponding 
columns of the catalog table
  Result.
 
 
-
+
 private static HRegionLocation
 MetaTableAccessor.getRegionLocation(Result r,
  HRegionInfo regionInfo,
@@ -285,6 +293,15 @@ service.
  for the given regionInfo and replicaId.
 
 
+
+private static HRegionLocation
+AsyncMetaTableAccessor.getRegionLocation(Result r,
+ HRegionInfo regionInfo,
+ int replicaId)
+Returns the HRegionLocation parsed from the given meta row 
Result
+ for the given regionInfo and replicaId.
+
+
 
 static RegionLocations
 MetaTableAccessor.getRegionLocations(Result r)
@@ -292,12 +309,25 @@ service.
 
 
 
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getRegionLocations(Result r)
+Returns an HRegionLocationList extracted from the 
result.
+
+
+
 private static long
 MetaTableAccessor.getSeqNumDuringOpen(Result r,
int replicaId)
 The latest seqnum that the server writing to meta observed 
when opening the region.
 
 
+
+private static long
+AsyncMetaTableAccessor.getSeqNumDuringOpen(Result r,
+   int replicaId)
+The latest seqnum that the server writing to meta observed 
when opening the region.
+
+
 
 static ServerName
 MetaTableAccessor.getServerName(Result r,
@@ -306,8 +336,11 @@ service.
 
 
 
-private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
-AsyncMetaTableAccessor.getTableState(Result r) 
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getServerName(Result r,
+ int replicaId)
+Returns a ServerName from catalog table Result.
+
 
 
 static TableState
@@ -316,6 +349,15 @@ service.
 
 
 
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getTableState(Result r) 
+
+
+void
+AsyncMetaTableAccessor.MetaTableRawScanResultConsumer.onNext(Result[] results,
+  RawScanResultConsumer.ScanController controller) 
+
+
 boolean
 MetaTableAccessor.Visitor.visit(Result r)
 Visit the catalog table row.
@@ -427,26 +469,26 @@ service.
 
 
 Result[]
-AllowPartialScanResultCache.addAndGet(Result[] results,
- boolean isHeartbeatMessage) 
-
-
-Result[]
 ScanResultCache.addAndGet(Result[] results,
  boolean isHeartbeatMessage)
 Add the given results to cache and get valid results 
back.
 
 
-
+
 Result[]
 BatchScanResultCache.addAndGet(Result[] results,
  boolean isHeartbeatMessage) 
 
-
+
 Result[]
 CompleteScanResultCache.addAndGet(Result[] results,
  boolean isHeartbeatMessage) 
 
+
+Result[]
+AllowPartialScanResultCache.addAndGet(Result[] results,
+ boolean isHeartbeatMessage) 
+
 
 Result
 HTable.append(Append append)
@@ -464,10 +506,6 @@ service.
 HTableWrapper.append(Append append) 
 
 
-Result[]
-ScannerCallableWithReplicas.call(int timeout) 
-
-
 Result
 RpcRetryingCallerWithReadReplicas.call(int operationTimeout)
 
@@ -475,6 +513,10 @@ service.
  - we put the query into the execution pool.
 
 
+
+Result[]
+ScannerCallableWithReplicas.call(int timeout) 
+
 
 private Result[]
 ClientScanner.call(ScannerCallableWithReplicas callable,
@@ -603,29 +645,29 @@ service.
 
 
 Result
-ClientAsyncPrefetchScanner.next() 
+AsyncTableResultScanner.next() 
 
 
 Result
-ResultScanner.next()
-Grab the next row's worth of values.
-
+ClientAsyncPrefetchScanner.next() 
 
 
 Result
-AsyncTableResultScanner.next() 
+ClientScanner.next() 
 
 
 Result
-ClientScanner.next() 
+ResultScanner.next()
+Grab the next row's worth of values.
+
 
 
 Result
-TableSnapshotScanner.next() 

[17/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/client/backoff/class-use/ClientBackoffPolicy.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/backoff/class-use/ClientBackoffPolicy.html
 
b/devapidocs/org/apache/hadoop/hbase/client/backoff/class-use/ClientBackoffPolicy.html
index 15a5c3c..d8ff2be 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/backoff/class-use/ClientBackoffPolicy.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/backoff/class-use/ClientBackoffPolicy.html
@@ -123,11 +123,11 @@
 
 
 ClientBackoffPolicy
-ConnectionImplementation.getBackoffPolicy() 
+ClusterConnection.getBackoffPolicy() 
 
 
 ClientBackoffPolicy
-ClusterConnection.getBackoffPolicy() 
+ConnectionImplementation.getBackoffPolicy() 
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/client/backoff/class-use/ServerStatistics.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/backoff/class-use/ServerStatistics.html
 
b/devapidocs/org/apache/hadoop/hbase/client/backoff/class-use/ServerStatistics.html
index 6339dd0..b043e24 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/backoff/class-use/ServerStatistics.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/backoff/class-use/ServerStatistics.html
@@ -151,13 +151,13 @@
 
 
 long
-ExponentialClientBackoffPolicy.getBackoffTime(ServerName serverName,
+ClientBackoffPolicy.getBackoffTime(ServerName serverName,
   byte[] region,
   ServerStatistics stats) 
 
 
 long
-ClientBackoffPolicy.getBackoffTime(ServerName serverName,
+ExponentialClientBackoffPolicy.getBackoffTime(ServerName serverName,
   byte[] region,
   ServerStatistics stats) 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/client/class-use/AbstractResponse.ResponseType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/AbstractResponse.ResponseType.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/AbstractResponse.ResponseType.html
index 2f5dafb..cc9536d 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/AbstractResponse.ResponseType.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/AbstractResponse.ResponseType.html
@@ -105,16 +105,16 @@
 
 
 
-abstract AbstractResponse.ResponseType
-AbstractResponse.type() 
+AbstractResponse.ResponseType
+MultiResponse.type() 
 
 
-AbstractResponse.ResponseType
-SingleResponse.type() 
+abstract AbstractResponse.ResponseType
+AbstractResponse.type() 
 
 
 AbstractResponse.ResponseType
-MultiResponse.type() 
+SingleResponse.type() 
 
 
 static AbstractResponse.ResponseType

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/client/class-use/Admin.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Admin.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Admin.html
index f8eedde..0c11f7e 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Admin.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Admin.html
@@ -384,13 +384,13 @@ service.
 
 
 void
-MergeNormalizationPlan.execute(Admin admin)
+SplitNormalizationPlan.execute(Admin admin)
 Executes normalization plan on cluster (does actual 
splitting/merging work).
 
 
 
 void
-SplitNormalizationPlan.execute(Admin admin)
+MergeNormalizationPlan.execute(Admin admin)
 Executes normalization plan on cluster (does actual 
splitting/merging work).
 
 
@@ -611,19 +611,19 @@ service.
 
 
 private Admin
-HBaseFsck.admin 
+RegionMover.MoveWithAck.admin 
 
 
-(package private) Admin
-ConnectionCache.ConnectionInfo.admin 
+private Admin
+RegionMover.MoveWithoutAck.admin 
 
 
-private Admin
-RegionMover.MoveWithAck.admin 
+(package private) Admin
+ConnectionCache.ConnectionInfo.admin 
 
 
 private Admin
-RegionMover.MoveWithoutAck.admin 
+HBaseFsck.admin 
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/client/class-use/Append.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Append.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Append.html
index 0b7d7fd..58d8378 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Append.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Append.html
@@ -210,14 +210,14 @@ service.
 RawAsyncTableImpl.append(Append append) 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.uti

[30/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/ClusterStatus.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/ClusterStatus.html 
b/devapidocs/org/apache/hadoop/hbase/ClusterStatus.html
index 7db0780..dfc5983 100644
--- a/devapidocs/org/apache/hadoop/hbase/ClusterStatus.html
+++ b/devapidocs/org/apache/hadoop/hbase/ClusterStatus.html
@@ -120,7 +120,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Public
  @InterfaceStability.Evolving
-public class ClusterStatus
+public class ClusterStatus
 extends org.apache.hadoop.io.VersionedWritable
 Status information on the HBase cluster.
  
@@ -377,7 +377,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 VERSION
-private static final byte VERSION
+private static final byte VERSION
 Version for object serialization.  Incremented for changes 
in serialized
  representation.
  
@@ -398,7 +398,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 hbaseVersion
-private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hbaseVersion
+private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hbaseVersion
 
 
 
@@ -407,7 +407,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 liveServers
-private http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map liveServers
+private http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map liveServers
 
 
 
@@ -416,7 +416,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 deadServers
-private http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection deadServers
+private http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection deadServers
 
 
 
@@ -425,7 +425,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 master
-private ServerName master
+private ServerName master
 
 
 
@@ -434,7 +434,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 backupMasters
-private http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection backupMasters
+private http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection backupMasters
 
 
 
@@ -443,7 +443,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 intransition
-private http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">Set intransition
+private http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">Set intransition
 
 
 
@@ -452,7 +452,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 clusterId
-private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String clusterId
+private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String clusterId
 
 
 
@@ -461,7 +461,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 masterCoprocessors
-private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String[] masterCoprocessors
+private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String[] masterCoprocessors
 
 
 
@@ -470,7 +470,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 balancerOn
-private http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean balancerOn
+private http://docs.oracle.com/javase/8/docs/api/java/lang/Boolean.html?is-external=true";
 title="class or interface in java.lang">Boolean balancerOn
 
 
 
@@ -487,7 +487,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 ClusterStatus
-public ClusterStatus(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hbaseVersion,
+public ClusterStatus(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hbaseVersion,
  http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String clusterid,
  

[10/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/errorhandling/class-use/ForeignExceptionDispatcher.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/errorhandling/class-use/ForeignExceptionDispatcher.html
 
b/devapidocs/org/apache/hadoop/hbase/errorhandling/class-use/ForeignExceptionDispatcher.html
index 0fdd52b..000e4c4 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/errorhandling/class-use/ForeignExceptionDispatcher.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/errorhandling/class-use/ForeignExceptionDispatcher.html
@@ -163,14 +163,14 @@
 
 
 
-protected ForeignExceptionDispatcher
-Subprocedure.monitor
+private ForeignExceptionDispatcher
+Procedure.monitor
 monitor to check for errors
 
 
 
-private ForeignExceptionDispatcher
-Procedure.monitor
+protected ForeignExceptionDispatcher
+Subprocedure.monitor
 monitor to check for errors
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/exceptions/HBaseException.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/exceptions/HBaseException.html 
b/devapidocs/org/apache/hadoop/hbase/exceptions/HBaseException.html
index a1a1709..42be66a 100644
--- a/devapidocs/org/apache/hadoop/hbase/exceptions/HBaseException.html
+++ b/devapidocs/org/apache/hadoop/hbase/exceptions/HBaseException.html
@@ -127,7 +127,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Exception.ht
 Base checked exception in HBase.
 
 See Also:
-https://issues.apache.org/jira/browse/HBASE-5796";>HBASE-5796,
+https://issues.apache.org/jira/browse/HBASE-5796";>HBASE-5796, 
 Serialized
 Form
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/DeserializationException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/DeserializationException.html
 
b/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/DeserializationException.html
index 81a1e14..73935a3 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/DeserializationException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/DeserializationException.html
@@ -154,13 +154,13 @@
 HTableDescriptor.parseFrom(byte[] bytes) 
 
 
-static ClusterId
-ClusterId.parseFrom(byte[] bytes) 
-
-
 static HRegionInfo
 HRegionInfo.parseFrom(byte[] bytes) 
 
+
+static ClusterId
+ClusterId.parseFrom(byte[] bytes) 
+
 
 static SplitLogTask
 SplitLogTask.parseFrom(byte[] data) 
@@ -265,145 +265,145 @@
 ByteArrayComparable.parseFrom(byte[] pbBytes) 
 
 
-static DependentColumnFilter
-DependentColumnFilter.parseFrom(byte[] pbBytes) 
-
-
-static SkipFilter
-SkipFilter.parseFrom(byte[] pbBytes) 
-
-
-static LongComparator
-LongComparator.parseFrom(byte[] pbBytes) 
-
-
-static KeyOnlyFilter
-KeyOnlyFilter.parseFrom(byte[] pbBytes) 
-
-
 static ColumnPrefixFilter
 ColumnPrefixFilter.parseFrom(byte[] pbBytes) 
 
 
-static ColumnPaginationFilter
-ColumnPaginationFilter.parseFrom(byte[] pbBytes) 
+static ColumnCountGetFilter
+ColumnCountGetFilter.parseFrom(byte[] pbBytes) 
 
 
-static InclusiveStopFilter
-InclusiveStopFilter.parseFrom(byte[] pbBytes) 
+static RowFilter
+RowFilter.parseFrom(byte[] pbBytes) 
 
 
-static WhileMatchFilter
-WhileMatchFilter.parseFrom(byte[] pbBytes) 
+static FuzzyRowFilter
+FuzzyRowFilter.parseFrom(byte[] pbBytes) 
 
 
-static PageFilter
-PageFilter.parseFrom(byte[] pbBytes) 
+static BinaryComparator
+BinaryComparator.parseFrom(byte[] pbBytes) 
 
 
-static MultiRowRangeFilter
-MultiRowRangeFilter.parseFrom(byte[] pbBytes) 
+static RegexStringComparator
+RegexStringComparator.parseFrom(byte[] pbBytes) 
 
 
-static QualifierFilter
-QualifierFilter.parseFrom(byte[] pbBytes) 
-
-
 static Filter
 Filter.parseFrom(byte[] pbBytes)
 Concrete implementers can signal a failure condition in 
their code by throwing an
  http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException.
 
 
+
+static RandomRowFilter
+RandomRowFilter.parseFrom(byte[] pbBytes) 
+
+
+static FirstKeyOnlyFilter
+FirstKeyOnlyFilter.parseFrom(byte[] pbBytes) 
+
+
+static SkipFilter
+SkipFilter.parseFrom(byte[] pbBytes) 
+
 
 static BinaryPrefixComparator
 BinaryPrefixComparator.parseFrom(byte[] pbBytes) 
 
 
-static BinaryComparator
-BinaryComparator.parseFrom(byte[] pbBytes) 
+static TimestampsFilter
+TimestampsFilter.parseFrom(byte[] pbBytes) 
 
 
-static FirstKeyValueMatchingQualifiersFilter
-FirstKeyValueMatchingQualifiersFilter.parseFrom(byte[] pbBytes)
-Deprecated. 
- 
+static ValueFilter
+ValueFilter.parseFrom(byte[] pbBytes) 
 
 
-static RowFilter
-RowFilter.parseFrom(byte[] pbBytes) 
+static KeyOnlyFilter
+KeyOnlyFilter.parseFrom(byte[] pbBytes) 

[52/52] hbase-site git commit: Empty commit

2017-03-31 Thread git-site-role
Empty commit


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

Branch: refs/heads/asf-site
Commit: 3cf263bbf7b82759fcd8128c4805d1304ee3108b
Parents: cc8da4e
Author: jenkins 
Authored: Fri Mar 31 20:37:32 2017 +
Committer: jenkins 
Committed: Fri Mar 31 20:37:32 2017 +

--

--




[48/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/constant-values.html
--
diff --git a/apidocs/constant-values.html b/apidocs/constant-values.html
index 040fc68..12abad4 100644
--- a/apidocs/constant-values.html
+++ b/apidocs/constant-values.html
@@ -1158,1336 +1158,1329 @@
 "hbase.regionserver.wal.encryption"
 
 
-
-
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
-ENSEMBLE_TABLE_NAME
-"hbase:ensemble"
-
-
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 FILE_SYSTEM_VERSION
 "8"
 
-
+
 
 
 public static final int
 FOREVER
 2147483647
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_BALANCER_MAX_BALANCING
 "hbase.balancer.max.balancing"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_BALANCER_PERIOD
 "hbase.balancer.period"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CANARY_READ_RAW_SCAN_KEY
 "hbase.canary.read.raw.enabled"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CANARY_WRITE_DATA_TTL_KEY
 "hbase.canary.write.data.ttl"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CANARY_WRITE_PERSERVER_REGIONS_LOWERLIMIT_KEY
 "hbase.canary.write.perserver.regions.lowerLimit"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CANARY_WRITE_PERSERVER_REGIONS_UPPERLIMIT_KEY
 "hbase.canary.write.perserver.regions.upperLimit"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CANARY_WRITE_TABLE_CHECK_PERIOD_KEY
 "hbase.canary.write.table.check.period"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CANARY_WRITE_VALUE_SIZE_KEY
 "hbase.canary.write.value.size"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CHECKSUM_VERIFICATION
 "hbase.regionserver.checksum.verify"
 
-
+
 
 
 public static final boolean
 HBASE_CLIENT_ENABLE_FAST_FAIL_MODE_DEFAULT
 false
 
-
+
 
 
 public static final long
 HBASE_CLIENT_FAST_FAIL_CLEANUP_DURATION_MS_DEFAULT
 60L
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CLIENT_FAST_FAIL_CLEANUP_MS_DURATION_MS
 "hbase.client.fast.fail.cleanup.duration"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CLIENT_FAST_FAIL_INTERCEPTOR_IMPL
 "hbase.client.fast.fail.interceptor.impl"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CLIENT_FAST_FAIL_MODE_ENABLED
 "hbase.client.fast.fail.mode.enabled"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CLIENT_FAST_FAIL_THREASHOLD_MS
 "hbase.client.fastfail.threshold"
 
-
+
 
 
 public static final long
 HBASE_CLIENT_FAST_FAIL_THREASHOLD_MS_DEFAULT
 6L
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CLIENT_INSTANCE_ID
 "hbase.client.instance.id"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CLIENT_IPC_POOL_SIZE
 "hbase.client.ipc.pool.size"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CLIENT_IPC_POOL_TYPE
 "hbase.client.ipc.pool.type"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in jav

[11/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

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

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/client/package-use.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/package-use.html 
b/devapidocs/org/apache/hadoop/hbase/client/package-use.html
index 90e13a3..188bcdc 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/package-use.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/package-use.html
@@ -380,6 +380,16 @@ service.
 
 
 
+RawScanResultConsumer
+Receives Result for an asynchronous 
scan.
+
+
+
+RawScanResultConsumer.ScanController
+Used to suspend or stop a scan.
+
+
+
 Result
 Single row result of a Get or Scan query.
 
@@ -2649,6 +2659,16 @@ service.
 
 
 
+Append
+Performs Append operations on a single row.
+
+
+
+Increment
+Used to perform Increment operations on a single row.
+
+
+
 OperationWithAttributes 
 
 
@@ -2679,31 +2699,21 @@ service.
 
 
 
-Append
-Performs Append operations on a single row.
-
-
-
 Delete
 Used to perform Delete operations on a single row.
 
 
-
+
 Durability
 Enum describing the durability guarantees for tables and Mutations
  Note that the items must be sorted in order of increasing durability
 
 
-
+
 Get
 Used to perform Get operations on a single row.
 
 
-
-Increment
-Used to perform Increment operations on a single row.
-
-
 
 OperationWithAttributes 
 
@@ -2718,29 +2728,24 @@ service.
 
 
 
-Result
-Single row result of a Get or Scan query.
-
-
-
 ResultScanner
 Interface for client-side scanning.
 
 
-
+
 RowMutations
 Performs multiple mutations atomically on a single 
row.
 
 
-
+
 Scan
 Used to perform Scan operations.
 
 
-
+
 Scan.ReadType 
 
-
+
 Table
 Used to communicate with a single HBase table.
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/client/security/class-use/SecurityCapability.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/security/class-use/SecurityCapability.html
 
b/devapidocs/org/apache/hadoop/hbase/client/security/class-use/Security

[12/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Scan.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
index 3590a3a..fa03a15 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
@@ -200,6 +200,11 @@ service.
int rowUpperLimit) 
 
 
+private static Scan
+AsyncMetaTableAccessor.getMetaScan(RawAsyncTable metaTable,
+   int rowUpperLimit) 
+
+
 static Scan
 MetaTableAccessor.getScanForTableName(Connection connection,
TableName tableName)
@@ -274,11 +279,11 @@ service.
 
 
 private Scan
-AsyncClientScanner.scan 
+AsyncScanSingleRegionRpcRetryingCaller.scan 
 
 
-private Scan
-AsyncScanSingleRegionRpcRetryingCaller.scan 
+protected Scan
+ScannerCallable.scan 
 
 
 private Scan
@@ -290,11 +295,11 @@ service.
 
 
 private Scan
-AsyncRpcRetryingCallerFactory.ScanSingleRegionCallerBuilder.scan 
+AsyncClientScanner.scan 
 
 
-protected Scan
-ScannerCallable.scan 
+private Scan
+AsyncRpcRetryingCallerFactory.ScanSingleRegionCallerBuilder.scan 
 
 
 private Scan
@@ -324,11 +329,11 @@ service.
 
 
 protected Scan
-ClientScanner.getScan() 
+ScannerCallable.getScan() 
 
 
 protected Scan
-ScannerCallable.getScan() 
+ClientScanner.getScan() 
 
 
 (package private) Scan
@@ -605,14 +610,15 @@ service.
 
 
 ResultScanner
-AsyncTable.getScanner(Scan scan)
-Returns a scanner on the current table as specified by the 
Scan 
object.
+HTable.getScanner(Scan scan)
+The underlying HTable must 
not be closed.
 
 
 
 ResultScanner
-HTable.getScanner(Scan scan)
-The underlying HTable must 
not be closed.
+Table.getScanner(Scan scan)
+Returns a scanner on the current table as specified by the 
Scan
+ object.
 
 
 
@@ -621,9 +627,8 @@ service.
 
 
 ResultScanner
-Table.getScanner(Scan scan)
-Returns a scanner on the current table as specified by the 
Scan
- object.
+AsyncTable.getScanner(Scan scan)
+Returns a scanner on the current table as specified by the 
Scan 
object.
 
 
 
@@ -660,16 +665,16 @@ service.
 
 
 void
+AsyncTableImpl.scan(Scan scan,
+ScanResultConsumer consumer) 
+
+
+void
 AsyncTable.scan(Scan scan,
 ScanResultConsumer consumer)
 The scan API uses the observer pattern.
 
 
-
-void
-AsyncTableImpl.scan(Scan scan,
-ScanResultConsumer consumer) 
-
 
 private void
 AsyncTableImpl.scan0(Scan scan,
@@ -681,13 +686,13 @@ service.
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-AsyncTableBase.scanAll(Scan scan)
-Return all the results that match the given scan 
object.
-
+AsyncTableImpl.scanAll(Scan scan) 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-AsyncTableImpl.scanAll(Scan scan) 
+AsyncTableBase.scanAll(Scan scan)
+Return all the results that match the given scan 
object.
+
 
 
 private Scan
@@ -1269,17 +1274,17 @@ service.
 
 
 private Scan
-TableRecordReaderImpl.scan 
+TableSnapshotInputFormatImpl.RecordReader.scan 
 
 
 private Scan
-TableInputFormatBase.scan
-Holds the details for the internal scanner.
-
+TableRecordReaderImpl.scan 
 
 
 private Scan
-TableSnapshotInputFormatImpl.RecordReader.scan 
+TableInputFormatBase.scan
+Holds the details for the internal scanner.
+
 
 
 
@@ -1324,12 +1329,12 @@ service.
 
 
 private static Scan
-CellCounter.getConfiguredScanForJob(org.apache.hadoop.conf.Configuration conf,
+Export.getConfiguredScanForJob(org.apache.hadoop.conf.Configuration conf,
http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String[] args) 
 
 
 private static Scan
-Export.getConfiguredScanForJob(org.apache.hadoop.conf.Configuration conf,
+CellCounter.getConfiguredScanForJob(org.apache.hadoop.conf.Configuration conf,
http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String[] args) 
 
 
@@ -1546,19 +1551,19 @@ service.
 
 
 void
-TableRecordReaderImpl.setScan(Scan scan)
+TableRecordReader.setScan(Scan scan)
 Sets the scan defining the actual details like columns 
etc.
 
 
 
 void
-TableInputFormatBase.setScan(Scan scan)
+TableRecordReaderImpl.setScan(Scan scan)
 Sets the scan defining the actual details like columns 
etc.

[04/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileBlockIndex.BlockIndexReader.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileBlockIndex.BlockIndexReader.html
 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileBlockIndex.BlockIndexReader.html
index 7591110..cc736a8 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileBlockIndex.BlockIndexReader.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileBlockIndex.BlockIndexReader.html
@@ -144,11 +144,11 @@
 
 
 HFileBlockIndex.BlockIndexReader
-HFileReaderImpl.getDataBlockIndexReader() 
+HFile.Reader.getDataBlockIndexReader() 
 
 
 HFileBlockIndex.BlockIndexReader
-HFile.Reader.getDataBlockIndexReader() 
+HFileReaderImpl.getDataBlockIndexReader() 
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileContext.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileContext.html 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileContext.html
index a934527..e0b77da 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileContext.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileContext.html
@@ -143,11 +143,11 @@
 
 
 private HFileContext
-HFileBlockDefaultEncodingContext.fileContext 
+HFileBlockDefaultDecodingContext.fileContext 
 
 
 private HFileContext
-HFileBlockDefaultDecodingContext.fileContext 
+HFileBlockDefaultEncodingContext.fileContext 
 
 
 private HFileContext
@@ -164,7 +164,7 @@
 
 
 HFileContext
-HFileBlockDefaultEncodingContext.getHFileContext() 
+HFileBlockDecodingContext.getHFileContext() 
 
 
 HFileContext
@@ -172,11 +172,11 @@
 
 
 HFileContext
-HFileBlockDecodingContext.getHFileContext() 
+HFileBlockEncodingContext.getHFileContext() 
 
 
 HFileContext
-HFileBlockEncodingContext.getHFileContext() 
+HFileBlockDefaultEncodingContext.getHFileContext() 
 
 
 
@@ -189,22 +189,16 @@
 
 
 HFileBlockDecodingContext
-AbstractDataBlockEncoder.newDataBlockDecodingContext(HFileContext meta) 
-
-
-HFileBlockDecodingContext
 DataBlockEncoder.newDataBlockDecodingContext(HFileContext meta)
 Creates an encoder specific decoding context, which will 
prepare the data
  before actual decoding
 
 
-
-HFileBlockEncodingContext
-AbstractDataBlockEncoder.newDataBlockEncodingContext(DataBlockEncoding encoding,
-   byte[] header,
-   HFileContext meta) 
-
 
+HFileBlockDecodingContext
+AbstractDataBlockEncoder.newDataBlockDecodingContext(HFileContext meta) 
+
+
 HFileBlockEncodingContext
 DataBlockEncoder.newDataBlockEncodingContext(DataBlockEncoding encoding,
byte[] headerBytes,
@@ -212,6 +206,12 @@
 Creates a encoder specific encoding context
 
 
+
+HFileBlockEncodingContext
+AbstractDataBlockEncoder.newDataBlockEncodingContext(DataBlockEncoding encoding,
+   byte[] header,
+   HFileContext meta) 
+
 
 
 
@@ -309,20 +309,20 @@
 
 
 HFileContext
-HFileReaderImpl.getFileContext() 
-
-
-HFileContext
 HFile.Writer.getFileContext()
 Return the file context for the HFile this writer belongs 
to
 
 
-
+
 HFileContext
 HFile.Reader.getFileContext()
 Return the file context of the HFile this reader belongs 
to
 
 
+
+HFileContext
+HFileReaderImpl.getFileContext() 
+
 
 (package private) HFileContext
 HFileBlock.getHFileContext() 
@@ -351,35 +351,35 @@
 
 
 HFileBlockDecodingContext
-NoOpDataBlockEncoder.newDataBlockDecodingContext(HFileContext meta) 
+HFileDataBlockEncoderImpl.newDataBlockDecodingContext(HFileContext fileContext) 
 
 
 HFileBlockDecodingContext
-HFileDataBlockEncoder.newDataBlockDecodingContext(HFileContext fileContext)
-create a encoder specific decoding context for 
reading.
-
+NoOpDataBlockEncoder.newDataBlockDecodingContext(HFileContext meta) 
 
 
 HFileBlockDecodingContext
-HFileDataBlockEncoderImpl.newDataBlockDecodingContext(HFileContext fileContext) 
+HFileDataBlockEncoder.newDataBlockDecodingContext(HFileContext fileContext)
+create a encoder specific decoding context for 
reading.
+
 
 
 HFileBlockEncodingContext
+HFileDataBlockEncoderImpl.newDataBlockEncodingContext(byte[] dummyHeader,
+   HFileContext fileContext) 
+
+
+HFileBlockEncodingContext
 NoOpDataBlockEncoder.newDataBlockEncodingContext(byte[] dummyHeader,
HFileContext meta) 
 
-
+
 HFileBlockEncodingContext
 HFileDataBlockEncoder.newDataBlockEncodingContext(byte[] headerBytes,
HFileContext fileContext)
 Create an encoder specific encoding context object for 
writing.
 
 
-
-HFileBlockEncodingContext
-HFileDataBlockEncoderImpl.newDataBlockEncodingContext(byte[] d

[26/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/class-use/HColumnDescriptor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/HColumnDescriptor.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/HColumnDescriptor.html
index fd04928..b32f878 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/HColumnDescriptor.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/HColumnDescriptor.html
@@ -477,23 +477,23 @@ service.
 
 
 void
-HBaseAdmin.addColumn(TableName tableName,
+Admin.addColumn(TableName tableName,
  HColumnDescriptor columnFamily)
 Deprecated. 
-Since 2.0. Will be removed 
in 3.0. Use
- HBaseAdmin.addColumnFamily(TableName,
 HColumnDescriptor) instead.
+As of release 2.0.0.
+ (https://issues.apache.org/jira/browse/HBASE-1989";>HBASE-1989).
+ This will be removed in HBase 3.0.0.
+ Use Admin.addColumnFamily(TableName,
 HColumnDescriptor).
 
 
 
 
 void
-Admin.addColumn(TableName tableName,
+HBaseAdmin.addColumn(TableName tableName,
  HColumnDescriptor columnFamily)
 Deprecated. 
-As of release 2.0.0.
- (https://issues.apache.org/jira/browse/HBASE-1989";>HBASE-1989).
- This will be removed in HBase 3.0.0.
- Use Admin.addColumnFamily(TableName,
 HColumnDescriptor).
+Since 2.0. Will be removed 
in 3.0. Use
+ HBaseAdmin.addColumnFamily(TableName,
 HColumnDescriptor) instead.
 
 
 
@@ -506,33 +506,33 @@ service.
 
 
 void
-HBaseAdmin.addColumnFamily(TableName tableName,
-   HColumnDescriptor columnFamily) 
-
-
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-AsyncHBaseAdmin.addColumnFamily(TableName tableName,
-   HColumnDescriptor columnFamily) 
-
-
-void
 Admin.addColumnFamily(TableName tableName,
HColumnDescriptor columnFamily)
 Add a column family to an existing table.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true";
 title="class or interface in java.util.concurrent">FutureVoid>
-HBaseAdmin.addColumnFamilyAsync(TableName tableName,
-HColumnDescriptor columnFamily) 
+void
+HBaseAdmin.addColumnFamily(TableName tableName,
+   HColumnDescriptor columnFamily) 
 
 
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
+AsyncHBaseAdmin.addColumnFamily(TableName tableName,
+   HColumnDescriptor columnFamily) 
+
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true";
 title="class or interface in java.util.concurrent">FutureVoid>
 Admin.addColumnFamilyAsync(TableName tableName,
 HColumnDescriptor columnFamily)
 Add a column family to an existing table.
 
 
+
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true";
 title="class or interface in java.util.concurrent">FutureVoid>
+HBaseAdmin.addColumnFamilyAsync(TableName tableName,
+HColumnDescriptor columnFamily) 
+
 
 UnmodifyableHTableDescriptor
 UnmodifyableHTableDescriptor.addFamily(HColumnDescriptor family)
@@ -541,23 +541,23 @@ service.
 
 
 void
-HBaseAdmin.modifyColumn(TableName tableName,
+Admin.modifyColumn(TableName tableName,
 HColumnDescriptor columnFamily)
 Deprecated. 
-As of 2.0. Will be removed 
in 3.0. Use
- HBaseAdmin.modifyColumnFamily(TableName,
 HColumnDescriptor) instead.
+As of release 2.0.0.
+ (https://issues.apache.org/jira/browse/HBASE-1989";>HBASE-1989).
+ This will be removed in HBase 3.0.0.
+ Use Admin.modifyColumnFamily(TableName,
 HColumnDescriptor).
 
 
 
 
 void
-Admin.modifyColumn(TableName tableName,
+HBaseAdmin.modifyColumn(TableName tableName,
 HColumnDescriptor columnFamily)
 Deprecated. 
-As of release 2.0.0.
- (https://issues.apache.org/jira/browse/HBASE-1989";>HBASE-1989).
- This will be removed in HBase 3.0.0.
- Use Admin.modifyColumnFamily(TableName,
 HColumnDescriptor).
+As of 2.0. W

[49/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apache_hbase_reference_guide.pdfmarks
--
diff --git a/apache_hbase_reference_guide.pdfmarks 
b/apache_hbase_reference_guide.pdfmarks
index e046998..67df7d8 100644
--- a/apache_hbase_reference_guide.pdfmarks
+++ b/apache_hbase_reference_guide.pdfmarks
@@ -2,8 +2,8 @@
   /Author (Apache HBase Team)
   /Subject ()
   /Keywords ()
-  /ModDate (D:20170329203947)
-  /CreationDate (D:20170329203947)
+  /ModDate (D:20170331202606)
+  /CreationDate (D:20170331202606)
   /Creator (Asciidoctor PDF 1.5.0.alpha.6, based on Prawn 1.2.1)
   /Producer ()
   /DOCINFO pdfmark



[23/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/class-use/HTableDescriptor.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/HTableDescriptor.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/HTableDescriptor.html
index 955186b..c483306 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/HTableDescriptor.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/HTableDescriptor.html
@@ -595,66 +595,66 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 HTableDescriptor[]
-HBaseAdmin.deleteTables(http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in java.util.regex">Pattern pattern)
+Admin.deleteTables(http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in java.util.regex">Pattern pattern)
 Delete tables matching the passed in pattern and wait on 
completion.
 
 
 
 HTableDescriptor[]
-Admin.deleteTables(http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in java.util.regex">Pattern pattern)
+HBaseAdmin.deleteTables(http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in java.util.regex">Pattern pattern)
 Delete tables matching the passed in pattern and wait on 
completion.
 
 
 
 HTableDescriptor[]
-HBaseAdmin.deleteTables(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String regex) 
-
-
-HTableDescriptor[]
 Admin.deleteTables(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String regex)
 Deletes tables matching the passed in pattern and wait on 
completion.
 
 
-
+
 HTableDescriptor[]
-HBaseAdmin.disableTables(http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in 
java.util.regex">Pattern pattern) 
+HBaseAdmin.deleteTables(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String regex) 
 
-
+
 HTableDescriptor[]
 Admin.disableTables(http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in java.util.regex">Pattern pattern)
 Disable tables matching the passed in pattern and wait on 
completion.
 
 
-
+
 HTableDescriptor[]
-HBaseAdmin.disableTables(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String regex) 
+HBaseAdmin.disableTables(http://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html?is-external=true";
 title="class or interface in 
java.util.regex">Pattern pattern) 
 
-
+
 HTableDescriptor[]
 Admin.disableTables(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String regex)
 Disable tables matching the passed in pattern and wait on 
completion.
 
 
-
+
 HTableDescriptor[]
-HBaseAdmin.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">Pattern pattern) 
+HBaseAdmin.disableTables(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String regex) 
 
-
+
 HTableDescriptor[]
 Admin.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">Pattern pattern)
 Enable tables matching the passed in pattern and wait on 
completion.
 
 
-
+
 HTableDescriptor[]
-HBaseAdmin.enableTables(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String regex) 
+HBaseAdmin.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">Pattern pattern) 
 
-
+
 HTableDescriptor[]
 Admin.enableTables(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String regex)
 Enable tables matching the passed in pattern and wait on 
completion.
 
 
+
+HTableDescriptor[]
+HBaseAdmin.enableTables(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String regex) 
+
 
 HTableDescriptor
 HTable.getTableDescriptor()
@@ -662,18 +662,18 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-protected HTableDescriptor
-HBaseAdmin.CreateTableFuture.getTableDescriptor() 
+HTableDescriptor
+Table.getTableDescriptor()
+Gets the table descrip

[38/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/src-html/org/apache/hadoop/hbase/TableName.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/TableName.html 
b/apidocs/src-html/org/apache/hadoop/hbase/TableName.html
index 9f0d5e5..f3ab33f 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/TableName.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/TableName.html
@@ -97,442 +97,447 @@
 089  public static final String OLD_META_STR 
= ".META.";
 090  public static final String OLD_ROOT_STR 
= "-ROOT-";
 091
-092
-093
-094  /**
-095   * TableName for old -ROOT- table. It 
is used to read/process old WALs which have
-096   * ROOT edits.
-097   */
-098  public static final TableName 
OLD_ROOT_TABLE_NAME = getADummyTableName(OLD_ROOT_STR);
+092  /**
+093   * @return True if 
tn is the hbase:meta table name.
+094   */
+095  public static boolean 
isMetaTableName(final TableName tn) {
+096return 
tn.equals(TableName.META_TABLE_NAME);
+097  }
+098
 099  /**
-100   * TableName for old .META. table. Used 
in testing.
-101   */
-102  public static final TableName 
OLD_META_TABLE_NAME = getADummyTableName(OLD_META_STR);
-103
-104  private final byte[] name;
-105  private final String nameAsString;
-106  private final byte[] namespace;
-107  private final String 
namespaceAsString;
-108  private final byte[] qualifier;
-109  private final String 
qualifierAsString;
-110  private final boolean systemTable;
-111  private final int hashCode;
-112
-113  /**
-114   * Check passed byte array, 
"tableName", is legal user-space table name.
-115   * @return Returns passed 
tableName param
-116   * @throws IllegalArgumentException if 
passed a tableName is null or
-117   * is made of other than 'word' 
characters or underscores: i.e.
-118   * 
[a-zA-Z_0-9.-:]. The ':' is used to delimit the 
namespace
-119   * from the table name and can be used 
for nothing else.
-120   *
-121   * Namespace names can only contain 
'word' characters
-122   * 
[a-zA-Z_0-9] or '_'
-123   *
-124   * Qualifier names can only contain 
'word' characters
-125   * 
[a-zA-Z_0-9] or '_', '.' or '-'.
-126   * The name may not start with '.' or 
'-'.
-127   *
-128   * Valid fully qualified table names:
-129   * foo:bar, namespace=>foo, 
table=>bar
-130   * org:foo.bar, namespace=org, 
table=>foo.bar
-131   */
-132  public static byte [] 
isLegalFullyQualifiedTableName(final byte[] tableName) {
-133if (tableName == null || 
tableName.length <= 0) {
-134  throw new 
IllegalArgumentException("Name is null or empty");
-135}
-136
-137int namespaceDelimIndex = 
com.google.common.primitives.Bytes.lastIndexOf(tableName,
-138(byte) NAMESPACE_DELIM);
-139if (namespaceDelimIndex < 0){
-140  
isLegalTableQualifierName(tableName);
-141} else {
-142  isLegalNamespaceName(tableName, 0, 
namespaceDelimIndex);
-143  
isLegalTableQualifierName(tableName, namespaceDelimIndex + 1, 
tableName.length);
-144}
-145return tableName;
-146  }
-147
-148  public static byte [] 
isLegalTableQualifierName(final byte[] qualifierName) {
-149
isLegalTableQualifierName(qualifierName, 0, qualifierName.length, false);
-150return qualifierName;
+100   * TableName for old -ROOT- table. It 
is used to read/process old WALs which have
+101   * ROOT edits.
+102   */
+103  public static final TableName 
OLD_ROOT_TABLE_NAME = getADummyTableName(OLD_ROOT_STR);
+104  /**
+105   * TableName for old .META. table. Used 
in testing.
+106   */
+107  public static final TableName 
OLD_META_TABLE_NAME = getADummyTableName(OLD_META_STR);
+108
+109  private final byte[] name;
+110  private final String nameAsString;
+111  private final byte[] namespace;
+112  private final String 
namespaceAsString;
+113  private final byte[] qualifier;
+114  private final String 
qualifierAsString;
+115  private final boolean systemTable;
+116  private final int hashCode;
+117
+118  /**
+119   * Check passed byte array, 
"tableName", is legal user-space table name.
+120   * @return Returns passed 
tableName param
+121   * @throws IllegalArgumentException if 
passed a tableName is null or
+122   * is made of other than 'word' 
characters or underscores: i.e.
+123   * 
[a-zA-Z_0-9.-:]. The ':' is used to delimit the 
namespace
+124   * from the table name and can be used 
for nothing else.
+125   *
+126   * Namespace names can only contain 
'word' characters
+127   * 
[a-zA-Z_0-9] or '_'
+128   *
+129   * Qualifier names can only contain 
'word' characters
+130   * 
[a-zA-Z_0-9] or '_', '.' or '-'.
+131   * The name may not start with '.' or 
'-'.
+132   *
+133   * Valid fully qualified table names:
+134   * foo:bar, namespace=>foo, 
table=>bar
+135   * org:foo.bar, namespace=org, 
table=>foo.bar
+136   */
+137  public static byt

[21/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/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 330a368..fbbb727 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html
@@ -342,17 +342,24 @@
  byte[] regionName) 
 
 
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getServerName(Result r,
+ int replicaId)
+Returns a ServerName from catalog table Result.
+
+
+
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
 ClusterStatus.getServers() 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List>
 MetaTableAccessor.getTableRegionsAndLocations(Connection connection,
TableName tableName)
 Do not use this method to get meta table regions, use 
methods in MetaTableLocator instead.
 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List>
 MetaTableAccessor.getTableRegionsAndLocations(Connection connection,
TableName tableName,
@@ -360,6 +367,21 @@
 Do not use this method to get meta table regions, use 
methods in MetaTableLocator instead.
 
 
+
+static http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>>
+AsyncMetaTableAccessor.getTableRegionsAndLocations(RawAsyncTable metaTable,
+   http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional tableName)
+Used to get table regions' info and server.
+
+
+
+static http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>>
+AsyncMetaTableAccessor.getTableRegionsAndLocations(RawAsyncTable metaTable,
+   http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional tableName,
+   boolean excludeOfflinedSplitParents)
+Used to get table regions' info and server.
+
+
 
 
 
@@ -600,11 +622,11 @@
 
 
 private ServerName
-FastFailInterceptorContext.server 
+AsyncRequestFutureImpl.SingleServerRequestRunnable.server 
 
 
 private ServerName
-AsyncRequestFutureImpl.SingleServerRequestRunnable.server 
+FastFailInterceptorContext.server 
 
 
 private ServerName
@@ -725,14 +747,14 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-HBaseAdmin.listDrainingRegionServers() 
-
-
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 Admin.listDrainingRegionServers()
 List region servers marked as draining to not get 
additional regions assigned to them.
 
 
+
+http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+HBaseAdmin.listDrainingRegionServers() 
+
 
 
 
@@ -809,14 +831,14 @@
 
 
 void
-ConnectionImplementation.clearCaches(ServerName serverName) 
-
-
-void
 ClusterConnection.clearCaches(ServerName sn)
 Clear any caches that pertain to server name 
sn.
 
 
+
+void
+ConnectionImplementation.clearCaches(ServerName serverName) 
+
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
 AsyncAdmin.closeRegion(ServerName sn,
@@ -826,21 +848,21 @@
 
 
 void
+Admin.closeRegion(ServerName sn,
+   HRegionInfo hri)
+Close a region.
+
+
+
+void
 HBaseAdmin.closeRegion(ServerName sn,
HRegionInfo hri) 
 
-
+
 http://docs.oracle.com/javase/8/do

[08/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/filter/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/filter/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/filter/package-tree.html
index 2df7976..585b871 100644
--- a/devapidocs/org/apache/hadoop/hbase/filter/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/filter/package-tree.html
@@ -175,14 +175,14 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
+org.apache.hadoop.hbase.filter.BitComparator.BitwiseOp
+org.apache.hadoop.hbase.filter.CompareFilter.CompareOp
+org.apache.hadoop.hbase.filter.FilterList.Operator
 org.apache.hadoop.hbase.filter.FuzzyRowFilter.Order
+org.apache.hadoop.hbase.filter.RegexStringComparator.EngineType
 org.apache.hadoop.hbase.filter.Filter.ReturnCode
 org.apache.hadoop.hbase.filter.FilterWrapper.FilterRowRetCode
-org.apache.hadoop.hbase.filter.RegexStringComparator.EngineType
 org.apache.hadoop.hbase.filter.FuzzyRowFilter.SatisfiesCode
-org.apache.hadoop.hbase.filter.CompareFilter.CompareOp
-org.apache.hadoop.hbase.filter.BitComparator.BitwiseOp
-org.apache.hadoop.hbase.filter.FilterList.Operator
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/io/ByteBufferWriter.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/io/ByteBufferWriter.html 
b/devapidocs/org/apache/hadoop/hbase/io/ByteBufferWriter.html
index 9ddd613..a376ab3 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/ByteBufferWriter.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/ByteBufferWriter.html
@@ -110,7 +110,7 @@ public interface This interface marks a class to support writing ByteBuffers 
into it.
 
 See Also:
-ByteArrayOutputStream,
+ByteArrayOutputStream, 
 ByteBufferOutputStream
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/io/Reference.Range.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/io/Reference.Range.html 
b/devapidocs/org/apache/hadoop/hbase/io/Reference.Range.html
index 6929eab..2408858 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/Reference.Range.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/Reference.Range.html
@@ -244,7 +244,7 @@ the order they are declared.
 
 
 values
-public static Reference.Range[] values()
+public static Reference.Range[] values()
 Returns an array containing the constants of this enum 
type, in
 the order they are declared.  This method may be used to iterate
 over the constants as follows:
@@ -264,7 +264,7 @@ for (Reference.Range c : Reference.Range.values())
 
 
 valueOf
-public static Reference.Range valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
+public static Reference.Range valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
 Returns the enum constant of this type with the specified 
name.
 The string must match exactly an identifier used to declare an
 enum constant in this type.  (Extraneous whitespace characters are 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html 
b/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
index 67da5f6..44310c8 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
@@ -162,15 +162,15 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 ImmutableBytesWritable
-TableRecordReaderImpl.createKey() 
+TableSnapshotInputFormat.TableSnapshotRecordReader.createKey() 
 
 
 ImmutableBytesWritable
-TableSnapshotInputFormat.TableSnapshotRecordReader.createKey() 
+TableRecordReader.createKey() 
 
 
 ImmutableBytesWritable
-TableRecordReader.createKey() 
+TableRecordReaderImpl.createKey() 
 
 
 
@@ -183,13 +183,13 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapred.RecordReader
-MultiTableSnap

[40/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

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

[09/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
index 6cefaa1..2812ba9 100644
--- a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
+++ b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
@@ -140,111 +140,111 @@
 
 
 Filter.ReturnCode
-DependentColumnFilter.filterKeyValue(Cell c) 
+ColumnPrefixFilter.filterKeyValue(Cell cell) 
 
 
 Filter.ReturnCode
-SkipFilter.filterKeyValue(Cell v) 
+ColumnCountGetFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-KeyOnlyFilter.filterKeyValue(Cell ignored) 
+RowFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-ColumnPrefixFilter.filterKeyValue(Cell cell) 
+FuzzyRowFilter.filterKeyValue(Cell c) 
 
 
-Filter.ReturnCode
-ColumnPaginationFilter.filterKeyValue(Cell v) 
+abstract Filter.ReturnCode
+Filter.filterKeyValue(Cell v)
+A way to filter based on the column family, column 
qualifier and/or the column value.
+
 
 
 Filter.ReturnCode
-InclusiveStopFilter.filterKeyValue(Cell v) 
+RandomRowFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-WhileMatchFilter.filterKeyValue(Cell v) 
+FirstKeyOnlyFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-PageFilter.filterKeyValue(Cell ignored) 
+SkipFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-MultiRowRangeFilter.filterKeyValue(Cell ignored) 
+TimestampsFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-QualifierFilter.filterKeyValue(Cell v) 
+ValueFilter.filterKeyValue(Cell v) 
 
 
-abstract Filter.ReturnCode
-Filter.filterKeyValue(Cell v)
-A way to filter based on the column family, column 
qualifier and/or the column value.
-
+Filter.ReturnCode
+KeyOnlyFilter.filterKeyValue(Cell ignored) 
 
 
 Filter.ReturnCode
-FirstKeyValueMatchingQualifiersFilter.filterKeyValue(Cell v)
-Deprecated. 
- 
+FamilyFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-RowFilter.filterKeyValue(Cell v) 
+QualifierFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-FirstKeyOnlyFilter.filterKeyValue(Cell v) 
+FilterList.filterKeyValue(Cell c) 
 
 
 Filter.ReturnCode
-MultipleColumnPrefixFilter.filterKeyValue(Cell kv) 
+ColumnRangeFilter.filterKeyValue(Cell kv) 
 
 
 Filter.ReturnCode
-FuzzyRowFilter.filterKeyValue(Cell c) 
+ColumnPaginationFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-RandomRowFilter.filterKeyValue(Cell v) 
+WhileMatchFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-FilterWrapper.filterKeyValue(Cell v) 
+MultiRowRangeFilter.filterKeyValue(Cell ignored) 
 
 
 Filter.ReturnCode
-SingleColumnValueFilter.filterKeyValue(Cell c) 
+PrefixFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-ValueFilter.filterKeyValue(Cell v) 
+DependentColumnFilter.filterKeyValue(Cell c) 
 
 
 Filter.ReturnCode
-ColumnCountGetFilter.filterKeyValue(Cell v) 
+FirstKeyValueMatchingQualifiersFilter.filterKeyValue(Cell v)
+Deprecated. 
+ 
 
 
 Filter.ReturnCode
-FilterList.filterKeyValue(Cell c) 
+PageFilter.filterKeyValue(Cell ignored) 
 
 
 Filter.ReturnCode
-PrefixFilter.filterKeyValue(Cell v) 
+InclusiveStopFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-FamilyFilter.filterKeyValue(Cell v) 
+FilterWrapper.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-TimestampsFilter.filterKeyValue(Cell v) 
+MultipleColumnPrefixFilter.filterKeyValue(Cell kv) 
 
 
 Filter.ReturnCode
-ColumnRangeFilter.filterKeyValue(Cell kv) 
+SingleColumnValueFilter.filterKeyValue(Cell c) 
 
 
 static Filter.ReturnCode

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
index 1a9feb3..abddd91 100644
--- a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
+++ b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
@@ -468,81 +468,81 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 static Filter
-DependentColumnFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+ColumnPrefixFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-KeyOnlyFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArgument

[02/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/master/MasterWalManager.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/master/MasterWalManager.html 
b/devapidocs/org/apache/hadoop/hbase/master/MasterWalManager.html
index fc24d6d..74f06db 100644
--- a/devapidocs/org/apache/hadoop/hbase/master/MasterWalManager.html
+++ b/devapidocs/org/apache/hadoop/hbase/master/MasterWalManager.html
@@ -110,7 +110,7 @@ var activeTableTab = "activeTableTab";
 
 
 @InterfaceAudience.Private
-public class MasterWalManager
+public class MasterWalManager
 extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object
 This class abstracts a bunch of operations the HMaster needs
  when splitting log files e.g. finding log files, dirs etc.
@@ -335,7 +335,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 LOG
-private static final org.apache.commons.logging.Log LOG
+private static final org.apache.commons.logging.Log LOG
 
 
 
@@ -344,7 +344,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 META_FILTER
-static final org.apache.hadoop.fs.PathFilter META_FILTER
+static final org.apache.hadoop.fs.PathFilter META_FILTER
 
 
 
@@ -353,7 +353,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 NON_META_FILTER
-static final org.apache.hadoop.fs.PathFilter NON_META_FILTER
+static final org.apache.hadoop.fs.PathFilter NON_META_FILTER
 
 
 
@@ -362,7 +362,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 metricsMasterFilesystem
-private final MetricsMasterFileSystem metricsMasterFilesystem
+private final MetricsMasterFileSystem metricsMasterFilesystem
 
 
 
@@ -371,7 +371,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 services
-private final MasterServices services
+private final MasterServices services
 
 
 
@@ -380,7 +380,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 conf
-private final org.apache.hadoop.conf.Configuration conf
+private final org.apache.hadoop.conf.Configuration conf
 
 
 
@@ -389,7 +389,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 fs
-private final org.apache.hadoop.fs.FileSystem fs
+private final org.apache.hadoop.fs.FileSystem fs
 
 
 
@@ -398,7 +398,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 oldLogDir
-private final org.apache.hadoop.fs.Path oldLogDir
+private final org.apache.hadoop.fs.Path oldLogDir
 
 
 
@@ -407,7 +407,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 rootDir
-private final org.apache.hadoop.fs.Path rootDir
+private final org.apache.hadoop.fs.Path rootDir
 
 
 
@@ -416,7 +416,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 splitLogLock
-private final http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/locks/Lock.html?is-external=true";
 title="class or interface in java.util.concurrent.locks">Lock splitLogLock
+private final http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/locks/Lock.html?is-external=true";
 title="class or interface in java.util.concurrent.locks">Lock splitLogLock
 
 
 
@@ -425,7 +425,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 splitLogManager
-private final SplitLogManager splitLogManager
+private final SplitLogManager splitLogManager
 
 
 
@@ -434,7 +434,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 distributedLogReplay
-private final boolean distributedLogReplay
+private final boolean distributedLogReplay
 
 
 
@@ -443,7 +443,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 fsOk
-private volatile boolean fsOk
+private volatile boolean fsOk
 
 
 
@@ -460,7 +460,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 MasterWalManager
-public MasterWalManager(MasterServices services)
+public MasterWalManager(MasterServices services)
  throws http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException
 
 Throws:
@@ -474,7 +474,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 MasterWalManager
-public MasterWalManager(org.apache.hadoop.conf.Configuration conf,
+public MasterWalManager(org.apache.hadoop.conf.Configuration conf,
 org.apache.hadoop.fs.FileSystem fs,
 org.apache.hadoop.fs.Path rootDir,
 MasterServices services)
@@ -499,7 +499,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 
 
 stop
-public void stop()
+public void stop()
 
 
 
@@ -508,7 +508,7 @@ extends http://docs

[35/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/checkstyle.rss
--
diff --git a/checkstyle.rss b/checkstyle.rss
index f022401..7c8a9e4 100644
--- a/checkstyle.rss
+++ b/checkstyle.rss
@@ -23,10 +23,10 @@ under the License.
 http://hbase.apache.org
 Apache HBase - Checkstyle report
 en-us
-©2007 - 2016 The Apache Software Foundation
+©2007 - 2017 The Apache Software Foundation
 
-  File: 2059,
- Errors: 13865,
+  File: 2145,
+ Errors: 14177,
  Warnings: 0,
  Infos: 0
   
@@ -46,6 +46,20 @@ under the License.
   
   
 
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.ipc.RpcServerFactory.java";>org/apache/hadoop/hbase/ipc/RpcServerFactory.java
+
+
+  0
+
+
+  0
+
+
+  4
+
+  
+  
+
   http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.regionserver.handler.OpenPriorityRegionHandler.java";>org/apache/hadoop/hbase/regionserver/handler/OpenPriorityRegionHandler.java
 
 
@@ -186,7 +200,7 @@ under the License.
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.replication.regionserver.ReplicationSinkManager.java";>org/apache/hadoop/hbase/replication/regionserver/ReplicationSinkManager.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.backup.BackupAdmin.java";>org/apache/hadoop/hbase/backup/BackupAdmin.java
 
 
   0
@@ -195,12 +209,12 @@ under the License.
   0
 
 
-  1
+  0
 
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.coprocessor.BaseMasterObserver.java";>org/apache/hadoop/hbase/coprocessor/BaseMasterObserver.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.replication.regionserver.ReplicationSinkManager.java";>org/apache/hadoop/hbase/replication/regionserver/ReplicationSinkManager.java
 
 
   0
@@ -209,7 +223,7 @@ under the License.
   0
 
 
-  0
+  1
 
   
   
@@ -270,7 +284,7 @@ under the License.
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.master.balancer.FavoredNodeAssignmentHelper.java";>org/apache/hadoop/hbase/master/balancer/FavoredNodeAssignmentHelper.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.metrics.MetricRegistry.java";>org/apache/hadoop/hbase/metrics/MetricRegistry.java
 
 
   0
@@ -279,7 +293,7 @@ under the License.
   0
 
 
-  29
+  0
 
   
   
@@ -321,7 +335,7 @@ under the License.
   0
 
 
-  0
+  1
 
   
   
@@ -363,7 +377,7 @@ under the License.
   0
 
 
-  25
+  26
 
   
   
@@ -447,7 +461,21 @@ under the License.
   0
 
 
-  1
+  0
+
+  
+  
+
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.client.RegionLocateType.java";>org/apache/hadoop/hbase/client/RegionLocateType.java
+
+
+  0
+
+
+  0
+
+
+  0
 
   
   
@@ -489,7 +517,7 @@ under the License.
   0
 
 
-  8
+  7
 
   
   
@@ -559,7 +587,7 @@ under the License.
   0
 
 
-  3
+  0
 
   
   
@@ -690,6 +718,20 @@ under the License.
 

[39/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/overview-tree.html
--
diff --git a/apidocs/overview-tree.html b/apidocs/overview-tree.html
index c0d37fd..8b53c07 100644
--- a/apidocs/overview-tree.html
+++ b/apidocs/overview-tree.html
@@ -874,32 +874,32 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
+org.apache.hadoop.hbase.filter.BitComparator.BitwiseOp
+org.apache.hadoop.hbase.filter.FilterList.Operator
+org.apache.hadoop.hbase.filter.CompareFilter.CompareOp
+org.apache.hadoop.hbase.filter.Filter.ReturnCode
+org.apache.hadoop.hbase.filter.RegexStringComparator.EngineType
 org.apache.hadoop.hbase.KeepDeletedCells
 org.apache.hadoop.hbase.MemoryCompactionPolicy
 org.apache.hadoop.hbase.ProcedureState
 org.apache.hadoop.hbase.io.encoding.DataBlockEncoding
 org.apache.hadoop.hbase.util.Order
-org.apache.hadoop.hbase.filter.RegexStringComparator.EngineType
-org.apache.hadoop.hbase.filter.FilterList.Operator
-org.apache.hadoop.hbase.filter.Filter.ReturnCode
-org.apache.hadoop.hbase.filter.CompareFilter.CompareOp
-org.apache.hadoop.hbase.filter.BitComparator.BitwiseOp
-org.apache.hadoop.hbase.quotas.ThrottleType
+org.apache.hadoop.hbase.regionserver.BloomType
+org.apache.hadoop.hbase.quotas.ThrottlingException.Type
 org.apache.hadoop.hbase.quotas.QuotaScope
+org.apache.hadoop.hbase.quotas.ThrottleType
 org.apache.hadoop.hbase.quotas.QuotaType
-org.apache.hadoop.hbase.quotas.ThrottlingException.Type
-org.apache.hadoop.hbase.client.CompactType
 org.apache.hadoop.hbase.client.Durability
-org.apache.hadoop.hbase.client.Consistency
-org.apache.hadoop.hbase.client.CompactionState
-org.apache.hadoop.hbase.client.IsolationLevel
-org.apache.hadoop.hbase.client.Scan.ReadType
-org.apache.hadoop.hbase.client.RequestController.ReturnCode
 org.apache.hadoop.hbase.client.SnapshotType
 org.apache.hadoop.hbase.client.MasterSwitchType
+org.apache.hadoop.hbase.client.CompactType
 org.apache.hadoop.hbase.client.MobCompactPartitionPolicy
+org.apache.hadoop.hbase.client.CompactionState
+org.apache.hadoop.hbase.client.Scan.ReadType
+org.apache.hadoop.hbase.client.RequestController.ReturnCode
+org.apache.hadoop.hbase.client.IsolationLevel
+org.apache.hadoop.hbase.client.Consistency
 org.apache.hadoop.hbase.client.security.SecurityCapability
-org.apache.hadoop.hbase.regionserver.BloomType
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/src-html/org/apache/hadoop/hbase/ChoreService.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/ChoreService.html 
b/apidocs/src-html/org/apache/hadoop/hbase/ChoreService.html
index 63ebc7f..b16f174 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/ChoreService.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/ChoreService.html
@@ -256,7 +256,7 @@
 248   */
 249  static class ChoreServiceThreadFactory 
implements ThreadFactory {
 250private final String threadPrefix;
-251private final static String 
THREAD_NAME_SUFFIX = "_ChoreService_";
+251private final static String 
THREAD_NAME_SUFFIX = "_Chore_";
 252private AtomicInteger threadNumber = 
new AtomicInteger(1);
 253
 254/**

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/src-html/org/apache/hadoop/hbase/ClusterStatus.html
--
diff --git a/apidocs/src-html/org/apache/hadoop/hbase/ClusterStatus.html 
b/apidocs/src-html/org/apache/hadoop/hbase/ClusterStatus.html
index a527e60..fa0269e 100644
--- a/apidocs/src-html/org/apache/hadoop/hbase/ClusterStatus.html
+++ b/apidocs/src-html/org/apache/hadoop/hbase/ClusterStatus.html
@@ -27,335 +27,323 @@
 019
 020package org.apache.hadoop.hbase;
 021
-022import java.util.ArrayList;
-023import java.util.Arrays;
-024import java.util.Collection;
-025import java.util.Collections;
-026import java.util.HashMap;
-027import java.util.Map;
-028import java.util.Set;
-029
-030import 
org.apache.hadoop.hbase.classification.InterfaceAudience;
-031import 
org.apache.hadoop.hbase.classification.InterfaceStability;
-032import 
org.apache.hadoop.hbase.master.RegionState;
-033import 
org.apache.hadoop.hbase.shaded.protobuf.ProtobufUtil;
-034import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterStatusProtos;
-035import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterStatusProtos.LiveServerInfo;
-036import 
org.apache.hadoop.hbase.shaded.protobuf.generated.ClusterStatusProtos.RegionInTransition;
-

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

2017-03-31 Thread git-site-role
Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.


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

Branch: refs/heads/asf-site
Commit: cc8da4e53f86f2a83bc2ff6acaf065d12dd614a2
Parents: 2dad754
Author: jenkins 
Authored: Fri Mar 31 20:37:27 2017 +
Committer: jenkins 
Committed: Fri Mar 31 20:37:27 2017 +

--
 acid-semantics.html | 8 +-
 apache_hbase_reference_guide.pdf|  8682 +++---
 apache_hbase_reference_guide.pdfmarks   | 4 +-
 apidocs/constant-values.html|   385 +-
 apidocs/index-all.html  |15 +-
 .../org/apache/hadoop/hbase/ChoreService.html   | 2 +-
 .../org/apache/hadoop/hbase/ClusterStatus.html  |50 +-
 apidocs/org/apache/hadoop/hbase/HConstants.html |10 +-
 .../apache/hadoop/hbase/HTableDescriptor.html   |14 +-
 .../apache/hadoop/hbase/KeepDeletedCells.html   | 4 +-
 .../org/apache/hadoop/hbase/ProcedureState.html | 2 +-
 apidocs/org/apache/hadoop/hbase/TableName.html  |87 +-
 .../org/apache/hadoop/hbase/class-use/Cell.html |   228 +-
 .../hbase/class-use/DoNotRetryIOException.html  | 2 +-
 .../hbase/class-use/HBaseIOException.html   | 2 +-
 .../hadoop/hbase/class-use/ServerName.html  | 4 +-
 .../hadoop/hbase/class-use/TableName.html   |90 +-
 .../org/apache/hadoop/hbase/client/Admin.html   |12 +-
 .../hadoop/hbase/client/BufferedMutator.html| 2 +-
 .../apache/hadoop/hbase/client/CompactType.html | 2 +-
 .../hadoop/hbase/client/CompactionState.html| 2 +-
 .../hadoop/hbase/client/ConnectionFactory.html  | 2 +-
 .../apache/hadoop/hbase/client/Durability.html  | 4 +-
 .../hadoop/hbase/client/MasterSwitchType.html   | 2 +-
 .../hadoop/hbase/client/RegionLocator.html  | 2 +-
 .../org/apache/hadoop/hbase/client/Scan.html| 8 +-
 .../hadoop/hbase/client/SnapshotType.html   | 2 +-
 .../org/apache/hadoop/hbase/client/Table.html   | 2 +-
 .../hadoop/hbase/client/class-use/Append.html   | 8 +-
 .../hbase/client/class-use/Consistency.html |10 +-
 .../hadoop/hbase/client/class-use/Delete.html   |44 +-
 .../hbase/client/class-use/Durability.html  |24 +-
 .../hadoop/hbase/client/class-use/Get.html  |36 +-
 .../hbase/client/class-use/Increment.html   | 8 +-
 .../hbase/client/class-use/IsolationLevel.html  |10 +-
 .../hadoop/hbase/client/class-use/Put.html  |48 +-
 .../hadoop/hbase/client/class-use/Result.html   |36 +-
 .../hbase/client/class-use/ResultScanner.html   |26 +-
 .../hadoop/hbase/client/class-use/Row.html  | 6 +-
 .../hbase/client/class-use/RowMutations.html|16 +-
 .../hadoop/hbase/client/class-use/Scan.html |16 +-
 .../hadoop/hbase/client/class-use/Table.html| 4 +-
 .../hadoop/hbase/client/package-tree.html   |12 +-
 .../hbase/errorhandling/TimeoutException.html   | 2 +-
 .../hbase/filter/CompareFilter.CompareOp.html   | 4 +-
 .../hadoop/hbase/filter/Filter.ReturnCode.html  | 4 +-
 .../filter/class-use/ByteArrayComparable.html   | 8 +-
 .../class-use/CompareFilter.CompareOp.html  |44 +-
 .../filter/class-use/Filter.ReturnCode.html |64 +-
 .../hadoop/hbase/filter/class-use/Filter.html   |58 +-
 .../hadoop/hbase/filter/package-tree.html   | 6 +-
 .../io/class-use/ImmutableBytesWritable.html|56 +-
 .../hadoop/hbase/io/class-use/TimeRange.html|32 +-
 .../hbase/io/crypto/class-use/Cipher.html   |10 +-
 .../hbase/io/encoding/DataBlockEncoding.html| 4 +-
 .../hbase/ipc/ServerTooBusyException.html   | 4 +-
 .../hadoop/hbase/ipc/package-summary.html   | 2 +-
 .../mapred/MultiTableSnapshotInputFormat.html   | 2 +-
 .../MultiTableSnapshotInputFormat.html  | 2 +-
 .../hadoop/hbase/mapreduce/PutSortReducer.html  | 2 +-
 .../mapreduce/SimpleTotalOrderPartitioner.html  | 2 +-
 .../hbase/mapreduce/TableMapReduceUtil.html | 2 +-
 .../hbase/mapreduce/TableOutputFormat.html  | 2 +-
 .../hadoop/hbase/mapreduce/TextSortReducer.html | 2 +-
 .../hbase/quotas/ThrottlingException.Type.html  | 4 +-
 .../hadoop/hbase/quotas/package-tree.html   | 4 +-
 .../hadoop/hbase/regionserver/BloomType.html| 4 +-
 .../RegionServerStoppedException.html   | 2 +-
 .../org/apache/hadoop/hbase/types/RawBytes.html | 2 +-
 .../hadoop/hbase/types/RawBytesFixedLength.html | 2 +-
 .../hadoop/hbase/types/RawBytesTerminated.html  | 4 +-
 .../apache/hadoop/hbase/types/RawDouble.html| 2 +-
 .../org/apache/hadoop/hbase/types/RawFloat.html

[43/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/org/apache/hadoop/hbase/filter/class-use/CompareFilter.CompareOp.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/filter/class-use/CompareFilter.CompareOp.html 
b/apidocs/org/apache/hadoop/hbase/filter/class-use/CompareFilter.CompareOp.html
index aa8dd10..fdb1d11 100644
--- 
a/apidocs/org/apache/hadoop/hbase/filter/class-use/CompareFilter.CompareOp.html
+++ 
b/apidocs/org/apache/hadoop/hbase/filter/class-use/CompareFilter.CompareOp.html
@@ -116,31 +116,31 @@
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureBoolean>
-AsyncTableBase.checkAndDelete(byte[] row,
+boolean
+Table.checkAndDelete(byte[] row,
   byte[] family,
   byte[] qualifier,
   CompareFilter.CompareOp compareOp,
   byte[] value,
   Delete delete)
-Atomically checks if a row/family/qualifier value matches 
the expected value.
+Atomically checks if a row/family/qualifier value matches 
the expected
+ value.
 
 
 
-boolean
-Table.checkAndDelete(byte[] 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">CompletableFutureBoolean>
+AsyncTableBase.checkAndDelete(byte[] row,
   byte[] family,
   byte[] qualifier,
   CompareFilter.CompareOp compareOp,
   byte[] value,
   Delete delete)
-Atomically checks if a row/family/qualifier value matches 
the expected
- value.
+Atomically checks if a row/family/qualifier value matches 
the expected value.
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureBoolean>
-AsyncTableBase.checkAndMutate(byte[] row,
+boolean
+Table.checkAndMutate(byte[] row,
   byte[] family,
   byte[] qualifier,
   CompareFilter.CompareOp compareOp,
@@ -150,8 +150,8 @@
 
 
 
-boolean
-Table.checkAndMutate(byte[] 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">CompletableFutureBoolean>
+AsyncTableBase.checkAndMutate(byte[] row,
   byte[] family,
   byte[] qualifier,
   CompareFilter.CompareOp compareOp,
@@ -161,26 +161,26 @@
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureBoolean>
-AsyncTableBase.checkAndPut(byte[] row,
+boolean
+Table.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
CompareFilter.CompareOp compareOp,
byte[] value,
Put put)
-Atomically checks if a row/family/qualifier value matches 
the expected value.
+Atomically checks if a row/family/qualifier value matches 
the expected
+ value.
 
 
 
-boolean
-Table.checkAndPut(byte[] 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">CompletableFutureBoolean>
+AsyncTableBase.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
CompareFilter.CompareOp compareOp,
byte[] value,
Put put)
-Atomically checks if a row/family/qualifier value matches 
the expected
- value.
+Atomically checks if a row/family/qualifier value matches 
the expected value.
 
 
 
@@ -199,11 +199,11 @@
 
 
 protected CompareFilter.CompareOp
-CompareFilter.compareOp 
+SingleColumnValueFilter.compareOp 
 
 
 protected CompareFilter.CompareOp
-SingleColumnValueFilter.compareOp 
+CompareFilter.compareOp 
 
 
 
@@ -222,11 +222,11 @@
 
 
 CompareFilter.CompareOp
-CompareFilter.getOperator() 
+SingleColumnValueFilter.getOperator() 
 
 
 CompareFilter.CompareOp
-SingleColumnValueFilter.getOperator() 
+CompareFilter.

[15/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/client/class-use/Put.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Put.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Put.html
index 37d5b9a..598162d 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Put.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Put.html
@@ -197,7 +197,7 @@ service.
int replicaId) 
 
 
-private static Put
+static Put
 MetaTableAccessor.addRegionInfo(Put p,
  HRegionInfo hri) 
 
@@ -267,7 +267,7 @@ service.
int replicaId) 
 
 
-private static Put
+static Put
 MetaTableAccessor.addRegionInfo(Put p,
  HRegionInfo hri) 
 
@@ -590,18 +590,19 @@ service.
 
 
 
-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">CompletableFutureBoolean>
-AsyncTableBase.checkAndPut(byte[] row,
+boolean
+HTable.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
Put put)
-Atomically checks if a row/family/qualifier value equals to 
the expected value.
+Atomically checks if a row/family/qualifier value matches 
the expected
+ value.
 
 
 
 boolean
-HTable.checkAndPut(byte[] row,
+Table.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
@@ -611,14 +612,13 @@ service.
 
 
 
-boolean
-Table.checkAndPut(byte[] row,
+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">CompletableFutureBoolean>
+AsyncTableBase.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
byte[] value,
Put put)
-Atomically checks if a row/family/qualifier value matches 
the expected
- value.
+Atomically checks if a row/family/qualifier value equals to 
the expected value.
 
 
 
@@ -639,19 +639,20 @@ service.
Put put) 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureBoolean>
-AsyncTableBase.checkAndPut(byte[] row,
+boolean
+HTable.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
CompareFilter.CompareOp compareOp,
byte[] value,
Put put)
-Atomically checks if a row/family/qualifier value matches 
the expected value.
+Atomically checks if a row/family/qualifier value matches 
the expected
+ value.
 
 
 
 boolean
-HTable.checkAndPut(byte[] row,
+Table.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
CompareFilter.CompareOp compareOp,
@@ -671,15 +672,14 @@ service.
Put put) 
 
 
-boolean
-Table.checkAndPut(byte[] 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">CompletableFutureBoolean>
+AsyncTableBase.checkAndPut(byte[] row,
byte[] family,
byte[] qualifier,
CompareFilter.CompareOp compareOp,
byte[] value,
Put put)
-Atomically checks if a row/family/qualifier value matches 
the expected
- value.
+Atomically checks if a row/family/qualifier value matches 
the expected value.
 
 
 
@@ -715,14 +715,14 @@ service.
 RawAsyncTableImpl.put(Put put) 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-AsyncTableBase.put(Put put)
-Puts some data to the table.
+void
+HTable.put(Put put)
+Puts some data in the table.
 
 
 
 void
-HTable.put(Put put)
+Table.put(Put put)
 Puts some data in the table.
 
 
@@ -731,9 +731,9 @@ service.
 AsyncTableImpl.put(Put put) 
 
 
-void
-Table.put(Put put)
-Puts some data in the table.
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture

[13/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
index 101d455..880dc7c 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
@@ -214,44 +214,44 @@ service.
 
 
 
-default ResultScanner
-AsyncTable.getScanner(byte[] family)
-Gets a scanner on the current table for the given 
family.
-
-
-
 ResultScanner
 HTable.getScanner(byte[] family)
 The underlying HTable must 
not be closed.
 
 
-
+
 ResultScanner
 Table.getScanner(byte[] family)
 Gets a scanner on the current table for the given 
family.
 
 
+
+default ResultScanner
+AsyncTable.getScanner(byte[] family)
+Gets a scanner on the current table for the given 
family.
+
+
 
 ResultScanner
 HTableWrapper.getScanner(byte[] family) 
 
 
-default ResultScanner
-AsyncTable.getScanner(byte[] family,
+ResultScanner
+HTable.getScanner(byte[] family,
   byte[] qualifier)
-Gets a scanner on the current table for the given family 
and qualifier.
+The underlying HTable must 
not be closed.
 
 
 
 ResultScanner
-HTable.getScanner(byte[] family,
+Table.getScanner(byte[] family,
   byte[] qualifier)
-The underlying HTable must 
not be closed.
+Gets a scanner on the current table for the given family 
and qualifier.
 
 
 
-ResultScanner
-Table.getScanner(byte[] family,
+default ResultScanner
+AsyncTable.getScanner(byte[] family,
   byte[] qualifier)
 Gets a scanner on the current table for the given family 
and qualifier.
 
@@ -263,14 +263,15 @@ service.
 
 
 ResultScanner
-AsyncTable.getScanner(Scan scan)
-Returns a scanner on the current table as specified by the 
Scan 
object.
+HTable.getScanner(Scan scan)
+The underlying HTable must 
not be closed.
 
 
 
 ResultScanner
-HTable.getScanner(Scan scan)
-The underlying HTable must 
not be closed.
+Table.getScanner(Scan scan)
+Returns a scanner on the current table as specified by the 
Scan
+ object.
 
 
 
@@ -279,9 +280,8 @@ service.
 
 
 ResultScanner
-Table.getScanner(Scan scan)
-Returns a scanner on the current table as specified by the 
Scan
- object.
+AsyncTable.getScanner(Scan scan)
+Returns a scanner on the current table as specified by the 
Scan 
object.
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
index 45cbe38..3b5059c 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
@@ -262,6 +262,14 @@
 
 
 
+RetryingCallerInterceptorContext
+NoOpRetryingInterceptorContext.prepare(RetryingCallable callable) 
+
+
+FastFailInterceptorContext
+FastFailInterceptorContext.prepare(RetryingCallable callable) 
+
+
 abstract RetryingCallerInterceptorContext
 RetryingCallerInterceptorContext.prepare(RetryingCallable callable)
 This prepares the context object by populating it with 
information specific
@@ -270,12 +278,14 @@
 
 
 
-FastFailInterceptorContext
-FastFailInterceptorContext.prepare(RetryingCallable callable) 
+RetryingCallerInterceptorContext
+NoOpRetryingInterceptorContext.prepare(RetryingCallable callable,
+   int tries) 
 
 
-RetryingCallerInterceptorContext
-NoOpRetryingInterceptorContext.prepare(RetryingCallable callable) 
+FastFailInterceptorContext
+FastFailInterceptorContext.prepare(RetryingCallable callable,
+   int tries) 
 
 
 abstract RetryingCallerInterceptorContext
@@ -286,16 +296,6 @@
 
 
 
-FastFailInterceptorContext
-FastFailInterceptorContext.prepare(RetryingCallable callable,
-   int tries) 
-
-
-RetryingCallerInterceptorContext
-NoOpRetryingInterceptorContext.prepare(RetryingCallable callable,
-   int tries) 
-
-
 void
 ResultBoundedCompletionService.submit(RetryingCallable task,
   int callTimeout,

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallerInterceptor.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallerInterceptor.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallerInterceptor.html
index 5620841..fd7d0ce 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallerInterceptor.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Retr

[20/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/class-use/TableExistsException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/class-use/TableExistsException.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/TableExistsException.html
index 2485de0..2554dc3 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/TableExistsException.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/TableExistsException.html
@@ -106,34 +106,29 @@
 
 
 void
-HBaseAdmin.cloneSnapshot(byte[] snapshotName,
- TableName tableName) 
-
-
-void
 Admin.cloneSnapshot(byte[] snapshotName,
  TableName tableName)
 Create a new table by cloning the snapshot content.
 
 
-
+
 void
-HBaseAdmin.cloneSnapshot(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String snapshotName,
+HBaseAdmin.cloneSnapshot(byte[] snapshotName,
  TableName tableName) 
 
-
+
 void
 Admin.cloneSnapshot(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String snapshotName,
  TableName tableName)
 Create a new table by cloning the snapshot content.
 
 
-
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true";
 title="class or interface in java.util.concurrent">FutureVoid>
-HBaseAdmin.cloneSnapshotAsync(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String snapshotName,
-  TableName tableName) 
-
 
+void
+HBaseAdmin.cloneSnapshot(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String snapshotName,
+ TableName tableName) 
+
+
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true";
 title="class or interface in java.util.concurrent">FutureVoid>
 Admin.cloneSnapshotAsync(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String snapshotName,
   TableName tableName)
@@ -141,6 +136,11 @@
  and wait for it be completely cloned.
 
 
+
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/Future.html?is-external=true";
 title="class or interface in java.util.concurrent">FutureVoid>
+HBaseAdmin.cloneSnapshotAsync(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String snapshotName,
+  TableName tableName) 
+
 
 
 



[42/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html 
b/apidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
index 118c2e5..17b6b3a 100644
--- a/apidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
+++ b/apidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
@@ -158,11 +158,11 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 ImmutableBytesWritable
-TableRecordReaderImpl.createKey() 
+TableRecordReader.createKey() 
 
 
 ImmutableBytesWritable
-TableRecordReader.createKey() 
+TableRecordReaderImpl.createKey() 
 
 
 
@@ -210,30 +210,30 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-IdentityTableMap.map(ImmutableBytesWritable key,
+GroupingTableMap.map(ImmutableBytesWritable key,
Result value,
org.apache.hadoop.mapred.OutputCollector output,
org.apache.hadoop.mapred.Reporter reporter)
-Pass the key, value to reduce
+Extract the grouping columns from value to construct a new 
key.
 
 
 
 void
-GroupingTableMap.map(ImmutableBytesWritable key,
+IdentityTableMap.map(ImmutableBytesWritable key,
Result value,
org.apache.hadoop.mapred.OutputCollector output,
org.apache.hadoop.mapred.Reporter reporter)
-Extract the grouping columns from value to construct a new 
key.
+Pass the key, value to reduce
 
 
 
 boolean
-TableRecordReaderImpl.next(ImmutableBytesWritable key,
+TableRecordReader.next(ImmutableBytesWritable key,
 Result value) 
 
 
 boolean
-TableRecordReader.next(ImmutableBytesWritable key,
+TableRecordReaderImpl.next(ImmutableBytesWritable key,
 Result value) 
 
 
@@ -256,20 +256,20 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-IdentityTableMap.map(ImmutableBytesWritable key,
+GroupingTableMap.map(ImmutableBytesWritable key,
Result value,
org.apache.hadoop.mapred.OutputCollector output,
org.apache.hadoop.mapred.Reporter reporter)
-Pass the key, value to reduce
+Extract the grouping columns from value to construct a new 
key.
 
 
 
 void
-GroupingTableMap.map(ImmutableBytesWritable key,
+IdentityTableMap.map(ImmutableBytesWritable key,
Result value,
org.apache.hadoop.mapred.OutputCollector output,
org.apache.hadoop.mapred.Reporter reporter)
-Extract the grouping columns from value to construct a new 
key.
+Pass the key, value to reduce
 
 
 
@@ -303,13 +303,13 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 ImmutableBytesWritable
-TableRecordReaderImpl.getCurrentKey()
+TableRecordReader.getCurrentKey()
 Returns the current key.
 
 
 
 ImmutableBytesWritable
-TableRecordReader.getCurrentKey()
+TableRecordReaderImpl.getCurrentKey()
 Returns the current key.
 
 
@@ -346,13 +346,13 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 HFileOutputFormat2.getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext context) 
 
 
-org.apache.hadoop.mapreduce.RecordWriter
-MultiHFileOutputFormat.getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext context) 
-
-
 org.apache.hadoop.mapreduce.RecordWriter
 MultiTableOutputFormat.getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext context) 
 
+
+org.apache.hadoop.mapreduce.RecordWriter
+MultiHFileOutputFormat.getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext context) 
+
 
 
 
@@ -364,12 +364,6 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 int
-SimpleTotalOrderPartitioner.getPartition(ImmutableBytesWritable key,
-VALUE value,
-int reduces) 
-
-
-int
 HRegionPartitioner.getPartition(ImmutableBytesWritable key,
 VALUE value,
 int numPartitions)
@@ -377,20 +371,26 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
  number of partitions i.e.
 
 
+
+int
+SimpleTotalOrderPartitioner.getPartition(ImmutableBytesWritable key,
+VALUE value,
+int reduces) 
+
 
 void
-GroupingTableMapper.map(ImmutableBytesWritable key,
+IdentityTableMapper.map(ImmutableBytesWritable key,
Result value,
org.apache.hadoop.mapreduce.Mapper.Context context)
-Extract the grouping columns from value to construct a new 
key.
+Pass the key, value to reduce.
 
 
 
 void
-IdentityTableMapper.map(ImmutableBytesWritable key,
+GroupingTableMapper.map(ImmutableBytesWritable key,
Result value,
org.apache.hadoop.mapreduce.Mapper.Context context)
-Pass the key, value to reduce.
+Extract the grouping

[19/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
index 8d01d70..064c5e3 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
@@ -321,37 +321,43 @@ service.
 
 
 static TableName
+HConstants.ENSEMBLE_TABLE_NAME
+The name of the ensemble table
+
+
+
+static TableName
 TableName.META_TABLE_NAME
 The hbase:meta table's name.
 
 
-
+
 private TableName
 HTableDescriptor.name 
 
-
+
 static TableName
 TableName.NAMESPACE_TABLE_NAME
 The Namespace table's name.
 
 
-
+
 static TableName
 TableName.OLD_META_TABLE_NAME
 TableName for old .META.
 
 
-
+
 static TableName
 TableName.OLD_ROOT_TABLE_NAME
 TableName for old -ROOT- table.
 
 
-
+
 private TableName
 MetaTableAccessor.TableVisitorBase.tableName 
 
-
+
 private TableName
 HRegionInfo.tableName 
 
@@ -628,10 +634,14 @@ service.
  TableName tableName) 
 
 
+static boolean
+TableName.isMetaTableName(TableName tn) 
+
+
 HTableDescriptor
 TableDescriptors.remove(TableName tablename) 
 
-
+
 static void
 MetaTableAccessor.scanMeta(Connection connection,
 MetaTableAccessor.Visitor visitor,
@@ -642,7 +652,7 @@ service.
  given row.
 
 
-
+
 static void
 MetaTableAccessor.scanMeta(Connection connection,
 TableName table,
@@ -650,35 +660,35 @@ service.
 int maxRows,
 MetaTableAccessor.Visitor visitor) 
 
-
+
 static void
 MetaTableAccessor.scanMetaForTableRegions(Connection connection,
MetaTableAccessor.Visitor visitor,
TableName tableName) 
 
-
+
 private void
 HTableDescriptor.setMetaFlags(TableName name) 
 
-
+
 HTableDescriptor
 HTableDescriptor.setName(TableName name)
 Deprecated. 
 
 
-
+
 static boolean
 MetaTableAccessor.tableExists(Connection connection,
TableName tableName)
 Checks if the specified table exists.
 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureBoolean>
 AsyncMetaTableAccessor.tableExists(RawAsyncTable metaTable,
TableName tableName) 
 
-
+
 static void
 MetaTableAccessor.updateTableState(Connection conn,
 TableName tableName,
@@ -688,6 +698,49 @@ service.
 
 
 
+
+Method parameters in org.apache.hadoop.hbase
 with type arguments of type TableName 
+
+Modifier and Type
+Method and Description
+
+
+
+static http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>>
+AsyncMetaTableAccessor.getTableRegionsAndLocations(RawAsyncTable metaTable,
+   http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional tableName)
+Used to get table regions' info and server.
+
+
+
+static http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>>
+AsyncMetaTableAccessor.getTableRegionsAndLocations(RawAsyncTable metaTable,
+   http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional tableName,
+   boolean excludeOfflinedSplitParents)
+Used to get table regions' info and server.
+
+
+
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getTableStartRowForMeta(http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional tableName,
+   MetaTableAccessor.QueryType type) 
+
+
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getTableStopRowForMeta(http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional

[28/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
index 6296f15..cdf8989 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
@@ -629,41 +629,41 @@ service.
 
 
 Cell
-KeyValue.deepClone() 
+IndividualBytesFieldCell.deepClone() 
 
 
 Cell
-IndividualBytesFieldCell.deepClone() 
+NoTagsKeyValue.deepClone() 
 
 
 Cell
-CellUtil.TagRewriteCell.deepClone() 
+ExtendedCell.deepClone()
+Does a deep copy of the contents to a new memory area and 
returns it as a new cell.
+
 
 
 Cell
-CellUtil.TagRewriteByteBufferCell.deepClone() 
+NoTagsByteBufferKeyValue.deepClone() 
 
 
 Cell
-CellUtil.ValueAndTagRewriteCell.deepClone() 
+KeyValue.deepClone() 
 
 
 Cell
-CellUtil.ValueAndTagRewriteByteBufferCell.deepClone() 
+CellUtil.TagRewriteCell.deepClone() 
 
 
 Cell
-NoTagsKeyValue.deepClone() 
+CellUtil.TagRewriteByteBufferCell.deepClone() 
 
 
 Cell
-ExtendedCell.deepClone()
-Does a deep copy of the contents to a new memory area and 
returns it as a new cell.
-
+CellUtil.ValueAndTagRewriteCell.deepClone() 
 
 
 Cell
-NoTagsByteBufferKeyValue.deepClone() 
+CellUtil.ValueAndTagRewriteByteBufferCell.deepClone() 
 
 
 Cell
@@ -766,6 +766,16 @@ service.
 
 
 int
+CellComparator.compare(Cell a,
+   Cell b) 
+
+
+int
+CellComparator.RowComparator.compare(Cell a,
+   Cell b) 
+
+
+int
 KeyValue.MetaComparator.compare(Cell left,
Cell right)
 Deprecated. 
@@ -790,16 +800,6 @@ service.
  
 
 
-int
-CellComparator.compare(Cell a,
-   Cell b) 
-
-
-int
-CellComparator.RowComparator.compare(Cell a,
-   Cell b) 
-
-
 private int
 CellComparator.compare(Cell a,
Cell b,
@@ -975,37 +975,37 @@ service.
 
 
 int
-KeyValue.KVComparator.compareRows(Cell left,
-   Cell right)
-Deprecated. 
- 
-
-
-int
 CellComparator.compareRows(Cell left,
Cell right)
 Compares the rows of the left and right cell.
 
 
-
+
 int
 CellComparator.MetaCellComparator.compareRows(Cell left,
Cell right) 
 
-
+
 int
-KeyValue.KVComparator.compareTimestamps(Cell left,
- Cell right)
+KeyValue.KVComparator.compareRows(Cell left,
+   Cell right)
 Deprecated. 
  
 
-
+
 static int
 CellComparator.compareTimestamps(Cell left,
  Cell right)
 Compares cell's timestamps in DESCENDING order.
 
 
+
+int
+KeyValue.KVComparator.compareTimestamps(Cell left,
+ Cell right)
+Deprecated. 
+ 
+
 
 static int
 CellComparator.compareValue(Cell cell,
@@ -1864,11 +1864,11 @@ service.
 
 
 private Cell
-AllowPartialScanResultCache.lastCell 
+BatchScanResultCache.lastCell 
 
 
 private Cell
-BatchScanResultCache.lastCell 
+AllowPartialScanResultCache.lastCell 
 
 
 
@@ -1982,17 +1982,17 @@ service.
 
 
 
-Append
-Append.add(Cell cell)
-Add column and value to this Append operation.
-
-
-
 Put
 Put.add(Cell kv)
 Add the specified KeyValue to this Put operation.
 
 
+
+Append
+Append.add(Cell cell)
+Add column and value to this Append operation.
+
+
 
 Delete
 Delete.addDeleteMarker(Cell kv)
@@ -2083,22 +2083,22 @@ service.
 Delete.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
 
 
-Mutation
-Mutation.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map)
-Method for setting the put's familyMap
-
-
-
 Increment
 Increment.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
 
+
+Put
+Put.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
+
 
 Append
 Append.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList>

[46/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/Cell.html 
b/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
index bb3ee4d..a332e0c 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
@@ -1097,17 +1097,17 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 
-Append
-Append.add(Cell cell)
-Add column and value to this Append operation.
-
-
-
 Put
 Put.add(Cell kv)
 Add the specified KeyValue to this Put operation.
 
 
+
+Append
+Append.add(Cell cell)
+Add column and value to this Append operation.
+
+
 
 Delete
 Delete.addDeleteMarker(Cell kv)
@@ -1189,22 +1189,22 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 Increment.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
 
 
-Append
-Append.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
+Delete
+Delete.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
 
 
-Put
-Put.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
-
-
 Mutation
 Mutation.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map)
 Method for setting the put's familyMap
 
 
+
+Put
+Put.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
+
 
-Delete
-Delete.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
+Append
+Append.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
 
 
 
@@ -1222,7 +1222,17 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 Cell
-MultipleColumnPrefixFilter.getNextCellHint(Cell cell) 
+ColumnPrefixFilter.getNextCellHint(Cell cell) 
+
+
+Cell
+TimestampsFilter.getNextCellHint(Cell currentCell)
+Pick the next cell that the scanner should seek to.
+
+
+
+Cell
+MultiRowRangeFilter.getNextCellHint(Cell currentKV) 
 
 
 Cell
@@ -1237,33 +1247,31 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 FilterList.getNextCellHint(Cell currentCell) 
 
 
+Cell
+MultipleColumnPrefixFilter.getNextCellHint(Cell cell) 
+
+
 abstract Cell
 Filter.getNextCellHint(Cell currentCell)
 If the filter returns the match code SEEK_NEXT_USING_HINT, 
then it should also tell which is
  the next key it must seek to.
 
 
-
-Cell
-MultiRowRangeFilter.getNextCellHint(Cell currentKV) 
-
 
 Cell
 FuzzyRowFilter.getNextCellHint(Cell currentCell) 
 
 
 Cell
-ColumnPrefixFilter.getNextCellHint(Cell cell) 
+WhileMatchFilter.transformCell(Cell v) 
 
 
 Cell
-TimestampsFilter.getNextCellHint(Cell currentCell)
-Pick the next cell that the scanner should seek to.
-
+FilterList.transformCell(Cell c) 
 
 
 Cell
-FilterList.transformCell(Cell c) 
+SkipFilter.transformCell(Cell v) 
 
 
 abstract Cell
@@ -1273,16 +1281,8 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 Cell
-WhileMatchFilter.transformCell(Cell v) 

[34/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/coc.html
--
diff --git a/coc.html b/coc.html
index 6d61240..5e8020b 100644
--- a/coc.html
+++ b/coc.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – 
   Code of Conduct Policy
@@ -195,7 +195,7 @@
 
   
 
-
+  
   
   1.1 Documentation
   
@@ -207,7 +207,7 @@
 
   
 
-
+  
   
   0.94 Documentation
   
@@ -309,15 +309,27 @@ under the License. -->
 Code of Conduct Policy
 
 
-We expect participants in discussions on the HBase project mailing lists, IRC 
channels, and JIRA issues to abide by the Apache Software Foundation's http://apache.org/foundation/policies/conduct.html";>Code of Conduct.
+We expect participants in discussions on the HBase project mailing lists, IRC
+channels, and JIRA issues to abide by the Apache Software Foundation's
+http://apache.org/foundation/policies/conduct.html";>Code of Conduct.
 
 
 
-If you feel there had been a violation of this code, please point out your 
concerns publicly in a friendly and matter of fact manner. Nonverbal 
communication is prone to misinterpretation and misunderstanding. Everyone has 
bad days and sometimes says things they regret later. Someone else's 
communication style may clash with yours, but the difference can be amicably 
resolved. After pointing out your concerns please be generous upon receiving an 
apology.
+If you feel there has been a violation of this code, please point out your
+concerns publicly in a friendly and matter of fact manner. Nonverbal
+communication is prone to misinterpretation and misunderstanding. Everyone has
+bad days and sometimes says things they regret later. Someone else's
+communication style may clash with yours, but the difference can be amicably
+resolved. After pointing out your concerns please be generous upon receiving an
+apology.
 
 
 
-Should there be repeated instances of code of conduct violations, or if there 
is an obvious and severe violation, the HBase PMC may become involved. When 
this happens the PMC will openly discuss the matter, most likely on the 
dev@hbase mailing list, and will consider taking the following actions, in 
order, if there is a continuing problem with an individual:
+Should there be repeated instances of code of conduct violations, or if there 
is
+an obvious and severe violation, the HBase PMC may become involved. When this
+happens the PMC will openly discuss the matter, most likely on the dev@hbase
+mailing list, and will consider taking the following actions, in order, if 
there
+is a continuing problem with an individual:
 
 
 
@@ -332,7 +344,38 @@ Should there be repeated instances of code of conduct 
violations, or if there is
 
 
 
-For flagrant violations requiring a firm response the PMC may opt to skip 
early steps. No action will be taken before public discussion leading to 
consensus or a successful majority vote. 
+For flagrant violations requiring a firm response the PMC may opt to skip early
+steps. No action will be taken before public discussion leading to consensus or
+a successful majority vote.
+
+  
+  
+
+Diversity Statement
+
+
+As a project and a community, we encourage you to participate in the HBase 
project
+in whatever capacity suits you, whether it involves development, documentation,
+answering questions on mailing lists, triaging issue and patch review, managing
+releases, or any other way that you want to help. We appreciate your
+contributions and the time you dedicate to the HBase project. We strive to
+recognize the work of participants publicly. Please let us know if we can
+improve in this area.
+
+
+
+We value diversity and strive to support participation by people with all
+different backgrounds. Rich projects grow from groups with different points of
+view and different backgrounds. We welcome your suggestions about how we can
+welcome participation by people at all skill levels and with all aspects of the
+project.
+
+
+
+If you can think of something we are doing that we shouldn't, or something that
+we should do but aren't, please let us know. If you feel comfortable doing so,
+use the public mailing lists. Otherwise, reach out to a PMC member or send an
+email to mailto:priv...@hbase.apache.org";>the 
private PMC mailing list.
 
   
   
@@ -349,7 +392,7 @@ For flagrant violations requiring a firm response the PMC 
may opt to skip early
 https://www.apache.org/";>The Apache Software 
Foundation.
 All rights reserved.  
 
-  Last Published: 
2017-03-29
+  Last Published: 
2017-03-31
 
 
 

http://git-wip-us.apache.org/re

[45/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/org/apache/hadoop/hbase/class-use/TableName.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/TableName.html 
b/apidocs/org/apache/hadoop/hbase/class-use/TableName.html
index 571051a..3492a80 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/TableName.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/TableName.html
@@ -150,23 +150,29 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 static TableName
+HConstants.ENSEMBLE_TABLE_NAME
+The name of the ensemble table
+
+
+
+static TableName
 TableName.META_TABLE_NAME
 The hbase:meta table's name.
 
 
-
+
 static TableName
 TableName.NAMESPACE_TABLE_NAME
 The Namespace table's name.
 
 
-
+
 static TableName
 TableName.OLD_META_TABLE_NAME
 TableName for old .META.
 
 
-
+
 static TableName
 TableName.OLD_ROOT_TABLE_NAME
 TableName for old -ROOT- table.
@@ -289,6 +295,10 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 ClusterStatus.getLastMajorCompactionTsForTable(TableName table) 
 
 
+static boolean
+TableName.isMetaTableName(TableName tn) 
+
+
 HTableDescriptor
 HTableDescriptor.setName(TableName name)
 Deprecated. 
@@ -399,32 +409,32 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 TableName
-AsyncTableBase.getName()
-Gets the fully qualified table name instance of this 
table.
+AsyncTableRegionLocator.getName()
+Gets the fully qualified table name instance of the table 
whose region we want to locate.
 
 
 
 TableName
-RegionLocator.getName()
-Gets the fully qualified table name instance of this 
table.
+BufferedMutator.getName()
+Gets the fully qualified table name instance of the table 
that this BufferedMutator writes to.
 
 
 
 TableName
-AsyncTableRegionLocator.getName()
-Gets the fully qualified table name instance of the table 
whose region we want to locate.
+Table.getName()
+Gets the fully qualified table name instance of this 
table.
 
 
 
 TableName
-Table.getName()
+AsyncTableBase.getName()
 Gets the fully qualified table name instance of this 
table.
 
 
 
 TableName
-BufferedMutator.getName()
-Gets the fully qualified table name instance of the table 
that this BufferedMutator writes to.
+RegionLocator.getName()
+Gets the fully qualified table name instance of this 
table.
 
 
 
@@ -733,17 +743,17 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-RegionLocator
-Connection.getRegionLocator(TableName tableName)
-Retrieve a RegionLocator implementation to inspect region 
information on a table.
-
-
-
 AsyncTableRegionLocator
 AsyncConnection.getRegionLocator(TableName tableName)
 Retrieve a AsyncRegionLocator implementation to inspect 
region information on a table.
 
 
+
+RegionLocator
+Connection.getRegionLocator(TableName tableName)
+Retrieve a RegionLocator implementation to inspect region 
information on a table.
+
+
 
 default Table
 Connection.getTable(TableName tableName)
@@ -751,31 +761,31 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-default Table
-Connection.getTable(TableName tableName,
+default AsyncTable
+AsyncConnection.getTable(TableName tableName,
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ExecutorService pool)
-Retrieve a Table implementation for accessing a table.
+Retrieve an AsyncTable implementation for accessing a 
table.
 
 
 
-default AsyncTable
-AsyncConnection.getTable(TableName tableName,
+default Table
+Connection.getTable(TableName tableName,
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ExecutorService pool)
-Retrieve an AsyncTable implementation for accessing a 
table.
+Retrieve a Table implementation for accessing a table.
 
 
 
-TableBuilder
-Connection.getTableBuilder(TableName tableName,
+AsyncTableBuilder
+AsyncConnection.getTableBuilder(TableName tableName,
http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ExecutorService pool)
-Returns an TableBuilder for creating Table.
+Returns an AsyncTableBuilder for creating 
AsyncTable.
 
 
 
-AsyncTableBuilder
-AsyncConnection.getTableBuilder(TableName tableName,
+TableBuilder
+Connection.getTableBuilder(TableName tableName,
http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ExecutorService pool)
-Returns an AsyncTableBuilder for creating 
AsyncTable.
+Returns an TableBuilder for creating Table.
 
 
 
@@ -797,9 +807,21 @@ Input/OutputFormats, a tab

[01/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 2dad75445 -> 3cf263bbf


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.MemstoreSizeCostFunction.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.MemstoreSizeCostFunction.html
 
b/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.MemstoreSizeCostFunction.html
index d560ecb..eb71d85 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.MemstoreSizeCostFunction.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/balancer/StochasticLoadBalancer.MemstoreSizeCostFunction.html
@@ -128,7 +128,7 @@ var activeTableTab = "activeTableTab";
 
 
 
-static class StochasticLoadBalancer.MemstoreSizeCostFunction
+static class StochasticLoadBalancer.MemstoreSizeCostFunction
 extends StochasticLoadBalancer.CostFromRegionLoadAsRateFunction
 Compute the cost of total memstore size.  The more 
unbalanced the higher the
  computed cost will be.  This uses a rolling average of regionload.
@@ -250,7 +250,7 @@ extends 
 
 MEMSTORE_SIZE_COST_KEY
-private static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String MEMSTORE_SIZE_COST_KEY
+private static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String MEMSTORE_SIZE_COST_KEY
 
 See Also:
 Constant
 Field Values
@@ -263,7 +263,7 @@ extends 
 
 DEFAULT_MEMSTORE_SIZE_COST
-private static final float DEFAULT_MEMSTORE_SIZE_COST
+private static final float DEFAULT_MEMSTORE_SIZE_COST
 
 See Also:
 Constant
 Field Values
@@ -284,7 +284,7 @@ extends 
 
 MemstoreSizeCostFunction
-MemstoreSizeCostFunction(org.apache.hadoop.conf.Configuration conf)
+MemstoreSizeCostFunction(org.apache.hadoop.conf.Configuration conf)
 
 
 
@@ -301,7 +301,7 @@ extends 
 
 getCostFromRl
-protected double getCostFromRl(BalancerRegionLoad rl)
+protected double getCostFromRl(BalancerRegionLoad rl)
 
 Specified by:
 getCostFromRl in
 class StochasticLoadBalancer.CostFromRegionLoadFunction



[29/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/backup/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/backup/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/backup/package-tree.html
index 58132ad..8c746fa 100644
--- a/devapidocs/org/apache/hadoop/hbase/backup/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/backup/package-tree.html
@@ -166,8 +166,8 @@
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
 org.apache.hadoop.hbase.backup.BackupType
-org.apache.hadoop.hbase.backup.BackupInfo.BackupPhase
 org.apache.hadoop.hbase.backup.BackupInfo.BackupState
+org.apache.hadoop.hbase.backup.BackupInfo.BackupPhase
 org.apache.hadoop.hbase.backup.BackupRestoreConstants.BackupCommand
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/class-use/Abortable.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/Abortable.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/Abortable.html
index 75a0798..753bfca 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/Abortable.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/Abortable.html
@@ -661,13 +661,13 @@
 
 
 RpcScheduler
-SimpleRpcSchedulerFactory.create(org.apache.hadoop.conf.Configuration conf,
+FifoRpcSchedulerFactory.create(org.apache.hadoop.conf.Configuration conf,
   PriorityFunction priority,
   Abortable server) 
 
 
 RpcScheduler
-FifoRpcSchedulerFactory.create(org.apache.hadoop.conf.Configuration conf,
+SimpleRpcSchedulerFactory.create(org.apache.hadoop.conf.Configuration conf,
   PriorityFunction priority,
   Abortable server) 
 
@@ -763,16 +763,16 @@
 ReplicationQueuesArguments.abort 
 
 
-private Abortable
-ReplicationPeersZKImpl.abortable 
+protected Abortable
+ReplicationStateZKBase.abortable 
 
 
 protected Abortable
 ReplicationTableBase.abortable 
 
 
-protected Abortable
-ReplicationStateZKBase.abortable 
+private Abortable
+ReplicationPeersZKImpl.abortable 
 
 
 private Abortable



[41/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/org/apache/hadoop/hbase/util/OrderedBytes.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/util/OrderedBytes.html 
b/apidocs/org/apache/hadoop/hbase/util/OrderedBytes.html
index b36caef..29d4d74 100644
--- a/apidocs/org/apache/hadoop/hbase/util/OrderedBytes.html
+++ b/apidocs/org/apache/hadoop/hbase/util/OrderedBytes.html
@@ -887,7 +887,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 http://docs.oracle.com/javase/8/docs/api/java/lang/NullPointerException.html?is-external=true";
 title="class or interface in java.lang">NullPointerException - when 
the encoded value is NULL.
 http://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true";
 title="class or interface in java.lang">IllegalArgumentException - 
when the encoded value is not a Numeric.
 See Also:
-encodeNumeric(PositionedByteRange,
 double, Order),
+encodeNumeric(PositionedByteRange,
 double, Order), 
 http://docs.oracle.com/javase/8/docs/api/java/math/BigDecimal.html?is-external=true#doubleValue--";
 title="class or interface in 
java.math">BigDecimal.doubleValue()
 
 
@@ -909,7 +909,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 http://docs.oracle.com/javase/8/docs/api/java/lang/NullPointerException.html?is-external=true";
 title="class or interface in java.lang">NullPointerException - when 
the encoded value is NULL.
 http://docs.oracle.com/javase/8/docs/api/java/lang/IllegalArgumentException.html?is-external=true";
 title="class or interface in java.lang">IllegalArgumentException - 
when the encoded value is not a Numeric.
 See Also:
-encodeNumeric(PositionedByteRange,
 long, Order),
+encodeNumeric(PositionedByteRange,
 long, Order), 
 http://docs.oracle.com/javase/8/docs/api/java/math/BigDecimal.html?is-external=true#longValue--";
 title="class or interface in 
java.math">BigDecimal.longValue()
 
 
@@ -1122,7 +1122,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 Returns:
 the number of bytes written.
 See Also:
-encodeInt64(PositionedByteRange,
 long, Order),
+encodeInt64(PositionedByteRange,
 long, Order), 
 decodeInt8(PositionedByteRange)
 
 
@@ -1155,7 +1155,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 Returns:
 the number of bytes written.
 See Also:
-encodeInt64(PositionedByteRange,
 long, Order),
+encodeInt64(PositionedByteRange,
 long, Order), 
 decodeInt16(PositionedByteRange)
 
 
@@ -1188,7 +1188,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 Returns:
 the number of bytes written.
 See Also:
-encodeInt64(PositionedByteRange,
 long, Order),
+encodeInt64(PositionedByteRange,
 long, Order), 
 decodeInt32(PositionedByteRange)
 
 
@@ -1287,7 +1287,7 @@ extends http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?
 Returns:
 the number of bytes written.
 See Also:
-decodeFloat32(PositionedByteRange),
+decodeFloat32(PositionedByteRange),
 
 encodeFloat64(PositionedByteRange,
 double, Order)
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/org/apache/hadoop/hbase/util/class-use/ByteRange.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/util/class-use/ByteRange.html 
b/apidocs/org/apache/hadoop/hbase/util/class-use/ByteRange.html
index eb84a60..78fd371 100644
--- a/apidocs/org/apache/hadoop/hbase/util/class-use/ByteRange.html
+++ b/apidocs/org/apache/hadoop/hbase/util/class-use/ByteRange.html
@@ -257,11 +257,11 @@
 
 
 ByteRange
-SimpleByteRange.deepCopy() 
+SimpleMutableByteRange.deepCopy() 
 
 
 ByteRange
-SimpleMutableByteRange.deepCopy() 
+SimpleByteRange.deepCopy() 
 
 
 ByteRange
@@ -288,12 +288,12 @@
 
 
 ByteRange
-SimpleByteRange.put(int index,
+SimpleMutableByteRange.put(int index,
byte val) 
 
 
 ByteRange
-SimpleMutableByteRange.put(int index,
+SimpleByteRange.put(int index,
byte val) 
 
 
@@ -305,12 +305,12 @@
 
 
 ByteRange
-SimpleByteRange.put(int index,
+SimpleMutableByteRange.put(int index,
byte[] val) 
 
 
 ByteRange
-SimpleMutableByteRange.put(int index,
+SimpleByteRange.put(int index,
byte[] val) 
 
 
@@ -325,14 +325,14 @@
 
 
 ByteRange
-SimpleByteRange.put(int index,
+SimpleMutableByteRange.put(int index,
byte[] val,
int offset,
int length) 
 
 
 ByteRange
-SimpleMutableByteRange.put(int index,
+SimpleByteRange.put(int index,
byte[] val,
int offset,
int length) 
@@ -346,12 +346,12 @@
 
 
 ByteRange
-SimpleByteRange.putInt(int index,
+SimpleMutableByteRange.putInt(int index,
   int val) 
 
 
 ByteRange
-SimpleMutableByteRange.putInt(int index,
+SimpleByteRange.putInt(int index,
   int val) 
 
 
@@ -363,12 +363,12 @@
 
 
 ByteRange
-SimpleByteRange.putLong(int index,
+SimpleMutableByteRange.putLong(int index,
long val) 
 
 
 ByteRa

[05/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockType.html 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockType.html
index 18a3b37..0606faf 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockType.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockType.html
@@ -128,11 +128,11 @@
 
 
 BlockType
-HFileBlockDefaultEncodingContext.getBlockType() 
+HFileBlockEncodingContext.getBlockType() 
 
 
 BlockType
-HFileBlockEncodingContext.getBlockType() 
+HFileBlockDefaultEncodingContext.getBlockType() 
 
 
 
@@ -145,14 +145,14 @@
 
 
 void
-HFileBlockDefaultEncodingContext.postEncoding(BlockType blockType) 
-
-
-void
 HFileBlockEncodingContext.postEncoding(BlockType blockType)
 Do any action that needs to be performed after the 
encoding.
 
 
+
+void
+HFileBlockDefaultEncodingContext.postEncoding(BlockType blockType) 
+
 
 
 
@@ -194,21 +194,21 @@
 
 
 BlockType
-HFileBlock.getBlockType() 
+CachedBlock.getBlockType() 
 
 
 BlockType
-HFileBlock.BlockWritable.getBlockType()
-The type of block this data should use.
-
+HFileBlock.getBlockType() 
 
 
 BlockType
-BlockCacheKey.getBlockType() 
+HFileBlock.BlockWritable.getBlockType()
+The type of block this data should use.
+
 
 
 BlockType
-CachedBlock.getBlockType() 
+BlockCacheKey.getBlockType() 
 
 
 BlockType
@@ -216,17 +216,17 @@
 
 
 BlockType
-HFileBlockIndex.BlockIndexWriter.getInlineBlockType() 
+InlineBlockWriter.getInlineBlockType()
+The type of blocks this block writer produces.
+
 
 
 BlockType
-CompoundBloomFilterWriter.getInlineBlockType() 
+HFileBlockIndex.BlockIndexWriter.getInlineBlockType() 
 
 
 BlockType
-InlineBlockWriter.getInlineBlockType()
-The type of blocks this block writer produces.
-
+CompoundBloomFilterWriter.getInlineBlockType() 
 
 
 static BlockType
@@ -284,26 +284,26 @@ the order they are declared.
 
 
 void
-NoOpDataBlockEncoder.endBlockEncoding(HFileBlockEncodingContext encodingCtx,
+HFileDataBlockEncoderImpl.endBlockEncoding(HFileBlockEncodingContext encodingCtx,
 http://docs.oracle.com/javase/8/docs/api/java/io/DataOutputStream.html?is-external=true";
 title="class or interface in java.io">DataOutputStream out,
 byte[] uncompressedBytesWithHeader,
 BlockType blockType) 
 
 
 void
-HFileDataBlockEncoder.endBlockEncoding(HFileBlockEncodingContext encodingCtx,
+NoOpDataBlockEncoder.endBlockEncoding(HFileBlockEncodingContext encodingCtx,
 http://docs.oracle.com/javase/8/docs/api/java/io/DataOutputStream.html?is-external=true";
 title="class or interface in java.io">DataOutputStream out,
 byte[] uncompressedBytesWithHeader,
-BlockType blockType)
-Ends encoding for a block of KeyValues.
-
+BlockType blockType) 
 
 
 void
-HFileDataBlockEncoderImpl.endBlockEncoding(HFileBlockEncodingContext encodingCtx,
+HFileDataBlockEncoder.endBlockEncoding(HFileBlockEncodingContext encodingCtx,
 http://docs.oracle.com/javase/8/docs/api/java/io/DataOutputStream.html?is-external=true";
 title="class or interface in java.io">DataOutputStream out,
 byte[] uncompressedBytesWithHeader,
-BlockType blockType) 
+BlockType blockType)
+Ends encoding for a block of KeyValues.
+
 
 
 private http://docs.oracle.com/javase/8/docs/api/java/io/DataInput.html?is-external=true";
 title="class or interface in java.io">DataInput
@@ -355,27 +355,27 @@ the order they are declared.
 
 
 HFileBlock
-HFileReaderImpl.readBlock(long dataBlockOffset,
+HFile.CachingBlockReader.readBlock(long offset,
  long onDiskBlockSize,
  boolean cacheBlock,
  boolean pread,
  boolean isCompaction,
  boolean updateCacheMetrics,
  BlockType expectedBlockType,
- DataBlockEncoding expectedDataBlockEncoding) 
+ DataBlockEncoding expectedDataBlockEncoding)
+Read in a file block.
+
 
 
 HFileBlock
-HFile.CachingBlockReader.readBlock(long offset,
+HFileReaderImpl.readBlock(long dataBlockOffset,
  long onDiskBlockSize,
  boolean cacheBlock,
  boolean pread,
  boolean isCompaction,
  boolean updateCacheMetrics,
  BlockType expectedBlockType,
- DataBlockEncoding expectedDataBlockEncoding)
-Read in a file block.
-
+ DataBlockEncoding expectedDataBlockEncoding) 
 
 
 private void

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CacheConfig.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CacheConfig.html 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CacheConfig.ht

[24/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
index ec78c6a..79193fb 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
@@ -178,17 +178,26 @@ service.
 
 
 
+private static HRegionLocation
+AsyncMetaTableAccessor.getRegionLocation(Result r,
+ HRegionInfo regionInfo,
+ int replicaId)
+Returns the HRegionLocation parsed from the given meta row 
Result
+ for the given regionInfo and replicaId.
+
+
+
 HRegionLocation
 RegionLocations.getRegionLocationByRegionName(byte[] regionName)
 Returns the region location from the list for matching 
regionName, which can
  be regionName or encodedRegionName
 
 
-
+
 HRegionLocation[]
 RegionLocations.getRegionLocations() 
 
-
+
 private HRegionLocation
 RegionLocations.selectRegionLocation(HRegionLocation oldLocation,
 HRegionLocation location,
@@ -273,16 +282,16 @@ service.
 HTableMultiplexer.FlushWorker.addr 
 
 
-HRegionLocation
-AsyncBatchRpcRetryingCaller.RegionRequest.loc 
+private HRegionLocation
+AsyncScanSingleRegionRpcRetryingCaller.loc 
 
 
 HRegionLocation
-AsyncClientScanner.OpenScannerResponse.loc 
+AsyncBatchRpcRetryingCaller.RegionRequest.loc 
 
 
-private HRegionLocation
-AsyncScanSingleRegionRpcRetryingCaller.loc 
+HRegionLocation
+AsyncClientScanner.OpenScannerResponse.loc 
 
 
 private HRegionLocation
@@ -378,18 +387,18 @@ service.
 
 
 HRegionLocation
-ConnectionImplementation.getRegionLocation(TableName tableName,
- byte[] row,
- boolean reload) 
-
-
-HRegionLocation
 ClusterConnection.getRegionLocation(TableName tableName,
  byte[] row,
  boolean reload)
 Find region location hosting passed row
 
 
+
+HRegionLocation
+ConnectionImplementation.getRegionLocation(TableName tableName,
+ byte[] row,
+ boolean reload) 
+
 
 private HRegionLocation
 AsyncRequestFutureImpl.getReplicaLocationOrFail(Action action) 
@@ -403,20 +412,15 @@ service.
 
 
 HRegionLocation
-ConnectionImplementation.locateRegion(byte[] regionName) 
-
-
-HRegionLocation
 ClusterConnection.locateRegion(byte[] regionName)
 Gets the location of the region of regionName.
 
 
-
+
 HRegionLocation
-ConnectionImplementation.locateRegion(TableName tableName,
-byte[] row) 
+ConnectionImplementation.locateRegion(byte[] regionName) 
 
-
+
 HRegionLocation
 ClusterConnection.locateRegion(TableName tableName,
 byte[] row)
@@ -424,6 +428,11 @@ service.
  lives in.
 
 
+
+HRegionLocation
+ConnectionImplementation.locateRegion(TableName tableName,
+byte[] row) 
+
 
 private HRegionLocation
 AsyncNonMetaRegionLocator.locateRowBeforeInCache(AsyncNonMetaRegionLocator.TableCache tableCache,
@@ -438,17 +447,17 @@ service.
 
 
 HRegionLocation
-ConnectionImplementation.relocateRegion(TableName tableName,
-  byte[] row) 
-
-
-HRegionLocation
 ClusterConnection.relocateRegion(TableName tableName,
   byte[] row)
 Find the location of the region of tableName that 
row
  lives in, ignoring any value that might be in the cache.
 
 
+
+HRegionLocation
+ConnectionImplementation.relocateRegion(TableName tableName,
+  byte[] row) 
+
 
 
 
@@ -530,21 +539,15 @@ service.
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-ConnectionImplementation.locateRegions(TableName tableName) 
-
-
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 ClusterConnection.locateRegions(TableName tableName)
 Gets the locations of all regions in the specified table, 
tableName.
 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-ConnectionImplementation.locateRegions(TableName tableName,
- boolean useCache,
- boolean offlined) 
+ConnectionImplementation.locateRegions(TableName tableName) 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 ClusterConnection.locateRegions(TableName tableName,
  boolean useCache,
@@ -552,6 +555,12 @@ service.
 Gets the locations of all regions in the specified table, 
tableName.
 
 
+
+http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+ConnectionImplementation.locateRegions(TableName ta

[47/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/index-all.html
--
diff --git a/apidocs/index-all.html b/apidocs/index-all.html
index 7e8bd98..3a67824 100644
--- a/apidocs/index-all.html
+++ b/apidocs/index-all.html
@@ -8518,6 +8518,8 @@
 
 Checks if the table is a hbase:meta table
 
+isMetaTableName(TableName)
 - Static method in class org.apache.hadoop.hbase.TableName
+ 
 isMinColumnInclusive()
 - Method in class org.apache.hadoop.hbase.filter.ColumnRangeFilter
  
 isMobEnabled()
 - Method in class org.apache.hadoop.hbase.HColumnDescriptor
@@ -8805,14 +8807,25 @@
 Use this api to check if the table has been created with 
the specified number of splitkeys
  which was used while creating the given table.
 
+isTableAvailable(TableName)
 - Method in interface org.apache.hadoop.hbase.client.AsyncAdmin
+ 
+isTableAvailable(TableName,
 byte[][]) - Method in interface org.apache.hadoop.hbase.client.AsyncAdmin
+
+Use this api to check if the table has been created with 
the specified number of splitkeys
+ which was used while creating the given table.
+
 isTableAvailable(String)
 - Method in class org.apache.hadoop.hbase.rest.client.RemoteAdmin
  
 isTableAvailable(byte[])
 - Method in class org.apache.hadoop.hbase.rest.client.RemoteAdmin
  
 isTableDisabled(TableName)
 - Method in interface org.apache.hadoop.hbase.client.Admin
  
+isTableDisabled(TableName)
 - Method in interface org.apache.hadoop.hbase.client.AsyncAdmin
+ 
 isTableEnabled(TableName)
 - Method in interface org.apache.hadoop.hbase.client.Admin
  
+isTableEnabled(TableName)
 - Method in interface org.apache.hadoop.hbase.client.AsyncAdmin
+ 
 isTerminated()
 - Method in class org.apache.hadoop.hbase.ChoreService
  
 isText(PositionedByteRange)
 - Static method in class org.apache.hadoop.hbase.util.OrderedBytes
@@ -12783,7 +12796,7 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
  
 ServerTooBusyException - Exception in org.apache.hadoop.hbase.ipc
 
-Throw this in rpc call if there are too many pending 
requests for one region server
+Throw this in RPC call if there are too many pending 
requests for one region server
 
 ServerTooBusyException(InetSocketAddress,
 long) - Constructor for exception org.apache.hadoop.hbase.ipc.ServerTooBusyException
  

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/org/apache/hadoop/hbase/ChoreService.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/ChoreService.html 
b/apidocs/org/apache/hadoop/hbase/ChoreService.html
index db6705f..e5dfd33 100644
--- a/apidocs/org/apache/hadoop/hbase/ChoreService.html
+++ b/apidocs/org/apache/hadoop/hbase/ChoreService.html
@@ -259,7 +259,7 @@ public Parameters:
 coreThreadPoolPrefix - Prefix that will be applied to the 
Thread name of all threads
   spawned by this service
-corePoolSize - The initial size to set the core pool of the 
ScheduledThreadPoolExecutor
+corePoolSize - The initial size to set the core pool of the 
ScheduledThreadPoolExecutor 
   to during initialization. The default size is 1, but specifying a 
larger size may be
   beneficial if you know that 1 thread will not be enough.
 jitter - Should chore service add some jitter for all of the 
scheduled chores. When set

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/ClusterStatus.html 
b/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
index 1e69a99..e874825 100644
--- a/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
+++ b/apidocs/org/apache/hadoop/hbase/ClusterStatus.html
@@ -120,7 +120,7 @@ var activeTableTab = "activeTableTab";
 
 @InterfaceAudience.Public
  @InterfaceStability.Evolving
-public class ClusterStatus
+public class ClusterStatus
 extends org.apache.hadoop.io.VersionedWritable
 Status information on the HBase cluster.
  
@@ -316,7 +316,7 @@ extends org.apache.hadoop.io.VersionedWritable
 
 
 ClusterStatus
-public ClusterStatus(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hbaseVersion,
+public ClusterStatus(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String hbaseVersion,
  http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String clusterid,
  http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">Map servers,
  http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title=

[25/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
index 78cb2c4..0f0a1d8 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
@@ -367,17 +367,25 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getHRegionInfo(Result r,
+  byte[] qualifier)
+Returns the HRegionInfo object from the column HConstants.CATALOG_FAMILY
 and
+ qualifier of the catalog table result.
+
+
+
 (package private) static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 MetaTableAccessor.getListOfHRegionInfos(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List> pairs) 
 
-
+
 static PairOfSameType
 MetaTableAccessor.getMergeRegions(Result data)
 Returns the merge regions by reading the corresponding 
columns of the catalog table
  Result.
 
 
-
+
 static Pair
 MetaTableAccessor.getRegion(Connection connection,
  byte[] regionName)
@@ -386,38 +394,38 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture>
 AsyncMetaTableAccessor.getRegion(RawAsyncTable metaTable,
  byte[] regionName) 
 
-
+
 static Pair
 MetaTableAccessor.getRegionsFromMergeQualifier(Connection connection,
 byte[] regionName)
 Get regions from the merge qualifier of the specified 
merged region
 
 
-
+
 static Pair
 MetaTableAccessor.getRegionsFromMergeQualifier(Connection connection,
 byte[] regionName)
 Get regions from the merge qualifier of the specified 
merged region
 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMap
 MetaTableAccessor.getServerUserRegions(Connection connection,
 ServerName serverName) 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 MetaTableAccessor.getTableRegions(Connection connection,
TableName tableName)
 Gets all of the regions of the specified table.
 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 MetaTableAccessor.getTableRegions(Connection connection,
TableName tableName,
@@ -425,14 +433,14 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 Gets all of the regions of the specified table.
 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List>
 MetaTableAccessor.getTableRegionsAndLocations(Connection connection,
TableName tableName)
 Do not use this method to get meta table regions, use 
methods in MetaTableLocator instead.
 
 
-
+
 static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List>
 MetaTableAccessor.getTableRegionsAndLocations(Connection connection,
TableName tableName,
@@ -440,7 +448,22 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 Do not use this method to get meta table regions, use 
methods in MetaTableLocator instead.
 
 
+
+static http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>>
+AsyncMetaTableAccessor.getTableRegionsAndLocations(RawAsyncTable metaTable,
+   http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional tableName)
+Used to get ta

[03/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/ipc/class-use/ConnectionId.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/ConnectionId.html 
b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/ConnectionId.html
index 48270e1..46db832 100644
--- a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/ConnectionId.html
+++ b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/ConnectionId.html
@@ -144,21 +144,21 @@
 
 
 
+protected NettyRpcConnection
+NettyRpcClient.createConnection(ConnectionId remoteId) 
+
+
 protected abstract T
 AbstractRpcClient.createConnection(ConnectionId remoteId)
 Not connected.
 
 
-
+
 protected BlockingRpcConnection
 BlockingRpcClient.createConnection(ConnectionId remoteId)
 Creates a connection.
 
 
-
-protected NettyRpcConnection
-NettyRpcClient.createConnection(ConnectionId remoteId) 
-
 
 private T
 AbstractRpcClient.getConnection(ConnectionId remoteId)

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/ipc/class-use/CoprocessorRpcChannel.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/CoprocessorRpcChannel.html 
b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/CoprocessorRpcChannel.html
index 61be903..acd2dcc 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/CoprocessorRpcChannel.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/CoprocessorRpcChannel.html
@@ -134,15 +134,15 @@
 
 
 CoprocessorRpcChannel
-HBaseAdmin.coprocessorService() 
-
-
-CoprocessorRpcChannel
 Admin.coprocessorService()
 Creates and returns a RpcChannel instance 
connected to the active
  master.
 
 
+
+CoprocessorRpcChannel
+HBaseAdmin.coprocessorService() 
+
 
 CoprocessorRpcChannel
 HTable.coprocessorService(byte[] row)
@@ -163,15 +163,15 @@
 
 
 CoprocessorRpcChannel
-HBaseAdmin.coprocessorService(ServerName serverName) 
-
-
-CoprocessorRpcChannel
 Admin.coprocessorService(ServerName sn)
 Creates and returns a RpcChannel instance
  connected to the passed region server.
 
 
+
+CoprocessorRpcChannel
+HBaseAdmin.coprocessorService(ServerName serverName) 
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/ipc/class-use/HBaseRpcController.CancellationCallback.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/HBaseRpcController.CancellationCallback.html
 
b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/HBaseRpcController.CancellationCallback.html
index ddd80f8..c4d4950 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/HBaseRpcController.CancellationCallback.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/HBaseRpcController.CancellationCallback.html
@@ -106,19 +106,19 @@
 
 
 void
+DelegatingHBaseRpcController.notifyOnCancel(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcCallbackObject> callback,
+  HBaseRpcController.CancellationCallback action) 
+
+
+void
 HBaseRpcController.notifyOnCancel(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcCallbackObject> callback,
   HBaseRpcController.CancellationCallback action)
 If not cancelled, add the callback to cancellation callback 
list.
 
 
-
-void
-HBaseRpcControllerImpl.notifyOnCancel(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcCallbackObject> callback,
-  HBaseRpcController.CancellationCallback action) 
-
 
 void
-DelegatingHBaseRpcController.notifyOnCancel(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcCallbackObject> callback,
+HBaseRpcControllerImpl.notifyOnCancel(org.apache.hadoop.hbase.shaded.com.google.protobuf.RpcCallbackObject> callback,
   HBaseRpcController.CancellationCallback action) 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/ipc/class-use/HBaseRpcController.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/HBaseRpcController.html 
b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/HBaseRpcController.html
index 7a9e8ad..0868c37 100644
--- a/devapido

[36/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/checkstyle-aggregate.html
--
diff --git a/checkstyle-aggregate.html b/checkstyle-aggregate.html
index 26f9443..3a5556d 100644
--- a/checkstyle-aggregate.html
+++ b/checkstyle-aggregate.html
@@ -7,7 +7,7 @@
   
 
 
-
+
 
 Apache HBase – Checkstyle Results
 
@@ -193,7 +193,7 @@
 
   
 
-
+  
   
   1.1 Documentation
   
@@ -205,7 +205,7 @@
 
   
 
-
+  
   
   0.94 Documentation
   
@@ -301,7 +301,7 @@
 2145
 0
 0
-14147
+14177
 
 Files
 
@@ -316,2060 +316,2060 @@
 0
 1
 
-org/apache/hadoop/hbase/AsyncMetaTableAccessor.java
+maven-archiver/pom.properties
 0
 0
-5
+1
 
+org/apache/hadoop/hbase/AsyncMetaTableAccessor.java
+0
+0
+43
+
 org/apache/hadoop/hbase/AuthUtil.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/BaseConfigurable.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/ByteBufferKeyOnlyKeyValue.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/ByteBufferKeyValue.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/Cell.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/CellComparator.java
 0
 0
 30
-
+
 org/apache/hadoop/hbase/CellScanner.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/CellUtil.java
 0
 0
 98
-
+
 org/apache/hadoop/hbase/ChoreService.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/ClusterId.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/ClusterStatus.java
 0
 0
-13
-
+2
+
 org/apache/hadoop/hbase/CompatibilityFactory.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/CompatibilitySingletonFactory.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/CompoundConfiguration.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/CoordinatedStateManagerFactory.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/CoprocessorEnvironment.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/DoNotRetryIOException.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/DroppedSnapshotException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/ExtendedCell.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/HBaseConfiguration.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/HColumnDescriptor.java
 0
 0
 27
-
+
 org/apache/hadoop/hbase/HConstants.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/HRegionInfo.java
 0
 0
 58
-
+
 org/apache/hadoop/hbase/HRegionLocation.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/HTableDescriptor.java
 0
 0
 46
-
+
 org/apache/hadoop/hbase/HealthChecker.java
 0
 0
 17
-
+
 org/apache/hadoop/hbase/IndividualBytesFieldCell.java
 0
 0
 11
-
+
 org/apache/hadoop/hbase/JMXListener.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/JitterScheduledThreadPoolExecutorImpl.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/KeyValue.java
 0
 0
 135
-
+
 org/apache/hadoop/hbase/KeyValueTestUtil.java
 0
 0
 9
-
+
 org/apache/hadoop/hbase/KeyValueUtil.java
 0
 0
 30
-
+
 org/apache/hadoop/hbase/LocalHBaseCluster.java
 0
 0
 24
-
+
 org/apache/hadoop/hbase/MetaMutationAnnotation.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/MetaTableAccessor.java
 0
 0
 118
-
+
 org/apache/hadoop/hbase/NamespaceDescriptor.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/NotAllMetaRegionsOnlineException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/RegionLoad.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/RegionLocations.java
 0
 0
 10
-
+
 org/apache/hadoop/hbase/RegionStateListener.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/ScheduledChore.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/ServerLoad.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/ServerName.java
 0
 0
 27
-
+
 org/apache/hadoop/hbase/SettableSequenceId.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/SettableTimestamp.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/SplitLogCounters.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/SplitLogTask.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/TableDescriptors.java
 0
 0
 8
-
+
 org/apache/hadoop/hbase/TableInfoMissingException.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/TableName.java
 0
 0
 20
-
+
 org/apache/hadoop/hbase/TagType.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/TagUtil.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/ZKNamespaceManager.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/ZNodeClearer.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/backup/BackupCopyJob.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/backup/BackupHFileCleaner.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/backup/BackupRestoreConstants.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/backup/BackupTableInfo.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/backup/FailedArchiveException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/backup/HBackupFileSystem.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/backup/HFileArchiver.java
 0
 0
 21
-
+
 org/apache/hadoop/hbase/backup/LogUtils.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/backup/RestoreDriver.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/backup/RestoreJob.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/bac

[33/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/constant-values.html
--
diff --git a/devapidocs/constant-values.html b/devapidocs/constant-values.html
index 92ae489..c90b20e 100644
--- a/devapidocs/constant-values.html
+++ b/devapidocs/constant-values.html
@@ -83,6 +83,25 @@
 
 
 
+org.apache.hadoop.hbase.AsyncMetaTableAccessor 
+
+Modifier and Type
+Constant Field
+Value
+
+
+
+
+
+private static final char
+META_REPLICA_ID_DELIMITER
+95
+
+
+
+
+
+
 org.apache.hadoop.hbase.AuthUtil 
 
 Modifier and Type
@@ -152,7 +171,7 @@
 
 private static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 THREAD_NAME_SUFFIX
-"_ChoreService_"
+"_Chore_"
 
 
 
@@ -1397,1336 +1416,1329 @@
 "hbase.regionserver.wal.encryption"
 
 
-
-
-public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
-ENSEMBLE_TABLE_NAME
-"hbase:ensemble"
-
-
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 FILE_SYSTEM_VERSION
 "8"
 
-
+
 
 
 public static final int
 FOREVER
 2147483647
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_BALANCER_MAX_BALANCING
 "hbase.balancer.max.balancing"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_BALANCER_PERIOD
 "hbase.balancer.period"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CANARY_READ_RAW_SCAN_KEY
 "hbase.canary.read.raw.enabled"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CANARY_WRITE_DATA_TTL_KEY
 "hbase.canary.write.data.ttl"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CANARY_WRITE_PERSERVER_REGIONS_LOWERLIMIT_KEY
 "hbase.canary.write.perserver.regions.lowerLimit"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CANARY_WRITE_PERSERVER_REGIONS_UPPERLIMIT_KEY
 "hbase.canary.write.perserver.regions.upperLimit"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CANARY_WRITE_TABLE_CHECK_PERIOD_KEY
 "hbase.canary.write.table.check.period"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CANARY_WRITE_VALUE_SIZE_KEY
 "hbase.canary.write.value.size"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CHECKSUM_VERIFICATION
 "hbase.regionserver.checksum.verify"
 
-
+
 
 
 public static final boolean
 HBASE_CLIENT_ENABLE_FAST_FAIL_MODE_DEFAULT
 false
 
-
+
 
 
 public static final long
 HBASE_CLIENT_FAST_FAIL_CLEANUP_DURATION_MS_DEFAULT
 60L
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CLIENT_FAST_FAIL_CLEANUP_MS_DURATION_MS
 "hbase.client.fast.fail.cleanup.duration"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CLIENT_FAST_FAIL_INTERCEPTOR_IMPL
 "hbase.client.fast.fail.interceptor.impl"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CLIENT_FAST_FAIL_MODE_ENABLED
 "hbase.client.fast.fail.mode.enabled"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CLIENT_FAST_FAIL_THREASHOLD_MS
 "hbase.client.fastfail.threshold"
 
-
+
 
 
 public static final long
 HBASE_CLIENT_FAST_FAIL_THREASHOLD_MS_DEFAULT
 6L
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 HBASE_CLIENT_INSTANCE_ID
 "hbase.client.instance.id"
 
-
+
 
 
 public static final http://docs.oracle.com/javase/8/docs/api/java/lang/Stri

[27/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/class-use/CellComparator.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/CellComparator.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/CellComparator.html
index 4e6d75d..7537997 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/CellComparator.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/CellComparator.html
@@ -263,29 +263,29 @@
 
 
 DataBlockEncoder.EncodedSeeker
-CopyKeyDataBlockEncoder.createSeeker(CellComparator comparator,
-HFileBlockDecodingContext decodingCtx) 
+DataBlockEncoder.createSeeker(CellComparator comparator,
+HFileBlockDecodingContext decodingCtx)
+Create a HFileBlock seeker which find KeyValues within a 
block.
+
 
 
 DataBlockEncoder.EncodedSeeker
-FastDiffDeltaEncoder.createSeeker(CellComparator comparator,
+RowIndexCodecV1.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 
 DataBlockEncoder.EncodedSeeker
-DataBlockEncoder.createSeeker(CellComparator comparator,
-HFileBlockDecodingContext decodingCtx)
-Create a HFileBlock seeker which find KeyValues within a 
block.
-
+CopyKeyDataBlockEncoder.createSeeker(CellComparator comparator,
+HFileBlockDecodingContext decodingCtx) 
 
 
 DataBlockEncoder.EncodedSeeker
-RowIndexCodecV1.createSeeker(CellComparator comparator,
+DiffKeyDeltaEncoder.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 
 DataBlockEncoder.EncodedSeeker
-DiffKeyDeltaEncoder.createSeeker(CellComparator comparator,
+FastDiffDeltaEncoder.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 
@@ -328,32 +328,32 @@
 
 
 
-private CellComparator
-HFileBlockIndex.CellBasedKeyBlockIndexReader.comparator
-Needed doing lookup on blocks.
+protected CellComparator
+HFileWriterImpl.comparator
+Key comparator.
 
 
 
 protected CellComparator
-CompoundBloomFilterBase.comparator
-Comparator used to compare Bloom filter keys
-
+HFile.WriterFactory.comparator 
 
 
 protected CellComparator
-HFileWriterImpl.comparator
-Key comparator.
+CompoundBloomFilterBase.comparator
+Comparator used to compare Bloom filter keys
 
 
 
 private CellComparator
-HFileReaderImpl.comparator
-Key comparator
+HFileBlockIndex.CellBasedKeyBlockIndexReader.comparator
+Needed doing lookup on blocks.
 
 
 
-protected CellComparator
-HFile.WriterFactory.comparator 
+private CellComparator
+HFileReaderImpl.comparator
+Key comparator
+
 
 
 
@@ -374,11 +374,11 @@
 
 
 CellComparator
-HFileReaderImpl.getComparator() 
+HFile.Reader.getComparator() 
 
 
 CellComparator
-HFile.Reader.getComparator() 
+HFileReaderImpl.getComparator() 
 
 
 
@@ -531,27 +531,27 @@
 
 
 protected CellComparator
-StripeStoreFlusher.StripeFlushRequest.comparator 
+StripeMultiFileWriter.comparator 
 
 
-private CellComparator
-ScanInfo.comparator 
+protected CellComparator
+StripeStoreFlusher.StripeFlushRequest.comparator 
 
 
-protected CellComparator
-StripeMultiFileWriter.comparator 
+private CellComparator
+Segment.comparator 
 
 
-protected CellComparator
-HRegion.RegionScannerImpl.comparator 
+private CellComparator
+ScanInfo.comparator 
 
 
 private CellComparator
 StoreFileWriter.Builder.comparator 
 
 
-private CellComparator
-Segment.comparator 
+protected CellComparator
+HRegion.RegionScannerImpl.comparator 
 
 
 private CellComparator
@@ -562,13 +562,13 @@
 HStore.comparator 
 
 
-private CellComparator
-DefaultStoreFileManager.kvComparator 
-
-
 protected CellComparator
 KeyValueHeap.KVScannerComparator.kvComparator 
 
+
+private CellComparator
+DefaultStoreFileManager.kvComparator 
+
 
 
 
@@ -590,19 +590,21 @@
 
 
 CellComparator
-KeyValueHeap.KVScannerComparator.getComparator() 
+StoreFileReader.getComparator() 
 
 
-CellComparator
-ScanInfo.getComparator() 
+protected CellComparator
+Segment.getComparator()
+Returns the Cell comparator used by this segment
+
 
 
 CellComparator
-StoreFileReader.getComparator() 
+ScanInfo.getComparator() 
 
 
-(package private) CellComparator
-StoreFileScanner.getComparator() 
+CellComparator
+KeyValueHeap.KVScannerComparator.getComparator() 
 
 
 CellComparator
@@ -610,18 +612,16 @@
 
 
 protected CellComparator
-Segment.getComparator()
-Returns the Cell comparator used by this segment
-
-
-
-protected CellComparator
 AbstractMemStore.getComparator() 
 
-
+
 CellComparator
 HStore.getComparator() 
 
+
+(package private) CellComparator
+StoreFileScanner.getComparator() 
+
 
 
 
@@ -654,12 +654,6 @@
 
 
 
-protected void
-StripeStoreEngine.createComponents(org.apache.hadoop.conf.Configuration conf,
-Store store,
-CellComparator comparator) 
-
-
 protected abstract void
 StoreEngine.createComponents(org.apache.hadoop.conf.Configuration conf,
 Store store,
@@ -667,6 +661,1

[18/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/class-use/Tag.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/Tag.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/Tag.html
index 98baa6b..e4d5620 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/Tag.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/Tag.html
@@ -150,15 +150,15 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 KeyValue.EMPTY_ARRAY_LIST 
 
 
-private static http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator
-CellUtil.EMPTY_TAGS_ITR 
-
-
 (package private) static http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator
 TagUtil.EMPTY_TAGS_ITR
 Iterator returned when no Tags.
 
 
+
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator
+CellUtil.EMPTY_TAGS_ITR 
+
 
 
 
@@ -590,14 +590,14 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-DefaultVisibilityExpressionResolver.createVisibilityExpTags(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String visExpression) 
-
-
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 VisibilityExpressionResolver.createVisibilityExpTags(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String visExpression)
 Convert visibility expression into tags to be 
serialized.
 
 
+
+http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+DefaultVisibilityExpressionResolver.createVisibilityExpTags(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String visExpression) 
+
 
 
 
@@ -758,18 +758,18 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-DefaultVisibilityLabelServiceImpl.createVisibilityExpTags(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String visExpression,
-   boolean withSerializationFormat,
-   boolean checkAuths) 
-
-
-http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 VisibilityLabelService.createVisibilityExpTags(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String visExpression,
boolean withSerializationFormat,
boolean checkAuths)
 Creates tags corresponding to given visibility 
expression.
 
 
+
+http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+DefaultVisibilityLabelServiceImpl.createVisibilityExpTags(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String visExpression,
+   boolean withSerializationFormat,
+   boolean checkAuths) 
+
 
 static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 VisibilityUtils.createVisibilityExpTags(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String visExpression,
@@ -814,11 +814,6 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 byte[]
-DefaultVisibilityLabelServiceImpl.encodeVisibilityForReplication(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List tags,
-  http://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true";
 title="class or interface in 
java.lang">Byte serializationFormat) 
-
-
-byte[]
 VisibilityLabelService.encodeVisibilityForReplication(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List visTags,
   http://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true";
 ti

[16/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/client/class-use/Delete.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Delete.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Delete.html
index 57fdf9e..bb22d15 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Delete.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Delete.html
@@ -383,18 +383,19 @@ service.
 
 
 
-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">CompletableFutureBoolean>
-AsyncTableBase.checkAndDelete(byte[] row,
+boolean
+HTable.checkAndDelete(byte[] row,
   byte[] family,
   byte[] qualifier,
   byte[] value,
   Delete delete)
-Atomically checks if a row/family/qualifier value equals to 
the expected value.
+Atomically checks if a row/family/qualifier value matches 
the expected
+ value.
 
 
 
 boolean
-HTable.checkAndDelete(byte[] row,
+Table.checkAndDelete(byte[] row,
   byte[] family,
   byte[] qualifier,
   byte[] value,
@@ -404,14 +405,13 @@ service.
 
 
 
-boolean
-Table.checkAndDelete(byte[] row,
+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">CompletableFutureBoolean>
+AsyncTableBase.checkAndDelete(byte[] row,
   byte[] family,
   byte[] qualifier,
   byte[] value,
   Delete delete)
-Atomically checks if a row/family/qualifier value matches 
the expected
- value.
+Atomically checks if a row/family/qualifier value equals to 
the expected value.
 
 
 
@@ -432,19 +432,20 @@ service.
   Delete delete) 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureBoolean>
-AsyncTableBase.checkAndDelete(byte[] row,
+boolean
+HTable.checkAndDelete(byte[] row,
   byte[] family,
   byte[] qualifier,
   CompareFilter.CompareOp compareOp,
   byte[] value,
   Delete delete)
-Atomically checks if a row/family/qualifier value matches 
the expected value.
+Atomically checks if a row/family/qualifier value matches 
the expected
+ value.
 
 
 
 boolean
-HTable.checkAndDelete(byte[] row,
+Table.checkAndDelete(byte[] row,
   byte[] family,
   byte[] qualifier,
   CompareFilter.CompareOp compareOp,
@@ -464,15 +465,14 @@ service.
   Delete delete) 
 
 
-boolean
-Table.checkAndDelete(byte[] 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">CompletableFutureBoolean>
+AsyncTableBase.checkAndDelete(byte[] row,
   byte[] family,
   byte[] qualifier,
   CompareFilter.CompareOp compareOp,
   byte[] value,
   Delete delete)
-Atomically checks if a row/family/qualifier value matches 
the expected
- value.
+Atomically checks if a row/family/qualifier value matches 
the expected value.
 
 
 
@@ -489,14 +489,14 @@ service.
 RawAsyncTableImpl.delete(Delete delete) 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-AsyncTableBase.delete(Delete delete)
+void
+HTable.delete(Delete delete)
 Deletes the specified cells/row.
 
 
 
 void
-HTable.delete(Delete delete)
+Table.delete(Delete delete)
 Deletes the specified cells/row.
 
 
@@ -505,8 +505,8 @@ service.
 AsyncTableImpl.delete(Delete delete) 
 
 
-void
-Table.delete(Delete delete)
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
+AsyncTableBase.delete(Delete delete)
 Deletes the speci

[06/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockEncodingContext.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockEncodingContext.html
 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockEncodingContext.html
index b4305d9..bae8c3c 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockEncodingContext.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/HFileBlockEncodingContext.html
@@ -189,18 +189,18 @@
 
 
 HFileBlockEncodingContext
-AbstractDataBlockEncoder.newDataBlockEncodingContext(DataBlockEncoding encoding,
-   byte[] header,
-   HFileContext meta) 
-
-
-HFileBlockEncodingContext
 DataBlockEncoder.newDataBlockEncodingContext(DataBlockEncoding encoding,
byte[] headerBytes,
HFileContext meta)
 Creates a encoder specific encoding context
 
 
+
+HFileBlockEncodingContext
+AbstractDataBlockEncoder.newDataBlockEncodingContext(DataBlockEncoding encoding,
+   byte[] header,
+   HFileContext meta) 
+
 
 
 
@@ -256,21 +256,21 @@
 
 
 void
-CopyKeyDataBlockEncoder.startBlockEncoding(HFileBlockEncodingContext blkEncodingCtx,
-  http://docs.oracle.com/javase/8/docs/api/java/io/DataOutputStream.html?is-external=true";
 title="class or interface in 
java.io">DataOutputStream out) 
-
-
-void
 DataBlockEncoder.startBlockEncoding(HFileBlockEncodingContext encodingCtx,
   http://docs.oracle.com/javase/8/docs/api/java/io/DataOutputStream.html?is-external=true";
 title="class or interface in java.io">DataOutputStream out)
 Starts encoding for a block of KeyValues.
 
 
-
+
 void
 RowIndexCodecV1.startBlockEncoding(HFileBlockEncodingContext blkEncodingCtx,
   http://docs.oracle.com/javase/8/docs/api/java/io/DataOutputStream.html?is-external=true";
 title="class or interface in 
java.io">DataOutputStream out) 
 
+
+void
+CopyKeyDataBlockEncoder.startBlockEncoding(HFileBlockEncodingContext blkEncodingCtx,
+  http://docs.oracle.com/javase/8/docs/api/java/io/DataOutputStream.html?is-external=true";
 title="class or interface in 
java.io">DataOutputStream out) 
+
 
 void
 BufferedDataBlockEncoder.startBlockEncoding(HFileBlockEncodingContext blkEncodingCtx,
@@ -305,21 +305,21 @@
 
 
 HFileBlockEncodingContext
+HFileDataBlockEncoderImpl.newDataBlockEncodingContext(byte[] dummyHeader,
+   HFileContext fileContext) 
+
+
+HFileBlockEncodingContext
 NoOpDataBlockEncoder.newDataBlockEncodingContext(byte[] dummyHeader,
HFileContext meta) 
 
-
+
 HFileBlockEncodingContext
 HFileDataBlockEncoder.newDataBlockEncodingContext(byte[] headerBytes,
HFileContext fileContext)
 Create an encoder specific encoding context object for 
writing.
 
 
-
-HFileBlockEncodingContext
-HFileDataBlockEncoderImpl.newDataBlockEncodingContext(byte[] dummyHeader,
-   HFileContext fileContext) 
-
 
 
 
@@ -331,64 +331,64 @@
 
 
 int
-NoOpDataBlockEncoder.encode(Cell cell,
+HFileDataBlockEncoderImpl.encode(Cell cell,
   HFileBlockEncodingContext encodingCtx,
   http://docs.oracle.com/javase/8/docs/api/java/io/DataOutputStream.html?is-external=true";
 title="class or interface in 
java.io">DataOutputStream out) 
 
 
 int
-HFileDataBlockEncoder.encode(Cell cell,
+NoOpDataBlockEncoder.encode(Cell cell,
   HFileBlockEncodingContext encodingCtx,
-  http://docs.oracle.com/javase/8/docs/api/java/io/DataOutputStream.html?is-external=true";
 title="class or interface in java.io">DataOutputStream out)
-Encodes a KeyValue.
-
+  http://docs.oracle.com/javase/8/docs/api/java/io/DataOutputStream.html?is-external=true";
 title="class or interface in 
java.io">DataOutputStream out) 
 
 
 int
-HFileDataBlockEncoderImpl.encode(Cell cell,
+HFileDataBlockEncoder.encode(Cell cell,
   HFileBlockEncodingContext encodingCtx,
-  http://docs.oracle.com/javase/8/docs/api/java/io/DataOutputStream.html?is-external=true";
 title="class or interface in 
java.io">DataOutputStream out) 
+  http://docs.oracle.com/javase/8/docs/api/java/io/DataOutputStream.html?is-external=true";
 title="class or interface in java.io">DataOutputStream out)
+Encodes a KeyValue.
+
 
 
 void
-NoOpDataBlockEncoder.endBlockEncoding(HFileBlockEncodingContext encodingCtx,
+HFileDataBlockEncoderImpl.endBlockEncoding(HFileBlockEncodingContext encodingCtx,
 http://docs.oracle.com/javase/8/docs/api/java/io/DataOutputStream.html?is-external=true";
 title="class or interface in java.io">DataOutputStream out,
 byte[] uncompressedBytesWithHeader,
 BlockType blockType) 
 
 
 void
-HFileData

[07/52] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/DataBlockEncoder.EncodedSeeker.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/DataBlockEncoder.EncodedSeeker.html
 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/DataBlockEncoder.EncodedSeeker.html
index 2380b81..8701855 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/DataBlockEncoder.EncodedSeeker.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/DataBlockEncoder.EncodedSeeker.html
@@ -173,29 +173,29 @@
 
 
 DataBlockEncoder.EncodedSeeker
-CopyKeyDataBlockEncoder.createSeeker(CellComparator comparator,
-HFileBlockDecodingContext decodingCtx) 
+DataBlockEncoder.createSeeker(CellComparator comparator,
+HFileBlockDecodingContext decodingCtx)
+Create a HFileBlock seeker which find KeyValues within a 
block.
+
 
 
 DataBlockEncoder.EncodedSeeker
-FastDiffDeltaEncoder.createSeeker(CellComparator comparator,
+RowIndexCodecV1.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 
 DataBlockEncoder.EncodedSeeker
-DataBlockEncoder.createSeeker(CellComparator comparator,
-HFileBlockDecodingContext decodingCtx)
-Create a HFileBlock seeker which find KeyValues within a 
block.
-
+CopyKeyDataBlockEncoder.createSeeker(CellComparator comparator,
+HFileBlockDecodingContext decodingCtx) 
 
 
 DataBlockEncoder.EncodedSeeker
-RowIndexCodecV1.createSeeker(CellComparator comparator,
+DiffKeyDeltaEncoder.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 
 DataBlockEncoder.EncodedSeeker
-DiffKeyDeltaEncoder.createSeeker(CellComparator comparator,
+FastDiffDeltaEncoder.createSeeker(CellComparator comparator,
 HFileBlockDecodingContext decodingCtx) 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/cc8da4e5/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/DataBlockEncoding.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/DataBlockEncoding.html
 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/DataBlockEncoding.html
index 227dbf8..d1d6b79 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/DataBlockEncoding.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/encoding/class-use/DataBlockEncoding.html
@@ -198,11 +198,11 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 DataBlockEncoding
-HFileBlockDefaultEncodingContext.getDataBlockEncoding() 
+HFileBlockEncodingContext.getDataBlockEncoding() 
 
 
 DataBlockEncoding
-HFileBlockEncodingContext.getDataBlockEncoding() 
+HFileBlockDefaultEncodingContext.getDataBlockEncoding() 
 
 
 static DataBlockEncoding
@@ -232,18 +232,18 @@ the order they are declared.
 
 
 HFileBlockEncodingContext
-AbstractDataBlockEncoder.newDataBlockEncodingContext(DataBlockEncoding encoding,
-   byte[] header,
-   HFileContext meta) 
-
-
-HFileBlockEncodingContext
 DataBlockEncoder.newDataBlockEncodingContext(DataBlockEncoding encoding,
byte[] headerBytes,
HFileContext meta)
 Creates a encoder specific encoding context
 
 
+
+HFileBlockEncodingContext
+AbstractDataBlockEncoder.newDataBlockEncodingContext(DataBlockEncoding encoding,
+   byte[] header,
+   HFileContext meta) 
+
 
 
 
@@ -281,11 +281,11 @@ the order they are declared.
 
 
 private DataBlockEncoding
-HFileContext.encoding 
+HFileContextBuilder.encoding 
 
 
 private DataBlockEncoding
-HFileContextBuilder.encoding 
+HFileContext.encoding 
 
 
 private DataBlockEncoding
@@ -306,27 +306,27 @@ the order they are declared.
 
 
 DataBlockEncoding
-NoOpDataBlockEncoder.getDataBlockEncoding() 
+HFileBlock.getDataBlockEncoding() 
 
 
 DataBlockEncoding
-HFileBlock.getDataBlockEncoding() 
+HFileDataBlockEncoderImpl.getDataBlockEncoding() 
 
 
 DataBlockEncoding
-HFileDataBlockEncoder.getDataBlockEncoding() 
+NoOpDataBlockEncoder.getDataBlockEncoding() 
 
 
 DataBlockEncoding
-HFileReaderImpl.getDataBlockEncoding() 
+HFile.Reader.getDataBlockEncoding() 
 
 
 DataBlockEncoding
-HFile.Reader.getDataBlockEncoding() 
+HFileDataBlockEncoder.getDataBlockEncoding() 
 
 
 DataBlockEncoding
-HFileDataBlockEncoderImpl.getDataBlockEncoding() 
+HFileReaderImpl.getDataBlockEncoding() 
 
 
 DataBlockEncoding
@@ -334,23 +334,23 @@ the order they are declared.
 
 
 DataBlockEncoding
-NoOpDataBlockEncoder.getEffectiveEncodingInCache(boolean isCompaction) 
+HFileDataBlockEncoderImpl.getEffectiveEncodingInCache(boolean isCompaction) 
 
 
 DataBlockEncoding
-HFileDataBlockEncoder.getEffectiveEncodingInCache(boolean isCompaction) 
+NoOpDataBl

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

2017-03-31 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 3cf263bbf -> 86312ed12


http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.html 
b/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.html
index 9fc5246..4defb7c 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.html
@@ -69,15 +69,15 @@
 061  requiredArguments = {
 062@org.jamon.annotations.Argument(name 
= "master", type = "HMaster")},
 063  optionalArguments = {
-064@org.jamon.annotations.Argument(name 
= "frags", type = "Map"),
-065@org.jamon.annotations.Argument(name 
= "metaLocation", type = "ServerName"),
-066@org.jamon.annotations.Argument(name 
= "deadServers", type = "Set"),
-067@org.jamon.annotations.Argument(name 
= "servers", type = "List"),
-068@org.jamon.annotations.Argument(name 
= "assignmentManager", type = "AssignmentManager"),
-069@org.jamon.annotations.Argument(name 
= "format", type = "String"),
-070@org.jamon.annotations.Argument(name 
= "filter", type = "String"),
-071@org.jamon.annotations.Argument(name 
= "catalogJanitorEnabled", type = "boolean"),
-072@org.jamon.annotations.Argument(name 
= "serverManager", type = "ServerManager")})
+064@org.jamon.annotations.Argument(name 
= "filter", type = "String"),
+065@org.jamon.annotations.Argument(name 
= "format", type = "String"),
+066@org.jamon.annotations.Argument(name 
= "assignmentManager", type = "AssignmentManager"),
+067@org.jamon.annotations.Argument(name 
= "serverManager", type = "ServerManager"),
+068@org.jamon.annotations.Argument(name 
= "frags", type = "Map"),
+069@org.jamon.annotations.Argument(name 
= "deadServers", type = "Set"),
+070@org.jamon.annotations.Argument(name 
= "metaLocation", type = "ServerName"),
+071@org.jamon.annotations.Argument(name 
= "servers", type = "List"),
+072@org.jamon.annotations.Argument(name 
= "catalogJanitorEnabled", type = "boolean")})
 073public class MasterStatusTmpl
 074  extends 
org.jamon.AbstractTemplateProxy
 075{
@@ -118,159 +118,159 @@
 110  return m_master;
 111}
 112private HMaster m_master;
-113// 21, 1
-114public void 
setFrags(Map frags)
+113// 26, 1
+114public void setFilter(String 
filter)
 115{
-116  // 21, 1
-117  m_frags = frags;
-118  m_frags__IsNotDefault = true;
+116  // 26, 1
+117  m_filter = filter;
+118  m_filter__IsNotDefault = true;
 119}
-120public Map 
getFrags()
+120public String getFilter()
 121{
-122  return m_frags;
+122  return m_filter;
 123}
-124private Map 
m_frags;
-125public boolean 
getFrags__IsNotDefault()
+124private String m_filter;
+125public boolean 
getFilter__IsNotDefault()
 126{
-127  return m_frags__IsNotDefault;
+127  return m_filter__IsNotDefault;
 128}
-129private boolean 
m_frags__IsNotDefault;
-130// 22, 1
-131public void 
setMetaLocation(ServerName metaLocation)
+129private boolean 
m_filter__IsNotDefault;
+130// 27, 1
+131public void setFormat(String 
format)
 132{
-133  // 22, 1
-134  m_metaLocation = metaLocation;
-135  m_metaLocation__IsNotDefault = 
true;
+133  // 27, 1
+134  m_format = format;
+135  m_format__IsNotDefault = true;
 136}
-137public ServerName getMetaLocation()
+137public String getFormat()
 138{
-139  return m_metaLocation;
+139  return m_format;
 140}
-141private ServerName m_metaLocation;
-142public boolean 
getMetaLocation__IsNotDefault()
+141private String m_format;
+142public boolean 
getFormat__IsNotDefault()
 143{
-144  return 
m_metaLocation__IsNotDefault;
+144  return m_format__IsNotDefault;
 145}
-146private boolean 
m_metaLocation__IsNotDefault;
-147// 24, 1
-148public void 
setDeadServers(Set deadServers)
+146private boolean 
m_format__IsNotDefault;
+147// 29, 1
+148public void 
setAssignmentManager(AssignmentManager assignmentManager)
 149{
-150  // 24, 1
-151  m_deadServers = deadServers;
-152  m_deadServers__IsNotDefault = 
true;
+150  // 29, 1
+151  m_assignmentManager = 
assignmentManager;
+152  m_assignmentManager__IsNotDefault = 
true;
 153}
-154public Set 
getDeadServers()
+154public AssignmentManager 
getAssignmentManager()
 155{
-156  return m_deadServers;
+156  return m_assignmentManager;
 157}
-158private Set

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
index cdf8989..e2a0d48 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/Cell.html
@@ -629,45 +629,45 @@ service.
 
 
 Cell
-IndividualBytesFieldCell.deepClone() 
+ByteBufferKeyValue.deepClone() 
 
 
 Cell
-NoTagsKeyValue.deepClone() 
+IndividualBytesFieldCell.deepClone() 
 
 
 Cell
-ExtendedCell.deepClone()
-Does a deep copy of the contents to a new memory area and 
returns it as a new cell.
-
+NoTagsByteBufferKeyValue.deepClone() 
 
 
 Cell
-NoTagsByteBufferKeyValue.deepClone() 
+NoTagsKeyValue.deepClone() 
 
 
 Cell
-KeyValue.deepClone() 
+CellUtil.TagRewriteCell.deepClone() 
 
 
 Cell
-CellUtil.TagRewriteCell.deepClone() 
+CellUtil.TagRewriteByteBufferCell.deepClone() 
 
 
 Cell
-CellUtil.TagRewriteByteBufferCell.deepClone() 
+CellUtil.ValueAndTagRewriteCell.deepClone() 
 
 
 Cell
-CellUtil.ValueAndTagRewriteCell.deepClone() 
+CellUtil.ValueAndTagRewriteByteBufferCell.deepClone() 
 
 
 Cell
-CellUtil.ValueAndTagRewriteByteBufferCell.deepClone() 
+KeyValue.deepClone() 
 
 
 Cell
-ByteBufferKeyValue.deepClone() 
+ExtendedCell.deepClone()
+Does a deep copy of the contents to a new memory area and 
returns it as a new cell.
+
 
 
 
@@ -1525,32 +1525,32 @@ service.
 
 
 
-boolean
-KeyValue.KVComparator.matchingRowColumn(Cell left,
+static boolean
+CellUtil.matchingRowColumn(Cell left,
  Cell right)
-Deprecated. 
 Compares the row and column of two keyvalues for 
equality
 
 
 
-static boolean
-CellUtil.matchingRowColumn(Cell left,
+boolean
+KeyValue.KVComparator.matchingRowColumn(Cell left,
  Cell right)
+Deprecated. 
 Compares the row and column of two keyvalues for 
equality
 
 
 
-boolean
-KeyValue.KVComparator.matchingRows(Cell left,
+static boolean
+CellUtil.matchingRows(Cell left,
 Cell right)
-Deprecated. 
 Compares the row of two keyvalues for equality
 
 
 
-static boolean
-CellUtil.matchingRows(Cell left,
+boolean
+KeyValue.KVComparator.matchingRows(Cell left,
 Cell right)
+Deprecated. 
 Compares the row of two keyvalues for equality
 
 
@@ -1864,11 +1864,11 @@ service.
 
 
 private Cell
-BatchScanResultCache.lastCell 
+AllowPartialScanResultCache.lastCell 
 
 
 private Cell
-AllowPartialScanResultCache.lastCell 
+BatchScanResultCache.lastCell 
 
 
 
@@ -1976,23 +1976,23 @@ service.
 
 
 
+Append
+Append.add(Cell cell)
+Add column and value to this Append operation.
+
+
+
 Increment
 Increment.add(Cell cell)
 Add the specified KeyValue to this operation.
 
 
-
+
 Put
 Put.add(Cell kv)
 Add the specified KeyValue to this Put operation.
 
 
-
-Append
-Append.add(Cell cell)
-Add column and value to this Append operation.
-
-
 
 Delete
 Delete.addDeleteMarker(Cell kv)
@@ -2079,6 +2079,16 @@ service.
   boolean mayHaveMoreCellsInRow) 
 
 
+Append
+Append.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
+
+
+Mutation
+Mutation.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map)
+Method for setting the put's familyMap
+
+
+
 Delete
 Delete.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
 
@@ -2090,16 +2100,6 @@ service.
 Put
 Put.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
 
-
-Append
-Append.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
-
-
-Mutation
-Mutation.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">Nav

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html 
b/devapidocs/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
index 199a5a7..2422ff6 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
@@ -393,166 +393,166 @@ extends org.jamon.AbstractTemplateProxy.ImplData
 private HMaster m_master
 
 
-
+
 
 
 
 
-m_frags
-private http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true";
 title="class or interface in java.lang">Integer> m_frags
+m_filter
+private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String m_filter
 
 
-
+
 
 
 
 
-m_frags__IsNotDefault
-private boolean m_frags__IsNotDefault
+m_filter__IsNotDefault
+private boolean m_filter__IsNotDefault
 
 
-
+
 
 
 
 
-m_metaLocation
-private ServerName m_metaLocation
+m_format
+private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String m_format
 
 
-
+
 
 
 
 
-m_metaLocation__IsNotDefault
-private boolean m_metaLocation__IsNotDefault
+m_format__IsNotDefault
+private boolean m_format__IsNotDefault
 
 
-
+
 
 
 
 
-m_deadServers
-private http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">Set m_deadServers
+m_assignmentManager
+private AssignmentManager m_assignmentManager
 
 
-
+
 
 
 
 
-m_deadServers__IsNotDefault
-private boolean m_deadServers__IsNotDefault
+m_assignmentManager__IsNotDefault
+private boolean m_assignmentManager__IsNotDefault
 
 
-
+
 
 
 
 
-m_servers
-private http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List m_servers
+m_serverManager
+private ServerManager m_serverManager
 
 
-
+
 
 
 
 
-m_servers__IsNotDefault
-private boolean m_servers__IsNotDefault
+m_serverManager__IsNotDefault
+private boolean m_serverManager__IsNotDefault
 
 
-
+
 
 
 
 
-m_assignmentManager
-private AssignmentManager m_assignmentManager
+m_frags
+private http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true";
 title="class or interface in java.lang">Integer> m_frags
 
 
-
+
 
 
 
 
-m_assignmentManager__IsNotDefault
-private boolean m_assignmentManager__IsNotDefault
+m_frags__IsNotDefault
+private boolean m_frags__IsNotDefault
 
 
-
+
 
 
 
 
-m_format
-private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String m_format
+m_deadServers
+private http://docs.oracle.com/javase/8/docs/api/java/util/Set.html?is-external=true";
 title="class or interface in java.util">Set m_deadServers
 
 
-
+
 
 
 
 
-m_format__IsNotDefault
-private boolean m_format__IsNotDefault
+m_deadServers__IsNotDefault
+private boolean m_deadServers__IsNotDefault
 
 
-
+
 
 
 
 
-m_filter
-private http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String m_filter
+m_metaLocation
+private ServerName m_metaLocation
 
 
-
+
 
 
 
 
-m_filter__IsNotDefault
-private boolean m_filter__IsNotDefault
+m_metaLocation__IsNotDefault
+private boolean m_metaLocation__IsNotDefault
 
 
-
+
 
 
 
 
-m_catalogJanitorEnabled
-private boolean m_catalogJanitorEnabled
+m_servers
+private http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List m_servers
 
 
-
+
 
 
 
 
-m_catalogJanitorEnabled__IsNotDefault
-private boolean m_catalogJanitorEnabled__IsNotDefault
+m_servers__IsNotDefault
+private boolean m_servers__IsNotDefault
 
 
-
+
 
 
 
 
-m_serverManager
-private ServerManager m_serverManager
+m_catalogJanitorEnabled
+private boolean m_catalogJanitorEnabled
 
 
-
+
 
 
 
 
-m_serverManager__IsNotDefault
-private boolean m_serverManager__IsNotDefault
+m_catalogJanitorEnabled__IsNotDefault
+private boolean m_catalogJanitorEnabled__IsNotDefault
 
 
 
@@ -598,247 +598,247 @@ extends org.jamon.AbstractTemplateProxy.Impl

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcCallback.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcCallback.html 
b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcCallback.html
index 9089098..16b9e54 100644
--- a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcCallback.html
+++ b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcCallback.html
@@ -123,13 +123,13 @@
 
 
 void
-RpcCallContext.setCallBack(RpcCallback callback)
-Sets a callback which has to be executed at the end of this 
RPC call.
-
+RpcServer.Call.setCallBack(RpcCallback callback) 
 
 
 void
-RpcServer.Call.setCallBack(RpcCallback callback) 
+RpcCallContext.setCallBack(RpcCallback callback)
+Sets a callback which has to be executed at the end of this 
RPC call.
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcControllerFactory.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcControllerFactory.html 
b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcControllerFactory.html
index a50c3df..d5334cc 100644
--- a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcControllerFactory.html
+++ b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcControllerFactory.html
@@ -138,24 +138,32 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-protected RpcControllerFactory
-RegionAdminServiceCallable.rpcControllerFactory 
-
-
 private RpcControllerFactory
 ConnectionImplementation.rpcControllerFactory 
 
+
+protected RpcControllerFactory
+ClientScanner.rpcControllerFactory 
+
 
+protected RpcControllerFactory
+RegionAdminServiceCallable.rpcControllerFactory 
+
+
 (package private) RpcControllerFactory
 AsyncConnectionImpl.rpcControllerFactory 
 
-
+
 private RpcControllerFactory
 HTable.rpcControllerFactory 
 
+
+private RpcControllerFactory
+HBaseAdmin.rpcControllerFactory 
+
 
 private RpcControllerFactory
-RpcRetryingCallerWithReadReplicas.rpcControllerFactory 
+SecureBulkLoadClient.rpcControllerFactory 
 
 
 protected RpcControllerFactory
@@ -163,15 +171,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 private RpcControllerFactory
-HBaseAdmin.rpcControllerFactory 
-
-
-private RpcControllerFactory
-SecureBulkLoadClient.rpcControllerFactory 
-
-
-protected RpcControllerFactory
-ClientScanner.rpcControllerFactory 
+RpcRetryingCallerWithReadReplicas.rpcControllerFactory 
 
 
 (package private) RpcControllerFactory
@@ -188,11 +188,11 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 RpcControllerFactory
-ClusterConnection.getRpcControllerFactory() 
+ConnectionImplementation.getRpcControllerFactory() 
 
 
 RpcControllerFactory
-ConnectionImplementation.getRpcControllerFactory() 
+ClusterConnection.getRpcControllerFactory() 
 
 
 private RpcControllerFactory

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcExecutor.Handler.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcExecutor.Handler.html 
b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcExecutor.Handler.html
index 94478f7..22b49a7 100644
--- a/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcExecutor.Handler.html
+++ b/devapidocs/org/apache/hadoop/hbase/ipc/class-use/RpcExecutor.Handler.html
@@ -132,19 +132,19 @@
 
 
 protected RpcExecutor.Handler
-FastPathBalancedQueueRpcExecutor.getHandler(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
+RpcExecutor.getHandler(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
   double handlerFailureThreshhold,
   http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/BlockingQueue.html?is-external=true";
 title="class or interface in java.util.concurrent">BlockingQueue q,
-  http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicInteger.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicInteger activeHandlerCount) 
+  http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/atomic/AtomicInteger.html?is-external=true";
 title="class or interface in 
java.util.concurrent.atomic">AtomicInteger activeHandlerCount)
+Override if providing alternate Handler 
implementation.
+
 
 
 protected RpcExecutor.Handler
-RpcExecutor.getHandler(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name,
+FastPathBalan

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/apidocs/org/apache/hadoop/hbase/util/class-use/ByteRange.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/util/class-use/ByteRange.html 
b/apidocs/org/apache/hadoop/hbase/util/class-use/ByteRange.html
index 78fd371..72f56a8 100644
--- a/apidocs/org/apache/hadoop/hbase/util/class-use/ByteRange.html
+++ b/apidocs/org/apache/hadoop/hbase/util/class-use/ByteRange.html
@@ -250,10 +250,7 @@
 
 
 ByteRange
-ByteRange.deepCopy()
-Create a new ByteRange with new backing byte[] 
containing a copy
- of the content from this range's window.
-
+SimpleByteRange.deepCopy() 
 
 
 ByteRange
@@ -261,7 +258,10 @@
 
 
 ByteRange
-SimpleByteRange.deepCopy() 
+ByteRange.deepCopy()
+Create a new ByteRange with new backing byte[] 
containing a copy
+ of the content from this range's window.
+
 
 
 ByteRange
@@ -281,6 +281,16 @@
 
 
 ByteRange
+SimpleByteRange.put(int index,
+   byte val) 
+
+
+ByteRange
+SimpleMutableByteRange.put(int index,
+   byte val) 
+
+
+ByteRange
 ByteRange.put(int index,
byte val)
 Store val at index.
@@ -288,13 +298,13 @@
 
 
 ByteRange
-SimpleMutableByteRange.put(int index,
-   byte val) 
+SimpleByteRange.put(int index,
+   byte[] val) 
 
 
 ByteRange
-SimpleByteRange.put(int index,
-   byte val) 
+SimpleMutableByteRange.put(int index,
+   byte[] val) 
 
 
 ByteRange
@@ -305,13 +315,17 @@
 
 
 ByteRange
-SimpleMutableByteRange.put(int index,
-   byte[] val) 
+SimpleByteRange.put(int index,
+   byte[] val,
+   int offset,
+   int length) 
 
 
 ByteRange
-SimpleByteRange.put(int index,
-   byte[] val) 
+SimpleMutableByteRange.put(int index,
+   byte[] val,
+   int offset,
+   int length) 
 
 
 ByteRange
@@ -325,17 +339,13 @@
 
 
 ByteRange
-SimpleMutableByteRange.put(int index,
-   byte[] val,
-   int offset,
-   int length) 
+SimpleByteRange.putInt(int index,
+  int val) 
 
 
 ByteRange
-SimpleByteRange.put(int index,
-   byte[] val,
-   int offset,
-   int length) 
+SimpleMutableByteRange.putInt(int index,
+  int val) 
 
 
 ByteRange
@@ -346,13 +356,13 @@
 
 
 ByteRange
-SimpleMutableByteRange.putInt(int index,
-  int val) 
+SimpleByteRange.putLong(int index,
+   long val) 
 
 
 ByteRange
-SimpleByteRange.putInt(int index,
-  int val) 
+SimpleMutableByteRange.putLong(int index,
+   long val) 
 
 
 ByteRange
@@ -363,13 +373,13 @@
 
 
 ByteRange
-SimpleMutableByteRange.putLong(int index,
-   long val) 
+SimpleByteRange.putShort(int index,
+short val) 
 
 
 ByteRange
-SimpleByteRange.putLong(int index,
-   long val) 
+SimpleMutableByteRange.putShort(int index,
+short val) 
 
 
 ByteRange
@@ -380,25 +390,21 @@
 
 
 ByteRange
-SimpleMutableByteRange.putShort(int index,
-short val) 
+SimpleByteRange.set(byte[] bytes) 
 
 
 ByteRange
-SimpleByteRange.putShort(int index,
-short val) 
-
-
-ByteRange
 ByteRange.set(byte[] bytes)
 Reuse this ByteRange over a new byte[].
 
 
-
+
 ByteRange
-SimpleByteRange.set(byte[] bytes) 
+SimpleByteRange.set(byte[] bytes,
+   int offset,
+   int length) 
 
-
+
 ByteRange
 ByteRange.set(byte[] bytes,
int offset,
@@ -406,22 +412,16 @@
 Reuse this ByteRange over a new byte[].
 
 
-
+
 ByteRange
-SimpleByteRange.set(byte[] bytes,
-   int offset,
-   int length) 
+SimpleByteRange.set(int capacity) 
 
-
+
 ByteRange
 ByteRange.set(int capacity)
 Reuse this ByteRange over a new byte[].
 
 
-
-ByteRange
-SimpleByteRange.set(int capacity) 
-
 
 ByteRange
 ByteRange.setLength(int length)
@@ -436,9 +436,7 @@
 
 
 ByteRange
-ByteRange.shallowCopy()
-Create a new ByteRange that points at this 
range's byte[].
-
+SimpleByteRange.shallowCopy() 
 
 
 ByteRange
@@ -446,14 +444,14 @@
 
 
 ByteRange
-SimpleByteRange.shallowCopy() 
+ByteRange.shallowCopy()
+Create a new ByteRange that points at this 
range's byte[].
+
 
 
 ByteRange
-ByteRange.shallowCopySubRange(int innerOffset,
-   int copyLength)
-Create a new ByteRange that points at this 
range's byte[].
-
+SimpleByteRange.shallowCopySubRange(int innerOffset,
+   int copyLength) 
 
 
 ByteRange
@@ -462,14 +460,14 @@
 
 
 ByteRange
-SimpleByteRange.shallowCopySubRange(int innerOffset,
-   int copyLength) 
+ByteRange.shallowCopySubRange(int innerOffset,
+   int copyLength)
+Create a new ByteRange that points at this 
range's byte[].
+
 
 
 ByteRange
-ByteRange.unset()
-Nullifies this ByteRange.
-
+SimpleByteRange.unset() 
 
 
 ByteRange
@@ -477,7 +475,9 @@
 
 
 ByteRange
-SimpleByteRange.unset() 
+ByteRange.unset()
+Nullifies this ByteRange.
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/apidocs/org/apache/hadoop/hbase/util/class-use/Bytes.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/util/class-use/Bytes.html 
b/apidocs/org/apache/hadoop/hbase/util/class-use/Bytes.html
index a

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/apidocs/org/apache/hadoop/hbase/class-use/TableName.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/TableName.html 
b/apidocs/org/apache/hadoop/hbase/class-use/TableName.html
index 3492a80..e42fa80 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/TableName.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/TableName.html
@@ -409,31 +409,31 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 TableName
-AsyncTableRegionLocator.getName()
-Gets the fully qualified table name instance of the table 
whose region we want to locate.
+BufferedMutator.getName()
+Gets the fully qualified table name instance of the table 
that this BufferedMutator writes to.
 
 
 
 TableName
-BufferedMutator.getName()
-Gets the fully qualified table name instance of the table 
that this BufferedMutator writes to.
+AsyncTableBase.getName()
+Gets the fully qualified table name instance of this 
table.
 
 
 
 TableName
-Table.getName()
+RegionLocator.getName()
 Gets the fully qualified table name instance of this 
table.
 
 
 
 TableName
-AsyncTableBase.getName()
-Gets the fully qualified table name instance of this 
table.
+AsyncTableRegionLocator.getName()
+Gets the fully qualified table name instance of the table 
whose region we want to locate.
 
 
 
 TableName
-RegionLocator.getName()
+Table.getName()
 Gets the fully qualified table name instance of this 
table.
 
 
@@ -743,17 +743,17 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-AsyncTableRegionLocator
-AsyncConnection.getRegionLocator(TableName tableName)
-Retrieve a AsyncRegionLocator implementation to inspect 
region information on a table.
-
-
-
 RegionLocator
 Connection.getRegionLocator(TableName tableName)
 Retrieve a RegionLocator implementation to inspect region 
information on a table.
 
 
+
+AsyncTableRegionLocator
+AsyncConnection.getRegionLocator(TableName tableName)
+Retrieve a AsyncRegionLocator implementation to inspect 
region information on a table.
+
+
 
 default Table
 Connection.getTable(TableName tableName)
@@ -761,31 +761,31 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-default AsyncTable
-AsyncConnection.getTable(TableName tableName,
+default Table
+Connection.getTable(TableName tableName,
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ExecutorService pool)
-Retrieve an AsyncTable implementation for accessing a 
table.
+Retrieve a Table implementation for accessing a table.
 
 
 
-default Table
-Connection.getTable(TableName tableName,
+default AsyncTable
+AsyncConnection.getTable(TableName tableName,
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ExecutorService pool)
-Retrieve a Table implementation for accessing a table.
+Retrieve an AsyncTable implementation for accessing a 
table.
 
 
 
-AsyncTableBuilder
-AsyncConnection.getTableBuilder(TableName tableName,
+TableBuilder
+Connection.getTableBuilder(TableName tableName,
http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ExecutorService pool)
-Returns an AsyncTableBuilder for creating 
AsyncTable.
+Returns an TableBuilder for creating Table.
 
 
 
-TableBuilder
-Connection.getTableBuilder(TableName tableName,
+AsyncTableBuilder
+AsyncConnection.getTableBuilder(TableName tableName,
http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ExecutorService.html?is-external=true";
 title="class or interface in 
java.util.concurrent">ExecutorService pool)
-Returns an TableBuilder for creating Table.
+Returns an AsyncTableBuilder for creating 
AsyncTable.
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/apidocs/org/apache/hadoop/hbase/client/Durability.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/Durability.html 
b/apidocs/org/apache/hadoop/hbase/client/Durability.html
index 232f165..58db6a9 100644
--- a/apidocs/org/apache/hadoop/hbase/client/Durability.html
+++ b/apidocs/org/apache/hadoop/hbase/client/Durability.html
@@ -294,7 +294,7 @@ the order they are declared.
 
 
 values
-public static Durability[] values()
+public static Durability[] values()
 Returns an array containing the constants of this enum 
type, in
 the order they are declared.  This method may be used to iterate
 over the constants as follows:
@@ -314,7 +314,7 @@ for (Durability c : Durability.values())
 
 
 valueOf
-public static Durability valueOf(http://docs.oracle.com/javase/8/docs/api/

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
index 83dcf5c..1bee57f 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Result.html
@@ -262,16 +262,16 @@ service.
 
 
 
-private static HRegionInfo
-MetaTableAccessor.getHRegionInfo(Result r,
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getHRegionInfo(Result r,
   byte[] qualifier)
 Returns the HRegionInfo object from the column HConstants.CATALOG_FAMILY
 and
  qualifier of the catalog table result.
 
 
 
-private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
-AsyncMetaTableAccessor.getHRegionInfo(Result r,
+private static HRegionInfo
+MetaTableAccessor.getHRegionInfo(Result r,
   byte[] qualifier)
 Returns the HRegionInfo object from the column HConstants.CATALOG_FAMILY
 and
  qualifier of the catalog table result.
@@ -286,7 +286,7 @@ service.
 
 
 private static HRegionLocation
-MetaTableAccessor.getRegionLocation(Result r,
+AsyncMetaTableAccessor.getRegionLocation(Result r,
  HRegionInfo regionInfo,
  int replicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -295,7 +295,7 @@ service.
 
 
 private static HRegionLocation
-AsyncMetaTableAccessor.getRegionLocation(Result r,
+MetaTableAccessor.getRegionLocation(Result r,
  HRegionInfo regionInfo,
  int replicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -303,55 +303,55 @@ service.
 
 
 
-static RegionLocations
-MetaTableAccessor.getRegionLocations(Result r)
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getRegionLocations(Result r)
 Returns an HRegionLocationList extracted from the 
result.
 
 
 
-private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
-AsyncMetaTableAccessor.getRegionLocations(Result r)
+static RegionLocations
+MetaTableAccessor.getRegionLocations(Result r)
 Returns an HRegionLocationList extracted from the 
result.
 
 
 
 private static long
-MetaTableAccessor.getSeqNumDuringOpen(Result r,
+AsyncMetaTableAccessor.getSeqNumDuringOpen(Result r,
int replicaId)
 The latest seqnum that the server writing to meta observed 
when opening the region.
 
 
 
 private static long
-AsyncMetaTableAccessor.getSeqNumDuringOpen(Result r,
+MetaTableAccessor.getSeqNumDuringOpen(Result r,
int replicaId)
 The latest seqnum that the server writing to meta observed 
when opening the region.
 
 
 
-static ServerName
-MetaTableAccessor.getServerName(Result r,
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getServerName(Result r,
  int replicaId)
 Returns a ServerName from catalog table Result.
 
 
 
-private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
-AsyncMetaTableAccessor.getServerName(Result r,
+static ServerName
+MetaTableAccessor.getServerName(Result r,
  int replicaId)
 Returns a ServerName from catalog table Result.
 
 
 
+private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
+AsyncMetaTableAccessor.getTableState(Result r) 
+
+
 static TableState
 MetaTableAccessor.getTableState(Result r)
 Decode table state from META Result.
 
 
-
-private static http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional
-AsyncMetaTableAccessor.getTableState(Result r) 
-
 
 void
 AsyncMetaTableAccessor.MetaTableRawScanResultConsumer.onNext(Result[] results,
@@ -447,13 +447,13 @@ service.
 ClientScanner.cache 
 
 
-private http://docs.oracle.com/javase/8/docs/api/java/util/Deque.html?is-external=true";
 title="class or interface in java.util">Deque
-BatchScanResultCache.partialResults 
-
-
 private http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in jav

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/overview-tree.html
--
diff --git a/devapidocs/overview-tree.html b/devapidocs/overview-tree.html
index d96674a..e7af946 100644
--- a/devapidocs/overview-tree.html
+++ b/devapidocs/overview-tree.html
@@ -1483,8 +1483,8 @@
 
 org.apache.hadoop.hbase.client.DelayingRunner (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.html?is-external=true";
 title="class or interface in java.lang">Runnable)
 org.apache.hadoop.hbase.ipc.DelegatingHBaseRpcController (implements 
org.apache.hadoop.hbase.ipc.HBaseRpcController)
-org.apache.hadoop.hbase.thrift.DemoClient
 org.apache.hadoop.hbase.thrift2.DemoClient
+org.apache.hadoop.hbase.thrift.DemoClient
 org.apache.hadoop.hbase.util.DirectMemoryUtils
 org.apache.hadoop.hbase.wal.DisabledWALProvider (implements 
org.apache.hadoop.hbase.wal.WALProvider)
 org.apache.hadoop.hbase.wal.DisabledWALProvider.DisabledWAL (implements 
org.apache.hadoop.hbase.wal.WAL)
@@ -2498,13 +2498,13 @@
 java.io.http://docs.oracle.com/javase/8/docs/api/java/io/OutputStream.html?is-external=true";
 title="class or interface in java.io">OutputStream (implements java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Closeable.html?is-external=true";
 title="class or interface in java.io">Closeable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Flushable.html?is-external=true";
 title="class or interface in java.io">Flushable)
 
 org.apache.hadoop.hbase.regionserver.wal.AsyncProtobufLogWriter.OutputStreamWrapper 
(implements org.apache.hadoop.hbase.io.ByteBufferWriter)
-org.apache.hadoop.hbase.io.ByteArrayOutputStream (implements 
org.apache.hadoop.hbase.io.ByteBufferWriter)
 java.io.http://docs.oracle.com/javase/8/docs/api/java/io/ByteArrayOutputStream.html?is-external=true";
 title="class or interface in java.io">ByteArrayOutputStream
 
 org.apache.hadoop.hbase.io.encoding.EncodedDataBlock.BufferGrabbingByteArrayOutputStream
 org.apache.hadoop.hbase.regionserver.wal.WALCellCodec.BaosAndCompressor (implements 
org.apache.hadoop.hbase.regionserver.wal.WALCellCodec.ByteStringCompressor)
 
 
+org.apache.hadoop.hbase.io.ByteArrayOutputStream (implements 
org.apache.hadoop.hbase.io.ByteBufferWriter)
 org.apache.hadoop.hbase.io.ByteBufferOutputStream (implements 
org.apache.hadoop.hbase.io.ByteBufferWriter)
 
 org.apache.hadoop.hbase.io.ByteBufferListOutputStream
@@ -3551,8 +3551,8 @@
 org.apache.hadoop.hbase.thrift.ThriftServerRunner (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Runnable.html?is-external=true";
 title="class or interface in java.lang">Runnable)
 org.apache.hadoop.hbase.thrift.ThriftServerRunner.HBaseHandler (implements 
org.apache.hadoop.hbase.thrift.generated.Hbase.Iface)
 org.apache.hadoop.hbase.thrift.ThriftServerRunner.ResultScannerWrapper
-org.apache.hadoop.hbase.thrift.ThriftUtilities
 org.apache.hadoop.hbase.thrift2.ThriftUtilities
+org.apache.hadoop.hbase.thrift.ThriftUtilities
 org.apache.hadoop.hbase.regionserver.throttle.ThroughputControlUtil
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in java.lang">Throwable (implements java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
@@ -4829,12 +4829,12 @@
 
 Annotation Type Hierarchy
 
-org.apache.hadoop.hbase.classification.InterfaceAudience.Public (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
-org.apache.hadoop.hbase.classification.InterfaceAudience.LimitedPrivate (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
-org.apache.hadoop.hbase.classification.InterfaceAudience.Private (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
 org.apache.hadoop.hbase.classification.InterfaceStability.Stable (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
 org.apache.hadoop.hbase.classification.InterfaceStability.Evolving (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
 org.apache.hadoop.hbase.classification.InterfaceStability.Unstable (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-e

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/client/class-use/Mutation.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Mutation.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Mutation.html
index 76ec709..e97ea76 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Mutation.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Mutation.html
@@ -332,14 +332,14 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-BufferedMutatorImpl.mutate(Mutation m) 
-
-
-void
 BufferedMutator.mutate(Mutation mutation)
 Sends a Mutation to 
the table.
 
 
+
+void
+BufferedMutatorImpl.mutate(Mutation m) 
+
 
 
 
@@ -351,14 +351,14 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-BufferedMutatorImpl.mutate(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List ms) 
-
-
-void
 BufferedMutator.mutate(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List mutations)
 Send some Mutations to 
the table.
 
 
+
+void
+BufferedMutatorImpl.mutate(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List ms) 
+
 
 
 
@@ -491,15 +491,15 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 MutationSerialization.getDeserializer(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang">Class c) 
 
 
-org.apache.hadoop.mapreduce.RecordWriter
-MultiTableOutputFormat.getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext context) 
-
-
 org.apache.hadoop.mapreduce.RecordWriter
 TableOutputFormat.getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext context)
 Creates a new record writer.
 
 
+
+org.apache.hadoop.mapreduce.RecordWriter
+MultiTableOutputFormat.getRecordWriter(org.apache.hadoop.mapreduce.TaskAttemptContext context) 
+
 
 org.apache.hadoop.io.serializer.Serializer
 MutationSerialization.getSerializer(http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true";
 title="class or interface in java.lang">Class c) 
@@ -607,11 +607,11 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-DefaultOperationQuota.addMutation(Mutation mutation) 
+NoopOperationQuota.addMutation(Mutation mutation) 
 
 
 void
-NoopOperationQuota.addMutation(Mutation mutation) 
+DefaultOperationQuota.addMutation(Mutation mutation) 
 
 
 void
@@ -964,6 +964,13 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
+MultiRowMutationProcessor.process(long now,
+   HRegion region,
+   http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List mutationsToApply,
+   WALEdit walEdit) 
+
+
+void
 RowProcessor.process(long now,
HRegion region,
http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List mutations,
@@ -971,13 +978,6 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 HRegion handles the locks and MVCC and invokes this method 
properly.
 
 
-
-void
-MultiRowMutationProcessor.process(long now,
-   HRegion region,
-   http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List mutationsToApply,
-   WALEdit walEdit) 
-
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/client/class-use/NonceGenerator.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/NonceGenerator.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/NonceGenerator.html
index 2136979..8ac4b8a 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/NonceGenerator.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/NonceGenerator.html
@@ -126,11 +126,11 @@
 
 
 private NonceGenerator
-HBaseAdmin.ng 
+AsyncHBaseAdmin.ng 
 
 
 private NonceGenerator
-AsyncHBaseAdmin.ng 
+HBaseAdmin.ng 
 
 
 (package private) static NonceGenerator
@@ -159,11 +159,11 @@
 
 
 NonceGenerator
-ClusterConnection.getNonceGenerator() 
+ConnectionImplementation.getNonceGenerator() 
 
 
 NonceGenerator
-ConnectionImplementation.getNonceGenerator() 
+ClusterConnection.getNonceGenerator() 
 
 
 NonceGenerator

http://git-wip-us.apache.org/repos/asf/hb

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CachedBlock.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CachedBlock.html 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CachedBlock.html
index c759933..ebd7232 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CachedBlock.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CachedBlock.html
@@ -150,15 +150,15 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator
-CombinedBlockCache.iterator() 
+BlockCache.iterator() 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator
-BlockCache.iterator() 
+LruBlockCache.iterator() 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator
-LruBlockCache.iterator() 
+CombinedBlockCache.iterator() 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator

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

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileBlock.Writer.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileBlock.Writer.html 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileBlock.Writer.html
index f8482be..6bcd209 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileBlock.Writer.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileBlock.Writer.html
@@ -106,15 +106,15 @@
 
 
 
+private HFileBlock.Writer
+HFileBlockIndex.BlockIndexWriter.blockWriter 
+
+
 protected HFileBlock.Writer
 HFileWriterImpl.blockWriter
 block writer
 
 
-
-private HFileBlock.Writer
-HFileBlockIndex.BlockIndexWriter.blockWriter 
-
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileContext.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileContext.html 
b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileContext.html
index e0b77da..9f3dfdb 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileContext.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/HFileContext.html
@@ -164,15 +164,15 @@
 
 
 HFileContext
-HFileBlockDecodingContext.getHFileContext() 
+HFileBlockEncodingContext.getHFileContext() 
 
 
 HFileContext
-HFileBlockDefaultDecodingContext.getHFileContext() 
+HFileBlockDecodingContext.getHFileContext() 
 
 
 HFileContext
-HFileBlockEncodingContext.getHFileContext() 
+HFileBlockDefaultDecodingContext.getHFileContext() 
 
 
 HFileContext
@@ -252,24 +252,24 @@
 
 
 private HFileContext
+HFile.WriterFactory.fileContext 
+
+
+private HFileContext
 HFileBlock.fileContext
 Meta data that holds meta information on the 
hfileblock.
 
 
-
+
 private HFileContext
 HFileBlock.Writer.fileContext
 Meta data that holds information about the hfileblock
 
 
-
+
 protected HFileContext
 HFileBlock.FSReaderImpl.fileContext 
 
-
-private HFile

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
--
diff --git 
a/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
 
b/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
index 9fc5246..4defb7c 100644
--- 
a/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
+++ 
b/devapidocs/src-html/org/apache/hadoop/hbase/tmpl/master/MasterStatusTmpl.ImplData.html
@@ -69,15 +69,15 @@
 061  requiredArguments = {
 062@org.jamon.annotations.Argument(name 
= "master", type = "HMaster")},
 063  optionalArguments = {
-064@org.jamon.annotations.Argument(name 
= "frags", type = "Map"),
-065@org.jamon.annotations.Argument(name 
= "metaLocation", type = "ServerName"),
-066@org.jamon.annotations.Argument(name 
= "deadServers", type = "Set"),
-067@org.jamon.annotations.Argument(name 
= "servers", type = "List"),
-068@org.jamon.annotations.Argument(name 
= "assignmentManager", type = "AssignmentManager"),
-069@org.jamon.annotations.Argument(name 
= "format", type = "String"),
-070@org.jamon.annotations.Argument(name 
= "filter", type = "String"),
-071@org.jamon.annotations.Argument(name 
= "catalogJanitorEnabled", type = "boolean"),
-072@org.jamon.annotations.Argument(name 
= "serverManager", type = "ServerManager")})
+064@org.jamon.annotations.Argument(name 
= "filter", type = "String"),
+065@org.jamon.annotations.Argument(name 
= "format", type = "String"),
+066@org.jamon.annotations.Argument(name 
= "assignmentManager", type = "AssignmentManager"),
+067@org.jamon.annotations.Argument(name 
= "serverManager", type = "ServerManager"),
+068@org.jamon.annotations.Argument(name 
= "frags", type = "Map"),
+069@org.jamon.annotations.Argument(name 
= "deadServers", type = "Set"),
+070@org.jamon.annotations.Argument(name 
= "metaLocation", type = "ServerName"),
+071@org.jamon.annotations.Argument(name 
= "servers", type = "List"),
+072@org.jamon.annotations.Argument(name 
= "catalogJanitorEnabled", type = "boolean")})
 073public class MasterStatusTmpl
 074  extends 
org.jamon.AbstractTemplateProxy
 075{
@@ -118,159 +118,159 @@
 110  return m_master;
 111}
 112private HMaster m_master;
-113// 21, 1
-114public void 
setFrags(Map frags)
+113// 26, 1
+114public void setFilter(String 
filter)
 115{
-116  // 21, 1
-117  m_frags = frags;
-118  m_frags__IsNotDefault = true;
+116  // 26, 1
+117  m_filter = filter;
+118  m_filter__IsNotDefault = true;
 119}
-120public Map 
getFrags()
+120public String getFilter()
 121{
-122  return m_frags;
+122  return m_filter;
 123}
-124private Map 
m_frags;
-125public boolean 
getFrags__IsNotDefault()
+124private String m_filter;
+125public boolean 
getFilter__IsNotDefault()
 126{
-127  return m_frags__IsNotDefault;
+127  return m_filter__IsNotDefault;
 128}
-129private boolean 
m_frags__IsNotDefault;
-130// 22, 1
-131public void 
setMetaLocation(ServerName metaLocation)
+129private boolean 
m_filter__IsNotDefault;
+130// 27, 1
+131public void setFormat(String 
format)
 132{
-133  // 22, 1
-134  m_metaLocation = metaLocation;
-135  m_metaLocation__IsNotDefault = 
true;
+133  // 27, 1
+134  m_format = format;
+135  m_format__IsNotDefault = true;
 136}
-137public ServerName getMetaLocation()
+137public String getFormat()
 138{
-139  return m_metaLocation;
+139  return m_format;
 140}
-141private ServerName m_metaLocation;
-142public boolean 
getMetaLocation__IsNotDefault()
+141private String m_format;
+142public boolean 
getFormat__IsNotDefault()
 143{
-144  return 
m_metaLocation__IsNotDefault;
+144  return m_format__IsNotDefault;
 145}
-146private boolean 
m_metaLocation__IsNotDefault;
-147// 24, 1
-148public void 
setDeadServers(Set deadServers)
+146private boolean 
m_format__IsNotDefault;
+147// 29, 1
+148public void 
setAssignmentManager(AssignmentManager assignmentManager)
 149{
-150  // 24, 1
-151  m_deadServers = deadServers;
-152  m_deadServers__IsNotDefault = 
true;
+150  // 29, 1
+151  m_assignmentManager = 
assignmentManager;
+152  m_assignmentManager__IsNotDefault = 
true;
 153}
-154public Set 
getDeadServers()
+154public AssignmentManager 
getAssignmentManager()
 155{
-156  return m_deadServers;
+156  return m_assignmentManager;
 157}
-158private Set 
m_deadServers;
-159public boo

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/class-use/KeyValue.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/KeyValue.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/KeyValue.html
index 675b6af..dd37400 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/KeyValue.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/KeyValue.html
@@ -205,22 +205,22 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 static KeyValue
-KeyValue.create(http://docs.oracle.com/javase/8/docs/api/java/io/DataInput.html?is-external=true";
 title="class or interface in java.io">DataInput in) 
+KeyValueUtil.create(http://docs.oracle.com/javase/8/docs/api/java/io/DataInput.html?is-external=true";
 title="class or interface in java.io">DataInput in) 
 
 
 static KeyValue
-KeyValueUtil.create(http://docs.oracle.com/javase/8/docs/api/java/io/DataInput.html?is-external=true";
 title="class or interface in java.io">DataInput in) 
+KeyValue.create(http://docs.oracle.com/javase/8/docs/api/java/io/DataInput.html?is-external=true";
 title="class or interface in java.io">DataInput in) 
 
 
 static KeyValue
-KeyValue.create(int length,
+KeyValueUtil.create(int length,
   http://docs.oracle.com/javase/8/docs/api/java/io/DataInput.html?is-external=true";
 title="class or interface in java.io">DataInput in)
 Create a KeyValue reading length from 
in
 
 
 
 static KeyValue
-KeyValueUtil.create(int length,
+KeyValue.create(int length,
   http://docs.oracle.com/javase/8/docs/api/java/io/DataInput.html?is-external=true";
 title="class or interface in java.io">DataInput in)
 Create a KeyValue reading length from 
in
 
@@ -336,31 +336,31 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 static KeyValue
-KeyValue.createKeyValueFromKey(byte[] b) 
+KeyValueUtil.createKeyValueFromKey(byte[] b) 
 
 
 static KeyValue
-KeyValueUtil.createKeyValueFromKey(byte[] b) 
+KeyValue.createKeyValueFromKey(byte[] b) 
 
 
 static KeyValue
-KeyValue.createKeyValueFromKey(byte[] b,
+KeyValueUtil.createKeyValueFromKey(byte[] b,
  int o,
  int l) 
 
 
 static KeyValue
-KeyValueUtil.createKeyValueFromKey(byte[] b,
+KeyValue.createKeyValueFromKey(byte[] b,
  int o,
  int l) 
 
 
 static KeyValue
-KeyValue.createKeyValueFromKey(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in 
java.nio">ByteBuffer bb) 
+KeyValueUtil.createKeyValueFromKey(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in 
java.nio">ByteBuffer bb) 
 
 
 static KeyValue
-KeyValueUtil.createKeyValueFromKey(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in 
java.nio">ByteBuffer bb) 
+KeyValue.createKeyValueFromKey(http://docs.oracle.com/javase/8/docs/api/java/nio/ByteBuffer.html?is-external=true";
 title="class or interface in 
java.nio">ByteBuffer bb) 
 
 
 static KeyValue
@@ -530,17 +530,17 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 static long
-KeyValue.write(KeyValue kv,
+KeyValueUtil.write(KeyValue kv,
  http://docs.oracle.com/javase/8/docs/api/java/io/DataOutput.html?is-external=true";
 title="class or interface in java.io">DataOutput out)
-Write out a KeyValue in the manner in which we used to when 
KeyValue was a Writable.
+Write out a KeyValue in the manner in which we used to when 
KeyValue was a
+ Writable.
 
 
 
 static long
-KeyValueUtil.write(KeyValue kv,
+KeyValue.write(KeyValue kv,
  http://docs.oracle.com/javase/8/docs/api/java/io/DataOutput.html?is-external=true";
 title="class or interface in java.io">DataOutput out)
-Write out a KeyValue in the manner in which we used to when 
KeyValue was a
- Writable.
+Write out a KeyValue in the manner in which we used to when 
KeyValue was a Writable.
 
 
 
@@ -751,38 +751,28 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator
-StripeStoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue targetKey)
-See StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue)
- for details on this methods.
-
-
-
-http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator
 DefaultStoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue targetKey) 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator
 StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue targetKey)
 Gets

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/apidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html 
b/apidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
index cd76c6a..5113e11 100644
--- a/apidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
+++ b/apidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
@@ -140,11 +140,11 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 Filter
-Scan.getFilter() 
+Query.getFilter() 
 
 
 Filter
-Query.getFilter() 
+Scan.getFilter() 
 
 
 
@@ -156,8 +156,8 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-Scan
-Scan.setFilter(Filter filter) 
+Get
+Get.setFilter(Filter filter) 
 
 
 Query
@@ -166,8 +166,8 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-Get
-Get.setFilter(Filter filter) 
+Scan
+Scan.setFilter(Filter filter) 
 
 
 
@@ -394,75 +394,75 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 static Filter
-ValueFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+PageFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-FirstKeyOnlyFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+MultipleColumnPrefixFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-ColumnPrefixFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+InclusiveStopFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-TimestampsFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+KeyOnlyFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-ColumnCountGetFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+RowFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-RowFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+ColumnRangeFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-InclusiveStopFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+FamilyFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-SingleColumnValueFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+DependentColumnFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
 
 
 static Filter
-DependentColumnFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+ColumnPaginationFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/DeserializationException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/DeserializationException.html
 
b/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/DeserializationException.html
index 73935a3..f10d65b 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/DeserializationException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/exceptions/class-use/DeserializationException.html
@@ -146,20 +146,20 @@
 
 
 
-static HColumnDescriptor
-HColumnDescriptor.parseFrom(byte[] bytes) 
-
-
 static HTableDescriptor
 HTableDescriptor.parseFrom(byte[] bytes) 
 
+
+static ClusterId
+ClusterId.parseFrom(byte[] bytes) 
+
 
 static HRegionInfo
 HRegionInfo.parseFrom(byte[] bytes) 
 
 
-static ClusterId
-ClusterId.parseFrom(byte[] bytes) 
+static HColumnDescriptor
+HColumnDescriptor.parseFrom(byte[] bytes) 
 
 
 static SplitLogTask
@@ -265,146 +265,146 @@
 ByteArrayComparable.parseFrom(byte[] pbBytes) 
 
 
-static ColumnPrefixFilter
-ColumnPrefixFilter.parseFrom(byte[] pbBytes) 
+static SingleColumnValueExcludeFilter
+SingleColumnValueExcludeFilter.parseFrom(byte[] pbBytes) 
 
 
-static ColumnCountGetFilter
-ColumnCountGetFilter.parseFrom(byte[] pbBytes) 
+static ValueFilter
+ValueFilter.parseFrom(byte[] pbBytes) 
 
 
-static RowFilter
-RowFilter.parseFrom(byte[] pbBytes) 
+static SkipFilter
+SkipFilter.parseFrom(byte[] pbBytes) 
 
 
-static FuzzyRowFilter
-FuzzyRowFilter.parseFrom(byte[] pbBytes) 
+static FamilyFilter
+FamilyFilter.parseFrom(byte[] pbBytes) 
 
 
-static BinaryComparator
-BinaryComparator.parseFrom(byte[] pbBytes) 
+static FilterWrapper
+FilterWrapper.parseFrom(byte[] pbBytes) 
 
 
-static RegexStringComparator
-RegexStringComparator.parseFrom(byte[] pbBytes) 
+static BinaryPrefixComparator
+BinaryPrefixComparator.parseFrom(byte[] pbBytes) 
 
 
-static Filter
-Filter.parseFrom(byte[] pbBytes)
-Concrete implementers can signal a failure condition in 
their code by throwing an
- http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException.
-
+static NullComparator
+NullComparator.parseFrom(byte[] pbBytes) 
 
 
-static RandomRowFilter
-RandomRowFilter.parseFrom(byte[] pbBytes) 
+static ColumnPrefixFilter
+ColumnPrefixFilter.parseFrom(byte[] pbBytes) 
 
 
-static FirstKeyOnlyFilter
-FirstKeyOnlyFilter.parseFrom(byte[] pbBytes) 
+static PageFilter
+PageFilter.parseFrom(byte[] pbBytes) 
 
 
-static SkipFilter
-SkipFilter.parseFrom(byte[] pbBytes) 
+static BitComparator
+BitComparator.parseFrom(byte[] pbBytes) 
 
 
-static BinaryPrefixComparator
-BinaryPrefixComparator.parseFrom(byte[] pbBytes) 
+static RowFilter
+RowFilter.parseFrom(byte[] pbBytes) 
 
 
-static TimestampsFilter
-TimestampsFilter.parseFrom(byte[] pbBytes) 
+static ColumnRangeFilter
+ColumnRangeFilter.parseFrom(byte[] pbBytes) 
 
 
-static ValueFilter
-ValueFilter.parseFrom(byte[] pbBytes) 
+static ColumnCountGetFilter
+ColumnCountGetFilter.parseFrom(byte[] pbBytes) 
 
 
-static KeyOnlyFilter
-KeyOnlyFilter.parseFrom(byte[] pbBytes) 
+static SubstringComparator
+SubstringComparator.parseFrom(byte[] pbBytes) 
 
 
-static FamilyFilter
-FamilyFilter.parseFrom(byte[] pbBytes) 
+static MultipleColumnPrefixFilter
+MultipleColumnPrefixFilter.parseFrom(byte[] pbBytes) 
 
 
-static QualifierFilter
-QualifierFilter.parseFrom(byte[] pbBytes) 
+static ColumnPaginationFilter
+ColumnPaginationFilter.parseFrom(byte[] pbBytes) 
 
 
-static FilterList
-FilterList.parseFrom(byte[] pbBytes) 
+static DependentColumnFilter
+DependentColumnFilter.parseFrom(byte[] pbBytes) 
 
 
-static ColumnRangeFilter
-ColumnRangeFilter.parseFrom(byte[] pbBytes) 
+static BinaryComparator
+BinaryComparator.parseFrom(byte[] pbBytes) 
 
 
-static ColumnPaginationFilter
-ColumnPaginationFilter.parseFrom(byte[] pbBytes) 
+static InclusiveStopFilter
+InclusiveStopFilter.parseFrom(byte[] pbBytes) 
 
 
-static SubstringComparator
-SubstringComparator.parseFrom(byte[] pbBytes) 
+static KeyOnlyFilter
+KeyOnlyFilter.parseFrom(byte[] pbBytes) 
 
 
-static WhileMatchFilter
-WhileMatchFilter.parseFrom(byte[] pbBytes) 
-
-
 static MultiRowRangeFilter
 MultiRowRangeFilter.parseFrom(byte[] pbBytes) 
 
+
+static Filter
+Filter.parseFrom(byte[] pbBytes)
+Concrete implementers can signal a failure condition in 
their code by throwing an
+ http://docs.oracle.com/javase/8/docs/api/java/io/IOException.html?is-external=true";
 title="class or interface in java.io">IOException.
+
+
 
-static PrefixFilter
-PrefixFilter.parseFrom(byte[] pbBytes) 
+static RegexStringComparator
+RegexStringComparator.parseFrom(byte[] pbBytes) 
 
 
-static SingleColumnValueExcludeFilter
-SingleColumnValueExcludeFilter.parseFrom(byte[] pbBytes) 
+static FirstKeyOnlyFilter
+FirstKeyOnlyFilter.parseFrom(byte[] pbBytes) 
 

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
index 79193fb..a9d4353 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/HRegionLocation.html
@@ -170,7 +170,7 @@ service.
 
 
 private static HRegionLocation
-MetaTableAccessor.getRegionLocation(Result r,
+AsyncMetaTableAccessor.getRegionLocation(Result r,
  HRegionInfo regionInfo,
  int replicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -179,7 +179,7 @@ service.
 
 
 private static HRegionLocation
-AsyncMetaTableAccessor.getRegionLocation(Result r,
+MetaTableAccessor.getRegionLocation(Result r,
  HRegionInfo regionInfo,
  int replicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -282,6 +282,14 @@ service.
 HTableMultiplexer.FlushWorker.addr 
 
 
+HRegionLocation
+AsyncClientScanner.OpenScannerResponse.loc 
+
+
+private HRegionLocation
+AsyncRpcRetryingCallerFactory.ScanSingleRegionCallerBuilder.loc 
+
+
 private HRegionLocation
 AsyncScanSingleRegionRpcRetryingCaller.loc 
 
@@ -290,23 +298,15 @@ service.
 AsyncBatchRpcRetryingCaller.RegionRequest.loc 
 
 
-HRegionLocation
-AsyncClientScanner.OpenScannerResponse.loc 
+protected HRegionLocation
+RegionAdminServiceCallable.location 
 
 
-private HRegionLocation
-AsyncRpcRetryingCallerFactory.ScanSingleRegionCallerBuilder.loc 
-
-
 protected HRegionLocation
 RegionServerCallable.location
 Some subclasses want to set their own location.
 
 
-
-protected HRegionLocation
-RegionAdminServiceCallable.location 
-
 
 
 
@@ -349,11 +349,11 @@ service.
 
 
 protected HRegionLocation
-RegionServerCallable.getLocation() 
+MultiServerCallable.getLocation() 
 
 
 protected HRegionLocation
-MultiServerCallable.getLocation() 
+RegionServerCallable.getLocation() 
 
 
 HRegionLocation
@@ -361,43 +361,43 @@ service.
 
 
 HRegionLocation
-RegionLocator.getRegionLocation(byte[] row)
+HRegionLocator.getRegionLocation(byte[] row)
 Finds the region on which the given row is being 
served.
 
 
 
 HRegionLocation
-HRegionLocator.getRegionLocation(byte[] row)
+RegionLocator.getRegionLocation(byte[] row)
 Finds the region on which the given row is being 
served.
 
 
 
 HRegionLocation
-RegionLocator.getRegionLocation(byte[] row,
+HRegionLocator.getRegionLocation(byte[] row,
  boolean reload)
 Finds the region on which the given row is being 
served.
 
 
 
 HRegionLocation
-HRegionLocator.getRegionLocation(byte[] row,
+RegionLocator.getRegionLocation(byte[] row,
  boolean reload)
 Finds the region on which the given row is being 
served.
 
 
 
 HRegionLocation
-ClusterConnection.getRegionLocation(TableName tableName,
+ConnectionImplementation.getRegionLocation(TableName tableName,
  byte[] row,
- boolean reload)
-Find region location hosting passed row
-
+ boolean reload) 
 
 
 HRegionLocation
-ConnectionImplementation.getRegionLocation(TableName tableName,
+ClusterConnection.getRegionLocation(TableName tableName,
  byte[] row,
- boolean reload) 
+ boolean reload)
+Find region location hosting passed row
+
 
 
 private HRegionLocation
@@ -412,15 +412,20 @@ service.
 
 
 HRegionLocation
+ConnectionImplementation.locateRegion(byte[] regionName) 
+
+
+HRegionLocation
 ClusterConnection.locateRegion(byte[] regionName)
 Gets the location of the region of regionName.
 
 
-
+
 HRegionLocation
-ConnectionImplementation.locateRegion(byte[] regionName) 
+ConnectionImplementation.locateRegion(TableName tableName,
+byte[] row) 
 
-
+
 HRegionLocation
 ClusterConnection.locateRegion(TableName tableName,
 byte[] row)
@@ -428,11 +433,6 @@ service.
  lives in.
 
 
-
-HRegionLocation
-ConnectionImplementation.locateRegion(TableName tableName,
-byte[] row) 
-
 
 private HRegionLocation
 AsyncNonMetaRegionLocator.locateRowBeforeInCache(AsyncNonMetaRegionLocator.TableCache tableCache,
@@ -447,17 +447,17 @@ service.
 
 
 HRegionLocation
+ConnectionImplementation.relocateRegion(TableName tableName,
+  byte[] row) 
+
+
+HRegionLocation
 ClusterConnection.relocateRegion(TableName tableName,
   byte[] row)
 Find the location of the region of tableName that 
row
  lives in, ignoring any value that might be in the cache.
 
 
-
-HRegionLocation
-ConnectionImplementation.relocateRegion(TableName tableName,
-  byte[] row) 
-
 
 
 
@@ -469,13 +469,13 @@ service.
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in jav

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

2017-03-31 Thread git-site-role
Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7.


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

Branch: refs/heads/asf-site
Commit: 86312ed12df91321822729ea0d46ea806abd5119
Parents: 3cf263b
Author: jenkins 
Authored: Fri Mar 31 21:31:31 2017 +
Committer: jenkins 
Committed: Fri Mar 31 21:31:31 2017 +

--
 apache_hbase_reference_guide.pdf|4 +-
 apache_hbase_reference_guide.pdfmarks   |4 +-
 apidocs/deprecated-list.html|8 +-
 .../apache/hadoop/hbase/KeepDeletedCells.html   |4 +-
 .../org/apache/hadoop/hbase/class-use/Cell.html |  246 +-
 .../hadoop/hbase/class-use/TableName.html   |   52 +-
 .../apache/hadoop/hbase/client/Durability.html  |4 +-
 .../hadoop/hbase/client/class-use/Append.html   |8 +-
 .../hbase/client/class-use/Consistency.html |8 +-
 .../hadoop/hbase/client/class-use/Delete.html   |   44 +-
 .../hbase/client/class-use/Durability.html  |   20 +-
 .../hadoop/hbase/client/class-use/Get.html  |   36 +-
 .../hbase/client/class-use/Increment.html   |8 +-
 .../hbase/client/class-use/IsolationLevel.html  |8 +-
 .../hadoop/hbase/client/class-use/Mutation.html |8 +-
 .../hadoop/hbase/client/class-use/Put.html  |   48 +-
 .../hadoop/hbase/client/class-use/Result.html   |   22 +-
 .../hbase/client/class-use/ResultScanner.html   |   26 +-
 .../hadoop/hbase/client/class-use/Row.html  |8 +-
 .../hbase/client/class-use/RowMutations.html|   16 +-
 .../hadoop/hbase/client/class-use/Scan.html |   22 +-
 .../hadoop/hbase/client/package-tree.html   |   12 +-
 .../hbase/filter/CompareFilter.CompareOp.html   |4 +-
 .../hadoop/hbase/filter/Filter.ReturnCode.html  |4 +-
 .../filter/class-use/ByteArrayComparable.html   |8 +-
 .../class-use/CompareFilter.CompareOp.html  |   44 +-
 .../filter/class-use/Filter.ReturnCode.html |   62 +-
 .../hadoop/hbase/filter/class-use/Filter.html   |   56 +-
 .../hadoop/hbase/filter/package-tree.html   |4 +-
 .../io/class-use/ImmutableBytesWritable.html|   44 +-
 .../hadoop/hbase/io/class-use/TimeRange.html|   28 +-
 .../hbase/io/crypto/class-use/Cipher.html   |   18 +-
 .../hbase/io/encoding/DataBlockEncoding.html|4 +-
 .../mapreduce/class-use/TableRecordReader.html  |4 +-
 .../org/apache/hadoop/hbase/package-tree.html   |2 +-
 .../apache/hadoop/hbase/quotas/QuotaType.html   |4 +-
 .../hadoop/hbase/quotas/package-tree.html   |2 +-
 .../hadoop/hbase/regionserver/BloomType.html|4 +-
 apidocs/org/apache/hadoop/hbase/util/Order.html |4 +-
 .../hadoop/hbase/util/class-use/ByteRange.html  |  124 +-
 .../hadoop/hbase/util/class-use/Bytes.html  |   16 +-
 .../hadoop/hbase/util/class-use/Order.html  |   44 +-
 .../util/class-use/PositionedByteRange.html |  356 +--
 apidocs/overview-tree.html  |   28 +-
 book.html   |2 +-
 checkstyle-aggregate.html   | 2710 +-
 checkstyle.rss  |  328 +--
 devapidocs/constant-values.html |4 +-
 devapidocs/deprecated-list.html |   56 +-
 .../hbase/MetaTableAccessor.QueryType.html  |4 +-
 .../hadoop/hbase/backup/package-tree.html   |2 +-
 .../hadoop/hbase/class-use/Abortable.html   |   38 +-
 .../org/apache/hadoop/hbase/class-use/Cell.html |  914 +++---
 .../hadoop/hbase/class-use/CellComparator.html  |   86 +-
 .../hadoop/hbase/class-use/CellScanner.html |   98 +-
 .../hadoop/hbase/class-use/ClusterStatus.html   |4 +-
 .../hbase/class-use/CoprocessorEnvironment.html |   12 +-
 .../hbase/class-use/HColumnDescriptor.html  |   54 +-
 .../hbase/class-use/HDFSBlocksDistribution.html |4 +-
 .../hadoop/hbase/class-use/HRegionInfo.html |  220 +-
 .../hadoop/hbase/class-use/HRegionLocation.html |  130 +-
 .../hbase/class-use/HTableDescriptor.html   |  118 +-
 .../apache/hadoop/hbase/class-use/KeyValue.html |   62 +-
 .../class-use/MasterNotRunningException.html|   12 +-
 .../hbase/class-use/NamespaceDescriptor.html|   24 +-
 .../hadoop/hbase/class-use/ProcedureInfo.html   |8 +-
 .../hadoop/hbase/class-use/RegionLocations.html |   40 +-
 .../hadoop/hbase/class-use/ScheduledChore.html  |   32 +-
 .../apache/hadoop/hbase/class-use/Server.html   |8 +-
 .../hadoop/hbase/class-use/ServerName.html  |  224 +-
 .../hbase/class-use/TableDescriptors.html   |4 +-
 .../hadoop/hbase/class-use/TableName.html   |  744 ++---
 .../class-use/TableNotDisabledException.html|8 +-
 .../hbase/class-use/TableNotFoundExcept

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/class-use/Cell.html 
b/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
index a332e0c..4526143 100644
--- a/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
+++ b/apidocs/org/apache/hadoop/hbase/class-use/Cell.html
@@ -1091,23 +1091,23 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 
+Append
+Append.add(Cell cell)
+Add column and value to this Append operation.
+
+
+
 Increment
 Increment.add(Cell cell)
 Add the specified KeyValue to this operation.
 
 
-
+
 Put
 Put.add(Cell kv)
 Add the specified KeyValue to this Put operation.
 
 
-
-Append
-Append.add(Cell cell)
-Add column and value to this Append operation.
-
-
 
 Delete
 Delete.addDeleteMarker(Cell kv)
@@ -1185,12 +1185,12 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
   boolean mayHaveMoreCellsInRow) 
 
 
-Increment
-Increment.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
+Append
+Append.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
 
 
-Delete
-Delete.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
+Increment
+Increment.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
 
 
 Mutation
@@ -1203,8 +1203,8 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 Put.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
 
 
-Append
-Append.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
+Delete
+Delete.setFamilyCellMap(http://docs.oracle.com/javase/8/docs/api/java/util/NavigableMap.html?is-external=true";
 title="class or interface in java.util">NavigableMapList> map) 
 
 
 
@@ -1222,67 +1222,67 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 Cell
-ColumnPrefixFilter.getNextCellHint(Cell cell) 
+FilterList.getNextCellHint(Cell currentCell) 
 
 
 Cell
-TimestampsFilter.getNextCellHint(Cell currentCell)
-Pick the next cell that the scanner should seek to.
-
+MultipleColumnPrefixFilter.getNextCellHint(Cell cell) 
 
 
 Cell
-MultiRowRangeFilter.getNextCellHint(Cell currentKV) 
+ColumnRangeFilter.getNextCellHint(Cell cell) 
 
 
-Cell
-ColumnPaginationFilter.getNextCellHint(Cell cell) 
+abstract Cell
+Filter.getNextCellHint(Cell currentCell)
+If the filter returns the match code SEEK_NEXT_USING_HINT, 
then it should also tell which is
+ the next key it must seek to.
+
 
 
 Cell
-ColumnRangeFilter.getNextCellHint(Cell cell) 
+ColumnPaginationFilter.getNextCellHint(Cell cell) 
 
 
 Cell
-FilterList.getNextCellHint(Cell currentCell) 
+FuzzyRowFilter.getNextCellHint(Cell currentCell) 
 
 
 Cell
-MultipleColumnPrefixFilter.getNextCellHint(Cell cell) 
+TimestampsFilter.getNextCellHint(Cell currentCell)
+Pick the next cell that the scanner should seek to.
+
 
 
-abstract Cell
-Filter.getNextCellHint(Cell currentCell)
-If the filter returns the match code SEEK_NEXT_USING_HINT, 
then it should also tell which is
- the next key it must seek to.
-
+Cell
+ColumnPrefixFilter.getNextCellHint(Cell cell) 
 
 
 Cell
-FuzzyRowFilter.getNextCellHint(Cell currentCell) 
+MultiRowRangeFilter.getNextCellHint(Cell currentKV) 
 
 
 Cell
-WhileMatchFilter.transformCell(Cell v) 
+Filter

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/HRegionServer.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/HRegionServer.html 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/HRegionServer.html
index 72cba99..653e5da 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/HRegionServer.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/HRegionServer.html
@@ -285,15 +285,15 @@
 
 
 private HRegionServer
-MetricsTableWrapperAggregateImpl.regionServer 
+MetricsRegionServerWrapperImpl.regionServer 
 
 
 private HRegionServer
-RSRpcServices.regionServer 
+StorefileRefresherChore.regionServer 
 
 
 private HRegionServer
-StorefileRefresherChore.regionServer 
+MetricsTableWrapperAggregateImpl.regionServer 
 
 
 private HRegionServer
@@ -301,7 +301,7 @@
 
 
 private HRegionServer
-MetricsRegionServerWrapperImpl.regionServer 
+RSRpcServices.regionServer 
 
 
 private HRegionServer
@@ -312,13 +312,13 @@
 CompactSplitThread.server 
 
 
-private HRegionServer
-SplitRequest.server 
-
-
 (package private) HRegionServer
 HRegionServer.PeriodicMemstoreFlusher.server 
 
+
+private HRegionServer
+SplitRequest.server 
+
 
 
 
@@ -509,11 +509,11 @@
 
 
 private HRegionServer
-RSStatusTmpl.ImplData.m_regionServer 
+RegionListTmpl.ImplData.m_regionServer 
 
 
 private HRegionServer
-RegionListTmpl.ImplData.m_regionServer 
+RSStatusTmpl.ImplData.m_regionServer 
 
 
 private HRegionServer
@@ -534,11 +534,11 @@
 
 
 HRegionServer
-RSStatusTmpl.ImplData.getRegionServer() 
+RegionListTmpl.ImplData.getRegionServer() 
 
 
 HRegionServer
-RegionListTmpl.ImplData.getRegionServer() 
+RSStatusTmpl.ImplData.getRegionServer() 
 
 
 
@@ -582,11 +582,11 @@
 
 
 void
-RSStatusTmpl.ImplData.setRegionServer(HRegionServer regionServer) 
+RegionListTmpl.ImplData.setRegionServer(HRegionServer regionServer) 
 
 
 void
-RegionListTmpl.ImplData.setRegionServer(HRegionServer regionServer) 
+RSStatusTmpl.ImplData.setRegionServer(HRegionServer regionServer) 
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/InternalScanner.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/InternalScanner.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/InternalScanner.html
index a58a597..1516290 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/InternalScanner.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/InternalScanner.html
@@ -749,14 +749,14 @@
 
 
 InternalScanner
-StripeCompactor.StripeInternalScannerFactory.createScanner(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List scanners,
+Compactor.InternalScannerFactory.createScanner(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List scanners,
  ScanType scanType,
  Compactor.FileDetails fd,
  long smallestReadPoint) 
 
 
 InternalScanner
-Compactor.InternalScannerFactory.createScanner(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List scanners,
+StripeCompactor.StripeInternalScannerFactory.createScanner(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List scanners,
  ScanType scanType,
  Compactor.FileDetails fd,
  long smallestReadPoint) 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/KeyValueScanner.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/KeyValueScanner.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/KeyValueScanner.html
index 2e70a42..af316e0 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/KeyValueScanner.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/KeyValueScanner.html
@@ -648,15 +648,15 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-DefaultMemStore.getScanners(long readPt) 
+MemStore.getScanners(long readPt) 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-MemStore.getScanners(long readPt) 
+CompactingMemStore.getScanners(long readPt) 
 
 
 http://docs.oracle.com/javase/8/doc

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/monitoring/class-use/MonitoredTask.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/monitoring/class-use/MonitoredTask.html 
b/devapidocs/org/apache/hadoop/hbase/monitoring/class-use/MonitoredTask.html
index 399d78e..864b1c1 100644
--- a/devapidocs/org/apache/hadoop/hbase/monitoring/class-use/MonitoredTask.html
+++ b/devapidocs/org/apache/hadoop/hbase/monitoring/class-use/MonitoredTask.html
@@ -164,15 +164,15 @@
 
 
 
+private void
+HMaster.waitForRegionServers(MonitoredTask status) 
+
+
 void
 ServerManager.waitForRegionServers(MonitoredTask status)
 Wait for the region servers to report in.
 
 
-
-private void
-HMaster.waitForRegionServers(MonitoredTask status) 
-
 
 private void
 SplitLogManager.waitForSplittingCompletion(SplitLogManager.TaskBatch batch,

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/namespace/class-use/NamespaceTableAndRegionInfo.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/namespace/class-use/NamespaceTableAndRegionInfo.html
 
b/devapidocs/org/apache/hadoop/hbase/namespace/class-use/NamespaceTableAndRegionInfo.html
index b8cf007..d3a4dfd 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/namespace/class-use/NamespaceTableAndRegionInfo.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/namespace/class-use/NamespaceTableAndRegionInfo.html
@@ -121,13 +121,13 @@
 
 
 NamespaceTableAndRegionInfo
-NamespaceStateManager.getState(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
-Gets an instance of NamespaceTableAndRegionInfo associated 
with namespace.
-
+NamespaceAuditor.getState(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String namespace) 
 
 
 NamespaceTableAndRegionInfo
-NamespaceAuditor.getState(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String namespace) 
+NamespaceStateManager.getState(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
+Gets an instance of NamespaceTableAndRegionInfo associated 
with namespace.
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/nio/class-use/ByteBuff.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/nio/class-use/ByteBuff.html 
b/devapidocs/org/apache/hadoop/hbase/nio/class-use/ByteBuff.html
index 49fc0a6..55b4a74 100644
--- a/devapidocs/org/apache/hadoop/hbase/nio/class-use/ByteBuff.html
+++ b/devapidocs/org/apache/hadoop/hbase/nio/class-use/ByteBuff.html
@@ -185,23 +185,23 @@
 
 
 Codec.Decoder
-CellCodec.getDecoder(ByteBuff buf) 
+KeyValueCodec.getDecoder(ByteBuff buf) 
 
 
 Codec.Decoder
-Codec.getDecoder(ByteBuff buf) 
+CellCodecWithTags.getDecoder(ByteBuff buf) 
 
 
 Codec.Decoder
-KeyValueCodec.getDecoder(ByteBuff buf) 
+Codec.getDecoder(ByteBuff buf) 
 
 
 Codec.Decoder
-KeyValueCodecWithTags.getDecoder(ByteBuff buf) 
+CellCodec.getDecoder(ByteBuff buf) 
 
 
 Codec.Decoder
-CellCodecWithTags.getDecoder(ByteBuff buf) 
+KeyValueCodecWithTags.getDecoder(ByteBuff buf) 
 
 
 Codec.Decoder
@@ -493,20 +493,20 @@
 
 
 
-private ByteBuff
-RowIndexSeekerV1.currentBuffer 
+protected ByteBuff
+BufferedDataBlockEncoder.SeekerState.currentBuffer 
 
 
 protected ByteBuff
-RowIndexSeekerV1.SeekerState.currentBuffer 
+BufferedDataBlockEncoder.BufferedEncodedSeeker.currentBuffer 
 
 
-protected ByteBuff
-BufferedDataBlockEncoder.SeekerState.currentBuffer 
+private ByteBuff
+RowIndexSeekerV1.currentBuffer 
 
 
 protected ByteBuff
-BufferedDataBlockEncoder.BufferedEncodedSeeker.currentBuffer 
+RowIndexSeekerV1.SeekerState.currentBuffer 
 
 
 private ByteBuff
@@ -529,23 +529,23 @@
 
 
 Cell
-RowIndexCodecV1.getFirstKeyCellInBlock(ByteBuff block) 
+CopyKeyDataBlockEncoder.getFirstKeyCellInBlock(ByteBuff block) 
 
 
 Cell
-CopyKeyDataBlockEncoder.getFirstKeyCellInBlock(ByteBuff block) 
+PrefixKeyDeltaEncoder.getFirstKeyCellInBlock(ByteBuff block) 
 
 
 Cell
-DiffKeyDeltaEncoder.getFirstKeyCellInBlock(ByteBuff block) 
+FastDiffDeltaEncoder.getFirstKeyCellInBlock(ByteBuff block) 
 
 
 Cell
-FastDiffDeltaEncoder.getFirstKeyCellInBlock(ByteBuff block) 
+DiffKeyDeltaEncoder.getFirstKeyCellInBlock(ByteBuff block) 
 
 
 Cell
-PrefixKeyDeltaEncoder.getFirstKeyCellInBlock(ByteBuff block) 
+RowIndexCodecV1.getFirstKeyCellInBlock(ByteBuff block) 
 
 
 void
@@ -572,11 +572,11 @@
 
 
 void
-RowIndexSeekerV1.setCurrentBuffer(ByteBuff buffer) 
+BufferedDataBlockEncoder.BufferedEncodedSeeker.setCurrentBuffer(ByteBuff buffer) 
 
 

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/class-use/Abortable.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/Abortable.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/Abortable.html
index 753bfca..63c8246 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/Abortable.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/Abortable.html
@@ -416,11 +416,11 @@
 
 
 private Abortable
-RpcExecutor.abortable 
+SimpleRpcScheduler.abortable 
 
 
 private Abortable
-SimpleRpcScheduler.abortable 
+RpcExecutor.abortable 
 
 
 
@@ -661,9 +661,11 @@
 
 
 RpcScheduler
-FifoRpcSchedulerFactory.create(org.apache.hadoop.conf.Configuration conf,
+RpcSchedulerFactory.create(org.apache.hadoop.conf.Configuration conf,
   PriorityFunction priority,
-  Abortable server) 
+  Abortable server)
+Constructs a RpcScheduler.
+
 
 
 RpcScheduler
@@ -673,11 +675,9 @@
 
 
 RpcScheduler
-RpcSchedulerFactory.create(org.apache.hadoop.conf.Configuration conf,
+FifoRpcSchedulerFactory.create(org.apache.hadoop.conf.Configuration conf,
   PriorityFunction priority,
-  Abortable server)
-Constructs a RpcScheduler.
-
+  Abortable server) 
 
 
 EntityLock
@@ -763,16 +763,16 @@
 ReplicationQueuesArguments.abort 
 
 
-protected Abortable
-ReplicationStateZKBase.abortable 
+private Abortable
+ReplicationPeersZKImpl.abortable 
 
 
 protected Abortable
 ReplicationTableBase.abortable 
 
 
-private Abortable
-ReplicationPeersZKImpl.abortable 
+protected Abortable
+ReplicationStateZKBase.abortable 
 
 
 private Abortable
@@ -1042,18 +1042,18 @@
 
 
 protected Abortable
-ZooKeeperNodeTracker.abortable
-Used to abort if a fatal error occurs
-
-
-
-protected Abortable
 ZooKeeperWatcher.abortable 
 
-
+
 private Abortable
 ZKClusterId.abortable 
 
+
+protected Abortable
+ZooKeeperNodeTracker.abortable
+Used to abort if a fatal error occurs
+
+
 
 private Abortable
 DrainingServerTracker.abortable 



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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/regionserver/wal/class-use/ProtobufLogReader.WALHdrContext.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/wal/class-use/ProtobufLogReader.WALHdrContext.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/wal/class-use/ProtobufLogReader.WALHdrContext.html
index 2e2b8c9..cefb0b6 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/wal/class-use/ProtobufLogReader.WALHdrContext.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/wal/class-use/ProtobufLogReader.WALHdrContext.html
@@ -104,12 +104,12 @@
 
 
 protected ProtobufLogReader.WALHdrContext
-SecureProtobufLogReader.readHeader(org.apache.hadoop.hbase.shaded.protobuf.generated.WALProtos.WALHeader.Builder builder,
+ProtobufLogReader.readHeader(org.apache.hadoop.hbase.shaded.protobuf.generated.WALProtos.WALHeader.Builder builder,
   org.apache.hadoop.fs.FSDataInputStream stream) 
 
 
 protected ProtobufLogReader.WALHdrContext
-ProtobufLogReader.readHeader(org.apache.hadoop.hbase.shaded.protobuf.generated.WALProtos.WALHeader.Builder builder,
+SecureProtobufLogReader.readHeader(org.apache.hadoop.hbase.shaded.protobuf.generated.WALProtos.WALHeader.Builder builder,
   org.apache.hadoop.fs.FSDataInputStream stream) 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/regionserver/wal/class-use/WALActionsListener.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/wal/class-use/WALActionsListener.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/wal/class-use/WALActionsListener.html
index 5d6fc7d..05d364d 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/wal/class-use/WALActionsListener.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/wal/class-use/WALActionsListener.html
@@ -269,7 +269,7 @@
 
 
 protected http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-DisabledWALProvider.DisabledWAL.listeners 
+AbstractFSWALProvider.listeners 
 
 
 private http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
@@ -277,7 +277,7 @@
 
 
 protected http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-AbstractFSWALProvider.listeners 
+DisabledWALProvider.DisabledWAL.listeners 
 
 
 
@@ -334,30 +334,30 @@
 
 
 void
-WALProvider.init(WALFactory factory,
+AbstractFSWALProvider.init(WALFactory factory,
 org.apache.hadoop.conf.Configuration conf,
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List listeners,
-http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String providerId)
-Set up the provider to create wals.
-
+http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String providerId) 
 
 
 void
-DisabledWALProvider.init(WALFactory factory,
+RegionGroupingProvider.init(WALFactory factory,
 org.apache.hadoop.conf.Configuration conf,
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List listeners,
 http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String providerId) 
 
 
 void
-RegionGroupingProvider.init(WALFactory factory,
+WALProvider.init(WALFactory factory,
 org.apache.hadoop.conf.Configuration conf,
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List listeners,
-http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String providerId) 
+http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String providerId)
+Set up the provider to create wals.
+
 
 
 void
-AbstractFSWALProvider.init(WALFactory factory,
+DisabledWALProvider.init(WALFactory factory,
 org.apache.hadoop.conf.Configuration conf,
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List listeners,
 http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in 
java.lang">String providerId) 

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

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/master/class-use/MetricsMaster.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/class-use/MetricsMaster.html 
b/devapidocs/org/apache/hadoop/hbase/master/class-use/MetricsMaster.html
index 00fb262..ed90d26 100644
--- a/devapidocs/org/apache/hadoop/hbase/master/class-use/MetricsMaster.html
+++ b/devapidocs/org/apache/hadoop/hbase/master/class-use/MetricsMaster.html
@@ -222,17 +222,17 @@
 
 
 
-void
-MasterProcedureManagerHost.initialize(MasterServices master,
-  MetricsMaster metricsMaster) 
-
-
 abstract void
 MasterProcedureManager.initialize(MasterServices master,
   MetricsMaster metricsMaster)
 Initialize a globally barriered procedure for master.
 
 
+
+void
+MasterProcedureManagerHost.initialize(MasterServices master,
+  MetricsMaster metricsMaster) 
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/master/class-use/MetricsMasterWrapper.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/class-use/MetricsMasterWrapper.html 
b/devapidocs/org/apache/hadoop/hbase/master/class-use/MetricsMasterWrapper.html
index 26abee1..67cff6e 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/class-use/MetricsMasterWrapper.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/class-use/MetricsMasterWrapper.html
@@ -135,21 +135,21 @@
 
 
 
-MetricsMasterSource
-MetricsMasterSourceFactory.create(MetricsMasterWrapper masterWrapper) 
-
-
 MetricsMasterProcSource
 MetricsMasterProcSourceFactory.create(MetricsMasterWrapper masterWrapper) 
 
-
-MetricsMasterProcSource
-MetricsMasterProcSourceFactoryImpl.create(MetricsMasterWrapper masterWrapper) 
-
 
 MetricsMasterSource
+MetricsMasterSourceFactory.create(MetricsMasterWrapper masterWrapper) 
+
+
+MetricsMasterSource
 MetricsMasterSourceFactoryImpl.create(MetricsMasterWrapper masterWrapper) 
 
+
+MetricsMasterProcSource
+MetricsMasterProcSourceFactoryImpl.create(MetricsMasterWrapper masterWrapper) 
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/master/class-use/RegionPlan.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/class-use/RegionPlan.html 
b/devapidocs/org/apache/hadoop/hbase/master/class-use/RegionPlan.html
index cb85eaa..e5dd7f6 100644
--- a/devapidocs/org/apache/hadoop/hbase/master/class-use/RegionPlan.html
+++ b/devapidocs/org/apache/hadoop/hbase/master/class-use/RegionPlan.html
@@ -276,25 +276,25 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-StochasticLoadBalancer.balanceCluster(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList> clusterState)
-Given the cluster state this will try and approach an 
optimal balance.
+SimpleLoadBalancer.balanceCluster(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList> clusterMap)
+Generate a global load balancing plan according to the 
specified map of
+ server information to the most loaded regions of each server.
 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-SimpleLoadBalancer.balanceCluster(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList> clusterMap)
-Generate a global load balancing plan according to the 
specified map of
- server information to the most loaded regions of each server.
+StochasticLoadBalancer.balanceCluster(http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList> clusterState)
+Given the cluster state this will try and approach an 
optimal balance.
 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-StochasticLoadBalancer.balanceCluster(TableName tableName,
+SimpleLo

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationPeers.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationPeers.html
 
b/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationPeers.html
index 8c57b38..e768cd7 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationPeers.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationPeers.html
@@ -265,15 +265,15 @@
 
 
 private ReplicationPeers
-ReplicationSourceManager.replicationPeers 
+ReplicationSource.replicationPeers 
 
 
 private ReplicationPeers
-ReplicationSource.replicationPeers 
+Replication.replicationPeers 
 
 
 private ReplicationPeers
-Replication.replicationPeers 
+ReplicationSourceManager.replicationPeers 
 
 
 private ReplicationPeers

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationQueues.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationQueues.html
 
b/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationQueues.html
index 7bebf07..7f8b4b2 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationQueues.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationQueues.html
@@ -151,15 +151,15 @@
 
 
 private ReplicationQueues
-ReplicationSourceManager.replicationQueues 
+ReplicationSource.replicationQueues 
 
 
 private ReplicationQueues
-ReplicationSource.replicationQueues 
+Replication.replicationQueues 
 
 
 private ReplicationQueues
-Replication.replicationQueues 
+ReplicationSourceManager.replicationQueues 
 
 
 private ReplicationQueues

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationTracker.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationTracker.html
 
b/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationTracker.html
index 373d114..b3d3829 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationTracker.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/replication/class-use/ReplicationTracker.html
@@ -147,11 +147,11 @@
 
 
 private ReplicationTracker
-ReplicationSourceManager.replicationTracker 
+Replication.replicationTracker 
 
 
 private ReplicationTracker
-Replication.replicationTracker 
+ReplicationSourceManager.replicationTracker 
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/replication/class-use/WALEntryFilter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/replication/class-use/WALEntryFilter.html 
b/devapidocs/org/apache/hadoop/hbase/replication/class-use/WALEntryFilter.html
index ffad47a..d70f824 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/replication/class-use/WALEntryFilter.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/replication/class-use/WALEntryFilter.html
@@ -185,14 +185,14 @@
 
 
 WALEntryFilter
-ReplicationEndpoint.getWALEntryfilter()
-Returns a WALEntryFilter to use for filtering out 
WALEntries from the log.
+BaseReplicationEndpoint.getWALEntryfilter()
+Returns a default set of filters
 
 
 
 WALEntryFilter
-BaseReplicationEndpoint.getWALEntryfilter()
-Returns a default set of filters
+ReplicationEndpoint.getWALEntryfilter()
+Returns a WALEntryFilter to use for filtering out 
WALEntries from the log.
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/replication/regionserver/class-use/MetricsReplicationSourceImpl.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/replication/regionserver/class-use/MetricsReplicationSourceImpl.html
 
b/devapidocs/org/apache/hadoop/hbase/replication/regionserver/class-use/MetricsReplicationSourceImpl.html
index 9cffb66..4c2ce9f 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/replication/regionserver/class-use/MetricsReplicationSourceImpl.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/replication/regionserver/class-use/MetricsReplicationSourceImpl.html
@@ -104,11 +104,11 @@
 
 
 private MetricsReplicationSourceImpl
-MetricsReplicationSourceSourceImpl.rms 
+MetricsReplicationGlobalSourceSource.rms 
 
 
 private MetricsReplicationSourceImpl
-MetricsReplicationGlobalSourceSource.rms 
+MetricsReplicationSourceSourceImpl.rms 
 
 
 (package private) MetricsReplicationSourceImpl

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/replication/regionserver

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/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 fbbb727..5f69a6c 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/ServerName.html
@@ -622,19 +622,19 @@
 
 
 private ServerName
-AsyncRequestFutureImpl.SingleServerRequestRunnable.server 
+FastFailInterceptorContext.server 
 
 
 private ServerName
-FastFailInterceptorContext.server 
+AsyncRequestFutureImpl.SingleServerRequestRunnable.server 
 
 
 private ServerName
-AsyncAdminRequestRetryingCaller.serverName 
+AsyncRpcRetryingCallerFactory.AdminRequestCallerBuilder.serverName 
 
 
 private ServerName
-AsyncRpcRetryingCallerFactory.AdminRequestCallerBuilder.serverName 
+AsyncAdminRequestRetryingCaller.serverName 
 
 
 private ServerName
@@ -734,13 +734,13 @@
 
 
 
-(package private) Pair
-HBaseAdmin.getRegion(byte[] regionName) 
-
-
 (package private) http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture>
 AsyncHBaseAdmin.getRegion(byte[] regionName) 
 
+
+(package private) Pair
+HBaseAdmin.getRegion(byte[] regionName) 
+
 
 private Pair
 ZKAsyncRegistry.getStateAndServerName(org.apache.hadoop.hbase.shaded.protobuf.generated.ZooKeeperProtos.MetaRegionServer proto) 
@@ -793,16 +793,16 @@
 ServerName serverName) 
 
 
-private void
-ConnectionImplementation.cacheLocation(TableName tableName,
+void
+MetaCache.cacheLocation(TableName tableName,
  ServerName source,
  HRegionLocation location)
 Put a newly discovered HRegionLocation into the cache.
 
 
 
-void
-MetaCache.cacheLocation(TableName tableName,
+private void
+ConnectionImplementation.cacheLocation(TableName tableName,
  ServerName source,
  HRegionLocation location)
 Put a newly discovered HRegionLocation into the cache.
@@ -831,20 +831,18 @@
 
 
 void
-ClusterConnection.clearCaches(ServerName sn)
-Clear any caches that pertain to server name 
sn.
-
+ConnectionImplementation.clearCaches(ServerName serverName) 
 
 
 void
-ConnectionImplementation.clearCaches(ServerName serverName) 
+ClusterConnection.clearCaches(ServerName sn)
+Clear any caches that pertain to server name 
sn.
+
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-AsyncAdmin.closeRegion(ServerName sn,
-   HRegionInfo hri)
-Close a region.
-
+AsyncHBaseAdmin.closeRegion(ServerName sn,
+   HRegionInfo hri) 
 
 
 void
@@ -860,8 +858,10 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-AsyncHBaseAdmin.closeRegion(ServerName sn,
-   HRegionInfo hri) 
+AsyncAdmin.closeRegion(ServerName sn,
+   HRegionInfo hri)
+Close a region.
+
 
 
 private void
@@ -973,13 +973,13 @@
 
 
 org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.AdminService.BlockingInterface
-ClusterConnection.getAdmin(ServerName serverName)
-Establishes a connection to the region server at the 
specified address.
-
+ConnectionImplementation.getAdmin(ServerName serverName) 
 
 
 org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.AdminService.BlockingInterface
-ConnectionImplementation.getAdmin(ServerName serverName) 
+ClusterConnection.getAdmin(ServerName serverName)
+Establishes a connection to the region server at the 
specified address.
+
 
 
 (package private) 
org.apache.hadoop.hbase.shaded.protobuf.generated.AdminProtos.AdminService.Interface
@@ -992,15 +992,15 @@
 
 
 org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.ClientService.BlockingInterface
+ConnectionImplementation.getClient(ServerName serverName) 
+
+
+org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.ClientService.BlockingInterface
 ClusterConnection.getClient(ServerName serverName)
 Establishes a connection to the region server at the 
specified address, and returns
  a region client protocol.
 
 
-
-org.apache.hadoop.hbase.shaded.protobuf.generated.ClientProtos.ClientService.BlockingInterface
-ConnectionImplementation.getClient(ServerName serverName) 
-
 
 org.apache.hadoop.hbase.shaded.protob

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/io/Reference.Range.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/io/Reference.Range.html 
b/devapidocs/org/apache/hadoop/hbase/io/Reference.Range.html
index 2408858..8a19eda 100644
--- a/devapidocs/org/apache/hadoop/hbase/io/Reference.Range.html
+++ b/devapidocs/org/apache/hadoop/hbase/io/Reference.Range.html
@@ -244,7 +244,7 @@ the order they are declared.
 
 
 values
-public static Reference.Range[] values()
+public static Reference.Range[] values()
 Returns an array containing the constants of this enum 
type, in
 the order they are declared.  This method may be used to iterate
 over the constants as follows:
@@ -264,7 +264,7 @@ for (Reference.Range c : Reference.Range.values())
 
 
 valueOf
-public static Reference.Range valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
+public static Reference.Range valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
 Returns the enum constant of this type with the specified 
name.
 The string must match exactly an identifier used to declare an
 enum constant in this type.  (Extraneous whitespace characters are 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html 
b/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
index 44310c8..b6e7034 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/io/class-use/ImmutableBytesWritable.html
@@ -162,11 +162,11 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 ImmutableBytesWritable
-TableSnapshotInputFormat.TableSnapshotRecordReader.createKey() 
+TableRecordReader.createKey() 
 
 
 ImmutableBytesWritable
-TableRecordReader.createKey() 
+TableSnapshotInputFormat.TableSnapshotRecordReader.createKey() 
 
 
 ImmutableBytesWritable
@@ -183,9 +183,11 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapred.RecordReader
-TableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
+TableInputFormatBase.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
org.apache.hadoop.mapred.JobConf job,
-   
org.apache.hadoop.mapred.Reporter reporter) 
+   org.apache.hadoop.mapred.Reporter reporter)
+Builds a TableRecordReader.
+
 
 
 org.apache.hadoop.mapred.RecordReader
@@ -195,11 +197,9 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapred.RecordReader
-TableInputFormatBase.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
+TableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
org.apache.hadoop.mapred.JobConf job,
-   org.apache.hadoop.mapred.Reporter reporter)
-Builds a TableRecordReader.
-
+   
org.apache.hadoop.mapred.Reporter reporter) 
 
 
 
@@ -218,10 +218,12 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-RowCounter.RowCounterMapper.map(ImmutableBytesWritable row,
-   Result values,
+IdentityTableMap.map(ImmutableBytesWritable key,
+   Result value,
org.apache.hadoop.mapred.OutputCollector output,
-   org.apache.hadoop.mapred.Reporter reporter) 
+   org.apache.hadoop.mapred.Reporter reporter)
+Pass the key, value to reduce
+
 
 
 void
@@ -234,21 +236,19 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-IdentityTableMap.map(ImmutableBytesWritable key,
-   Result value,
+RowCounter.RowCounterMapper.map(ImmutableBytesWritable row,
+   Result values,
org.apache.hadoop.mapred.OutputCollector output,
-   org.apache.hadoop.mapred.Reporter reporter)
-Pass the key, value to reduce
-
+   org.apache.hadoop.mapred.Reporter reporter) 
 
 
 boolean
-TableSnapshotInputFormat.TableSnapshotRecordReader.next(ImmutableBytesWritable key,
+TableRecordReader.next(ImmutableBytesWritable key,
 Result value) 
 
 
 boolean
-TableRecordReader.next(ImmutableBytesWritable key,
+TableSnapshotInputFormat.TableSnapshotRecordReader.next(ImmutableBytesWritable key,
 Result value) 
 
 
@@ -281,10 +281,12 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-RowCounter.RowCounterMapper.map(ImmutableBytesWrita

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
index 880dc7c..81c6842 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
@@ -214,9 +214,9 @@ service.
 
 
 
-ResultScanner
-HTable.getScanner(byte[] family)
-The underlying HTable must 
not be closed.
+default ResultScanner
+AsyncTable.getScanner(byte[] family)
+Gets a scanner on the current table for the given 
family.
 
 
 
@@ -226,9 +226,9 @@ service.
 
 
 
-default ResultScanner
-AsyncTable.getScanner(byte[] family)
-Gets a scanner on the current table for the given 
family.
+ResultScanner
+HTable.getScanner(byte[] family)
+The underlying HTable must 
not be closed.
 
 
 
@@ -236,10 +236,10 @@ service.
 HTableWrapper.getScanner(byte[] family) 
 
 
-ResultScanner
-HTable.getScanner(byte[] family,
+default ResultScanner
+AsyncTable.getScanner(byte[] family,
   byte[] qualifier)
-The underlying HTable must 
not be closed.
+Gets a scanner on the current table for the given family 
and qualifier.
 
 
 
@@ -250,10 +250,10 @@ service.
 
 
 
-default ResultScanner
-AsyncTable.getScanner(byte[] family,
+ResultScanner
+HTable.getScanner(byte[] family,
   byte[] qualifier)
-Gets a scanner on the current table for the given family 
and qualifier.
+The underlying HTable must 
not be closed.
 
 
 
@@ -263,8 +263,8 @@ service.
 
 
 ResultScanner
-HTable.getScanner(Scan scan)
-The underlying HTable must 
not be closed.
+AsyncTable.getScanner(Scan scan)
+Returns a scanner on the current table as specified by the 
Scan 
object.
 
 
 
@@ -280,8 +280,8 @@ service.
 
 
 ResultScanner
-AsyncTable.getScanner(Scan scan)
-Returns a scanner on the current table as specified by the 
Scan 
object.
+HTable.getScanner(Scan scan)
+The underlying HTable must 
not be closed.
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
index 0592ae0..00aece9 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RetriesExhaustedWithDetailsException.html
@@ -106,11 +106,11 @@
 
 
 RetriesExhaustedWithDetailsException
-AsyncRequestFutureImpl.getErrors() 
+AsyncRequestFuture.getErrors() 
 
 
 RetriesExhaustedWithDetailsException
-AsyncRequestFuture.getErrors() 
+AsyncRequestFutureImpl.getErrors() 
 
 
 (package private) RetriesExhaustedWithDetailsException

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
index 3b5059c..c18883d 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/RetryingCallable.html
@@ -238,36 +238,28 @@
 
 
 
-T
-RpcRetryingCallerImpl.callWithoutRetries(RetryingCallable callable,
-  int callTimeout) 
-
-
 T
 RpcRetryingCaller.callWithoutRetries(RetryingCallable callable,
   int callTimeout)
 Call the server once only.
 
 
-
+
 T
-RpcRetryingCallerImpl.callWithRetries(RetryingCallable callable,
-   int callTimeout) 
+RpcRetryingCallerImpl.callWithoutRetries(RetryingCallable callable,
+  int callTimeout) 
 
-
+
 T
 RpcRetryingCaller.callWithRetries(RetryingCallable callable,
int callTimeout)
 Retries if invocation fails.
 
 
-
-RetryingCallerInterceptorContext
-NoOpRetryingInterceptorContext.prepare(RetryingCallable callable) 
-
 
-FastFailInterceptorContext
-FastFailInterceptorContext.prepare(RetryingCallable callable) 
+T
+RpcRetryingCallerImpl.callWithRetries(RetryingCallable callable,
+   int callTimeout) 
 
 
 abstract RetryingCallerInterceptorContext
@@ -279,13 +271,11 @@
 
 
 RetryingCallerInterceptorContext
-NoOpRetryingInterceptorContext.prepare(RetryingCallable callable,
-   int tries) 
+NoOpRetryingInterceptorContext.prepare(RetryingCallable callable) 
 
 
 FastFailInterceptorContext
-FastFailInterceptorContext.prep

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/quotas/class-use/MasterQuotaManager.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/quotas/class-use/MasterQuotaManager.html 
b/devapidocs/org/apache/hadoop/hbase/quotas/class-use/MasterQuotaManager.html
index 26ea8a0..a6efad8 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/quotas/class-use/MasterQuotaManager.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/quotas/class-use/MasterQuotaManager.html
@@ -121,11 +121,11 @@
 
 
 MasterQuotaManager
-MasterServices.getMasterQuotaManager() 
+HMaster.getMasterQuotaManager() 
 
 
 MasterQuotaManager
-HMaster.getMasterQuotaManager() 
+MasterServices.getMasterQuotaManager() 
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/quotas/class-use/QuotaLimiter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/quotas/class-use/QuotaLimiter.html 
b/devapidocs/org/apache/hadoop/hbase/quotas/class-use/QuotaLimiter.html
index ec7c922..56079e7 100644
--- a/devapidocs/org/apache/hadoop/hbase/quotas/class-use/QuotaLimiter.html
+++ b/devapidocs/org/apache/hadoop/hbase/quotas/class-use/QuotaLimiter.html
@@ -162,13 +162,13 @@
 
 
 
-static QuotaLimiter
-QuotaLimiterFactory.fromThrottle(org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.Throttle throttle) 
-
-
 (package private) static QuotaLimiter
 TimeBasedLimiter.fromThrottle(org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.Throttle throttle) 
 
+
+static QuotaLimiter
+QuotaLimiterFactory.fromThrottle(org.apache.hadoop.hbase.shaded.protobuf.generated.QuotaProtos.Throttle throttle) 
+
 
 static QuotaLimiter
 NoopQuotaLimiter.get() 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/quotas/class-use/QuotaType.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/quotas/class-use/QuotaType.html 
b/devapidocs/org/apache/hadoop/hbase/quotas/class-use/QuotaType.html
index 19f8727..05b842d 100644
--- a/devapidocs/org/apache/hadoop/hbase/quotas/class-use/QuotaType.html
+++ b/devapidocs/org/apache/hadoop/hbase/quotas/class-use/QuotaType.html
@@ -116,17 +116,17 @@
 
 
 
-abstract QuotaType
-QuotaSettings.getQuotaType() 
-
-
 QuotaType
 ThrottleSettings.getQuotaType() 
 
-
+
 QuotaType
 QuotaSettingsFactory.QuotaGlobalsSettingsBypass.getQuotaType() 
 
+
+abstract QuotaType
+QuotaSettings.getQuotaType() 
+
 
 static QuotaType
 QuotaType.valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/quotas/class-use/ThrottlingException.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/quotas/class-use/ThrottlingException.html 
b/devapidocs/org/apache/hadoop/hbase/quotas/class-use/ThrottlingException.html
index 337da08..8140ed2 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/quotas/class-use/ThrottlingException.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/quotas/class-use/ThrottlingException.html
@@ -104,13 +104,13 @@
 
 
 void
-DefaultOperationQuota.checkQuota(int numWrites,
+NoopOperationQuota.checkQuota(int numWrites,
   int numReads,
   int numScans) 
 
 
 void
-NoopOperationQuota.checkQuota(int numWrites,
+DefaultOperationQuota.checkQuota(int numWrites,
   int numReads,
   int numScans) 
 
@@ -124,13 +124,13 @@
 
 
 void
-NoopQuotaLimiter.checkQuota(long estimateWriteSize,
-  long estimateReadSize) 
+TimeBasedLimiter.checkQuota(long writeSize,
+  long readSize) 
 
 
 void
-TimeBasedLimiter.checkQuota(long writeSize,
-  long readSize) 
+NoopQuotaLimiter.checkQuota(long estimateWriteSize,
+  long estimateReadSize) 
 
 
 void

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/quotas/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/quotas/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/quotas/package-tree.html
index 628228f..25ba2c2 100644
--- a/devapidocs/org/apache/hadoop/hbase/quotas/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/quotas/package-tree.html
@@ -179,10 +179,10 @@
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Se

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
index 2812ba9..d3cba55 100644
--- a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
+++ b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.ReturnCode.html
@@ -140,111 +140,111 @@
 
 
 Filter.ReturnCode
-ColumnPrefixFilter.filterKeyValue(Cell cell) 
+ValueFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-ColumnCountGetFilter.filterKeyValue(Cell v) 
+SkipFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-RowFilter.filterKeyValue(Cell v) 
+FamilyFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-FuzzyRowFilter.filterKeyValue(Cell c) 
+FilterWrapper.filterKeyValue(Cell v) 
 
 
-abstract Filter.ReturnCode
-Filter.filterKeyValue(Cell v)
-A way to filter based on the column family, column 
qualifier and/or the column value.
-
+Filter.ReturnCode
+ColumnPrefixFilter.filterKeyValue(Cell cell) 
 
 
 Filter.ReturnCode
-RandomRowFilter.filterKeyValue(Cell v) 
+PageFilter.filterKeyValue(Cell ignored) 
 
 
 Filter.ReturnCode
-FirstKeyOnlyFilter.filterKeyValue(Cell v) 
+RowFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-SkipFilter.filterKeyValue(Cell v) 
+ColumnRangeFilter.filterKeyValue(Cell kv) 
 
 
 Filter.ReturnCode
-TimestampsFilter.filterKeyValue(Cell v) 
+ColumnCountGetFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-ValueFilter.filterKeyValue(Cell v) 
+MultipleColumnPrefixFilter.filterKeyValue(Cell kv) 
 
 
 Filter.ReturnCode
-KeyOnlyFilter.filterKeyValue(Cell ignored) 
+ColumnPaginationFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-FamilyFilter.filterKeyValue(Cell v) 
+DependentColumnFilter.filterKeyValue(Cell c) 
 
 
 Filter.ReturnCode
-QualifierFilter.filterKeyValue(Cell v) 
+InclusiveStopFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-FilterList.filterKeyValue(Cell c) 
+KeyOnlyFilter.filterKeyValue(Cell ignored) 
 
 
 Filter.ReturnCode
-ColumnRangeFilter.filterKeyValue(Cell kv) 
+MultiRowRangeFilter.filterKeyValue(Cell ignored) 
 
 
-Filter.ReturnCode
-ColumnPaginationFilter.filterKeyValue(Cell v) 
+abstract Filter.ReturnCode
+Filter.filterKeyValue(Cell v)
+A way to filter based on the column family, column 
qualifier and/or the column value.
+
 
 
 Filter.ReturnCode
-WhileMatchFilter.filterKeyValue(Cell v) 
+FirstKeyOnlyFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-MultiRowRangeFilter.filterKeyValue(Cell ignored) 
+WhileMatchFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-PrefixFilter.filterKeyValue(Cell v) 
+FirstKeyValueMatchingQualifiersFilter.filterKeyValue(Cell v)
+Deprecated. 
+ 
 
 
 Filter.ReturnCode
-DependentColumnFilter.filterKeyValue(Cell c) 
+TimestampsFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-FirstKeyValueMatchingQualifiersFilter.filterKeyValue(Cell v)
-Deprecated. 
- 
+FuzzyRowFilter.filterKeyValue(Cell c) 
 
 
 Filter.ReturnCode
-PageFilter.filterKeyValue(Cell ignored) 
+FilterList.filterKeyValue(Cell c) 
 
 
 Filter.ReturnCode
-InclusiveStopFilter.filterKeyValue(Cell v) 
+RandomRowFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-FilterWrapper.filterKeyValue(Cell v) 
+PrefixFilter.filterKeyValue(Cell v) 
 
 
 Filter.ReturnCode
-MultipleColumnPrefixFilter.filterKeyValue(Cell kv) 
+SingleColumnValueFilter.filterKeyValue(Cell c) 
 
 
 Filter.ReturnCode
-SingleColumnValueFilter.filterKeyValue(Cell c) 
+QualifierFilter.filterKeyValue(Cell v) 
 
 
 static Filter.ReturnCode

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html 
b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
index abddd91..8f44ebe 100644
--- a/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
+++ b/devapidocs/org/apache/hadoop/hbase/filter/class-use/Filter.html
@@ -433,13 +433,13 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 SkipFilter.filter 
 
 
-private Filter
-WhileMatchFilter.filter 
-
-
 (package private) Filter
 FilterWrapper.filter 
 
+
+private Filter
+WhileMatchFilter.filter 
+
 
 private Filter
 FilterList.seekHintFilter 
@@ -468,15 +468,15 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 static Filter
-ColumnPrefixFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in 
java.util">ArrayList filterArguments) 
+SingleColumnValueExcludeFilter.createFilterFromArguments(http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.ht

hbase-site git commit: INFRA-10751 Empty commit

2017-03-31 Thread git-site-role
Repository: hbase-site
Updated Branches:
  refs/heads/asf-site 86312ed12 -> f4c53fb1f


INFRA-10751 Empty commit


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

Branch: refs/heads/asf-site
Commit: f4c53fb1f1aa46fbbb8e4b1e6378383455fd69f1
Parents: 86312ed
Author: jenkins 
Authored: Fri Mar 31 21:32:05 2017 +
Committer: jenkins 
Committed: Fri Mar 31 21:32:05 2017 +

--

--




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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/util/class-use/Pair.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/util/class-use/Pair.html 
b/devapidocs/org/apache/hadoop/hbase/util/class-use/Pair.html
index 7b4d9fc..5b544b1 100644
--- a/devapidocs/org/apache/hadoop/hbase/util/class-use/Pair.html
+++ b/devapidocs/org/apache/hadoop/hbase/util/class-use/Pair.html
@@ -487,14 +487,14 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 Pair
-RegionLocator.getStartEndKeys()
+HRegionLocator.getStartEndKeys()
 Gets the starting and ending row keys for every region in 
the currently
  open table.
 
 
 
 Pair
-HRegionLocator.getStartEndKeys()
+RegionLocator.getStartEndKeys()
 Gets the starting and ending row keys for every region in 
the currently
  open table.
 
@@ -518,15 +518,15 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureInteger,http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true";
 title="class or interface in java.lang">Integer>>
+AsyncHBaseAdmin.getAlterStatus(TableName tableName) 
+
+
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureInteger,http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true";
 title="class or interface in java.lang">Integer>>
 AsyncAdmin.getAlterStatus(TableName tableName)
 Get the status of alter command - indicates how many 
regions have received the updated schema
  Asynchronous operation.
 
 
-
-http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureInteger,http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true";
 title="class or interface in java.lang">Integer>>
-AsyncHBaseAdmin.getAlterStatus(TableName tableName) 
-
 
 (package private) http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture>
 AsyncHBaseAdmin.getRegion(byte[] regionName) 
@@ -903,15 +903,6 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 Pair
-SimpleRpcServer.call(org.apache.hadoop.hbase.shaded.com.google.protobuf.BlockingService service,
-
org.apache.hadoop.hbase.shaded.com.google.protobuf.Descriptors.MethodDescriptor md,
-org.apache.hadoop.hbase.shaded.com.google.protobuf.Message param,
-CellScanner cellScanner,
-long receiveTime,
-MonitoredRPCHandler status) 
-
-
-Pair
 RpcServerInterface.call(org.apache.hadoop.hbase.shaded.com.google.protobuf.BlockingService service,
 
org.apache.hadoop.hbase.shaded.com.google.protobuf.Descriptors.MethodDescriptor md,
 org.apache.hadoop.hbase.shaded.com.google.protobuf.Message param,
@@ -923,18 +914,16 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-
+
 Pair
-SimpleRpcServer.call(org.apache.hadoop.hbase.shaded.com.google.protobuf.BlockingService service,
+SimpleRpcServer.call(org.apache.hadoop.hbase.shaded.com.google.protobuf.BlockingService service,
 
org.apache.hadoop.hbase.shaded.com.google.protobuf.Descriptors.MethodDescriptor md,
 org.apache.hadoop.hbase.shaded.com.google.protobuf.Message param,
 CellScanner cellScanner,
 long receiveTime,
-MonitoredRPCHandler status,
-long startTime,
-int timeout) 
+MonitoredRPCHandler status) 
 
-
+
 Pair
 RpcServerInterface.call(org.apache.hadoop.hbase.shaded.com.google.protobuf.BlockingService service,
 
org.apache.hadoop.hbase.shaded.com.google.protobuf.Descriptors.MethodDescriptor md,
@@ -949,6 +938,17 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
+
+Pair
+SimpleRp

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/apidocs/overview-tree.html
--
diff --git a/apidocs/overview-tree.html b/apidocs/overview-tree.html
index 8b53c07..6430e10 100644
--- a/apidocs/overview-tree.html
+++ b/apidocs/overview-tree.html
@@ -874,31 +874,31 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
-org.apache.hadoop.hbase.filter.BitComparator.BitwiseOp
+org.apache.hadoop.hbase.MemoryCompactionPolicy
+org.apache.hadoop.hbase.KeepDeletedCells
+org.apache.hadoop.hbase.ProcedureState
 org.apache.hadoop.hbase.filter.FilterList.Operator
 org.apache.hadoop.hbase.filter.CompareFilter.CompareOp
-org.apache.hadoop.hbase.filter.Filter.ReturnCode
+org.apache.hadoop.hbase.filter.BitComparator.BitwiseOp
 org.apache.hadoop.hbase.filter.RegexStringComparator.EngineType
-org.apache.hadoop.hbase.KeepDeletedCells
-org.apache.hadoop.hbase.MemoryCompactionPolicy
-org.apache.hadoop.hbase.ProcedureState
-org.apache.hadoop.hbase.io.encoding.DataBlockEncoding
+org.apache.hadoop.hbase.filter.Filter.ReturnCode
 org.apache.hadoop.hbase.util.Order
-org.apache.hadoop.hbase.regionserver.BloomType
+org.apache.hadoop.hbase.io.encoding.DataBlockEncoding
 org.apache.hadoop.hbase.quotas.ThrottlingException.Type
 org.apache.hadoop.hbase.quotas.QuotaScope
-org.apache.hadoop.hbase.quotas.ThrottleType
 org.apache.hadoop.hbase.quotas.QuotaType
-org.apache.hadoop.hbase.client.Durability
+org.apache.hadoop.hbase.quotas.ThrottleType
+org.apache.hadoop.hbase.regionserver.BloomType
 org.apache.hadoop.hbase.client.SnapshotType
-org.apache.hadoop.hbase.client.MasterSwitchType
-org.apache.hadoop.hbase.client.CompactType
+org.apache.hadoop.hbase.client.Durability
 org.apache.hadoop.hbase.client.MobCompactPartitionPolicy
-org.apache.hadoop.hbase.client.CompactionState
-org.apache.hadoop.hbase.client.Scan.ReadType
-org.apache.hadoop.hbase.client.RequestController.ReturnCode
 org.apache.hadoop.hbase.client.IsolationLevel
+org.apache.hadoop.hbase.client.RequestController.ReturnCode
+org.apache.hadoop.hbase.client.Scan.ReadType
+org.apache.hadoop.hbase.client.CompactionState
+org.apache.hadoop.hbase.client.MasterSwitchType
 org.apache.hadoop.hbase.client.Consistency
+org.apache.hadoop.hbase.client.CompactType
 org.apache.hadoop.hbase.client.security.SecurityCapability
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/book.html
--
diff --git a/book.html b/book.html
index 668232a..2503f53 100644
--- a/book.html
+++ b/book.html
@@ -34832,7 +34832,7 @@ The server will return cellblocks compressed using this 
same compressor as long
 
 
 Version 2.0.0-SNAPSHOT
-Last updated 2017-03-31 20:05:23 +00:00
+Last updated 2017-03-31 20:41:07 +00:00
 
 
 



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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
index 0f0a1d8..08c51f5 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/HRegionInfo.html
@@ -587,7 +587,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 private static HRegionLocation
-MetaTableAccessor.getRegionLocation(Result r,
+AsyncMetaTableAccessor.getRegionLocation(Result r,
  HRegionInfo regionInfo,
  int replicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -596,7 +596,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 private static HRegionLocation
-AsyncMetaTableAccessor.getRegionLocation(Result r,
+MetaTableAccessor.getRegionLocation(Result r,
  HRegionInfo regionInfo,
  int replicaId)
 Returns the HRegionLocation parsed from the given meta row 
Result
@@ -979,7 +979,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 HRegionInfo
-RegionServerCallable.getHRegionInfo() 
+ScannerCallableWithReplicas.getHRegionInfo() 
 
 
 HRegionInfo
@@ -991,7 +991,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 HRegionInfo
-ScannerCallableWithReplicas.getHRegionInfo() 
+RegionServerCallable.getHRegionInfo() 
 
 
 private HRegionInfo
@@ -1030,13 +1030,13 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 HBaseAdmin.getOnlineRegions(ServerName sn) 
 
 
-(package private) Pair
-HBaseAdmin.getRegion(byte[] regionName) 
-
-
 (package private) http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFuture>
 AsyncHBaseAdmin.getRegion(byte[] regionName) 
 
+
+(package private) Pair
+HBaseAdmin.getRegion(byte[] regionName) 
+
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 Admin.getTableRegions(TableName tableName)
@@ -1064,10 +1064,8 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-AsyncAdmin.closeRegion(ServerName sn,
-   HRegionInfo hri)
-Close a region.
-
+AsyncHBaseAdmin.closeRegion(ServerName sn,
+   HRegionInfo hri) 
 
 
 void
@@ -1083,8 +1081,10 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
-AsyncHBaseAdmin.closeRegion(ServerName sn,
-   HRegionInfo hri) 
+AsyncAdmin.closeRegion(ServerName sn,
+   HRegionInfo hri)
+Close a region.
+
 
 
 private void
@@ -1154,14 +1154,14 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
  http://docs.oracle.com/javase/8/docs/api/java/lang/Throwable.html?is-external=true";
 title="class or interface in 
java.lang">Throwable error) 
 
 
-void
-HBaseAdmin.split(ServerName sn,
+http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureVoid>
+AsyncHBaseAdmin.split(ServerName sn,
  HRegionInfo hri,
  byte[] 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">CompletableFutureVoid>
-AsyncHBaseAdmin.split(ServerName sn,
+void
+HBaseAdmin.split(ServerName sn,
  HRegionInfo hri,
  byte[] splitPoint) 
 
@@ -1303,17 +1303,17 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 void
-SplitLogManagerCoordination.markRegionsRecovering(ServerName serverName,
+ZKSplitLogManagerCoordination.markRegionsRecoverin

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html 
b/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
index 064c5e3..25e8e89 100644
--- a/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
+++ b/devapidocs/org/apache/hadoop/hbase/class-use/TableName.html
@@ -1954,111 +1954,111 @@ service.
 
 
 private TableName
-SnapshotDescription.table 
-
-
-private TableName
 RegionCoprocessorRpcChannel.table 
 
-
-private TableName
-RawAsyncTableImpl.tableName 
-
 
 private TableName
-RegionServerCallable.tableName 
+SnapshotDescription.table 
 
 
 protected TableName
-RegionAdminServiceCallable.tableName 
+AsyncHBaseAdmin.TableProcedureBiConsumer.tableName 
 
 
 private TableName
-BufferedMutatorImpl.tableName 
+HRegionLocator.tableName 
 
 
 private TableName
-AsyncProcessTask.tableName 
+ScannerCallableWithReplicas.tableName 
 
 
 private TableName
-AsyncProcessTask.Builder.tableName 
+ClientScanner.tableName 
 
 
 private TableName
-AsyncRequestFutureImpl.tableName 
+AsyncClientScanner.tableName 
 
 
-protected TableName
-TableBuilderBase.tableName 
+private TableName
+AsyncRpcRetryingCallerFactory.SingleRequestCallerBuilder.tableName 
 
 
 private TableName
-AsyncBatchRpcRetryingCaller.tableName 
+AsyncRpcRetryingCallerFactory.BatchCallerBuilder.tableName 
 
 
 private TableName
-HTable.tableName 
+RawAsyncTableImpl.tableName 
 
 
 private TableName
-TableState.tableName 
+RegionCoprocessorRpcChannelImpl.tableName 
 
 
-protected TableName
-RpcRetryingCallerWithReadReplicas.tableName 
+private TableName
+AsyncTableRegionLocatorImpl.tableName 
 
 
 protected TableName
-AsyncTableBuilderBase.tableName 
+RegionAdminServiceCallable.tableName 
 
 
 private TableName
-AsyncSingleRequestRpcRetryingCaller.tableName 
+HTable.tableName 
 
 
 private TableName
-ScannerCallableWithReplicas.tableName 
+BufferedMutatorImpl.tableName 
 
 
 private TableName
-AsyncTableRegionLocatorImpl.tableName 
+AsyncBatchRpcRetryingCaller.tableName 
 
 
 private TableName
-HBaseAdmin.TableFuture.tableName 
+BufferedMutatorParams.tableName 
 
 
 private TableName
-RegionCoprocessorRpcChannelImpl.tableName 
+HBaseAdmin.TableFuture.tableName 
 
 
-protected TableName
-AsyncHBaseAdmin.TableProcedureBiConsumer.tableName 
+private TableName
+AsyncRequestFutureImpl.tableName 
 
 
 private TableName
-ClientScanner.tableName 
+AsyncProcessTask.tableName 
 
 
 private TableName
-BufferedMutatorParams.tableName 
+AsyncProcessTask.Builder.tableName 
 
 
 private TableName
-AsyncClientScanner.tableName 
+RegionServerCallable.tableName 
 
 
 private TableName
-AsyncRpcRetryingCallerFactory.SingleRequestCallerBuilder.tableName 
+AsyncSingleRequestRpcRetryingCaller.tableName 
 
 
-private TableName
-AsyncRpcRetryingCallerFactory.BatchCallerBuilder.tableName 
+protected TableName
+TableBuilderBase.tableName 
+
+
+protected TableName
+RpcRetryingCallerWithReadReplicas.tableName 
+
+
+protected TableName
+AsyncTableBuilderBase.tableName 
 
 
 private TableName
-HRegionLocator.tableName 
+TableState.tableName 
 
 
 
@@ -2096,37 +2096,27 @@ service.
 
 
 TableName
-RawAsyncTableImpl.getName() 
-
-
-TableName
-RegionLocator.getName()
+Table.getName()
 Gets the fully qualified table name instance of this 
table.
 
 
-
-TableName
-BufferedMutatorImpl.getName() 
-
 
 TableName
-BufferedMutator.getName()
-Gets the fully qualified table name instance of the table 
that this BufferedMutator writes to.
-
+HRegionLocator.getName() 
 
 
 TableName
-HTable.getName() 
+AsyncTableRegionLocator.getName()
+Gets the fully qualified table name instance of the table 
whose region we want to locate.
+
 
 
 TableName
-Table.getName()
-Gets the fully qualified table name instance of this 
table.
-
+AsyncTableImpl.getName() 
 
 
 TableName
-AsyncTableImpl.getName() 
+RawAsyncTableImpl.getName() 
 
 
 TableName
@@ -2134,19 +2124,29 @@ service.
 
 
 TableName
-AsyncTableRegionLocator.getName()
-Gets the fully qualified table name instance of the table 
whose region we want to locate.
+BufferedMutator.getName()
+Gets the fully qualified table name instance of the table 
that this BufferedMutator writes to.
 
 
 
 TableName
-AsyncTableBase.getName()
+RegionLocator.getName()
 Gets the fully qualified table name instance of this 
table.
 
 
 
 TableName
-HRegionLocator.getName() 
+HTable.getName() 
+
+
+TableName
+BufferedMutatorImpl.getName() 
+
+
+TableName
+AsyncTableBase.getName()
+Gets the fully qualified table name instance of this 
table.
+
 
 
 TableName
@@ -2158,29 +2158,29 @@ service.
 
 
 TableName
-RegionServerCallable.getTableName() 
+SnapshotDescription.getTableName() 
 
 
 TableName
-SnapshotDescription.getTableName() 
+BufferedMutatorParams.getTableName() 
 
 
-TableName
-AsyncProcessTask.getTableName() 
+protected TableName
+HBaseAdmin.Tabl

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/RegionServerServices.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/RegionServerServices.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/RegionServerServices.html
index e272e46..ff37819 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/RegionServerServices.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/RegionServerServices.html
@@ -146,11 +146,11 @@
 
 
 private RegionServerServices
-LogRollBackupSubprocedure.rss 
+LogRollRegionServerProcedureManager.rss 
 
 
 private RegionServerServices
-LogRollRegionServerProcedureManager.rss 
+LogRollBackupSubprocedure.rss 
 
 
 
@@ -290,15 +290,15 @@
 
 
 
+void
+RegionServerProcedureManagerHost.initialize(RegionServerServices rss) 
+
+
 abstract void
 RegionServerProcedureManager.initialize(RegionServerServices rss)
 Initialize a globally barriered procedure for region 
servers.
 
 
-
-void
-RegionServerProcedureManagerHost.initialize(RegionServerServices rss) 
-
 
 
 
@@ -400,11 +400,11 @@
 
 
 private RegionServerServices
-CompactedHFilesDischarger.regionServerServices 
+RegionServerCoprocessorHost.RegionServerEnvironment.regionServerServices 
 
 
 private RegionServerServices
-RegionServerCoprocessorHost.RegionServerEnvironment.regionServerServices 
+CompactedHFilesDischarger.regionServerServices 
 
 
 private RegionServerServices
@@ -412,14 +412,6 @@
 
 
 (package private) RegionServerServices
-HRegion.rsServices 
-
-
-private RegionServerServices
-RegionUnassigner.rsServices 
-
-
-(package private) RegionServerServices
 RegionCoprocessorHost.rsServices
 The region server services
 
@@ -430,6 +422,14 @@
 
 
 private RegionServerServices
+RegionUnassigner.rsServices 
+
+
+(package private) RegionServerServices
+HRegion.rsServices 
+
+
+private RegionServerServices
 SplitLogWorker.server 
 
 
@@ -450,13 +450,13 @@
 RegionServerCoprocessorHost.RegionServerEnvironment.getRegionServerServices() 
 
 
-(package private) RegionServerServices
-HRegion.getRegionServerServices() 
-
-
 RegionServerServices
 RegionCoprocessorHost.RegionEnvironment.getRegionServerServices() 
 
+
+(package private) RegionServerServices
+HRegion.getRegionServerServices() 
+
 
 
 
@@ -649,13 +649,13 @@
 FinishRegionRecoveringHandler.rss 
 
 
-private RegionServerServices
-CloseRegionHandler.rsServices 
-
-
 protected RegionServerServices
 OpenRegionHandler.rsServices 
 
+
+private RegionServerServices
+CloseRegionHandler.rsServices 
+
 
 private RegionServerServices
 OpenRegionHandler.PostOpenDeployTasksThread.services 
@@ -795,19 +795,17 @@
 
 
 static ThroughputController
-CompactionThroughputControllerFactory.create(RegionServerServices server,
+FlushThroughputControllerFactory.create(RegionServerServices server,
   org.apache.hadoop.conf.Configuration conf) 
 
 
 static ThroughputController
-FlushThroughputControllerFactory.create(RegionServerServices server,
+CompactionThroughputControllerFactory.create(RegionServerServices server,
   org.apache.hadoop.conf.Configuration conf) 
 
 
 void
-ThroughputController.setup(RegionServerServices server)
-Setup controller for the given region server.
-
+PressureAwareFlushThroughputController.setup(RegionServerServices server) 
 
 
 void
@@ -819,11 +817,13 @@
 
 
 void
-PressureAwareFlushThroughputController.setup(RegionServerServices server) 
+NoLimitThroughputController.setup(RegionServerServices server) 
 
 
 void
-NoLimitThroughputController.setup(RegionServerServices server) 
+ThroughputController.setup(RegionServerServices server)
+Setup controller for the given region server.
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/ScanType.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/ScanType.html 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/ScanType.html
index 53e7b3f..5cc618e 100644
--- a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/ScanType.html
+++ b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/ScanType.html
@@ -379,11 +379,11 @@ the order they are declared.
 
 
 ScanType
-StripeCompactor.StripeInternalScannerFactory.getScanType(CompactionRequest request) 
+Compactor.InternalScannerFactory.getScanType(CompactionRequest request) 
 
 
 ScanType
-Compactor.InternalScannerFactory.getScanType(CompactionRequest request) 
+StripeCompactor.StripeInternalScannerFactory.getScanType(CompactionRequest request) 
 
 
 
@@ -396,14 +396,14 @@ the order they are declared.
 
 
 InternalScanner
-StripeCompactor.StripeInternalScannerFactory.createScanner(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interfa

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/client/class-use/Connection.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/Connection.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Connection.html
index 9fa7d8d..13aed35 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Connection.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Connection.html
@@ -794,20 +794,20 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 private Connection
-BackupAdminImpl.conn 
-
-
-private Connection
 RestoreTablesClient.conn 
 
-
+
 protected Connection
 TableBackupClient.conn 
 
-
+
 protected Connection
 BackupManager.conn 
 
+
+private Connection
+BackupAdminImpl.conn 
+
 
 private Connection
 BackupSystemTable.connection
@@ -1061,13 +1061,13 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 
-private Connection
-RegionServerCallable.connection 
-
-
 (package private) Connection
 ConnectionImplementation.MasterServiceState.connection 
 
+
+private Connection
+RegionServerCallable.connection 
+
 
 
 
@@ -1112,20 +1112,20 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 
+Connection
+Admin.getConnection() 
+
+
 (package private) Connection
 RegionAdminServiceCallable.getConnection() 
 
-
+
 protected Connection
 HTable.getConnection()
 INTERNAL Used by unit tests and tools to do 
low-level
  manipulations.
 
 
-
-Connection
-Admin.getConnection() 
-
 
 Connection
 HBaseAdmin.getConnection() 
@@ -1354,11 +1354,11 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 private Connection
-HRegionPartitioner.connection 
+TableInputFormatBase.connection 
 
 
 private Connection
-TableInputFormatBase.connection 
+HRegionPartitioner.connection 
 
 
 
@@ -1391,23 +1391,23 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 
-(package private) Connection
-MultiTableOutputFormat.MultiTableRecordWriter.connection 
-
-
-private Connection
-HRegionPartitioner.connection 
-
-
 private Connection
 TableOutputFormat.TableRecordWriter.connection 
 
 
+(package private) Connection
+MultiTableOutputFormat.MultiTableRecordWriter.connection 
+
+
 private Connection
 TableInputFormatBase.connection
 The underlying Connection 
of the table.
 
 
+
+private Connection
+HRegionPartitioner.connection 
+
 
 (package private) Connection
 SyncTable.SyncMapper.sourceConnection 
@@ -1531,15 +1531,15 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 private Connection
-RegionPlacementMaintainer.connection 
+CatalogJanitor.connection 
 
 
 private Connection
-CatalogJanitor.connection 
+SnapshotOfRegionAssignmentFromMeta.connection 
 
 
 private Connection
-SnapshotOfRegionAssignmentFromMeta.connection 
+RegionPlacementMaintainer.connection 
 
 
 
@@ -1911,11 +1911,11 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 private Connection
-ReplicationSourceManager.connection 
+HFileReplicator.connection 
 
 
 private Connection
-HFileReplicator.connection 
+ReplicationSourceManager.connection 
 
 
 private Connection
@@ -1931,13 +1931,13 @@ Input/OutputFormats, a table indexing MapReduce job, 
and utility methods.
 
 
 
-Connection
-ReplicationSourceManager.getConnection() 
-
-
 private Connection
 ReplicationSink.getConnection() 
 
+
+Connection
+ReplicationSourceManager.getConnection() 
+
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/client/class-use/ConnectionConfiguration.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ConnectionConfiguration.html
 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ConnectionConfiguration.html
index f191d26..57d978f 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/client/class-use/ConnectionConfiguration.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/ConnectionConfiguration.html
@@ -123,11 +123,11 @@
 
 
 ConnectionConfiguration
-ClusterConnection.getConnectionConfiguration() 
+ConnectionImplementation.getConnectionConfiguration() 
 
 
 ConnectionConfiguration
-ConnectionImplementation.getConnectionConfiguration() 
+ClusterConnection.getConnectionConfiguration() 
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/client/class-use/Delete.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Delete.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Delete.html
index bb22d15..449dade 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Delete.html
+++ b/devapidocs/org/apache/hadoop/hbase/client

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/util/class-use/PositionedByteRange.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/util/class-use/PositionedByteRange.html 
b/devapidocs/org/apache/hadoop/hbase/util/class-use/PositionedByteRange.html
index b705301..581ba48 100644
--- a/devapidocs/org/apache/hadoop/hbase/util/class-use/PositionedByteRange.html
+++ b/devapidocs/org/apache/hadoop/hbase/util/class-use/PositionedByteRange.html
@@ -124,104 +124,104 @@
 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object[]
-Struct.decode(PositionedByteRange src) 
+T
+FixedLengthWrapper.decode(PositionedByteRange src) 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true";
 title="class or interface in java.lang">Byte
-RawByte.decode(PositionedByteRange src) 
+http://docs.oracle.com/javase/8/docs/api/java/lang/Short.html?is-external=true";
 title="class or interface in java.lang">Short
+OrderedInt16.decode(PositionedByteRange src) 
 
 
-byte[]
-OrderedBlob.decode(PositionedByteRange src) 
+http://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true";
 title="class or interface in java.lang">Long
+RawLong.decode(PositionedByteRange src) 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Short.html?is-external=true";
 title="class or interface in java.lang">Short
-OrderedInt16.decode(PositionedByteRange src) 
+http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true";
 title="class or interface in java.lang">Number
+OrderedNumeric.decode(PositionedByteRange src) 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true";
 title="class or interface in java.lang">Integer
-RawInteger.decode(PositionedByteRange src) 
+byte[]
+OrderedBlob.decode(PositionedByteRange src) 
 
 
-T
-TerminatedWrapper.decode(PositionedByteRange src) 
+http://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true";
 title="class or interface in java.lang">Byte
+OrderedInt8.decode(PositionedByteRange src) 
 
 
-T
-FixedLengthWrapper.decode(PositionedByteRange src) 
+http://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true";
 title="class or interface in java.lang">Long
+OrderedInt64.decode(PositionedByteRange src) 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true";
 title="class or interface in java.lang">Double
-RawDouble.decode(PositionedByteRange src) 
+http://docs.oracle.com/javase/8/docs/api/java/lang/Byte.html?is-external=true";
 title="class or interface in java.lang">Byte
+RawByte.decode(PositionedByteRange src) 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String
 RawString.decode(PositionedByteRange src) 
 
 
-T
-DataType.decode(PositionedByteRange src)
-Read an instance of T from the buffer 
src.
-
+http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object[]
+Struct.decode(PositionedByteRange src) 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true";
 title="class or interface in java.lang">Long
-OrderedInt64.decode(PositionedByteRange src) 
+http://docs.oracle.com/javase/8/docs/api/java/lang/Short.html?is-external=true";
 title="class or interface in java.lang">Short
+RawShort.decode(PositionedByteRange src) 
 
 
 byte[]
 OrderedBlobVar.decode(PositionedByteRange src) 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true";
 title="class or interface in java.lang">Number
-OrderedNumeric.decode(PositionedByteRange src) 
+http://docs.oracle.com/javase/8/docs/api/java/lang/Float.html?is-external=true";
 title="class or interface in java.lang">Float
+OrderedFloat32.decode(PositionedByteRange src) 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Short.html?is-external=true";
 title="class or interface in java.lang">Short
-RawShort.decode(PositionedByteRange src) 
+http://docs.oracle.com/javase/8/docs/api/java/lang/Double.html?is-external=true";
 title="class or interface in java.lang">Double
+OrderedFloat64.decode(PositionedByteRange src) 
 
 
-http://docs.oracle.com/javase/8/docs/api/java/lang/Long.html?is-external=true";
 title="class or interface in java.lang">Long
-RawLong.decode(PositionedByteRange src) 
+T
+DataType.decode(PositionedByteRange src)
+Read an instance of T from the buffer 
src.
+
 
 
-byte[]
-RawBytes.decode(PositionedByteRange src) 
+http://docs.oracle.com/javase/8/docs/api/java/lang/Float.html?is-external=true";
 title="class or interface in java.lang">Float
+RawFloat.decode(PositionedByteRange src) 
 
 
+T
+TerminatedWrapper.decode(PositionedByteRange src) 
+
+
 http://docs.oracle.com/javase/8/docs/api/java/lang

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/checkstyle.rss
--
diff --git a/checkstyle.rss b/checkstyle.rss
index 7c8a9e4..9a933dc 100644
--- a/checkstyle.rss
+++ b/checkstyle.rss
@@ -438,7 +438,7 @@ under the License.
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.protobuf.ProtobufMagic.java";>org/apache/hadoop/hbase/protobuf/ProtobufMagic.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.client.ClientSimpleScanner.java";>org/apache/hadoop/hbase/client/ClientSimpleScanner.java
 
 
   0
@@ -447,12 +447,12 @@ under the License.
   0
 
 
-  3
+  0
 
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.client.ClientSimpleScanner.java";>org/apache/hadoop/hbase/client/ClientSimpleScanner.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.protobuf.ProtobufMagic.java";>org/apache/hadoop/hbase/protobuf/ProtobufMagic.java
 
 
   0
@@ -461,7 +461,7 @@ under the License.
   0
 
 
-  0
+  3
 
   
   
@@ -746,7 +746,7 @@ under the License.
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.backup.impl.BackupCommands.java";>org/apache/hadoop/hbase/backup/impl/BackupCommands.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.security.visibility.expression.LeafExpressionNode.java";>org/apache/hadoop/hbase/security/visibility/expression/LeafExpressionNode.java
 
 
   0
@@ -755,12 +755,12 @@ under the License.
   0
 
 
-  55
+  0
 
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.security.visibility.expression.LeafExpressionNode.java";>org/apache/hadoop/hbase/security/visibility/expression/LeafExpressionNode.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.backup.impl.BackupCommands.java";>org/apache/hadoop/hbase/backup/impl/BackupCommands.java
 
 
   0
@@ -769,7 +769,7 @@ under the License.
   0
 
 
-  0
+  55
 
   
   
@@ -1544,7 +1544,7 @@ under the License.
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.io.hfile.HFilePrettyPrinter.java";>org/apache/hadoop/hbase/io/hfile/HFilePrettyPrinter.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.security.access.CoprocessorWhitelistMasterObserver.java";>org/apache/hadoop/hbase/security/access/CoprocessorWhitelistMasterObserver.java
 
 
   0
@@ -1553,12 +1553,12 @@ under the License.
   0
 
 
-  14
+  5
 
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.security.access.CoprocessorWhitelistMasterObserver.java";>org/apache/hadoop/hbase/security/access/CoprocessorWhitelistMasterObserver.java
+  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.io.hfile.HFilePrettyPrinter.java";>org/apache/hadoop/hbase/io/hfile/HFilePrettyPrinter.java
 
 
   0
@@ -1567,7 +1567,7 @@ under the License.
   0
 
 
-  5
+  14
 
   
   
@@ -1833,7 +1833,7 @@ under the License.
   0
 
 
-  0
+  1
 
   
   
@@ -2440,7 +2440,7 @@ under the License.
   
   
 
-  http://hbase.apache.org/checkstyle.html#org.apache.hadoop.hbase.regionserver.DateTieredStoreEngine.java";>org/apache/hadoop/hbase/regionserver/DateTieredStoreEngine.java
+  http://hbase.apache.org/checkstyle.html#org.apache.h

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/util/package-tree.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/util/package-tree.html 
b/devapidocs/org/apache/hadoop/hbase/util/package-tree.html
index 324a807..3b00477 100644
--- a/devapidocs/org/apache/hadoop/hbase/util/package-tree.html
+++ b/devapidocs/org/apache/hadoop/hbase/util/package-tree.html
@@ -520,13 +520,13 @@
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
 org.apache.hadoop.hbase.util.Bytes.LexicographicalComparerHolder.UnsafeComparer
 (implements org.apache.hadoop.hbase.util.Bytes.Comparer)
-org.apache.hadoop.hbase.util.Bytes.LexicographicalComparerHolder.PureJavaComparer
 (implements org.apache.hadoop.hbase.util.Bytes.Comparer)
-org.apache.hadoop.hbase.util.PoolMap.PoolType
 org.apache.hadoop.hbase.util.IdReadWriteLock.ReferenceType
+org.apache.hadoop.hbase.util.ChecksumType
+org.apache.hadoop.hbase.util.PoolMap.PoolType
 org.apache.hadoop.hbase.util.Order
-org.apache.hadoop.hbase.util.PrettyPrinter.Unit
+org.apache.hadoop.hbase.util.Bytes.LexicographicalComparerHolder.PureJavaComparer
 (implements org.apache.hadoop.hbase.util.Bytes.Comparer)
 org.apache.hadoop.hbase.util.HBaseFsck.ErrorReporter.ERROR_CODE
-org.apache.hadoop.hbase.util.ChecksumType
+org.apache.hadoop.hbase.util.PrettyPrinter.Unit
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/wal/WALKey.Version.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/wal/WALKey.Version.html 
b/devapidocs/org/apache/hadoop/hbase/wal/WALKey.Version.html
index bdd109d..c2712cb 100644
--- a/devapidocs/org/apache/hadoop/hbase/wal/WALKey.Version.html
+++ b/devapidocs/org/apache/hadoop/hbase/wal/WALKey.Version.html
@@ -306,7 +306,7 @@ the order they are declared.
 
 
 values
-public static WALKey.Version[] values()
+public static WALKey.Version[] values()
 Returns an array containing the constants of this enum 
type, in
 the order they are declared.  This method may be used to iterate
 over the constants as follows:
@@ -326,7 +326,7 @@ for (WALKey.Version c : WALKey.Version.values())
 
 
 valueOf
-public static WALKey.Version valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
+public static WALKey.Version valueOf(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String name)
 Returns the enum constant of this type with the specified 
name.
 The string must match exactly an identifier used to declare an
 enum constant in this type.  (Extraneous whitespace characters are 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/wal/class-use/WAL.Entry.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/wal/class-use/WAL.Entry.html 
b/devapidocs/org/apache/hadoop/hbase/wal/class-use/WAL.Entry.html
index 29d0f95..685f0d7 100644
--- a/devapidocs/org/apache/hadoop/hbase/wal/class-use/WAL.Entry.html
+++ b/devapidocs/org/apache/hadoop/hbase/wal/class-use/WAL.Entry.html
@@ -188,11 +188,11 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 void
-AsyncProtobufLogWriter.append(WAL.Entry entry) 
+ProtobufLogWriter.append(WAL.Entry entry) 
 
 
 void
-ProtobufLogWriter.append(WAL.Entry entry) 
+AsyncProtobufLogWriter.append(WAL.Entry entry) 
 
 
 WAL.Entry
@@ -204,15 +204,15 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
   long elapsedTime) 
 
 
+protected boolean
+ProtobufLogReader.readNext(WAL.Entry entry) 
+
+
 protected abstract boolean
 ReaderBase.readNext(WAL.Entry e)
 Read next entry.
 
 
-
-protected boolean
-ProtobufLogReader.readNext(WAL.Entry entry) 
-
 
 
 
@@ -278,11 +278,13 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 WAL.Entry
-ScopeWALEntryFilter.filter(WAL.Entry entry) 
+SystemTableWALEntryFilter.filter(WAL.Entry entry) 
 
 
 WAL.Entry
-SystemTableWALEntryFilter.filter(WAL.Entry entry) 
+WALEntryFilter.filter(WAL.Entry entry)
+Applies the filter, possibly returning a different Entry 
instance.
+
 
 
 WAL.Entry
@@ -290,9 +292,7 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 WAL.Entry
-WALEntryFilter.filter(WAL.Entry entr

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
--
diff --git a/devapidocs/org/apache/hadoop/hbase/client/class-use/Scan.html 
b/devapidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
index fa03a15..5b42d79 100644
--- a/devapidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
+++ b/devapidocs/org/apache/hadoop/hbase/client/class-use/Scan.html
@@ -279,14 +279,6 @@ service.
 
 
 private Scan
-AsyncScanSingleRegionRpcRetryingCaller.scan 
-
-
-protected Scan
-ScannerCallable.scan 
-
-
-private Scan
 ScannerCallableWithReplicas.scan 
 
 
@@ -303,6 +295,14 @@ service.
 
 
 private Scan
+AsyncScanSingleRegionRpcRetryingCaller.scan 
+
+
+protected Scan
+ScannerCallable.scan 
+
+
+private Scan
 TableSnapshotScanner.scan 
 
 
@@ -329,11 +329,11 @@ service.
 
 
 protected Scan
-ScannerCallable.getScan() 
+ClientScanner.getScan() 
 
 
 protected Scan
-ClientScanner.getScan() 
+ScannerCallable.getScan() 
 
 
 (package private) Scan
@@ -610,8 +610,8 @@ service.
 
 
 ResultScanner
-HTable.getScanner(Scan scan)
-The underlying HTable must 
not be closed.
+AsyncTable.getScanner(Scan scan)
+Returns a scanner on the current table as specified by the 
Scan 
object.
 
 
 
@@ -627,8 +627,8 @@ service.
 
 
 ResultScanner
-AsyncTable.getScanner(Scan scan)
-Returns a scanner on the current table as specified by the 
Scan 
object.
+HTable.getScanner(Scan scan)
+The underlying HTable must 
not be closed.
 
 
 
@@ -665,16 +665,16 @@ service.
 
 
 void
-AsyncTableImpl.scan(Scan scan,
-ScanResultConsumer consumer) 
-
-
-void
 AsyncTable.scan(Scan scan,
 ScanResultConsumer consumer)
 The scan API uses the observer pattern.
 
 
+
+void
+AsyncTableImpl.scan(Scan scan,
+ScanResultConsumer consumer) 
+
 
 private void
 AsyncTableImpl.scan0(Scan scan,
@@ -682,11 +682,11 @@ service.
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-RawAsyncTableImpl.scanAll(Scan scan) 
+AsyncTableImpl.scanAll(Scan scan) 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
-AsyncTableImpl.scanAll(Scan scan) 
+RawAsyncTableImpl.scanAll(Scan scan) 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletableFuture.html?is-external=true";
 title="class or interface in java.util.concurrent">CompletableFutureList>
@@ -1274,17 +1274,17 @@ service.
 
 
 private Scan
-TableSnapshotInputFormatImpl.RecordReader.scan 
+TableInputFormatBase.scan
+Holds the details for the internal scanner.
+
 
 
 private Scan
-TableRecordReaderImpl.scan 
+TableSnapshotInputFormatImpl.RecordReader.scan 
 
 
 private Scan
-TableInputFormatBase.scan
-Holds the details for the internal scanner.
-
+TableRecordReaderImpl.scan 
 
 
 
@@ -1339,14 +1339,14 @@ service.
 
 
 Scan
-TableSplit.getScan()
-Returns a Scan object from the stored string 
representation.
+TableInputFormatBase.getScan()
+Gets the scan defining the actual details like columns 
etc.
 
 
 
 Scan
-TableInputFormatBase.getScan()
-Gets the scan defining the actual details like columns 
etc.
+TableSplit.getScan()
+Returns a Scan object from the stored string 
representation.
 
 
 
@@ -1557,13 +1557,13 @@ service.
 
 
 void
-TableRecordReaderImpl.setScan(Scan scan)
+TableInputFormatBase.setScan(Scan scan)
 Sets the scan defining the actual details like columns 
etc.
 
 
 
 void
-TableInputFormatBase.setScan(Scan scan)
+TableRecordReaderImpl.setScan(Scan scan)
 Sets the scan defining the actual details like columns 
etc.
 
 
@@ -1630,6 +1630,12 @@ service.
 
 
 
+static void
+MultiTableSnapshotInputFormat.setInput(org.apache.hadoop.conf.Configuration configuration,
+http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapString,http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection> snapshotScans,
+org.apache.hadoop.fs.Path tmpRestoreDir) 
+
+
 void
 MultiTableSnapshotInputFormatImpl.setInput(org.apache.hadoop.conf.Configuration conf,
 http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Decoder.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Decoder.html 
b/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Decoder.html
index 2db3705..93c55cd 100644
--- a/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Decoder.html
+++ b/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Decoder.html
@@ -151,23 +151,23 @@
 
 
 Codec.Decoder
-CellCodec.getDecoder(ByteBuff buf) 
+KeyValueCodec.getDecoder(ByteBuff buf) 
 
 
 Codec.Decoder
-Codec.getDecoder(ByteBuff buf) 
+CellCodecWithTags.getDecoder(ByteBuff buf) 
 
 
 Codec.Decoder
-KeyValueCodec.getDecoder(ByteBuff buf) 
+Codec.getDecoder(ByteBuff buf) 
 
 
 Codec.Decoder
-KeyValueCodecWithTags.getDecoder(ByteBuff buf) 
+CellCodec.getDecoder(ByteBuff buf) 
 
 
 Codec.Decoder
-CellCodecWithTags.getDecoder(ByteBuff buf) 
+KeyValueCodecWithTags.getDecoder(ByteBuff buf) 
 
 
 Codec.Decoder
@@ -175,27 +175,27 @@
 
 
 Codec.Decoder
-CellCodec.getDecoder(http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true";
 title="class or interface in 
java.io">InputStream is) 
+KeyValueCodec.getDecoder(http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true";
 title="class or interface in java.io">InputStream is)
+Implementation depends on http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true#available--";
 title="class or interface in 
java.io">InputStream.available()
+
 
 
 Codec.Decoder
-Codec.getDecoder(http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true";
 title="class or interface in 
java.io">InputStream is) 
+CellCodecWithTags.getDecoder(http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true";
 title="class or interface in 
java.io">InputStream is) 
 
 
 Codec.Decoder
-KeyValueCodec.getDecoder(http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true";
 title="class or interface in java.io">InputStream is)
-Implementation depends on http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true#available--";
 title="class or interface in 
java.io">InputStream.available()
-
+Codec.getDecoder(http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true";
 title="class or interface in 
java.io">InputStream is) 
 
 
 Codec.Decoder
-KeyValueCodecWithTags.getDecoder(http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true";
 title="class or interface in java.io">InputStream is)
-Implementation depends on http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true#available--";
 title="class or interface in 
java.io">InputStream.available()
-
+CellCodec.getDecoder(http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true";
 title="class or interface in 
java.io">InputStream is) 
 
 
 Codec.Decoder
-CellCodecWithTags.getDecoder(http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true";
 title="class or interface in 
java.io">InputStream is) 
+KeyValueCodecWithTags.getDecoder(http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true";
 title="class or interface in java.io">InputStream is)
+Implementation depends on http://docs.oracle.com/javase/8/docs/api/java/io/InputStream.html?is-external=true#available--";
 title="class or interface in 
java.io">InputStream.available()
+
 
 
 Codec.Decoder

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Encoder.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Encoder.html 
b/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Encoder.html
index 2895ea1..ceadd16 100644
--- a/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Encoder.html
+++ b/devapidocs/org/apache/hadoop/hbase/codec/class-use/Codec.Encoder.html
@@ -143,23 +143,23 @@
 
 
 Codec.Encoder
-CellCodec.getEncoder(http://docs.oracle.com/javase/8/docs/api/java/io/OutputStream.html?is-external=true";
 title="class or interface in 
java.io">OutputStream os) 
+KeyValueCodec.getEncoder(http://docs.oracle.com/javase/8/docs/api/java/io/OutputStream.html?is-external=true";
 title="class or interface in 
java.io">OutputStream os) 
 
 
 Codec.Encoder
-Codec.getEncoder(http://docs.oracle.com/javase/8/docs/api/java/io/OutputStream.html?is-external=true";
 title="class or interface in 
java.io">OutputStream os) 
+CellCodecWithTags.getEncoder(http://docs.oracle.com/javase/8/docs/api/java/io/OutputStream.html?is-external=true";
 title="class or interface in 
java.io">OutputStream os) 
 
 
 Codec.Encoder
-KeyValueCodec.getEncoder(http://docs.oracle.

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/MasterProcedureEnv.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/MasterProcedureEnv.html
 
b/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/MasterProcedureEnv.html
index bc91cb8..c55c11c 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/MasterProcedureEnv.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/master/procedure/class-use/MasterProcedureEnv.html
@@ -157,11 +157,11 @@
 
 
 ProcedureExecutor
-MasterServices.getMasterProcedureExecutor() 
+HMaster.getMasterProcedureExecutor() 
 
 
 ProcedureExecutor
-HMaster.getMasterProcedureExecutor() 
+MasterServices.getMasterProcedureExecutor() 
 
 
 
@@ -304,24 +304,24 @@
 
 
 
-boolean
-TruncateTableProcedure.abort(MasterProcedureEnv env) 
-
-
 protected boolean
 ServerCrashProcedure.abort(MasterProcedureEnv env) 
 
-
+
 boolean
 RestoreSnapshotProcedure.abort(MasterProcedureEnv env) 
 
+
+boolean
+TruncateTableProcedure.abort(MasterProcedureEnv env) 
+
 
 protected Procedure.LockState
-ServerCrashProcedure.acquireLock(MasterProcedureEnv env) 
+CreateNamespaceProcedure.acquireLock(MasterProcedureEnv env) 
 
 
 protected Procedure.LockState
-AbstractStateMachineTableProcedure.acquireLock(MasterProcedureEnv env) 
+CreateTableProcedure.acquireLock(MasterProcedureEnv env) 
 
 
 protected Procedure.LockState
@@ -329,19 +329,19 @@
 
 
 protected Procedure.LockState
-CreateNamespaceProcedure.acquireLock(MasterProcedureEnv env) 
+AbstractStateMachineTableProcedure.acquireLock(MasterProcedureEnv env) 
 
 
 protected Procedure.LockState
-SplitTableRegionProcedure.acquireLock(MasterProcedureEnv env) 
+ServerCrashProcedure.acquireLock(MasterProcedureEnv env) 
 
 
 protected Procedure.LockState
-MergeTableRegionsProcedure.acquireLock(MasterProcedureEnv env) 
+SplitTableRegionProcedure.acquireLock(MasterProcedureEnv env) 
 
 
 protected Procedure.LockState
-CreateTableProcedure.acquireLock(MasterProcedureEnv env) 
+MergeTableRegionsProcedure.acquireLock(MasterProcedureEnv env) 
 
 
 private void
@@ -423,23 +423,23 @@
 
 
 protected void
-DeleteColumnFamilyProcedure.completionCleanup(MasterProcedureEnv env) 
+ModifyColumnFamilyProcedure.completionCleanup(MasterProcedureEnv env) 
 
 
 protected void
-TruncateTableProcedure.completionCleanup(MasterProcedureEnv env) 
+AddColumnFamilyProcedure.completionCleanup(MasterProcedureEnv env) 
 
 
 protected void
-AddColumnFamilyProcedure.completionCleanup(MasterProcedureEnv env) 
+ModifyTableProcedure.completionCleanup(MasterProcedureEnv env) 
 
 
 protected void
-ModifyColumnFamilyProcedure.completionCleanup(MasterProcedureEnv env) 
+TruncateTableProcedure.completionCleanup(MasterProcedureEnv env) 
 
 
 protected void
-ModifyTableProcedure.completionCleanup(MasterProcedureEnv env) 
+DeleteColumnFamilyProcedure.completionCleanup(MasterProcedureEnv env) 
 
 
 void
@@ -469,6 +469,13 @@
   http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List newRegions) 
 
 
+protected static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
+CreateTableProcedure.createFsLayout(MasterProcedureEnv env,
+  HTableDescriptor hTableDescriptor,
+  http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List newRegions,
+  CreateTableProcedure.CreateHdfsRegions hdfsRegionHandler) 
+
+
 private http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 CloneSnapshotProcedure.createFsLayout(MasterProcedureEnv env,
   HTableDescriptor hTableDescriptor,
@@ -477,13 +484,6 @@
 Create region layout in file system.
 
 
-
-protected static http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
-CreateTableProcedure.createFsLayout(MasterProcedureEnv env,
-  HTableDescriptor hTableDescriptor,
-  http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List newRegions,
-  CreateTableProcedure.CreateHdfsRegions hdfsRegionHandler) 
-
 
 http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List
 CreateTableProcedure.CreateHdfsRegions.createHdfsRegions(MasterProcedureEnv env,
@@ -673,15 +673,15 @@
 
 
 private http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface i

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFileReader.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFileReader.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFileReader.html
index b9ce046..328d123 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFileReader.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFileReader.html
@@ -212,11 +212,11 @@
 
 
 private StoreFileReader
-StoreFile.reader 
+StoreFileScanner.reader 
 
 
 private StoreFileReader
-StoreFileScanner.reader 
+StoreFile.reader 
 
 
 
@@ -236,13 +236,13 @@
 StoreFile.createReader(boolean canUseDropBehind) 
 
 
-StoreFileReader
-StoreFile.getReader() 
-
-
 (package private) StoreFileReader
 StoreFileScanner.getReader() 
 
+
+StoreFileReader
+StoreFile.getReader() 
+
 
 private StoreFileReader
 StoreFile.open(boolean canUseDropBehind)

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFileScanner.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFileScanner.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFileScanner.html
index 631bd56..56b07ba 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFileScanner.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFileScanner.html
@@ -251,14 +251,14 @@
 
 
 InternalScanner
-StripeCompactor.StripeInternalScannerFactory.createScanner(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List scanners,
+Compactor.InternalScannerFactory.createScanner(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List scanners,
  ScanType scanType,
  Compactor.FileDetails fd,
  long smallestReadPoint) 
 
 
 InternalScanner
-Compactor.InternalScannerFactory.createScanner(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List scanners,
+StripeCompactor.StripeInternalScannerFactory.createScanner(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List scanners,
  ScanType scanType,
  Compactor.FileDetails fd,
  long smallestReadPoint) 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFileWriter.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFileWriter.html
 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFileWriter.html
index 6bd2adc..57dd50d 100644
--- 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFileWriter.html
+++ 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFileWriter.html
@@ -470,16 +470,16 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 
-protected http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
-StripeMultiFileWriter.writers() 
+protected abstract http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
+AbstractMultiFileWriter.writers() 
 
 
 protected http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
 DateTieredMultiFileWriter.writers() 
 
 
-protected abstract http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
-AbstractMultiFileWriter.writers() 
+protected http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
+StripeMultiFileWriter.writers() 
 
 
 
@@ -498,14 +498,14 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 protected void
-StripeMultiFileWriter.preCloseWriter(StoreFileWriter writer) 
-
-
-protected void
 AbstractMultiFileWriter.preCloseWriter(StoreFileWriter writer)
 Subclasses override this method to be called before we 
close the give writer.
 
 
+
+protected void
+StripeMultiFileWriter.preCloseWriter(StoreFileWriter writer) 
+
 
 
 

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

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFile.html
--
diff --git 
a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFile.html 
b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFile.html
index df82020..1a1e98f 100644
--- a/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFile.html
+++ b/devapidocs/org/apache/hadoop/hbase/regionserver/class-use/StoreFile.html
@@ -637,33 +637,33 @@
 
 
 
-com.google.common.collect.ImmutableCollection
-StripeStoreFileManager.clearCompactedFiles() 
-
-
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
 DefaultStoreFileManager.clearCompactedFiles() 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
 StoreFileManager.clearCompactedFiles()
 Clears all the compacted files and returns them.
 
 
-
+
 com.google.common.collect.ImmutableCollection
-StripeStoreFileManager.clearFiles() 
+StripeStoreFileManager.clearCompactedFiles() 
 
-
+
 com.google.common.collect.ImmutableCollection
 DefaultStoreFileManager.clearFiles() 
 
-
+
 com.google.common.collect.ImmutableCollection
 StoreFileManager.clearFiles()
 Clears all the files currently in use and returns 
them.
 
 
+
+com.google.common.collect.ImmutableCollection
+StripeStoreFileManager.clearFiles() 
+
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true";
 title="class or interface in java.util">MapList>
 HRegion.close()
@@ -729,62 +729,62 @@
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator
-StripeStoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue targetKey)
-See StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue)
- for details on this methods.
-
+DefaultStoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue targetKey) 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator
-DefaultStoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue targetKey) 
+StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue targetKey)
+Gets initial, full list of candidate store files to check 
for row-key-before.
+
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Iterator.html?is-external=true";
 title="class or interface in java.util">Iterator
-StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue targetKey)
-Gets initial, full list of candidate store files to check 
for row-key-before.
+StripeStoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue targetKey)
+See StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue)
+ for details on this methods.
 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
-StripeStoreFileManager.getCompactedfiles() 
-
-
-http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
 DefaultStoreFileManager.getCompactedfiles() 
 
-
+
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
 StoreFileManager.getCompactedfiles()
 List of compacted files inside this store that needs to be 
excluded in reads
  because further new reads will be using only the newly created files out of 
compaction.
 
 
+
+http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
+StripeStoreFileManager.getCompactedfiles() 
+
 
 http://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html?is-external=true";
 title="class or interface in java.util">ArrayListList>
 StripeStoreFileManager.KeyBeforeConcatenatedLists.Iterator.getComponents() 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">Collection
-StripeStoreFileManager.getFilesForScan(byte[] startRow,
+DefaultStoreFileManager.getFilesForScan(byte[] startRow,
boolean includeStartRow,
byte[] stopRow,
boolean includeStopRow) 
 
 
 http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/apidocs/org/apache/hadoop/hbase/client/class-use/Result.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/class-use/Result.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/Result.html
index 02ee42f..3d5003d 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/Result.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/Result.html
@@ -360,23 +360,23 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapred.RecordReader
-TableInputFormatBase.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
+TableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
org.apache.hadoop.mapred.JobConf job,
-   org.apache.hadoop.mapred.Reporter reporter)
-Builds a TableRecordReader.
-
+   
org.apache.hadoop.mapred.Reporter reporter) 
 
 
 org.apache.hadoop.mapred.RecordReader
-TableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
+MultiTableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
org.apache.hadoop.mapred.JobConf job,

org.apache.hadoop.mapred.Reporter reporter) 
 
 
 org.apache.hadoop.mapred.RecordReader
-MultiTableSnapshotInputFormat.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
+TableInputFormatBase.getRecordReader(org.apache.hadoop.mapred.InputSplit split,
org.apache.hadoop.mapred.JobConf job,
-   
org.apache.hadoop.mapred.Reporter reporter) 
+   org.apache.hadoop.mapred.Reporter reporter)
+Builds a TableRecordReader.
+
 
 
 
@@ -485,9 +485,9 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapreduce.RecordReader
-TableInputFormatBase.createRecordReader(org.apache.hadoop.mapreduce.InputSplit split,
+MultiTableInputFormatBase.createRecordReader(org.apache.hadoop.mapreduce.InputSplit split,
   
org.apache.hadoop.mapreduce.TaskAttemptContext context)
-Builds a TableRecordReader.
+Builds a TableRecordReader.
 
 
 
@@ -497,9 +497,9 @@ Input/OutputFormats, a table indexing MapReduce job, and 
utility methods.
 
 
 org.apache.hadoop.mapreduce.RecordReader
-MultiTableInputFormatBase.createRecordReader(org.apache.hadoop.mapreduce.InputSplit split,
+TableInputFormatBase.createRecordReader(org.apache.hadoop.mapreduce.InputSplit split,
   
org.apache.hadoop.mapreduce.TaskAttemptContext context)
-Builds a TableRecordReader.
+Builds a TableRecordReader.
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/apidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
--
diff --git 
a/apidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
index cd88dcf..1376754 100644
--- a/apidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
+++ b/apidocs/org/apache/hadoop/hbase/client/class-use/ResultScanner.html
@@ -130,42 +130,42 @@
 
 
 
-ResultScanner
-Table.getScanner(byte[] family)
+default ResultScanner
+AsyncTable.getScanner(byte[] family)
 Gets a scanner on the current table for the given 
family.
 
 
 
-default ResultScanner
-AsyncTable.getScanner(byte[] family)
+ResultScanner
+Table.getScanner(byte[] family)
 Gets a scanner on the current table for the given 
family.
 
 
 
-ResultScanner
-Table.getScanner(byte[] family,
+default ResultScanner
+AsyncTable.getScanner(byte[] family,
   byte[] qualifier)
 Gets a scanner on the current table for the given family 
and qualifier.
 
 
 
-default ResultScanner
-AsyncTable.getScanner(byte[] family,
+ResultScanner
+Table.getScanner(byte[] family,
   byte[] qualifier)
 Gets a scanner on the current table for the given family 
and qualifier.
 
 
 
 ResultScanner
-Table.getScanner(Scan scan)
-Returns a scanner on the current table as specified by the 
Scan
- object.
+AsyncTable.getScanner(Scan scan)
+Returns a scanner on the current table as specified by the 
Scan 
object.
 
 
 
 ResultScanner
-AsyncTable.getScanner(Scan scan)
-Returns a scanner on the current table as specified by the 
Scan 
object.
+Table.getScanner(Scan scan)
+Returns a scanner on the current table as specified by the 
Scan
+ object.
 
 
 

http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/apidocs/org/apache/hadoop/hbase/client/class-use/Row.html
--
diff --git a/apidocs/org/apache/hadoop/hbase/client/class-use/Row.html 
b/apidocs/org/apache/hadoop/hbase/client/class-use/Row.html
index 6

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

2017-03-31 Thread git-site-role
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/86312ed1/checkstyle-aggregate.html
--
diff --git a/checkstyle-aggregate.html b/checkstyle-aggregate.html
index 3a5556d..4f526eb 100644
--- a/checkstyle-aggregate.html
+++ b/checkstyle-aggregate.html
@@ -316,6690 +316,6690 @@
 0
 1
 
-maven-archiver/pom.properties
-0
-0
-1
-
 org/apache/hadoop/hbase/AsyncMetaTableAccessor.java
 0
 0
 43
-
+
 org/apache/hadoop/hbase/AuthUtil.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/BaseConfigurable.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/ByteBufferKeyOnlyKeyValue.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/ByteBufferKeyValue.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/Cell.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/CellComparator.java
 0
 0
 30
-
+
 org/apache/hadoop/hbase/CellScanner.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/CellUtil.java
 0
 0
 98
-
+
 org/apache/hadoop/hbase/ChoreService.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/ClusterId.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/ClusterStatus.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/CompatibilityFactory.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/CompatibilitySingletonFactory.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/CompoundConfiguration.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/CoordinatedStateManagerFactory.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/CoprocessorEnvironment.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/DoNotRetryIOException.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/DroppedSnapshotException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/ExtendedCell.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/HBaseConfiguration.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/HColumnDescriptor.java
 0
 0
 27
-
+
 org/apache/hadoop/hbase/HConstants.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/HRegionInfo.java
 0
 0
 58
-
+
 org/apache/hadoop/hbase/HRegionLocation.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/HTableDescriptor.java
 0
 0
 46
-
+
 org/apache/hadoop/hbase/HealthChecker.java
 0
 0
 17
-
+
 org/apache/hadoop/hbase/IndividualBytesFieldCell.java
 0
 0
 11
-
+
 org/apache/hadoop/hbase/JMXListener.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/JitterScheduledThreadPoolExecutorImpl.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/KeyValue.java
 0
 0
 135
-
+
 org/apache/hadoop/hbase/KeyValueTestUtil.java
 0
 0
 9
-
+
 org/apache/hadoop/hbase/KeyValueUtil.java
 0
 0
 30
-
+
 org/apache/hadoop/hbase/LocalHBaseCluster.java
 0
 0
 24
-
+
 org/apache/hadoop/hbase/MetaMutationAnnotation.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/MetaTableAccessor.java
 0
 0
 118
-
+
 org/apache/hadoop/hbase/NamespaceDescriptor.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/NotAllMetaRegionsOnlineException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/RegionLoad.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/RegionLocations.java
 0
 0
 10
-
+
 org/apache/hadoop/hbase/RegionStateListener.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/ScheduledChore.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/ServerLoad.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/ServerName.java
 0
 0
 27
-
+
 org/apache/hadoop/hbase/SettableSequenceId.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/SettableTimestamp.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/SplitLogCounters.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/SplitLogTask.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/TableDescriptors.java
 0
 0
 8
-
+
 org/apache/hadoop/hbase/TableInfoMissingException.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/TableName.java
 0
 0
 20
-
+
 org/apache/hadoop/hbase/TagType.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/TagUtil.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/ZKNamespaceManager.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/ZNodeClearer.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/backup/BackupCopyJob.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/backup/BackupHFileCleaner.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/backup/BackupRestoreConstants.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/backup/BackupTableInfo.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/backup/FailedArchiveException.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/backup/HBackupFileSystem.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/backup/HFileArchiver.java
 0
 0
 21
-
+
 org/apache/hadoop/hbase/backup/LogUtils.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/backup/RestoreDriver.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/backup/RestoreJob.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/backup/RestoreRequest.java
 0
 0
 1
-
+
 org/apache/hadoop/hbase/backup/example/HFileArchiveManager.java
 0
 0
 3
-
+
 org/apache/hadoop/hbase/backup/example/LongTermArchivingHFileCleaner.java
 0
 0
 5
-
+
 org/apache/hadoop/hbase/backup/example/TableHFileArchiveTracker.java
 0
 0
 6
-
+
 org/apache/hadoop/hbase/backup/example/ZKTableArchiveClient.java
 0
 0
 2
-
+
 org/apache/hadoop/hbase/backup/impl/BackupAdminImpl.java
 0
 0
 10
-
+
 org/apache/hadoop/hbase/backup/impl/BackupCommands.java
 0
 0
 55
-
+
 org/apache/hadoop/hbase/backup/impl/BackupManager.java
 0
 0
 5
-
+
 org/apa

  1   2   3   4   >