InternalStats::DumpCFMapStat: fix sum.w_amp (#9065)

Summary:
sum `w_amp` will be a very large number`(bytes_written + bytes_written_blob)` when there is no any flush and ingest.

This PR set sum `w_amp` to zero if there is no any flush and ingest, this is conform to per-level `w_amp` computation.

Pull Request resolved: https://github.com/facebook/rocksdb/pull/9065

Reviewed By: ajkr

Differential Revision: D31943994

Pulled By: riversand963

fbshipit-source-id: acbef5e331debebfad09e0e0d8d0885ebbc00609
main
leipeng 3 years ago committed by Facebook GitHub Bot
parent d263505417
commit 01bd86ad35
  1. 6
      db/internal_stats.cc

@ -1519,9 +1519,11 @@ void InternalStats::DumpCFMapStats(
}
}
// Cumulative summary
double w_amp = (compaction_stats_sum->bytes_written +
double w_amp = (0 == curr_ingest)
? 0.0
: (compaction_stats_sum->bytes_written +
compaction_stats_sum->bytes_written_blob) /
static_cast<double>(curr_ingest + 1);
static_cast<double>(curr_ingest);
// Stats summary across levels
std::map<LevelStatType, double> sum_stats;
PrepareLevelStats(&sum_stats, total_files, total_files_being_compacted,

Loading…
Cancel
Save