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 97754200C69 for ; Sat, 1 Apr 2017 00:33:16 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 95F9B160BA5; Fri, 31 Mar 2017 22:33:16 +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 9828B160B80 for ; Sat, 1 Apr 2017 00:33:14 +0200 (CEST) Received: (qmail 77483 invoked by uid 500); 31 Mar 2017 22:33:07 -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 75659 invoked by uid 99); 31 Mar 2017 22:33:06 -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; Fri, 31 Mar 2017 22:33:06 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3E8CDE9112; Fri, 31 Mar 2017 22:33:06 +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: Fri, 31 Mar 2017 22:33:41 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [37/51] [partial] hbase-site git commit: Published site at 1c4d9c8965952cbd17f0afdacbb0c0ac1e5bd1d7. archived-at: Fri, 31 Mar 2017 22:33:16 -0000 http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6608edf/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(DataInput in)  +KeyValueUtil.create(DataInput in)  static KeyValue -KeyValueUtil.create(DataInput in)  +KeyValue.create(DataInput in)  static KeyValue -KeyValue.create(int length, +KeyValueUtil.create(int length, DataInput in)
Create a KeyValue reading length from in
static KeyValue -KeyValueUtil.create(int length, +KeyValue.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 -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(ByteBuffer bb)  +KeyValueUtil.createKeyValueFromKey(ByteBuffer bb)  static KeyValue -KeyValueUtil.createKeyValueFromKey(ByteBuffer bb)  +KeyValue.createKeyValueFromKey(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, 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, 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. Iterator<StoreFile> -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.updateCandidateFilesForRowKeyBefore(Iterator<StoreFile> candidateFiles, - KeyValue targetKey, - Cell candidate) -
See StoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue) and - StoreFileManager.updateCandidateFilesForRowKeyBefore(Iterator, KeyValue, Cell) +StripeStoreFileManager.getCandidateFilesForRowKeyBefore(KeyValue targetKey) + - + Iterator<StoreFile> DefaultStoreFileManager.updateCandidateFilesForRowKeyBefore(Iterator<StoreFile> candidateFiles, KeyValue targetKey, Cell candidate)  - + Iterator<StoreFile> StoreFileManager.updateCandidateFilesForRowKeyBefore(Iterator<StoreFile> candidateFiles, KeyValue targetKey, @@ -790,6 +780,16 @@ 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/d6608edf/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 89ffa47..c4b28e0 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 -ClusterConnection.isMasterRunning() +ConnectionImplementation.isMasterRunning()
Deprecated. 
this has been deprecated without a replacement
@@ -165,7 +165,7 @@ boolean -ConnectionImplementation.isMasterRunning() +ClusterConnection.isMasterRunning()
Deprecated. 
this has been deprecated without a replacement
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6608edf/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 24a7f43..69f968c 100644 --- a/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html +++ b/devapidocs/org/apache/hadoop/hbase/class-use/NamespaceDescriptor.html @@ -270,13 +270,13 @@ CompletableFuture<NamespaceDescriptor> -AsyncAdmin.getNamespaceDescriptor(String name) -
Get a namespace descriptor by name
- +AsyncHBaseAdmin.getNamespaceDescriptor(String name)  CompletableFuture<NamespaceDescriptor> -AsyncHBaseAdmin.getNamespaceDescriptor(String name)  +AsyncAdmin.getNamespaceDescriptor(String name) +
Get a namespace descriptor by name
+ @@ -289,9 +289,7 @@ CompletableFuture<Void> -AsyncAdmin.createNamespace(NamespaceDescriptor descriptor) -
Create a new namespace.
- +AsyncHBaseAdmin.createNamespace(NamespaceDescriptor descriptor)  void @@ -305,7 +303,9 @@ CompletableFuture<Void> -AsyncHBaseAdmin.createNamespace(NamespaceDescriptor descriptor)  +AsyncAdmin.createNamespace(NamespaceDescriptor descriptor) +
Create a new namespace.
+ Future<Void> @@ -319,9 +319,7 @@ CompletableFuture<Void> -AsyncAdmin.modifyNamespace(NamespaceDescriptor descriptor) -
Modify an existing namespace.
- +AsyncHBaseAdmin.modifyNamespace(NamespaceDescriptor descriptor)  void @@ -335,7 +333,9 @@ CompletableFuture<Void> -AsyncHBaseAdmin.modifyNamespace(NamespaceDescriptor descriptor)  +AsyncAdmin.modifyNamespace(NamespaceDescriptor descriptor) +
Modify an existing namespace.
+ Future<Void> http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6608edf/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 2c62faf..afd3d62 100644 --- a/devapidocs/org/apache/hadoop/hbase/class-use/ProcedureInfo.html +++ b/devapidocs/org/apache/hadoop/hbase/class-use/ProcedureInfo.html @@ -219,13 +219,13 @@ List<ProcedureInfo> -MasterServices.listProcedures() -
List procedures
- +HMaster.listProcedures()  List<ProcedureInfo> -HMaster.listProcedures()  +MasterServices.listProcedures() +
List procedures
+ http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6608edf/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 bfb8392..514b107 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)
  -(package private) RegionLocations -ConnectionImplementation.getCachedLocation(TableName tableName, +RegionLocations +MetaCache.getCachedLocation(TableName tableName, byte[] row)
Search the cache for a location that fits our table and row key.
-RegionLocations -MetaCache.getCachedLocation(TableName tableName, +(package private) RegionLocations +ConnectionImplementation.getCachedLocation(TableName tableName, byte[] row)
Search the cache for a location that fits our table and row key.
@@ -262,21 +262,21 @@ RegionLocations -ClusterConnection.locateRegion(TableName tableName, +ConnectionImplementation.locateRegion(TableName tableName, byte[] row, boolean useCache, boolean retry)  RegionLocations -ConnectionImplementation.locateRegion(TableName tableName, +ClusterConnection.locateRegion(TableName tableName, byte[] row, boolean useCache, boolean retry)  RegionLocations -ClusterConnection.locateRegion(TableName tableName, +ConnectionImplementation.locateRegion(TableName tableName, byte[] row, boolean useCache, boolean retry, @@ -284,7 +284,7 @@ RegionLocations -ConnectionImplementation.locateRegion(TableName tableName, +ClusterConnection.locateRegion(TableName tableName, byte[] row, boolean useCache, boolean retry, @@ -300,6 +300,12 @@ RegionLocations +ConnectionImplementation.relocateRegion(TableName tableName, + byte[] row, + int replicaId)  + + +RegionLocations ClusterConnection.relocateRegion(TableName tableName, byte[] row, int replicaId) @@ -307,12 +313,6 @@ lives in, ignoring any value that might be in the cache. - -RegionLocations -ConnectionImplementation.relocateRegion(TableName tableName, - byte[] row, - int replicaId)  - @@ -376,8 +376,10 @@ - + @@ -388,10 +390,8 @@ - +
voidClusterConnection.cacheLocation(TableName tableName, - RegionLocations location) MetaCache.cacheLocation(TableName tableName, + RegionLocations locations) +
Put a newly discovered HRegionLocation into the cache.
+
void
voidMetaCache.cacheLocation(TableName tableName, - RegionLocations locations) -
Put a newly discovered HRegionLocation into the cache.
-
ClusterConnection.cacheLocation(TableName tableName, + RegionLocations location) 
http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6608edf/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 813c81d..3117db7 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 -ScheduledChore.ChoreServicer.cancelChore(ScheduledChore chore) -
Cancel any ongoing schedules that this chore has with the implementer of this interface.
- +ChoreService.cancelChore(ScheduledChore chore)  void -ChoreService.cancelChore(ScheduledChore chore)  +ScheduledChore.ChoreServicer.cancelChore(ScheduledChore chore) +
Cancel any ongoing schedules that this chore has with the implementer of this interface.
+ void -ScheduledChore.ChoreServicer.cancelChore(ScheduledChore chore, +ChoreService.cancelChore(ScheduledChore chore, boolean mayInterruptIfRunning)  void -ChoreService.cancelChore(ScheduledChore chore, +ScheduledChore.ChoreServicer.cancelChore(ScheduledChore chore, boolean mayInterruptIfRunning)  boolean -ScheduledChore.ChoreServicer.isChoreScheduled(ScheduledChore chore)  +ChoreService.isChoreScheduled(ScheduledChore chore)  boolean -ChoreService.isChoreScheduled(ScheduledChore chore)  +ScheduledChore.ChoreServicer.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,13 +234,13 @@ boolean -ScheduledChore.ChoreServicer.triggerNow(ScheduledChore chore) -
This method tries to execute the chore immediately.
- +ChoreService.triggerNow(ScheduledChore chore)  boolean -ChoreService.triggerNow(ScheduledChore chore)  +ScheduledChore.ChoreServicer.triggerNow(ScheduledChore chore) +
This method tries to execute the chore immediately.
+ http://git-wip-us.apache.org/repos/asf/hbase-site/blob/d6608edf/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 268f0c5..de84802 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 -LogRoller.server  +HeapMemoryManager.server  private Server -HeapMemoryManager.server  +LogRoller.server  @@ -636,11 +636,11 @@ private Server -ReplicationSourceManager.server  +Replication.server  private Server -Replication.server  +ReplicationSourceManager.server