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 2EC58200C4E for ; Thu, 6 Apr 2017 19:30:38 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 2D635160BAA; Thu, 6 Apr 2017 17:30:38 +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 5CAF1160BA7 for ; Thu, 6 Apr 2017 19:30:36 +0200 (CEST) Received: (qmail 95687 invoked by uid 500); 6 Apr 2017 17:30:26 -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 91665 invoked by uid 99); 6 Apr 2017 17:30:23 -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; Thu, 06 Apr 2017 17:30:23 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 502E4F49DE; Thu, 6 Apr 2017 17:30:22 +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: Thu, 06 Apr 2017 17:30:43 -0000 Message-Id: <1d834b1ee1a04ebcb30fd6a38625fce6@git.apache.org> In-Reply-To: <91bd3fd8b37f4458b1c09883f7dcaf48@git.apache.org> References: <91bd3fd8b37f4458b1c09883f7dcaf48@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [23/51] [partial] hbase-site git commit: Published site at ec5188df3090d42088b6f4cb8f0c2fd49425f8c1. archived-at: Thu, 06 Apr 2017 17:30:38 -0000 http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b64f8dea/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockCacheKey.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockCacheKey.html b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockCacheKey.html index b3951ce..793bd20 100644 --- a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockCacheKey.html +++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/BlockCacheKey.html @@ -168,23 +168,23 @@ void -CombinedBlockCache.cacheBlock(BlockCacheKey cacheKey, - Cacheable buf)  - - -void BlockCache.cacheBlock(BlockCacheKey cacheKey, Cacheable buf)
Add block to cache (defaults to not in-memory).
- + void LruBlockCache.cacheBlock(BlockCacheKey cacheKey, Cacheable buf)
Cache the block with the specified name and buffer.
+ +void +CombinedBlockCache.cacheBlock(BlockCacheKey cacheKey, + Cacheable buf)  + void MemcachedBlockCache.cacheBlock(BlockCacheKey cacheKey, @@ -192,35 +192,35 @@ void -CombinedBlockCache.cacheBlock(BlockCacheKey cacheKey, +BlockCache.cacheBlock(BlockCacheKey cacheKey, Cacheable buf, boolean inMemory, - boolean cacheDataInL1)  + boolean cacheDataInL1) +
Add block to cache.
+ void -InclusiveCombinedBlockCache.cacheBlock(BlockCacheKey cacheKey, +LruBlockCache.cacheBlock(BlockCacheKey cacheKey, Cacheable buf, boolean inMemory, - boolean cacheDataInL1)  + boolean cacheDataInL1) +
Cache the block with the specified name and buffer.
+ void -BlockCache.cacheBlock(BlockCacheKey cacheKey, +CombinedBlockCache.cacheBlock(BlockCacheKey cacheKey, Cacheable buf, boolean inMemory, - boolean cacheDataInL1) -
Add block to cache.
- + boolean cacheDataInL1)
  void -LruBlockCache.cacheBlock(BlockCacheKey cacheKey, +InclusiveCombinedBlockCache.cacheBlock(BlockCacheKey cacheKey, Cacheable buf, boolean inMemory, - boolean cacheDataInL1) -
Cache the block with the specified name and buffer.
- + boolean cacheDataInL1)
  void @@ -237,53 +237,53 @@ boolean -CombinedBlockCache.evictBlock(BlockCacheKey cacheKey)  - - -boolean BlockCache.evictBlock(BlockCacheKey cacheKey)
Evict block from cache.
- + boolean LruBlockCache.evictBlock(BlockCacheKey cacheKey)  + +boolean +CombinedBlockCache.evictBlock(BlockCacheKey cacheKey)  + boolean MemcachedBlockCache.evictBlock(BlockCacheKey cacheKey)  Cacheable -CombinedBlockCache.getBlock(BlockCacheKey cacheKey, +BlockCache.getBlock(BlockCacheKey cacheKey, boolean caching, boolean repeat, - boolean updateCacheMetrics)  + boolean updateCacheMetrics) +
Fetch block from cache.
+ Cacheable -InclusiveCombinedBlockCache.getBlock(BlockCacheKey cacheKey, +LruBlockCache.getBlock(BlockCacheKey cacheKey, boolean caching, boolean repeat, - boolean updateCacheMetrics)  + boolean updateCacheMetrics) +
Get the buffer of the block with the specified name.
+ Cacheable -BlockCache.getBlock(BlockCacheKey cacheKey, +CombinedBlockCache.getBlock(BlockCacheKey cacheKey, boolean caching, boolean repeat, - boolean updateCacheMetrics) -
Fetch block from cache.
- + boolean updateCacheMetrics)
  Cacheable -LruBlockCache.getBlock(BlockCacheKey cacheKey, +InclusiveCombinedBlockCache.getBlock(BlockCacheKey cacheKey, boolean caching, boolean repeat, - boolean updateCacheMetrics) -
Get the buffer of the block with the specified name.
- + boolean updateCacheMetrics)
  Cacheable @@ -310,22 +310,22 @@ void -CombinedBlockCache.returnBlock(BlockCacheKey cacheKey, - Cacheable block)  - - -void BlockCache.returnBlock(BlockCacheKey cacheKey, Cacheable block)
Called when the scanner using the block decides to return the block once its usage is over.
- + void LruBlockCache.returnBlock(BlockCacheKey cacheKey, Cacheable block)  + +void +CombinedBlockCache.returnBlock(BlockCacheKey cacheKey, + Cacheable block)  + void MemcachedBlockCache.returnBlock(BlockCacheKey cacheKey, @@ -509,14 +509,14 @@ void -BucketCache.BucketEntryGroup.add(Map.Entry<BlockCacheKey,BucketCache.BucketEntry> block)  - - -void CachedEntryQueue.add(Map.Entry<BlockCacheKey,BucketCache.BucketEntry> entry)
Attempt to add the specified entry to this queue.
+ +void +BucketCache.BucketEntryGroup.add(Map.Entry<BlockCacheKey,BucketCache.BucketEntry> block)  + http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b64f8dea/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 0606faf..7357a80 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 @@ -169,20 +169,20 @@ + + + + - + - - - -
private BlockTypeBlockCacheKey.blockType 
private BlockType HFileBlock.blockType
Type of block.
private BlockType HFileBlock.Writer.blockType
Current block type.
private BlockTypeBlockCacheKey.blockType 
@@ -194,7 +194,7 @@ - + @@ -208,21 +208,21 @@ - + - + - + - + @@ -284,26 +284,26 @@ the order they are declared. - - + BlockType blockType) +
Ends encoding for a block of KeyValues.
+ - + BlockType blockType)  http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b64f8dea/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.html index 66c3554..18e401a 100644 --- a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CacheConfig.html +++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CacheConfig.html @@ -213,9 +213,9 @@ - - + @@ -223,9 +223,9 @@ - - + @@ -393,13 +393,6 @@ - - - - + + + + - + - + @@ -711,19 +711,19 @@ - + - + - + - +
BlockTypeCachedBlock.getBlockType() BlockCacheKey.getBlockType() 
BlockType
BlockTypeBlockCacheKey.getBlockType() Cacheable.getBlockType() 
BlockTypeCacheable.getBlockType() CachedBlock.getBlockType() 
BlockTypeInlineBlockWriter.getInlineBlockType() -
The type of blocks this block writer produces.
-
HFileBlockIndex.BlockIndexWriter.getInlineBlockType() 
BlockTypeHFileBlockIndex.BlockIndexWriter.getInlineBlockType() InlineBlockWriter.getInlineBlockType() +
The type of blocks this block writer produces.
+
BlockType
voidHFileDataBlockEncoderImpl.endBlockEncoding(HFileBlockEncodingContext encodingCtx, +NoOpDataBlockEncoder.endBlockEncoding(HFileBlockEncodingContext encodingCtx, DataOutputStream out, byte[] uncompressedBytesWithHeader, BlockType blockType) 
voidNoOpDataBlockEncoder.endBlockEncoding(HFileBlockEncodingContext encodingCtx, +HFileDataBlockEncoder.endBlockEncoding(HFileBlockEncodingContext encodingCtx, DataOutputStream out, byte[] uncompressedBytesWithHeader, - BlockType blockType) 
voidHFileDataBlockEncoder.endBlockEncoding(HFileBlockEncodingContext encodingCtx, +HFileDataBlockEncoderImpl.endBlockEncoding(HFileBlockEncodingContext encodingCtx, DataOutputStream out, byte[] uncompressedBytesWithHeader, - BlockType blockType) -
Ends encoding for a block of KeyValues.
-
private DataInput
protected CacheConfigHFileWriterImpl.cacheConf -
Cache configuration for caching data on write.
+
private CacheConfigHFileBlockIndex.BlockIndexWriter.cacheConf +
CacheConfig, or null if cache-on-write is disabled
HFile.WriterFactory.cacheConf 
private CacheConfigHFileBlockIndex.BlockIndexWriter.cacheConf -
CacheConfig, or null if cache-on-write is disabled
+
protected CacheConfigHFileWriterImpl.cacheConf +
Cache configuration for caching data on write.
static CachedMobFileCachedMobFile.create(org.apache.hadoop.fs.FileSystem fs, - org.apache.hadoop.fs.Path path, - org.apache.hadoop.conf.Configuration conf, - CacheConfig cacheConf) 
static MobFile MobFile.create(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path, @@ -408,6 +401,13 @@
Creates an instance of the MobFile.
static CachedMobFileCachedMobFile.create(org.apache.hadoop.fs.FileSystem fs, + org.apache.hadoop.fs.Path path, + org.apache.hadoop.conf.Configuration conf, + CacheConfig cacheConf) 
static StoreFileWriter MobUtils.createDelFileWriter(org.apache.hadoop.conf.Configuration conf, @@ -573,13 +573,13 @@
CacheConfigStore.getCacheConfig() -
Used for tests.
-
HRegionServer.getCacheConfig() 
CacheConfigHRegionServer.getCacheConfig() Store.getCacheConfig() +
Used for tests.
+
CacheConfig
private CacheConfigBlockCacheTmplImpl.cacheConfig BlockCacheViewTmplImpl.cacheConfig 
private CacheConfigBlockCacheViewTmplImpl.cacheConfig BlockCacheTmplImpl.cacheConfig 
private CacheConfigBlockCacheViewTmpl.ImplData.m_cacheConfig BlockCacheTmpl.ImplData.m_cacheConfig 
private CacheConfigBlockCacheTmpl.ImplData.m_cacheConfig BlockCacheViewTmpl.ImplData.m_cacheConfig 
@@ -736,11 +736,11 @@ CacheConfig -BlockCacheViewTmpl.ImplData.getCacheConfig()  +BlockCacheTmpl.ImplData.getCacheConfig()  CacheConfig -BlockCacheTmpl.ImplData.getCacheConfig()  +BlockCacheViewTmpl.ImplData.getCacheConfig()  @@ -810,11 +810,11 @@ void -BlockCacheViewTmpl.ImplData.setCacheConfig(CacheConfig cacheConfig)  +BlockCacheTmpl.ImplData.setCacheConfig(CacheConfig cacheConfig)  void -BlockCacheTmpl.ImplData.setCacheConfig(CacheConfig cacheConfig)  +BlockCacheViewTmpl.ImplData.setCacheConfig(CacheConfig cacheConfig)  http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b64f8dea/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CacheStats.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CacheStats.html b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CacheStats.html index ca72aa6..4723449 100644 --- a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CacheStats.html +++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CacheStats.html @@ -158,20 +158,20 @@ CacheStats -CombinedBlockCache.getStats()  - - -CacheStats BlockCache.getStats()
Get the statistics for this block cache.
- + CacheStats LruBlockCache.getStats()
Get counter statistics for this cache.
+ +CacheStats +CombinedBlockCache.getStats()  + CacheStats MemcachedBlockCache.getStats()  http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b64f8dea/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/Cacheable.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/Cacheable.html b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/Cacheable.html index b4ae52f..151a710 100644 --- a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/Cacheable.html +++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/Cacheable.html @@ -176,35 +176,35 @@ Cacheable -CombinedBlockCache.getBlock(BlockCacheKey cacheKey, +BlockCache.getBlock(BlockCacheKey cacheKey, boolean caching, boolean repeat, - boolean updateCacheMetrics)  + boolean updateCacheMetrics) +
Fetch block from cache.
+ Cacheable -InclusiveCombinedBlockCache.getBlock(BlockCacheKey cacheKey, +LruBlockCache.getBlock(BlockCacheKey cacheKey, boolean caching, boolean repeat, - boolean updateCacheMetrics)  + boolean updateCacheMetrics) +
Get the buffer of the block with the specified name.
+ Cacheable -BlockCache.getBlock(BlockCacheKey cacheKey, +CombinedBlockCache.getBlock(BlockCacheKey cacheKey, boolean caching, boolean repeat, - boolean updateCacheMetrics) -
Fetch block from cache.
- + boolean updateCacheMetrics)
  Cacheable -LruBlockCache.getBlock(BlockCacheKey cacheKey, +InclusiveCombinedBlockCache.getBlock(BlockCacheKey cacheKey, boolean caching, boolean repeat, - boolean updateCacheMetrics) -
Get the buffer of the block with the specified name.
- + boolean updateCacheMetrics)
  Cacheable @@ -253,23 +253,23 @@ void -CombinedBlockCache.cacheBlock(BlockCacheKey cacheKey, - Cacheable buf)  - - -void BlockCache.cacheBlock(BlockCacheKey cacheKey, Cacheable buf)
Add block to cache (defaults to not in-memory).
- + void LruBlockCache.cacheBlock(BlockCacheKey cacheKey, Cacheable buf)
Cache the block with the specified name and buffer.
+ +void +CombinedBlockCache.cacheBlock(BlockCacheKey cacheKey, + Cacheable buf)  + void MemcachedBlockCache.cacheBlock(BlockCacheKey cacheKey, @@ -277,35 +277,35 @@ void -CombinedBlockCache.cacheBlock(BlockCacheKey cacheKey, +BlockCache.cacheBlock(BlockCacheKey cacheKey, Cacheable buf, boolean inMemory, - boolean cacheDataInL1)  + boolean cacheDataInL1) +
Add block to cache.
+ void -InclusiveCombinedBlockCache.cacheBlock(BlockCacheKey cacheKey, +LruBlockCache.cacheBlock(BlockCacheKey cacheKey, Cacheable buf, boolean inMemory, - boolean cacheDataInL1)  + boolean cacheDataInL1) +
Cache the block with the specified name and buffer.
+ void -BlockCache.cacheBlock(BlockCacheKey cacheKey, +CombinedBlockCache.cacheBlock(BlockCacheKey cacheKey, Cacheable buf, boolean inMemory, - boolean cacheDataInL1) -
Add block to cache.
- + boolean cacheDataInL1)
  void -LruBlockCache.cacheBlock(BlockCacheKey cacheKey, +InclusiveCombinedBlockCache.cacheBlock(BlockCacheKey cacheKey, Cacheable buf, boolean inMemory, - boolean cacheDataInL1) -
Cache the block with the specified name and buffer.
- + boolean cacheDataInL1)
  void @@ -321,22 +321,22 @@ void -CombinedBlockCache.returnBlock(BlockCacheKey cacheKey, - Cacheable block)  - - -void BlockCache.returnBlock(BlockCacheKey cacheKey, Cacheable block)
Called when the scanner using the block decides to return the block once its usage is over.
- + void LruBlockCache.returnBlock(BlockCacheKey cacheKey, Cacheable block)  + +void +CombinedBlockCache.returnBlock(BlockCacheKey cacheKey, + Cacheable block)  + void MemcachedBlockCache.returnBlock(BlockCacheKey cacheKey, @@ -419,19 +419,13 @@ Cacheable -ByteBufferIOEngine.read(long offset, - int length, - CacheableDeserializer<Cacheable> deserializer)  - - -Cacheable FileIOEngine.read(long offset, int length, CacheableDeserializer<Cacheable> deserializer)
Transfers data from file to the given byte buffer
- + Cacheable IOEngine.read(long offset, int length, @@ -439,6 +433,12 @@
Transfers data from IOEngine to a Cacheable object.
+ +Cacheable +ByteBufferIOEngine.read(long offset, + int length, + CacheableDeserializer<Cacheable> deserializer)  + Cacheable FileMmapEngine.read(long offset, @@ -508,19 +508,13 @@ Cacheable -ByteBufferIOEngine.read(long offset, - int length, - CacheableDeserializer<Cacheable> deserializer)  - - -Cacheable FileIOEngine.read(long offset, int length, CacheableDeserializer<Cacheable> deserializer)
Transfers data from file to the given byte buffer
- + Cacheable IOEngine.read(long offset, int length, @@ -528,6 +522,12 @@
Transfers data from IOEngine to a Cacheable object.
+ +Cacheable +ByteBufferIOEngine.read(long offset, + int length, + CacheableDeserializer<Cacheable> deserializer)  + Cacheable FileMmapEngine.read(long offset, http://git-wip-us.apache.org/repos/asf/hbase-site/blob/b64f8dea/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CacheableDeserializer.html ---------------------------------------------------------------------- diff --git a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CacheableDeserializer.html b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CacheableDeserializer.html index a27d307..3b1b102 100644 --- a/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CacheableDeserializer.html +++ b/devapidocs/org/apache/hadoop/hbase/io/hfile/class-use/CacheableDeserializer.html @@ -201,19 +201,13 @@ Cacheable -ByteBufferIOEngine.read(long offset, - int length, - CacheableDeserializer<Cacheable> deserializer)  - - -Cacheable FileIOEngine.read(long offset, int length, CacheableDeserializer<Cacheable> deserializer)
Transfers data from file to the given byte buffer
- + Cacheable IOEngine.read(long offset, int length, @@ -221,6 +215,12 @@
Transfers data from IOEngine to a Cacheable object.
+ +Cacheable +ByteBufferIOEngine.read(long offset, + int length, + CacheableDeserializer<Cacheable> deserializer)  + Cacheable FileMmapEngine.read(long offset,