Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id D7985200C59 for ; Sun, 2 Apr 2017 15:01:42 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D6952160BA4; Sun, 2 Apr 2017 13:01:42 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id CDF41160B77 for ; Sun, 2 Apr 2017 15:01:40 +0200 (CEST) Received: (qmail 8980 invoked by uid 500); 2 Apr 2017 13:01:35 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 5210 invoked by uid 99); 2 Apr 2017 13:01:32 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Apr 2017 13:01:32 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 13584F17F6; Sun, 2 Apr 2017 13:01:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: git-site-role@apache.org To: commits@hbase.apache.org Date: Sun, 02 Apr 2017 13:02:05 -0000 Message-Id: <0420f7dc68fa4eb8ad28c5264c266c89@git.apache.org> In-Reply-To: <42115be86bfc420180ddb6e13499ba40@git.apache.org> References: <42115be86bfc420180ddb6e13499ba40@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [36/51] [partial] hbase-site git commit: Published site at 73e1bcd33515061be2dc2e51e6ad19d9798a8ef6. archived-at: Sun, 02 Apr 2017 13:01:43 -0000 http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6d254372/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 dd37400..675b6af 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 -KeyValueUtil.create(DataInput in)  +KeyValue.create(DataInput in)  static KeyValue -KeyValue.create(DataInput in)  +KeyValueUtil.create(DataInput in)  static KeyValue -KeyValueUtil.create(int length, +KeyValue.create(int length, DataInput in)
Create a KeyValue reading length from in
static KeyValue -KeyValue.create(int length, +KeyValueUtil.create(int length, 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 -KeyValueUtil.createKeyValueFromKey(byte[] b)  +KeyValue.createKeyValueFromKey(byte[] b)  static KeyValue -KeyValue.createKeyValueFromKey(byte[] b)  +KeyValueUtil.createKeyValueFromKey(byte[] b)  static KeyValue -KeyValueUtil.createKeyValueFromKey(byte[] b, +KeyValue.createKeyValueFromKey(byte[] b, int o, int l)  static KeyValue -KeyValue.createKeyValueFromKey(byte[] b, +KeyValueUtil.createKeyValueFromKey(byte[] b, int o, int l)  static KeyValue -KeyValueUtil.createKeyValueFromKey(ByteBuffer bb)  +KeyValue.createKeyValueFromKey(ByteBuffer bb)  static KeyValue -KeyValue.createKeyValueFromKey(ByteBuffer bb)  +KeyValueUtil.createKeyValueFromKey(ByteBuffer bb)  static KeyValue @@ -530,17 +530,17 @@ Input/OutputFormats, a table indexing MapReduce job, and utility methods. static long -KeyValueUtil.write(KeyValue kv, +KeyValue.write(KeyValue kv, 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 -KeyValue.write(KeyValue kv, +KeyValueUtil.write(KeyValue kv, 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,28 +751,38 @@ Input/OutputFormats, a table indexing MapReduce job, and utility methods. Iterator<StoreFile> -DefaultStoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue targetKey)  +StripeStoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue targetKey) + + Iterator<StoreFile> +DefaultStoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue targetKey)  + + +Iterator<StoreFile> StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue targetKey)
Gets initial, full list of candidate store files to check for row-key-before.
- + Iterator<StoreFile> -StripeStoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue targetKey) -
See StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue) +StripeStoreFileManager.updateCandidateFilesForRowKeyBefore(Iterator<StoreFile> candidateFiles, + KeyValue targetKey, + Cell candidate) + - + Iterator<StoreFile> DefaultStoreFileManager.updateCandidateFilesForRowKeyBefore(Iterator<StoreFile> candidateFiles, KeyValue targetKey, Cell candidate)  - + Iterator<StoreFile> StoreFileManager.updateCandidateFilesForRowKeyBefore(Iterator<StoreFile> candidateFiles, KeyValue targetKey, @@ -780,16 +790,6 @@ Input/OutputFormats, a table indexing MapReduce job, and utility methods.
Updates the candidate list for finding row key before.
- -Iterator<StoreFile> -StripeStoreFileManager.updateCandidateFilesForRowKeyBefore(Iterator<StoreFile> candidateFiles, - KeyValue targetKey, - Cell candidate) - - - http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6d254372/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/6d254372/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html b/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html index 69f968c..24a7f43 100644 --- a/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html +++ b/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html @@ -270,14 +270,14 @@ CompletableFuture<NamespaceDescriptor> -AsyncHBaseAdmin.getNamespaceDescriptor(String name)  - - -CompletableFuture<NamespaceDescriptor> AsyncAdmin.getNamespaceDescriptor(String name)
Get a namespace descriptor by name
+ +CompletableFuture<NamespaceDescriptor> +AsyncHBaseAdmin.getNamespaceDescriptor(String name)  + @@ -289,7 +289,9 @@ - + @@ -303,9 +305,7 @@ - + @@ -319,7 +319,9 @@ - + @@ -333,9 +335,7 @@ - + http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6d254372/devapidocs/org/apache/hadoop/hbase/class-use/ProcedureInfo.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/ProcedureInfo.html b/devapidocs/org/apache/hadoop/hbase/class-use/ProcedureInfo.html index afd3d62..2c62faf 100644 --- a/devapidocs/org/apache/hadoop/hbase/class-use/ProcedureInfo.html +++ b/devapidocs/org/apache/hadoop/hbase/class-use/ProcedureInfo.html @@ -219,14 +219,14 @@ - - - - + + + +
CompletableFuture<Void>AsyncHBaseAdmin.createNamespace(NamespaceDescriptor descriptor) AsyncAdmin.createNamespace(NamespaceDescriptor descriptor) +
Create a new namespace.
+
void
CompletableFuture<Void>AsyncAdmin.createNamespace(NamespaceDescriptor descriptor) -
Create a new namespace.
-
AsyncHBaseAdmin.createNamespace(NamespaceDescriptor descriptor) 
Future<Void>
CompletableFuture<Void>AsyncHBaseAdmin.modifyNamespace(NamespaceDescriptor descriptor) AsyncAdmin.modifyNamespace(NamespaceDescriptor descriptor) +
Modify an existing namespace.
+
void
CompletableFuture<Void>AsyncAdmin.modifyNamespace(NamespaceDescriptor descriptor) -
Modify an existing namespace.
-
AsyncHBaseAdmin.modifyNamespace(NamespaceDescriptor descriptor) 
Future<Void>
List<ProcedureInfo>HMaster.listProcedures() 
List<ProcedureInfo> MasterServices.listProcedures()
List procedures
List<ProcedureInfo>HMaster.listProcedures() 
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6d254372/devapidocs/org/apache/hadoop/hbase/class-use/RegionLocations.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/RegionLocations.html b/devapidocs/org/apache/hadoop/hbase/class-use/RegionLocations.html index 514b107..bfb8392 100644 --- a/devapidocs/org/apache/hadoop/hbase/class-use/RegionLocations.html +++ b/devapidocs/org/apache/hadoop/hbase/class-use/RegionLocations.html @@ -217,15 +217,15 @@ boolean useCache)  - - + - - + @@ -262,21 +262,21 @@ - - - - - - - - + + + +
RegionLocationsMetaCache.getCachedLocation(TableName tableName, +(package private) RegionLocationsConnectionImplementation.getCachedLocation(TableName tableName, byte[] row)
Search the cache for a location that fits our table and row key.
(package private) RegionLocationsConnectionImplementation.getCachedLocation(TableName tableName, +RegionLocationsMetaCache.getCachedLocation(TableName tableName, byte[] row)
Search the cache for a location that fits our table and row key.
RegionLocationsConnectionImplementation.locateRegion(TableName tableName, +ClusterConnection.locateRegion(TableName tableName, byte[] row, boolean useCache, boolean retry) 
RegionLocationsClusterConnection.locateRegion(TableName tableName, +ConnectionImplementation.locateRegion(TableName tableName, byte[] row, boolean useCache, boolean retry) 
RegionLocationsConnectionImplementation.locateRegion(TableName tableName, +ClusterConnection.locateRegion(TableName tableName, byte[] row, boolean useCache, boolean retry, @@ -284,7 +284,7 @@
RegionLocationsClusterConnection.locateRegion(TableName tableName, +ConnectionImplementation.locateRegion(TableName tableName, byte[] row, boolean useCache, boolean retry, @@ -300,12 +300,6 @@
RegionLocationsConnectionImplementation.relocateRegion(TableName tableName, - byte[] row, - int replicaId) 
RegionLocations ClusterConnection.relocateRegion(TableName tableName, byte[] row, int replicaId) @@ -313,6 +307,12 @@ lives in, ignoring any value that might be in the cache.
RegionLocationsConnectionImplementation.relocateRegion(TableName tableName, + byte[] row, + int replicaId) 
@@ -376,10 +376,8 @@ - + @@ -390,8 +388,10 @@ - +
voidMetaCache.cacheLocation(TableName tableName, - RegionLocations locations) -
Put a newly discovered HRegionLocation into the cache.
-
ClusterConnection.cacheLocation(TableName tableName, + RegionLocations location) 
void
voidClusterConnection.cacheLocation(TableName tableName, - RegionLocations location) MetaCache.cacheLocation(TableName tableName, + RegionLocations locations) +
Put a newly discovered HRegionLocation into the cache.
+
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6d254372/devapidocs/org/apache/hadoop/hbase/class-use/ScheduledChore.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/ScheduledChore.html b/devapidocs/org/apache/hadoop/hbase/class-use/ScheduledChore.html index 3117db7..813c81d 100644 --- a/devapidocs/org/apache/hadoop/hbase/class-use/ScheduledChore.html +++ b/devapidocs/org/apache/hadoop/hbase/class-use/ScheduledChore.html @@ -180,43 +180,43 @@ void -ChoreService.cancelChore(ScheduledChore chore)  - - -void ScheduledChore.ChoreServicer.cancelChore(ScheduledChore chore)
Cancel any ongoing schedules that this chore has with the implementer of this interface.
+ +void +ChoreService.cancelChore(ScheduledChore chore)  + void -ChoreService.cancelChore(ScheduledChore chore, +ScheduledChore.ChoreServicer.cancelChore(ScheduledChore chore, boolean mayInterruptIfRunning)  void -ScheduledChore.ChoreServicer.cancelChore(ScheduledChore chore, +ChoreService.cancelChore(ScheduledChore chore, boolean mayInterruptIfRunning)  boolean -ChoreService.isChoreScheduled(ScheduledChore chore)  +ScheduledChore.ChoreServicer.isChoreScheduled(ScheduledChore chore)  boolean -ScheduledChore.ChoreServicer.isChoreScheduled(ScheduledChore chore)  +ChoreService.isChoreScheduled(ScheduledChore chore)  void -ChoreService.onChoreMissedStartTime(ScheduledChore chore)  - - -void ScheduledChore.ChoreServicer.onChoreMissedStartTime(ScheduledChore chore)
A callback that tells the implementer of this interface that one of the scheduled chores is missing its start time.
+ +void +ChoreService.onChoreMissedStartTime(ScheduledChore chore)  + private void ChoreService.printChoreDetails(String header, @@ -234,14 +234,14 @@ boolean -ChoreService.triggerNow(ScheduledChore chore)  - - -boolean ScheduledChore.ChoreServicer.triggerNow(ScheduledChore chore)
This method tries to execute the chore immediately.
+ +boolean +ChoreService.triggerNow(ScheduledChore chore)  + http://git-wip-us.apache.org/repos/asf/hbase-site/blob/6d254372/devapidocs/org/apache/hadoop/hbase/class-use/Server.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/class-use/Server.html b/devapidocs/org/apache/hadoop/hbase/class-use/Server.html index de84802..268f0c5 100644 --- a/devapidocs/org/apache/hadoop/hbase/class-use/Server.html +++ b/devapidocs/org/apache/hadoop/hbase/class-use/Server.html @@ -438,11 +438,11 @@ private Server -HeapMemoryManager.server  +LogRoller.server  private Server -LogRoller.server  +HeapMemoryManager.server  @@ -636,11 +636,11 @@ private Server -Replication.server  +ReplicationSourceManager.server  private Server -ReplicationSourceManager.server  +Replication.server