mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
lib/blockcache: fix TestCache by ensuring that the cache size can be divided by the number of cache shards
Fixes https://github.com/VictoriaMetrics/VictoriaMetrics/issues/2204
This commit is contained in:
parent
6ff71474a6
commit
5366d9be73
@ -4,10 +4,17 @@ import (
|
||||
"fmt"
|
||||
"sync"
|
||||
"testing"
|
||||
|
||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/cgroup"
|
||||
)
|
||||
|
||||
func TestCache(t *testing.T) {
|
||||
const sizeMaxBytes = 1024 * 1024
|
||||
sizeMaxBytes := 64 * 1024
|
||||
// Multiply sizeMaxBytes by the square of available CPU cores
|
||||
// in order to get proper distribution of sizes between cache shards.
|
||||
// See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/2204
|
||||
cpus := cgroup.AvailableCPUs()
|
||||
sizeMaxBytes *= cpus * cpus
|
||||
getMaxSize := func() int {
|
||||
return sizeMaxBytes
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user