Skip to content

Commit

Permalink
[fix](be) avoid rocksdb produce many large LOG files
Browse files Browse the repository at this point in the history
  • Loading branch information
derenli committed Aug 28, 2024
1 parent cda797f commit 59878c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/olap/olap_meta.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Status OlapMeta::init() {
// set log file's size, num and level
options.max_log_file_size = 10485760;
options.keep_log_file_num = 10;
options.info_log_level = rocksdb::WARN_LEVEL;
options.info_log_level = rocksdb::InfoLogLevel::WARN_LEVEL;

std::string db_path = _root_path + META_POSTFIX;
std::vector<ColumnFamilyDescriptor> column_families;
Expand Down

0 comments on commit 59878c9

Please sign in to comment.