Skip to content

Commit fed43db

Browse files
authored
fix(ci): transform TestChunkSize into a benchmark (#15361)
1 parent 6b7c3fc commit fed43db

File tree

1 file changed

+31
-16
lines changed

1 file changed

+31
-16
lines changed

‎pkg/chunkenc/memchunk_test.go

+31-16
Original file line numberDiff line numberDiff line change
@@ -677,41 +677,56 @@ func TestMemChunk_AppendOutOfOrder(t *testing.T) {
677677
}
678678
}
679679

680-
func TestChunkSize(t *testing.T) {
680+
func BenchmarkEncodingsAndChunkSize(b *testing.B) {
681681
type res struct {
682682
name string
683+
count uint64
683684
size uint64
684685
compressedSize uint64
685686
ratio float64
686687
}
687688
var result []res
688-
for _, bs := range testBlockSizes {
689-
for _, f := range allPossibleFormats {
690-
for _, enc := range testEncodings {
691-
name := fmt.Sprintf("%s_%s", enc.String(), humanize.Bytes(uint64(bs)))
692-
t.Run(name, func(t *testing.T) {
693-
c := newMemChunkWithFormat(f.chunkFormat, enc, f.headBlockFmt, bs, testTargetSize)
694-
inserted := fillChunk(c)
695-
b, err := c.Bytes()
696-
if err != nil {
697-
t.Fatal(err)
689+
690+
resBuffer := make([]byte, 0, 50*1024*1024)
691+
for _, enc := range testEncodings {
692+
for _, bs := range testBlockSizes {
693+
for fi, f := range allPossibleFormats {
694+
name := fmt.Sprintf("%s_block_size_%s_format_%d", enc.String(), humanize.Bytes(uint64(bs)), fi)
695+
b.Run(name, func(b *testing.B) {
696+
var insertedTotal, compressedTotal, count uint64
697+
for range b.N {
698+
c := newMemChunkWithFormat(f.chunkFormat, enc, f.headBlockFmt, bs, testTargetSize)
699+
inserted := fillChunk(c)
700+
insertedTotal += uint64(inserted)
701+
cb, err := c.BytesWith(resBuffer)
702+
if err != nil {
703+
b.Fatal(err)
704+
}
705+
compressedTotal += uint64(len(cb))
706+
count++
698707
}
708+
709+
averageRatio := float64(insertedTotal) / float64(compressedTotal)
699710
result = append(result, res{
700711
name: name,
701-
size: uint64(inserted),
702-
compressedSize: uint64(len(b)),
703-
ratio: float64(inserted) / float64(len(b)),
712+
count: count,
713+
size: insertedTotal,
714+
compressedSize: compressedTotal,
715+
ratio: averageRatio,
704716
})
717+
b.ReportMetric(averageRatio, "compression_ratio")
718+
b.ReportMetric(float64(insertedTotal)/float64(count*1024), "avg_size_kb")
719+
b.ReportMetric(float64(compressedTotal)/float64(count*1024), "avg_compressed_size_kb")
705720
})
706721
}
707722
}
708723
}
709724
sort.Slice(result, func(i, j int) bool {
710725
return result[i].ratio > result[j].ratio
711726
})
712-
fmt.Printf("%s\t%s\t%s\t%s\n", "name", "uncompressed", "compressed", "ratio")
727+
fmt.Printf("%s\t%s\t%s\t%s\t%s\n", "name", "count", "uncompressed", "compressed", "ratio")
713728
for _, r := range result {
714-
fmt.Printf("%s\t%s\t%s\t%f\n", r.name, humanize.Bytes(r.size), humanize.Bytes(r.compressedSize), r.ratio)
729+
fmt.Printf("%s\t(count %d)\n%s\t%s\t%f\n", r.name, r.count, humanize.Bytes(r.size/r.count), humanize.Bytes(r.compressedSize/r.count), r.ratio)
715730
}
716731
}
717732

0 commit comments

Comments
 (0)