db: remove imprecise log message about compaction
This message is printed when we are about to run the strategy code which may not decide to compact anything. Compaction is already properly logged in sstables::compact_sstables(). Signed-off-by: Raphael S. Carvalho <raphaelsc@cloudius-systems.com>
This commit is contained in:
committed by
Avi Kivity
parent
9663ea86e9
commit
34eaeedff2
@@ -540,7 +540,6 @@ void column_family::start_compaction() {
|
||||
return with_gate(_in_flight_seals, [this] {
|
||||
sstables::compaction_strategy strategy = _compaction_strategy;
|
||||
return do_with(std::move(strategy), [this] (sstables::compaction_strategy& cs) {
|
||||
dblog.info("started compaction for column_family {}/{}", _schema->ks_name(), _schema->cf_name());
|
||||
return cs.compact(*this).then([this] {
|
||||
// If compaction completed successfully, let's reset sleep time of _compaction_retry.
|
||||
_compaction_retry.reset();
|
||||
|
||||
Reference in New Issue
Block a user