Uses of Interface
org.apache.hadoop.hbase.io.util.Dictionary

Packages that use org.apache.hadoop.hbase.io.util.Dictionary
  • Uses of org.apache.hadoop.hbase.io.util.Dictionary in org.apache.hadoop.hbase

    Methods in org.apache.hadoop.hbase with parameters of type org.apache.hadoop.hbase.io.util.Dictionary in in
    Modifier and Type
    Method
    Description
    static void
    PrivateCellUtil.compressFamily(OutputStream out, org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.io.util.Dictionary dict)
     
    static void
    PrivateCellUtil.compressQualifier(OutputStream out, org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.io.util.Dictionary dict)
     
    static void
    PrivateCellUtil.compressRow(OutputStream out, org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.io.util.Dictionary dict)
     
  • Uses of org.apache.hadoop.hbase.io.util.Dictionary in org.apache.hadoop.hbase.io

    Constructor parameters in org.apache.hadoop.hbase.io with type arguments of type org.apache.hadoop.hbase.io.util.Dictionary in in
    Modifier
    Constructor
    Description
     
    TagCompressionContext(Class<? extends org.apache.hadoop.hbase.io.util.Dictionary> dictType, int dictCapacity)
     
  • Uses of org.apache.hadoop.hbase.io.util.Dictionary in org.apache.hadoop.hbase.io.util

    Classes in org.apache.hadoop.hbase.io.util that implement org.apache.hadoop.hbase.io.util.Dictionary in in
    Modifier and Type
    Class
    Description
    class 
    org.apache.hadoop.hbase.io.util.LRUDictionary
    WALDictionary using an LRU eviction algorithm.
    Methods in org.apache.hadoop.hbase.io.util with parameters of type org.apache.hadoop.hbase.io.util.Dictionary in in
    Modifier and Type
    Method
    Description
    static void
    Dictionary.write(OutputStream out, byte[] data, int offset, int length, org.apache.hadoop.hbase.io.util.Dictionary dict)
    Helper methods to write the dictionary data to the OutputStream
    static void
    Dictionary.write(OutputStream out, ByteBuffer data, int offset, int length, org.apache.hadoop.hbase.io.util.Dictionary dict)
    Helper methods to write the dictionary data to the OutputStream
  • Uses of org.apache.hadoop.hbase.io.util.Dictionary in org.apache.hadoop.hbase.regionserver.wal

    Methods in org.apache.hadoop.hbase.regionserver.wal that return org.apache.hadoop.hbase.io.util.Dictionary in in
    Modifier and Type
    Method
    Description
    org.apache.hadoop.hbase.io.util.Dictionary
    CompressionContext.getDictionary(Enum dictIndex)
     
    Constructor parameters in org.apache.hadoop.hbase.regionserver.wal with type arguments of type org.apache.hadoop.hbase.io.util.Dictionary in in
    Modifier
    Constructor
    Description
     
    CompressionContext(Class<? extends org.apache.hadoop.hbase.io.util.Dictionary> dictType, boolean recoveredEdits, boolean hasTagCompression)
     
     
    CompressionContext(Class<? extends org.apache.hadoop.hbase.io.util.Dictionary> dictType, boolean recoveredEdits, boolean hasTagCompression, boolean hasValueCompression, org.apache.hadoop.hbase.io.compress.Compression.Algorithm valueCompressionType)