Uses of Enum
org.apache.hadoop.hbase.regionserver.BloomType
Package
Description
Provides HBase Client
Provides implementations of
HFile
and HFile
BlockCache
.-
Uses of org.apache.hadoop.hbase.regionserver.BloomType in org.apache.hadoop.hbase
Modifier and TypeMethodDescriptionorg.apache.hadoop.hbase.regionserver.BloomType
HColumnDescriptor.getBloomFilterType()
Deprecated.Modifier and TypeMethodDescriptionorg.apache.hadoop.hbase.HColumnDescriptor
HColumnDescriptor.setBloomFilterType
(org.apache.hadoop.hbase.regionserver.BloomType value) Deprecated.Set the bloom filter type. -
Uses of org.apache.hadoop.hbase.regionserver.BloomType in org.apache.hadoop.hbase.client
Modifier and TypeFieldDescriptionstatic final org.apache.hadoop.hbase.regionserver.BloomType
ColumnFamilyDescriptorBuilder.DEFAULT_BLOOMFILTER
Default setting for whether or not to use bloomfilters.Modifier and TypeMethodDescriptionorg.apache.hadoop.hbase.regionserver.BloomType
ColumnFamilyDescriptor.getBloomFilterType()
Returns bloom filter type used for new StoreFiles in ColumnFamilyorg.apache.hadoop.hbase.regionserver.BloomType
ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.getBloomFilterType()
Modifier and TypeMethodDescriptionorg.apache.hadoop.hbase.client.ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor
ColumnFamilyDescriptorBuilder.ModifyableColumnFamilyDescriptor.setBloomFilterType
(org.apache.hadoop.hbase.regionserver.BloomType bt) org.apache.hadoop.hbase.client.ColumnFamilyDescriptorBuilder
ColumnFamilyDescriptorBuilder.setBloomFilterType
(org.apache.hadoop.hbase.regionserver.BloomType value) -
Uses of org.apache.hadoop.hbase.regionserver.BloomType in org.apache.hadoop.hbase.io.hfile
Modifier and TypeMethodDescriptionboolean
CompoundBloomFilter.contains
(org.apache.hadoop.hbase.Cell keyCell, org.apache.hadoop.hbase.nio.ByteBuff bloom, org.apache.hadoop.hbase.regionserver.BloomType type) ModifierConstructorDescriptionCompoundBloomFilterWriter
(int chunkByteSizeHint, float errorRate, int hashType, int maxFold, boolean cacheOnWrite, CellComparator comparator, org.apache.hadoop.hbase.regionserver.BloomType bloomType) each chunk's size in bytes. -
Uses of org.apache.hadoop.hbase.regionserver.BloomType in org.apache.hadoop.hbase.mob
Modifier and TypeMethodDescriptionstatic org.apache.hadoop.hbase.regionserver.StoreFileWriter
MobUtils.createWriter
(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.hbase.client.ColumnFamilyDescriptor family, org.apache.hadoop.fs.Path path, long maxKeyCount, org.apache.hadoop.hbase.io.compress.Compression.Algorithm compression, org.apache.hadoop.hbase.io.hfile.CacheConfig cacheConfig, org.apache.hadoop.hbase.io.crypto.Encryption.Context cryptoContext, org.apache.hadoop.hbase.util.ChecksumType checksumType, int bytesPerChecksum, int blocksize, org.apache.hadoop.hbase.regionserver.BloomType bloomType, boolean isCompaction) Creates a writer for the mob file in temp directory.static org.apache.hadoop.hbase.regionserver.StoreFileWriter
MobUtils.createWriter
(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.hbase.client.ColumnFamilyDescriptor family, org.apache.hadoop.fs.Path path, long maxKeyCount, org.apache.hadoop.hbase.io.compress.Compression.Algorithm compression, org.apache.hadoop.hbase.io.hfile.CacheConfig cacheConfig, org.apache.hadoop.hbase.io.crypto.Encryption.Context cryptoContext, org.apache.hadoop.hbase.util.ChecksumType checksumType, int bytesPerChecksum, int blocksize, org.apache.hadoop.hbase.regionserver.BloomType bloomType, boolean isCompaction, Consumer<org.apache.hadoop.fs.Path> writerCreationTracker) Creates a writer for the mob file in temp directory. -
Uses of org.apache.hadoop.hbase.regionserver.BloomType in org.apache.hadoop.hbase.regionserver
Modifier and TypeFieldDescriptionprotected org.apache.hadoop.hbase.regionserver.BloomType
StoreFileReader.bloomFilterType
Modifier and TypeMethodDescriptionorg.apache.hadoop.hbase.regionserver.BloomType
StoreContext.getBloomFilterType()
org.apache.hadoop.hbase.regionserver.BloomType
StoreFileReader.getBloomFilterType()
static org.apache.hadoop.hbase.regionserver.BloomType
BloomType.valueOf
(String name) static org.apache.hadoop.hbase.regionserver.BloomType[]
BloomType.values()
Modifier and TypeMethodDescriptionorg.apache.hadoop.hbase.regionserver.StoreContext.Builder
StoreContext.Builder.withBloomType
(org.apache.hadoop.hbase.regionserver.BloomType bloomFilterType) org.apache.hadoop.hbase.regionserver.StoreFileWriter.Builder
StoreFileWriter.Builder.withBloomType
(org.apache.hadoop.hbase.regionserver.BloomType bloomType) ModifierConstructorDescriptionHStoreFile
(org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.fs.Path p, org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.hbase.io.hfile.CacheConfig cacheConf, org.apache.hadoop.hbase.regionserver.BloomType cfBloomType, boolean primaryReplica) Constructor, loads a reader and it's indices, etc.HStoreFile
(org.apache.hadoop.hbase.regionserver.StoreFileInfo fileInfo, org.apache.hadoop.hbase.regionserver.BloomType cfBloomType, org.apache.hadoop.hbase.io.hfile.CacheConfig cacheConf) Constructor, loads a reader and it's indices, etc.HStoreFile
(org.apache.hadoop.hbase.regionserver.StoreFileInfo fileInfo, org.apache.hadoop.hbase.regionserver.BloomType cfBloomType, org.apache.hadoop.hbase.io.hfile.CacheConfig cacheConf, org.apache.hadoop.hbase.io.hfile.BloomFilterMetrics metrics) Constructor, loads a reader and it's indices, etc. -
Uses of org.apache.hadoop.hbase.regionserver.BloomType in org.apache.hadoop.hbase.util
Modifier and TypeFieldDescriptionprotected org.apache.hadoop.hbase.regionserver.BloomType
BloomFilterChunk.bloomType
The type of bloomModifier and TypeMethodDescriptionboolean
BloomFilter.contains
(org.apache.hadoop.hbase.Cell keyCell, org.apache.hadoop.hbase.nio.ByteBuff bloom, org.apache.hadoop.hbase.regionserver.BloomType type) Check if the specified key is contained in the bloom filter.static boolean
BloomFilterUtil.contains
(org.apache.hadoop.hbase.Cell cell, org.apache.hadoop.hbase.nio.ByteBuff bloomBuf, int bloomOffset, int bloomSize, org.apache.hadoop.hbase.util.Hash hash, int hashCount, org.apache.hadoop.hbase.regionserver.BloomType type) static org.apache.hadoop.hbase.util.BloomFilterChunk
BloomFilterUtil.createBySize
(int byteSizeHint, double errorRate, int hashType, int foldFactor, org.apache.hadoop.hbase.regionserver.BloomType bloomType) Creates a Bloom filter chunk of the given size.static org.apache.hadoop.hbase.util.BloomFilterWriter
BloomFilterFactory.createGeneralBloomAtWrite
(org.apache.hadoop.conf.Configuration conf, org.apache.hadoop.hbase.io.hfile.CacheConfig cacheConf, org.apache.hadoop.hbase.regionserver.BloomType bloomType, int maxKeys, org.apache.hadoop.hbase.io.hfile.HFile.Writer writer) Creates a new general (Row or RowCol) Bloom filter at the time ofHStoreFile
writing.static byte[]
BloomFilterUtil.getBloomFilterParam
(org.apache.hadoop.hbase.regionserver.BloomType bloomFilterType, org.apache.hadoop.conf.Configuration conf) ModifierConstructorDescriptionBloomFilterChunk
(int hashType, org.apache.hadoop.hbase.regionserver.BloomType bloomType)