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)
           
 

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

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

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.createReader(org.apache.hadoop.fs.Path path, org.apache.hadoop.fs.FSDataInputStream fsdis, long size, CacheConfig cacheConf)
           
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, 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, KeyValue.KeyComparator comparator)
           
CacheConfig(CacheConfig cacheConf)
          Constructs a cache configuration copied from the specified configuration.
HFileReaderV1(org.apache.hadoop.fs.Path path, FixedFileTrailer trailer, org.apache.hadoop.fs.FSDataInputStream fsdis, long size, boolean closeIStream, CacheConfig cacheConf)
          Opens a HFile.
HFileReaderV2(org.apache.hadoop.fs.Path path, FixedFileTrailer trailer, org.apache.hadoop.fs.FSDataInputStream fsdis, long size, boolean closeIStream, CacheConfig cacheConf)
          Opens a HFile.
HFileWriterV1(CacheConfig cacheConf, org.apache.hadoop.fs.FSDataOutputStream outputStream, int blockSize, Compression.Algorithm compress, KeyValue.KeyComparator comparator)
          Constructor that takes a stream.
HFileWriterV1(CacheConfig cacheConf, org.apache.hadoop.fs.FSDataOutputStream outputStream, int blockSize, String compressAlgoName, KeyValue.KeyComparator comparator)
          Constructor that takes a stream.
HFileWriterV1(org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path)
          Constructor that uses all defaults for compression and block size.
HFileWriterV1(org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path, int blockSize, Compression.Algorithm compress, KeyValue.KeyComparator comparator)
          Constructor that takes a path, creates and closes the output stream.
HFileWriterV1(org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path, int blockSize, String compressAlgoName, KeyValue.KeyComparator comparator)
          Constructor that takes a path, creates and closes the output stream.
HFileWriterV2(org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path)
          Constructor that uses all defaults for compression and block size.
HFileWriterV2(org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path, int blockSize, Compression.Algorithm compressAlgo, KeyValue.KeyComparator comparator)
          Constructor that takes a path, creates and closes the output stream.
HFileWriterV2(org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path, int blockSize, String compressAlgoName, KeyValue.KeyComparator comparator)
          Constructor that takes a path, creates and closes the output stream.
HFileWriterV2(org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, org.apache.hadoop.fs.FSDataOutputStream outputStream, int blockSize, Compression.Algorithm compress, KeyValue.KeyComparator comparator)
          Constructor that takes a stream.
HFileWriterV2(org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, org.apache.hadoop.fs.FSDataOutputStream outputStream, int blockSize, String compressAlgoName, KeyValue.KeyComparator comparator)
          Constructor that takes a 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.
 

Methods in org.apache.hadoop.hbase.regionserver with parameters of type CacheConfig
static StoreFile.Writer StoreFile.createWriter(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path dir, int blocksize, Compression.Algorithm algorithm, KeyValue.KVComparator c, org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, StoreFile.BloomType bloomType, long maxKeyCount)
          Create a store file writer.
static StoreFile.Writer StoreFile.createWriter(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path dir, int blocksize, org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf)
          Get a store file writer.
 

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)
           
StoreFile.Writer(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path, int blocksize, Compression.Algorithm compress, org.apache.hadoop.conf.Configuration conf, CacheConfig cacheConf, KeyValue.KVComparator comparator, StoreFile.BloomType bloomType, long maxKeys)
          Creates an HFile.Writer that also write helpful meta data.
 

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

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



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