Merge pull request #311 from ankgup87/master
[Java] Add remaining options to BlockBasedTableConfig and add getProperty() API
This commit is contained in:
commit
fb4a492cca
@ -83,9 +83,23 @@ public class RocksDBSample {
|
|||||||
BlockBasedTableConfig table_options = new BlockBasedTableConfig();
|
BlockBasedTableConfig table_options = new BlockBasedTableConfig();
|
||||||
table_options.setBlockCacheSize(64 * SizeUnit.KB)
|
table_options.setBlockCacheSize(64 * SizeUnit.KB)
|
||||||
.setFilterBitsPerKey(10)
|
.setFilterBitsPerKey(10)
|
||||||
.setCacheNumShardBits(6);
|
.setCacheNumShardBits(6)
|
||||||
|
.setBlockSizeDeviation(5)
|
||||||
|
.setBlockRestartInterval(10)
|
||||||
|
.setCacheIndexAndFilterBlocks(true)
|
||||||
|
.setHashIndexAllowCollision(false)
|
||||||
|
.setBlockCacheCompressedSize(64 * SizeUnit.KB)
|
||||||
|
.setBlockCacheCompressedNumShardBits(10);
|
||||||
|
|
||||||
assert(table_options.blockCacheSize() == 64 * SizeUnit.KB);
|
assert(table_options.blockCacheSize() == 64 * SizeUnit.KB);
|
||||||
assert(table_options.cacheNumShardBits() == 6);
|
assert(table_options.cacheNumShardBits() == 6);
|
||||||
|
assert(table_options.blockSizeDeviation() == 5);
|
||||||
|
assert(table_options.blockRestartInterval() == 10);
|
||||||
|
assert(table_options.cacheIndexAndFilterBlocks() == true);
|
||||||
|
assert(table_options.hashIndexAllowCollision() == false);
|
||||||
|
assert(table_options.blockCacheCompressedSize() == 64 * SizeUnit.KB);
|
||||||
|
assert(table_options.blockCacheCompressedNumShardBits() == 10);
|
||||||
|
|
||||||
options.setTableFormatConfig(table_options);
|
options.setTableFormatConfig(table_options);
|
||||||
assert(options.tableFactoryName().equals("BlockBasedTable"));
|
assert(options.tableFactoryName().equals("BlockBasedTable"));
|
||||||
|
|
||||||
@ -94,6 +108,8 @@ public class RocksDBSample {
|
|||||||
db.put("hello".getBytes(), "world".getBytes());
|
db.put("hello".getBytes(), "world".getBytes());
|
||||||
byte[] value = db.get("hello".getBytes());
|
byte[] value = db.get("hello".getBytes());
|
||||||
assert("world".equals(new String(value)));
|
assert("world".equals(new String(value)));
|
||||||
|
String str = db.getProperty("rocksdb.stats");
|
||||||
|
assert(str != null && str != "");
|
||||||
} catch (RocksDBException e) {
|
} catch (RocksDBException e) {
|
||||||
System.out.format("[ERROR] caught the unexpceted exception -- %s\n", e);
|
System.out.format("[ERROR] caught the unexpceted exception -- %s\n", e);
|
||||||
assert(db == null);
|
assert(db == null);
|
||||||
|
@ -15,10 +15,13 @@ public class BlockBasedTableConfig extends TableFormatConfig {
|
|||||||
noBlockCache_ = false;
|
noBlockCache_ = false;
|
||||||
blockCacheSize_ = 8 * 1024 * 1024;
|
blockCacheSize_ = 8 * 1024 * 1024;
|
||||||
blockSize_ = 4 * 1024;
|
blockSize_ = 4 * 1024;
|
||||||
blockSizeDeviation_ =10;
|
blockSizeDeviation_ = 10;
|
||||||
blockRestartInterval_ =16;
|
blockRestartInterval_ = 16;
|
||||||
wholeKeyFiltering_ = true;
|
wholeKeyFiltering_ = true;
|
||||||
bitsPerKey_ = 0;
|
bitsPerKey_ = 10;
|
||||||
|
cacheIndexAndFilterBlocks_ = false;
|
||||||
|
hashIndexAllowCollision_ = true;
|
||||||
|
blockCacheCompressedSize_ = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -71,8 +74,8 @@ public class BlockBasedTableConfig extends TableFormatConfig {
|
|||||||
* number means use default settings."
|
* number means use default settings."
|
||||||
* @return the reference to the current option.
|
* @return the reference to the current option.
|
||||||
*/
|
*/
|
||||||
public BlockBasedTableConfig setCacheNumShardBits(int numShardBits) {
|
public BlockBasedTableConfig setCacheNumShardBits(int blockCacheNumShardBits) {
|
||||||
numShardBits_ = numShardBits;
|
blockCacheNumShardBits_ = blockCacheNumShardBits;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -84,7 +87,7 @@ public class BlockBasedTableConfig extends TableFormatConfig {
|
|||||||
* @return the number of shard bits used in the block cache.
|
* @return the number of shard bits used in the block cache.
|
||||||
*/
|
*/
|
||||||
public int cacheNumShardBits() {
|
public int cacheNumShardBits() {
|
||||||
return numShardBits_;
|
return blockCacheNumShardBits_;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -187,24 +190,134 @@ public class BlockBasedTableConfig extends TableFormatConfig {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicating if we'd put index/filter blocks to the block cache.
|
||||||
|
If not specified, each "table reader" object will pre-load index/filter
|
||||||
|
block during table initialization.
|
||||||
|
*
|
||||||
|
* @return if index and filter blocks should be put in block cache.
|
||||||
|
*/
|
||||||
|
public boolean cacheIndexAndFilterBlocks() {
|
||||||
|
return cacheIndexAndFilterBlocks_;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Indicating if we'd put index/filter blocks to the block cache.
|
||||||
|
If not specified, each "table reader" object will pre-load index/filter
|
||||||
|
block during table initialization.
|
||||||
|
*
|
||||||
|
* @param index and filter blocks should be put in block cache.
|
||||||
|
* @return the reference to the current config.
|
||||||
|
*/
|
||||||
|
public BlockBasedTableConfig setCacheIndexAndFilterBlocks(
|
||||||
|
boolean cacheIndexAndFilterBlocks) {
|
||||||
|
cacheIndexAndFilterBlocks_ = cacheIndexAndFilterBlocks;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Influence the behavior when kHashSearch is used.
|
||||||
|
if false, stores a precise prefix to block range mapping
|
||||||
|
if true, does not store prefix and allows prefix hash collision
|
||||||
|
(less memory consumption)
|
||||||
|
*
|
||||||
|
* @return if hash collisions should be allowed.
|
||||||
|
*/
|
||||||
|
public boolean hashIndexAllowCollision() {
|
||||||
|
return hashIndexAllowCollision_;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Influence the behavior when kHashSearch is used.
|
||||||
|
if false, stores a precise prefix to block range mapping
|
||||||
|
if true, does not store prefix and allows prefix hash collision
|
||||||
|
(less memory consumption)
|
||||||
|
*
|
||||||
|
* @param if hash collisions should be allowed.
|
||||||
|
* @return the reference to the current config.
|
||||||
|
*/
|
||||||
|
public BlockBasedTableConfig setHashIndexAllowCollision(
|
||||||
|
boolean hashIndexAllowCollision) {
|
||||||
|
hashIndexAllowCollision_ = hashIndexAllowCollision;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Size of compressed block cache. If 0, then block_cache_compressed is set
|
||||||
|
* to null.
|
||||||
|
*
|
||||||
|
* @return size of compressed block cache.
|
||||||
|
*/
|
||||||
|
public long blockCacheCompressedSize() {
|
||||||
|
return blockCacheCompressedSize_;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Size of compressed block cache. If 0, then block_cache_compressed is set
|
||||||
|
* to null.
|
||||||
|
*
|
||||||
|
* @param size of compressed block cache.
|
||||||
|
* @return the reference to the current config.
|
||||||
|
*/
|
||||||
|
public BlockBasedTableConfig setBlockCacheCompressedSize(
|
||||||
|
long blockCacheCompressedSize) {
|
||||||
|
blockCacheCompressedSize_ = blockCacheCompressedSize;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Controls the number of shards for the block compressed cache.
|
||||||
|
* This is applied only if blockCompressedCacheSize is set to non-negative.
|
||||||
|
*
|
||||||
|
* @return numShardBits the number of shard bits. The resulting
|
||||||
|
* number of shards would be 2 ^ numShardBits. Any negative
|
||||||
|
* number means use default settings.
|
||||||
|
*/
|
||||||
|
public int blockCacheCompressedNumShardBits() {
|
||||||
|
return blockCacheCompressedNumShardBits_;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Controls the number of shards for the block compressed cache.
|
||||||
|
* This is applied only if blockCompressedCacheSize is set to non-negative.
|
||||||
|
*
|
||||||
|
* @param numShardBits the number of shard bits. The resulting
|
||||||
|
* number of shards would be 2 ^ numShardBits. Any negative
|
||||||
|
* number means use default settings."
|
||||||
|
* @return the reference to the current option.
|
||||||
|
*/
|
||||||
|
public BlockBasedTableConfig setBlockCacheCompressedNumShardBits(
|
||||||
|
int blockCacheCompressedNumShardBits) {
|
||||||
|
blockCacheCompressedNumShardBits_ = blockCacheCompressedNumShardBits;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
@Override protected long newTableFactoryHandle() {
|
@Override protected long newTableFactoryHandle() {
|
||||||
return newTableFactoryHandle(noBlockCache_, blockCacheSize_, numShardBits_,
|
return newTableFactoryHandle(noBlockCache_, blockCacheSize_,
|
||||||
blockSize_, blockSizeDeviation_, blockRestartInterval_,
|
blockCacheNumShardBits_, blockSize_, blockSizeDeviation_,
|
||||||
wholeKeyFiltering_, bitsPerKey_);
|
blockRestartInterval_, wholeKeyFiltering_, bitsPerKey_,
|
||||||
|
cacheIndexAndFilterBlocks_, hashIndexAllowCollision_,
|
||||||
|
blockCacheCompressedSize_, blockCacheCompressedNumShardBits_);
|
||||||
}
|
}
|
||||||
|
|
||||||
private native long newTableFactoryHandle(
|
private native long newTableFactoryHandle(
|
||||||
boolean noBlockCache, long blockCacheSize, int numShardbits,
|
boolean noBlockCache, long blockCacheSize, int blockCacheNumShardBits,
|
||||||
long blockSize, int blockSizeDeviation, int blockRestartInterval,
|
long blockSize, int blockSizeDeviation, int blockRestartInterval,
|
||||||
boolean wholeKeyFiltering, int bitsPerKey);
|
boolean wholeKeyFiltering, int bitsPerKey,
|
||||||
|
boolean cacheIndexAndFilterBlocks, boolean hashIndexAllowCollision,
|
||||||
|
long blockCacheCompressedSize, int blockCacheCompressedNumShardBits);
|
||||||
|
|
||||||
private boolean noBlockCache_;
|
private boolean noBlockCache_;
|
||||||
private long blockCacheSize_;
|
private long blockCacheSize_;
|
||||||
private int numShardBits_;
|
private int blockCacheNumShardBits_;
|
||||||
private long shard;
|
private long shard;
|
||||||
private long blockSize_;
|
private long blockSize_;
|
||||||
private int blockSizeDeviation_;
|
private int blockSizeDeviation_;
|
||||||
private int blockRestartInterval_;
|
private int blockRestartInterval_;
|
||||||
private boolean wholeKeyFiltering_;
|
private boolean wholeKeyFiltering_;
|
||||||
private int bitsPerKey_;
|
private int bitsPerKey_;
|
||||||
|
private boolean cacheIndexAndFilterBlocks_;
|
||||||
|
private boolean hashIndexAllowCollision_;
|
||||||
|
private long blockCacheCompressedSize_;
|
||||||
|
private int blockCacheCompressedNumShardBits_;
|
||||||
}
|
}
|
||||||
|
@ -325,6 +325,26 @@ public class RocksDB extends RocksObject {
|
|||||||
remove(nativeHandle_, writeOpt.nativeHandle_, key, key.length);
|
remove(nativeHandle_, writeOpt.nativeHandle_, key, key.length);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DB implementations can export properties about their state
|
||||||
|
via this method. If "property" is a valid property understood by this
|
||||||
|
DB implementation, fills "*value" with its current value and returns
|
||||||
|
true. Otherwise returns false.
|
||||||
|
|
||||||
|
|
||||||
|
Valid property names include:
|
||||||
|
|
||||||
|
"rocksdb.num-files-at-level<N>" - return the number of files at level <N>,
|
||||||
|
where <N> is an ASCII representation of a level number (e.g. "0").
|
||||||
|
"rocksdb.stats" - returns a multi-line string that describes statistics
|
||||||
|
about the internal operation of the DB.
|
||||||
|
"rocksdb.sstables" - returns a multi-line string that describes all
|
||||||
|
of the sstables that make up the db contents.
|
||||||
|
*/
|
||||||
|
public String getProperty(String property) throws RocksDBException {
|
||||||
|
return getProperty0(nativeHandle_, property, property.length());
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return a heap-allocated iterator over the contents of the database.
|
* Return a heap-allocated iterator over the contents of the database.
|
||||||
* The result of newIterator() is initially invalid (caller must
|
* The result of newIterator() is initially invalid (caller must
|
||||||
@ -378,6 +398,8 @@ public class RocksDB extends RocksObject {
|
|||||||
protected native void remove(
|
protected native void remove(
|
||||||
long handle, long writeOptHandle,
|
long handle, long writeOptHandle,
|
||||||
byte[] key, int keyLen) throws RocksDBException;
|
byte[] key, int keyLen) throws RocksDBException;
|
||||||
|
protected native String getProperty0(long nativeHandle,
|
||||||
|
String property, int propertyLength) throws RocksDBException;
|
||||||
protected native long iterator0(long optHandle);
|
protected native long iterator0(long optHandle);
|
||||||
private native void disposeInternal(long handle);
|
private native void disposeInternal(long handle);
|
||||||
|
|
||||||
|
@ -425,3 +425,27 @@ jlong Java_org_rocksdb_RocksDB_iterator0(
|
|||||||
rocksdb::Iterator* iterator = db->NewIterator(rocksdb::ReadOptions());
|
rocksdb::Iterator* iterator = db->NewIterator(rocksdb::ReadOptions());
|
||||||
return reinterpret_cast<jlong>(iterator);
|
return reinterpret_cast<jlong>(iterator);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Class: org_rocksdb_RocksDB
|
||||||
|
* Method: getProperty0
|
||||||
|
* Signature: (JLjava/lang/String;I)Ljava/lang/String;
|
||||||
|
*/
|
||||||
|
jstring Java_org_rocksdb_RocksDB_getProperty0(
|
||||||
|
JNIEnv* env, jobject jdb, jlong db_handle, jstring jproperty,
|
||||||
|
jint jproperty_len) {
|
||||||
|
auto db = reinterpret_cast<rocksdb::DB*>(db_handle);
|
||||||
|
|
||||||
|
const char* property = env->GetStringUTFChars(jproperty, 0);
|
||||||
|
rocksdb::Slice property_slice(property, jproperty_len);
|
||||||
|
|
||||||
|
std::string property_value;
|
||||||
|
bool retCode = db->GetProperty(property_slice, &property_value);
|
||||||
|
env->ReleaseStringUTFChars(jproperty, property);
|
||||||
|
|
||||||
|
if (!retCode) {
|
||||||
|
rocksdb::RocksDBExceptionJni::ThrowNew(env, rocksdb::Status::NotFound());
|
||||||
|
}
|
||||||
|
|
||||||
|
return env->NewStringUTF(property_value.data());
|
||||||
|
}
|
||||||
|
@ -31,20 +31,22 @@ jlong Java_org_rocksdb_PlainTableConfig_newTableFactoryHandle(
|
|||||||
/*
|
/*
|
||||||
* Class: org_rocksdb_BlockBasedTableConfig
|
* Class: org_rocksdb_BlockBasedTableConfig
|
||||||
* Method: newTableFactoryHandle
|
* Method: newTableFactoryHandle
|
||||||
* Signature: (ZJIJIIZI)J
|
* Signature: (ZJIJIIZIZZJI)J
|
||||||
*/
|
*/
|
||||||
jlong Java_org_rocksdb_BlockBasedTableConfig_newTableFactoryHandle(
|
jlong Java_org_rocksdb_BlockBasedTableConfig_newTableFactoryHandle(
|
||||||
JNIEnv* env, jobject jobj, jboolean no_block_cache, jlong block_cache_size,
|
JNIEnv* env, jobject jobj, jboolean no_block_cache, jlong block_cache_size,
|
||||||
jint num_shardbits, jlong block_size, jint block_size_deviation,
|
jint block_cache_num_shardbits, jlong block_size, jint block_size_deviation,
|
||||||
jint block_restart_interval, jboolean whole_key_filtering,
|
jint block_restart_interval, jboolean whole_key_filtering,
|
||||||
jint bits_per_key) {
|
jint bits_per_key, jboolean cache_index_and_filter_blocks,
|
||||||
|
jboolean hash_index_allow_collision, jlong block_cache_compressed_size,
|
||||||
|
jint block_cache_compressd_num_shard_bits) {
|
||||||
rocksdb::BlockBasedTableOptions options;
|
rocksdb::BlockBasedTableOptions options;
|
||||||
options.no_block_cache = no_block_cache;
|
options.no_block_cache = no_block_cache;
|
||||||
|
|
||||||
if (!no_block_cache && block_cache_size > 0) {
|
if (!no_block_cache && block_cache_size > 0) {
|
||||||
if (num_shardbits > 0) {
|
if (block_cache_num_shardbits > 0) {
|
||||||
options.block_cache =
|
options.block_cache =
|
||||||
rocksdb::NewLRUCache(block_cache_size, num_shardbits);
|
rocksdb::NewLRUCache(block_cache_size, block_cache_num_shardbits);
|
||||||
} else {
|
} else {
|
||||||
options.block_cache = rocksdb::NewLRUCache(block_cache_size);
|
options.block_cache = rocksdb::NewLRUCache(block_cache_size);
|
||||||
}
|
}
|
||||||
@ -56,5 +58,17 @@ jlong Java_org_rocksdb_BlockBasedTableConfig_newTableFactoryHandle(
|
|||||||
if (bits_per_key > 0) {
|
if (bits_per_key > 0) {
|
||||||
options.filter_policy.reset(rocksdb::NewBloomFilterPolicy(bits_per_key));
|
options.filter_policy.reset(rocksdb::NewBloomFilterPolicy(bits_per_key));
|
||||||
}
|
}
|
||||||
|
options.cache_index_and_filter_blocks = cache_index_and_filter_blocks;
|
||||||
|
options.hash_index_allow_collision = hash_index_allow_collision;
|
||||||
|
if (block_cache_compressed_size > 0) {
|
||||||
|
if (block_cache_compressd_num_shard_bits > 0) {
|
||||||
|
options.block_cache =
|
||||||
|
rocksdb::NewLRUCache(block_cache_compressed_size,
|
||||||
|
block_cache_compressd_num_shard_bits);
|
||||||
|
} else {
|
||||||
|
options.block_cache = rocksdb::NewLRUCache(block_cache_compressed_size);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return reinterpret_cast<jlong>(rocksdb::NewBlockBasedTableFactory(options));
|
return reinterpret_cast<jlong>(rocksdb::NewBlockBasedTableFactory(options));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user