Skip to content

Commit

Permalink
[Refactor] update the log level of compaction tablet selection (StarR…
Browse files Browse the repository at this point in the history
  • Loading branch information
meegoo authored Nov 15, 2022
1 parent 069c66f commit ac59e92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions be/src/storage/tablet_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -597,9 +597,9 @@ TabletSharedPtr TabletManager::find_best_tablet_to_compaction(CompactionType com
}

if (best_tablet != nullptr) {
LOG(INFO) << "Found the best tablet to compact. "
<< "compaction_type=" << compaction_type_str << " tablet_id=" << best_tablet->tablet_id()
<< " highest_score=" << highest_score;
VLOG(1) << "Found the best tablet to compact. "
<< "compaction_type=" << compaction_type_str << " tablet_id=" << best_tablet->tablet_id()
<< " highest_score=" << highest_score;
// TODO(lingbin): Remove 'max' from metric name, it would be misunderstood as the
// biggest in history(like peak), but it is really just the value at current moment.
if (compaction_type == CompactionType::BASE_COMPACTION) {
Expand Down

0 comments on commit ac59e92

Please sign in to comment.