Uses of Class
org.apache.hadoop.hbase.io.hfile.CacheConfig

Packages that use CacheConfig
org.apache.hadoop.hbase.io   
org.apache.hadoop.hbase.io.hfile Provides the hbase data+index+metadata file. 
org.apache.hadoop.hbase.regionserver   
org.apache.hadoop.hbase.util   
 

Uses of CacheConfig in org.apache.hadoop.hbase.io
 

Constructors in org.apache.hadoop.hbase.io with parameters of type CacheConfig
HalfStoreFileReader(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path p, CacheConfig cacheConf, Reference r, DataBlockEncoding preferredEncodingInCache)
          Creates a half file reader for a normal hfile.
HalfStoreFileReader(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path p, org.apache.hadoop.fs.FSDataInputStream in, org.apache.hadoop.fs.FSDataInputStream inNoChecksum, long size, CacheConfig cacheConf, Reference r, DataBlockEncoding preferredEncodingInCache)
          Creates a half file reader for a hfile referred to by an hfilelink.
 

Uses of CacheConfig in org.apache.hadoop.hbase.io.hfile
 

Fields in org.apache.hadoop.hbase.io.hfile declared as CacheConfig
protected  CacheConfig HFile.WriterFactory.cacheConf
           
protected  CacheConfig AbstractHFileWriter.cacheConf
          Cache configuration for caching data on write.
protected  CacheConfig AbstractHFileReader.cacheConf
          Block cache configuration.
 

Methods in org.apache.hadoop.hbase.io.hfile with parameters of type CacheConfig
static HFile.Reader HFile.createReader(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path, CacheConfig cacheConf)
           
static HFile.Reader HFile.createReaderWithEncoding(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path, CacheConfig cacheConf, DataBlockEncoding preferredEncodingInCache)
           
static HFile.Reader HFile.createReaderWithEncoding(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path, org.apache.hadoop.fs.FSDataInputStream fsdis, org.apache.hadoop.fs.FSDataInputStream fsdisNoFsChecksum, long size, CacheConfig cacheConf, DataBlockEncoding preferredEncodingInCache, boolean closeIStream)
           
static HFile.WriterFactory HFile.getWriterFactory(org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf)
          Returns the factory to be used to create HFile writers
 

Constructors in org.apache.hadoop.hbase.io.hfile with parameters of type CacheConfig
AbstractHFileReader(org.apache.hadoop.fs.Path path, FixedFileTrailer trailer, org.apache.hadoop.fs.FSDataInputStream fsdis, org.apache.hadoop.fs.FSDataInputStream fsdisNoFsChecksum, long fileSize, boolean closeIStream, CacheConfig cacheConf, HFileSystem hfs)
           
AbstractHFileReader(org.apache.hadoop.fs.Path path, FixedFileTrailer trailer, org.apache.hadoop.fs.FSDataInputStream fsdis, long fileSize, boolean closeIStream, CacheConfig cacheConf)
           
AbstractHFileWriter(CacheConfig cacheConf, org.apache.hadoop.fs.FSDataOutputStream outputStream, org.apache.hadoop.fs.Path path, int blockSize, Compression.Algorithm compressAlgo, HFileDataBlockEncoder dataBlockEncoder, KeyValue.KeyComparator comparator)
           
CacheConfig(CacheConfig cacheConf)
          Constructs a cache configuration copied from the specified configuration.
HFileReaderV2(org.apache.hadoop.fs.Path path, FixedFileTrailer trailer, org.apache.hadoop.fs.FSDataInputStream fsdis, org.apache.hadoop.fs.FSDataInputStream fsdisNoFsChecksum, long size, boolean closeIStream, CacheConfig cacheConf, DataBlockEncoding preferredEncodingInCache, HFileSystem hfs)
          Opens a HFile.
HFileWriterV2(org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path, org.apache.hadoop.fs.FSDataOutputStream ostream, int blockSize, Compression.Algorithm compressAlgo, HFileDataBlockEncoder blockEncoder, KeyValue.KeyComparator comparator, ChecksumType checksumType, int bytesPerChecksum, boolean includeMVCCReadpoint)
          Constructor that takes a path, creates and closes the output stream.
 

Uses of CacheConfig in org.apache.hadoop.hbase.regionserver
 

Methods in org.apache.hadoop.hbase.regionserver that return CacheConfig
 CacheConfig Store.getCacheConfig()
          Used for tests.
 CacheConfig HStore.getCacheConfig()
           
 

Methods in org.apache.hadoop.hbase.regionserver with parameters of type CacheConfig
 StoreFile.Reader StoreFileInfo.open(org.apache.hadoop.fs.FileSystem fs, CacheConfig cacheConf, DataBlockEncoding dataBlockEncoding)
          Open a Reader for the StoreFile
 

Constructors in org.apache.hadoop.hbase.regionserver with parameters of type CacheConfig
StoreFile.Reader(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path, CacheConfig cacheConf, DataBlockEncoding preferredEncodingInCache)
           
StoreFile.Reader(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path, org.apache.hadoop.fs.FSDataInputStream in, org.apache.hadoop.fs.FSDataInputStream inNoChecksum, long size, CacheConfig cacheConf, DataBlockEncoding preferredEncodingInCache, boolean closeIStream)
           
StoreFile.WriterBuilder(org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, org.apache.hadoop.fs.FileSystem fs, int blockSize)
           
StoreFile(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path p, org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, BloomType cfBloomType, HFileDataBlockEncoder dataBlockEncoder)
          Constructor, loads a reader and it's indices, etc.
StoreFile(org.apache.hadoop.fs.FileSystem fs, StoreFileInfo fileInfo, org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, BloomType cfBloomType, HFileDataBlockEncoder dataBlockEncoder)
          Constructor, loads a reader and it's indices, etc.
 

Uses of CacheConfig in org.apache.hadoop.hbase.util
 

Methods in org.apache.hadoop.hbase.util with parameters of type CacheConfig
static BloomFilterWriter BloomFilterFactory.createDeleteBloomAtWrite(org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, int maxKeys, HFile.Writer writer)
          Creates a new Delete Family Bloom filter at the time of StoreFile writing.
static BloomFilterWriter BloomFilterFactory.createGeneralBloomAtWrite(org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, BloomType bloomType, int maxKeys, HFile.Writer writer)
          Creates a new general (Row or RowCol) Bloom filter at the time of StoreFile writing.
 



Copyright © 2013 The Apache Software Foundation. All Rights Reserved.