mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2026-05-17 08:36:55 +03:00
45 lines
790 B
Go
45 lines
790 B
Go
package tenantmetrics
|
|
|
|
import (
|
|
"runtime"
|
|
"sync"
|
|
"testing"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/auth"
|
|
)
|
|
|
|
func BenchmarkCounterMapGrowth(b *testing.B) {
|
|
f := func(b *testing.B, numTenants uint32, nProcs int) {
|
|
b.Helper()
|
|
|
|
for range b.N {
|
|
cm := NewCounterMap("foobar")
|
|
var wg sync.WaitGroup
|
|
for range nProcs {
|
|
wg.Go(func() {
|
|
for i := range numTenants {
|
|
cm.Get(&auth.Token{AccountID: i, ProjectID: i}).Inc()
|
|
}
|
|
})
|
|
}
|
|
wg.Wait()
|
|
}
|
|
}
|
|
|
|
b.Run("n=100,nProcs=GOMAXPROCS", func(b *testing.B) {
|
|
f(b, 100, runtime.GOMAXPROCS(0))
|
|
})
|
|
|
|
b.Run("n=100,nProcs=2", func(b *testing.B) {
|
|
f(b, 100, 2)
|
|
})
|
|
|
|
b.Run("n=1000,nProcs=2", func(b *testing.B) {
|
|
f(b, 1000, 2)
|
|
})
|
|
|
|
b.Run("n=10000,nProcs=2", func(b *testing.B) {
|
|
f(b, 10000, 2)
|
|
})
|
|
}
|