@@ -677,41 +677,56 @@ func TestMemChunk_AppendOutOfOrder(t *testing.T) {
677
677
}
678
678
}
679
679
680
- func TestChunkSize ( t * testing.T ) {
680
+ func BenchmarkEncodingsAndChunkSize ( b * testing.B ) {
681
681
type res struct {
682
682
name string
683
+ count uint64
683
684
size uint64
684
685
compressedSize uint64
685
686
ratio float64
686
687
}
687
688
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 ++
698
707
}
708
+
709
+ averageRatio := float64 (insertedTotal ) / float64 (compressedTotal )
699
710
result = append (result , res {
700
711
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 ,
704
716
})
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" )
705
720
})
706
721
}
707
722
}
708
723
}
709
724
sort .Slice (result , func (i , j int ) bool {
710
725
return result [i ].ratio > result [j ].ratio
711
726
})
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" )
713
728
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 )
715
730
}
716
731
}
717
732
0 commit comments