Skip to content

Commit

Permalink
fix CR
Browse files Browse the repository at this point in the history
  • Loading branch information
jiacai2050 committed Jun 27, 2023
1 parent b292f91 commit 4f08a9e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions analytic_engine/src/table/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -453,8 +453,8 @@ impl TableData {
// Inspired by https://github.com/facebook/rocksdb/blob/main/include/rocksdb/write_buffer_manager.h#L94
if mutable_usage > mutable_limit && !in_flush {
info!(
"TableData should flush by mutable limit, table:{}, table_id:{}, mutable_usage:{}, mutable_limit: {}, total_usage:{}, max_write_buffer_size:{}.",
self.name, self.id, mutable_usage, mutable_limit, total_usage, max_write_buffer_size,
"TableData should flush by mutable limit, table:{}, table_id:{}, mutable_usage:{}, mutable_limit: {}, total_usage:{}, max_write_buffer_size:{}",
self.name, self.id, mutable_usage, mutable_limit, total_usage, max_write_buffer_size
);
return true;
}
Expand All @@ -472,8 +472,8 @@ impl TableData {

if should_flush {
info!(
"TableData should flush by total usage, table:{}, table_id:{}, mutable_usage:{}, mutable_limit: {}, total_usage:{}, max_write_buffer_size:{}.",
self.name, self.id, mutable_usage, mutable_limit, total_usage, max_write_buffer_size,
"TableData should flush by total usage, table:{}, table_id:{}, mutable_usage:{}, mutable_limit: {}, total_usage:{}, max_write_buffer_size:{}",
self.name, self.id, mutable_usage, mutable_limit, total_usage, max_write_buffer_size
);
}

Expand Down

0 comments on commit 4f08a9e

Please sign in to comment.