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

Log Improvement: Report the name of cf-s whose options are skipped in… #521

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
1 change: 1 addition & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Based on RocksDB 8.1.1
* CI: add a workflow for building and publishing jar to maven central (#507)
* LOG: Compaction job traces - report cf name and job id (#511)
* db_stress: Add cost_write_buffer_to_cache flag (#513)
* Log Improvement: Report the name of cf-s whose options are skipped in the log (#520)

### Bug Fix
* CI: fix sanity check to use clang-format 10
Expand Down
3 changes: 2 additions & 1 deletion db/column_family.cc
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,8 @@ ColumnFamilyData::ColumnFamilyData(
name.c_str());
initial_cf_options_.Dump(ioptions_.logger);
} else {
ROCKS_LOG_INFO(ioptions_.logger, "\t(skipping printing options)\n");
ROCKS_LOG_INFO(ioptions_.logger,
"\t(skipping printing options of [%s])\n", name.c_str());
}
}

Expand Down