log on empty head compaction result (#8037)

Signed-off-by: frbimo <fr.bimo@gmail.com>
This commit is contained in:
frbimo 2020-10-14 21:29:59 +08:00 committed by GitHub
parent 73e2ce1bd6
commit 260cd84d8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -488,6 +488,12 @@ func (c *LeveledCompactor) Write(dest string, b BlockReader, mint, maxt int64, p
}
if meta.Stats.NumSamples == 0 {
level.Info(c.logger).Log(
"msg", "write block resulted in empty block",
"mint", meta.MinTime,
"maxt", meta.MaxTime,
"duration", time.Since(start),
)
return ulid.ULID{}, nil
}