Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(rocksdb): Support more configurable items for bloom filter #522

Merged
merged 4 commits into from
Apr 26, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions src/server/config.ini
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,23 @@
rocksdb_disable_bloom_filter = false
# Bloom filter type, should be either 'common' or 'prefix'
rocksdb_filter_type = prefix
# rocksdb_bloom_filter_bits_per_key | false positive rate
# | rocksdb_format_version < 5 | rocksdb_format_version = 5
# 6 5.70953 5.69888
# 8 2.45766 2.29709
# 10 1.13977 0.959254
# 12 0.662498 0.411593
# 16 0.353023 0.0873754
# 24 0.261552 0.0060971
# 50 0.225453 ~0.00003
rocksdb_bloom_filter_bits_per_key = 10
# SST file format version, should be either 2 or 5
# COMPATIBILITY ATTENTION:
# Although old releases would see the new structure as corrupt filter data and read the
# table as if there's no filter, we've decided only to enable the new Bloom filter with new
# format_version=5. This provides a smooth path for automatic adoption over time, with an
# option for early opt-in.
rocksdb_format_version = 2

# 3000, 30MB, 1000, 30s
rocksdb_multi_get_max_iteration_count = 3000
Expand Down
38 changes: 37 additions & 1 deletion src/server/pegasus_server_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,43 @@ pegasus_server_impl::pegasus_server_impl(dsn::replication::replica *r)
bool disable_bloom_filter = dsn_config_get_value_bool(
"pegasus.server", "rocksdb_disable_bloom_filter", false, "Whether to disable bloom filter");
if (!disable_bloom_filter) {
tbl_opts.filter_policy.reset(rocksdb::NewBloomFilterPolicy(10, false));
// average bits allocated per key in bloom filter.
// bits_per_key | false positive rate
hycdong marked this conversation as resolved.
Show resolved Hide resolved
// | format_version < 5 | format_version = 5
// 6 5.70953 5.69888
// 8 2.45766 2.29709
// 10 1.13977 0.959254
// 12 0.662498 0.411593
// 16 0.353023 0.0873754
// 24 0.261552 0.0060971
// 50 0.225453 ~0.00003
// Recommend using no more than three decimal digits after the decimal point, as in 6.667.
// More details: https://github.com/facebook/rocksdb/wiki/RocksDB-Bloom-Filter
double bits_per_key =
dsn_config_get_value_double("pegasus.server",
"rocksdb_bloom_filter_bits_per_key",
10,
levy5307 marked this conversation as resolved.
Show resolved Hide resolved
"average bits allocated per key in bloom filter");
// COMPATIBILITY ATTENTION:
// Although old releases would see the new structure as corrupt filter data and read the
// table as if there's no filter, we've decided only to enable the new Bloom filter with new
// format_version=5. This provides a smooth path for automatic adoption over time, with an
// option for early opt-in.
// Reference from rocksdb commit:
// https://github.com/facebook/rocksdb/commit/f059c7d9b96300091e07429a60f4ad55dac84859
int format_version =
(int)dsn_config_get_value_int64("pegasus.server",
"rocksdb_format_version",
2,
"block based table data format version, "
"only 2 and 5 is supported in Pegasus. "
"2 is the old version, 5 is the new "
"version supported since rocksdb "
"v6.6.4");
dassert(format_version == 2 || format_version == 5,
"[pegasus.server]rocksdb_format_version should be either '2' or '5'.");
tbl_opts.format_version = format_version;
tbl_opts.filter_policy.reset(rocksdb::NewBloomFilterPolicy(bits_per_key, false));

std::string filter_type =
dsn_config_get_value_string("pegasus.server",
Expand Down
2 changes: 1 addition & 1 deletion src/shell/commands/table_management.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ bool app_stat(command_executor *e, shell_context *sc, arguments args)
}
std::ostream out(buf);

::dsn::utils::table_printer tp("app_stat");
::dsn::utils::table_printer tp("app_stat", 2 /* tabular_width */, 3 /* precision */);
tp.add_title(app_name.empty() ? "app_name" : "pidx");
if (app_name.empty()) {
tp.add_column("app_id", tp_alignment::kRight);
Expand Down