Uses of Interface
org.apache.hadoop.hbase.util.BloomFilterBase

Packages that use org.apache.hadoop.hbase.util.BloomFilterBase
Package
Description
Provides implementations of HFile and HFile BlockCache.
 
  • Uses of org.apache.hadoop.hbase.util.BloomFilterBase in org.apache.hadoop.hbase.io.hfile

    Classes in org.apache.hadoop.hbase.io.hfile that implement org.apache.hadoop.hbase.util.BloomFilterBase in in
    Modifier and Type
    Class
    Description
    class 
    org.apache.hadoop.hbase.io.hfile.CompoundBloomFilter
    A Bloom filter implementation built on top of BloomFilterChunk, encapsulating a set of fixed-size Bloom filters written out at the time of HFile generation into the data block stream, and loaded on demand at query time.
    class 
    org.apache.hadoop.hbase.io.hfile.CompoundBloomFilterBase
     
    class 
    org.apache.hadoop.hbase.io.hfile.CompoundBloomFilterWriter
    Adds methods required for writing a compound Bloom filter to the data section of an HFile to the CompoundBloomFilter class.
  • Uses of org.apache.hadoop.hbase.util.BloomFilterBase in org.apache.hadoop.hbase.util

    Subinterfaces of org.apache.hadoop.hbase.util.BloomFilterBase in in org.apache.hadoop.hbase.util
    Modifier and Type
    Interface
    Description
    interface 
    org.apache.hadoop.hbase.util.BloomFilter
    Implements a Bloom filter, as defined by Bloom in 1970.
    interface 
    org.apache.hadoop.hbase.util.BloomFilterWriter
    Specifies methods needed to add elements to a Bloom filter and serialize the resulting Bloom filter as a sequence of bytes.
    Classes in org.apache.hadoop.hbase.util that implement org.apache.hadoop.hbase.util.BloomFilterBase in in
    Modifier and Type
    Class
    Description
    class 
    org.apache.hadoop.hbase.util.BloomFilterChunk
    The basic building block for the CompoundBloomFilter
    Methods in org.apache.hadoop.hbase.util with parameters of type org.apache.hadoop.hbase.util.BloomFilterBase in in
    Modifier and Type
    Method
    Description
    static String
    BloomFilterUtil.formatStats(org.apache.hadoop.hbase.util.BloomFilterBase bloomFilter)
    A human-readable string with statistics for the given Bloom filter.