|
|
@ -18,7 +18,7 @@ public class BlockBasedTableConfig extends TableFormatConfig { |
|
|
|
blockSizeDeviation_ = 10; |
|
|
|
blockSizeDeviation_ = 10; |
|
|
|
blockRestartInterval_ = 16; |
|
|
|
blockRestartInterval_ = 16; |
|
|
|
wholeKeyFiltering_ = true; |
|
|
|
wholeKeyFiltering_ = true; |
|
|
|
bitsPerKey_ = 10; |
|
|
|
filter_ = null; |
|
|
|
cacheIndexAndFilterBlocks_ = false; |
|
|
|
cacheIndexAndFilterBlocks_ = false; |
|
|
|
hashIndexAllowCollision_ = true; |
|
|
|
hashIndexAllowCollision_ = true; |
|
|
|
blockCacheCompressedSize_ = 0; |
|
|
|
blockCacheCompressedSize_ = 0; |
|
|
@ -182,11 +182,11 @@ public class BlockBasedTableConfig extends TableFormatConfig { |
|
|
|
* |
|
|
|
* |
|
|
|
* Filter instance can be re-used in multiple options instances. |
|
|
|
* Filter instance can be re-used in multiple options instances. |
|
|
|
* |
|
|
|
* |
|
|
|
* @param Filter policy java instance. |
|
|
|
* @param Filter Filter Policy java instance. |
|
|
|
* @return the reference to the current config. |
|
|
|
* @return the reference to the current config. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public BlockBasedTableConfig setFilterBitsPerKey(int bitsPerKey) { |
|
|
|
public BlockBasedTableConfig setFilter(Filter filter) { |
|
|
|
bitsPerKey_ = bitsPerKey; |
|
|
|
filter_ = filter; |
|
|
|
return this; |
|
|
|
return this; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -293,17 +293,23 @@ public class BlockBasedTableConfig extends TableFormatConfig { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override protected long newTableFactoryHandle() { |
|
|
|
@Override protected long newTableFactoryHandle() { |
|
|
|
|
|
|
|
long filterHandle = 0; |
|
|
|
|
|
|
|
if (filter_ != null) { |
|
|
|
|
|
|
|
filterHandle = filter_.nativeHandle_; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return newTableFactoryHandle(noBlockCache_, blockCacheSize_, |
|
|
|
return newTableFactoryHandle(noBlockCache_, blockCacheSize_, |
|
|
|
blockCacheNumShardBits_, blockSize_, blockSizeDeviation_, |
|
|
|
blockCacheNumShardBits_, blockSize_, blockSizeDeviation_, |
|
|
|
blockRestartInterval_, wholeKeyFiltering_, bitsPerKey_, |
|
|
|
blockRestartInterval_, wholeKeyFiltering_, |
|
|
|
cacheIndexAndFilterBlocks_, hashIndexAllowCollision_, |
|
|
|
filterHandle, cacheIndexAndFilterBlocks_, |
|
|
|
blockCacheCompressedSize_, blockCacheCompressedNumShardBits_); |
|
|
|
hashIndexAllowCollision_, blockCacheCompressedSize_, |
|
|
|
|
|
|
|
blockCacheCompressedNumShardBits_); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private native long newTableFactoryHandle( |
|
|
|
private native long newTableFactoryHandle( |
|
|
|
boolean noBlockCache, long blockCacheSize, int blockCacheNumShardBits, |
|
|
|
boolean noBlockCache, long blockCacheSize, int blockCacheNumShardBits, |
|
|
|
long blockSize, int blockSizeDeviation, int blockRestartInterval, |
|
|
|
long blockSize, int blockSizeDeviation, int blockRestartInterval, |
|
|
|
boolean wholeKeyFiltering, int bitsPerKey, |
|
|
|
boolean wholeKeyFiltering, long filterPolicyHandle, |
|
|
|
boolean cacheIndexAndFilterBlocks, boolean hashIndexAllowCollision, |
|
|
|
boolean cacheIndexAndFilterBlocks, boolean hashIndexAllowCollision, |
|
|
|
long blockCacheCompressedSize, int blockCacheCompressedNumShardBits); |
|
|
|
long blockCacheCompressedSize, int blockCacheCompressedNumShardBits); |
|
|
|
|
|
|
|
|
|
|
@ -315,7 +321,7 @@ public class BlockBasedTableConfig extends TableFormatConfig { |
|
|
|
private int blockSizeDeviation_; |
|
|
|
private int blockSizeDeviation_; |
|
|
|
private int blockRestartInterval_; |
|
|
|
private int blockRestartInterval_; |
|
|
|
private boolean wholeKeyFiltering_; |
|
|
|
private boolean wholeKeyFiltering_; |
|
|
|
private int bitsPerKey_; |
|
|
|
private Filter filter_; |
|
|
|
private boolean cacheIndexAndFilterBlocks_; |
|
|
|
private boolean cacheIndexAndFilterBlocks_; |
|
|
|
private boolean hashIndexAllowCollision_; |
|
|
|
private boolean hashIndexAllowCollision_; |
|
|
|
private long blockCacheCompressedSize_; |
|
|
|
private long blockCacheCompressedSize_; |
|
|
|