mirror of https://github.com/facebook/rocksdb.git
Add initial_auto_readahead_size and max_auto_readahead_size to db_bench (#10539)
Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/10539 Reviewed By: anand1976 Differential Revision: D38837111 Pulled By: akankshamahajan15 fbshipit-source-id: eb845c6e15a3c823ff6113395817388ff15a20b1
This commit is contained in:
parent
91166012c8
commit
5956ef0089
|
@ -1218,6 +1218,20 @@ DEFINE_string(backup_dir, "",
|
||||||
DEFINE_string(restore_dir, "",
|
DEFINE_string(restore_dir, "",
|
||||||
"If not empty string, use the given dir for restore.");
|
"If not empty string, use the given dir for restore.");
|
||||||
|
|
||||||
|
DEFINE_uint64(
|
||||||
|
initial_auto_readahead_size,
|
||||||
|
ROCKSDB_NAMESPACE::BlockBasedTableOptions().initial_auto_readahead_size,
|
||||||
|
"RocksDB does auto-readahead for iterators on noticing more than two reads "
|
||||||
|
"for a table file if user doesn't provide readahead_size. The readahead "
|
||||||
|
"size starts at initial_auto_readahead_size");
|
||||||
|
|
||||||
|
DEFINE_uint64(
|
||||||
|
max_auto_readahead_size,
|
||||||
|
ROCKSDB_NAMESPACE::BlockBasedTableOptions().max_auto_readahead_size,
|
||||||
|
"Rocksdb implicit readahead starts at "
|
||||||
|
"BlockBasedTableOptions.initial_auto_readahead_size and doubles on every "
|
||||||
|
"additional read upto max_auto_readahead_size");
|
||||||
|
|
||||||
static enum ROCKSDB_NAMESPACE::CompressionType StringToCompressionType(
|
static enum ROCKSDB_NAMESPACE::CompressionType StringToCompressionType(
|
||||||
const char* ctype) {
|
const char* ctype) {
|
||||||
assert(ctype);
|
assert(ctype);
|
||||||
|
@ -4349,6 +4363,10 @@ class Benchmark {
|
||||||
FLAGS_enable_index_compression;
|
FLAGS_enable_index_compression;
|
||||||
block_based_options.block_align = FLAGS_block_align;
|
block_based_options.block_align = FLAGS_block_align;
|
||||||
block_based_options.whole_key_filtering = FLAGS_whole_key_filtering;
|
block_based_options.whole_key_filtering = FLAGS_whole_key_filtering;
|
||||||
|
block_based_options.max_auto_readahead_size =
|
||||||
|
FLAGS_max_auto_readahead_size;
|
||||||
|
block_based_options.initial_auto_readahead_size =
|
||||||
|
FLAGS_initial_auto_readahead_size;
|
||||||
BlockBasedTableOptions::PrepopulateBlockCache prepopulate_block_cache =
|
BlockBasedTableOptions::PrepopulateBlockCache prepopulate_block_cache =
|
||||||
block_based_options.prepopulate_block_cache;
|
block_based_options.prepopulate_block_cache;
|
||||||
switch (FLAGS_prepopulate_block_cache) {
|
switch (FLAGS_prepopulate_block_cache) {
|
||||||
|
|
Loading…
Reference in New Issue