Ekaterina Lebedeva
a685fcdc96
All checks were successful
DCO action / DCO (pull_request) Successful in 2m41s
Tests and linters / Run gofumpt (pull_request) Successful in 2m32s
Vulncheck / Vulncheck (pull_request) Successful in 2m38s
Build / Build Components (1.23) (pull_request) Successful in 3m0s
Build / Build Components (1.22) (pull_request) Successful in 3m3s
Pre-commit hooks / Pre-commit (pull_request) Successful in 3m33s
Tests and linters / Tests (1.22) (pull_request) Successful in 3m34s
Tests and linters / Tests (1.23) (pull_request) Successful in 3m36s
Tests and linters / Staticcheck (pull_request) Successful in 3m35s
Tests and linters / Lint (pull_request) Successful in 4m18s
Tests and linters / Tests with -race (pull_request) Successful in 4m20s
Tests and linters / gopls check (pull_request) Successful in 4m25s
Since Go 1.22 a "for" statement with a "range" clause is able to iterate through integer values from zero to an upper limit. gopatch script: @@ var i, e expression @@ -for i := 0; i <= e - 1; i++ { +for i := range e { ... } @@ var i, e expression @@ -for i := 0; i <= e; i++ { +for i := range e + 1 { ... } @@ var i, e expression @@ -for i := 0; i < e; i++ { +for i := range e { ... } Signed-off-by: Ekaterina Lebedeva <ekaterina.lebedeva@yadro.com>
76 lines
1.8 KiB
Go
76 lines
1.8 KiB
Go
package shard
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"testing"
|
|
|
|
shardconfig "git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-node/config/engine/shard"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/internal/testutil"
|
|
oidtest "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id/test"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func BenchmarkRefillMetabase(b *testing.B) {
|
|
b.Run("100 objects", func(b *testing.B) {
|
|
benchRefillMetabase(b, 100)
|
|
})
|
|
|
|
b.Run("1000 objects", func(b *testing.B) {
|
|
benchRefillMetabase(b, 1000)
|
|
})
|
|
|
|
b.Run("2000 objects", func(b *testing.B) {
|
|
benchRefillMetabase(b, 2000)
|
|
})
|
|
|
|
b.Run("5000 objects", func(b *testing.B) {
|
|
benchRefillMetabase(b, 5000)
|
|
})
|
|
}
|
|
|
|
func benchRefillMetabase(b *testing.B, objectsCount int) {
|
|
sh := newCustomShard(b, false, shardOptions{
|
|
additionalShardOptions: []Option{WithRefillMetabaseWorkersCount(shardconfig.RefillMetabaseWorkersCountDefault)},
|
|
})
|
|
|
|
defer func() { require.NoError(b, sh.Close()) }()
|
|
|
|
var putPrm PutPrm
|
|
|
|
for range objectsCount / 2 {
|
|
obj := testutil.GenerateObject()
|
|
testutil.AddAttribute(obj, "foo", "bar")
|
|
testutil.AddPayload(obj, 1<<5) // blobvnicza tree obj
|
|
|
|
putPrm.SetObject(obj)
|
|
|
|
_, err := sh.Put(context.Background(), putPrm)
|
|
require.NoError(b, err)
|
|
}
|
|
|
|
for range objectsCount / 2 {
|
|
obj := testutil.GenerateObject()
|
|
testutil.AddAttribute(obj, "foo", "bar")
|
|
obj.SetID(oidtest.ID())
|
|
testutil.AddPayload(obj, 1<<20) // fstree obj
|
|
|
|
putPrm.SetObject(obj)
|
|
|
|
_, err := sh.Put(context.Background(), putPrm)
|
|
require.NoError(b, err)
|
|
}
|
|
|
|
require.NoError(b, sh.Close())
|
|
require.NoError(b, os.Remove(sh.metaBase.DumpInfo().Path))
|
|
|
|
require.NoError(b, sh.Open(context.Background()))
|
|
sh.cfg.refillMetabase = true
|
|
|
|
b.ReportAllocs()
|
|
b.ResetTimer()
|
|
|
|
require.NoError(b, sh.Init(context.Background()))
|
|
|
|
require.NoError(b, sh.Close())
|
|
}
|