@InterfaceAudience.Private public class CompoundBloomFilter extends CompoundBloomFilterBase implements BloomFilter
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. This class only provides reading
capabilities.comparator, errorRate, hashType, numChunks, totalByteSize, totalKeyCount, totalMaxKeys, VERSION| Constructor and Description |
|---|
CompoundBloomFilter(DataInput meta,
HFile.Reader reader,
BloomFilterMetrics metrics)
De-serialization for compound Bloom filter metadata.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
contains(byte[] key,
int keyOffset,
int keyLength,
ByteBuff bloom)
Check if the specified key is contained in the bloom filter.
|
boolean |
contains(Cell keyCell,
ByteBuff bloom,
BloomType type)
Check if the specified key is contained in the bloom filter.
|
void |
enableTestingStats() |
String |
formatTestingStats() |
int |
getNumChunks() |
long |
getNumPositivesForTesting(int chunk) |
long |
getNumQueriesForTesting(int chunk) |
boolean |
supportsAutoLoading() |
String |
toString() |
getByteSize, getKeyCount, getMaxKeysclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetByteSize, getKeyCount, getMaxKeyspublic CompoundBloomFilter(DataInput meta, HFile.Reader reader, BloomFilterMetrics metrics) throws IOException
CompoundBloomFilterWriter does.meta - serialized Bloom filter metadata without any magic blocksreader - reader for hfilemetrics - for collecting bloom filter metrics. may be nullIOExceptionpublic boolean contains(byte[] key,
int keyOffset,
int keyLength,
ByteBuff bloom)
BloomFiltercontains in interface BloomFilterkey - data to check for existence ofkeyOffset - offset into the datakeyLength - length of the databloom - bloom filter data to search. This can be null if auto-loading is supported.public boolean contains(Cell keyCell, ByteBuff bloom, BloomType type)
BloomFiltercontains in interface BloomFilterkeyCell - the key to check for the existence ofbloom - bloom filter data to search. This can be null if auto-loading is supported.type - The type of Bloom ROW/ ROW_COLpublic boolean supportsAutoLoading()
supportsAutoLoading in interface BloomFilterpublic int getNumChunks()
public void enableTestingStats()
public String formatTestingStats()
public long getNumQueriesForTesting(int chunk)
public long getNumPositivesForTesting(int chunk)
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.