Uses of Class
org.apache.hadoop.hbase.KeyValue.KeyComparator

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

Uses of KeyValue.KeyComparator in org.apache.hadoop.hbase
 

Subclasses of KeyValue.KeyComparator in org.apache.hadoop.hbase
static class KeyValue.MetaKeyComparator
          Compare key portion of a KeyValue for keys in .META. table.
static class KeyValue.RootKeyComparator
          Compare key portion of a KeyValue for keys in -ROOT- table.
 

Fields in org.apache.hadoop.hbase declared as KeyValue.KeyComparator
static KeyValue.KeyComparator KeyValue.KEY_COMPARATOR
          Comparator for plain key; i.e.
static KeyValue.KeyComparator KeyValue.META_KEY_COMPARATOR
          A KeyValue.KVComparator for .META. catalog table KeyValue keys.
static KeyValue.KeyComparator KeyValue.ROOT_KEY_COMPARATOR
          A KeyValue.KVComparator for -ROOT- catalog table KeyValue keys.
 

Methods in org.apache.hadoop.hbase that return KeyValue.KeyComparator
 KeyValue.KeyComparator KeyValue.RootComparator.getRawComparator()
           
 KeyValue.KeyComparator KeyValue.MetaComparator.getRawComparator()
           
 KeyValue.KeyComparator KeyValue.KVComparator.getRawComparator()
           
static KeyValue.KeyComparator KeyValue.getRowComparator(byte[] tableName)
          Get the appropriate row comparator for the specified table.
 

Uses of KeyValue.KeyComparator in org.apache.hadoop.hbase.io.hfile
 

Methods in org.apache.hadoop.hbase.io.hfile with parameters of type KeyValue.KeyComparator
abstract  HFile.Writer HFile.WriterFactory.createWriter(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path, int blockSize, Compression.Algorithm compress, KeyValue.KeyComparator comparator)
           
abstract  HFile.Writer HFile.WriterFactory.createWriter(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path path, int blockSize, String compress, KeyValue.KeyComparator comparator)
           
abstract  HFile.Writer HFile.WriterFactory.createWriter(org.apache.hadoop.fs.FSDataOutputStream ostream, int blockSize, Compression.Algorithm compress, KeyValue.KeyComparator c)
           
abstract  HFile.Writer HFile.WriterFactory.createWriter(org.apache.hadoop.fs.FSDataOutputStream ostream, int blockSize, String compress, KeyValue.KeyComparator comparator)
           
 

Constructors in org.apache.hadoop.hbase.io.hfile with parameters of type KeyValue.KeyComparator
AbstractHFileWriter(CacheConfig cacheConf, org.apache.hadoop.fs.FSDataOutputStream outputStream, org.apache.hadoop.fs.Path path, int blockSize, Compression.Algorithm compressAlgo, KeyValue.KeyComparator comparator)
           
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, 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, 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 KeyValue.KeyComparator in org.apache.hadoop.hbase.regionserver
 

Constructors in org.apache.hadoop.hbase.regionserver with parameters of type KeyValue.KeyComparator
ScanQueryMatcher(Scan scan, byte[] family, NavigableSet<byte[]> columns, long ttl, KeyValue.KeyComparator rowComparator, int maxVersions)
           
ScanQueryMatcher(Scan scan, byte[] family, NavigableSet<byte[]> columns, long ttl, KeyValue.KeyComparator rowComparator, int minVersions, int maxVersions)
           
ScanQueryMatcher(Scan scan, byte[] family, NavigableSet<byte[]> columns, long ttl, KeyValue.KeyComparator rowComparator, int minVersions, int maxVersions, boolean retainDeletesInOutput, long readPointToUse)
          Constructs a ScanQueryMatcher for a Scan.
 



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