2023-08-31 12:47:06 +00:00
|
|
|
package shard
|
2020-12-01 13:58:34 +00:00
|
|
|
|
|
|
|
import (
|
2023-03-23 14:59:14 +00:00
|
|
|
"context"
|
2022-02-02 13:28:08 +00:00
|
|
|
"path/filepath"
|
2020-12-01 13:58:34 +00:00
|
|
|
"testing"
|
2023-05-15 09:06:38 +00:00
|
|
|
"time"
|
2020-12-01 13:58:34 +00:00
|
|
|
|
2023-03-07 13:38:26 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/blobstor"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/blobstor/blobovniczatree"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/blobstor/fstree"
|
|
|
|
meta "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/metabase"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/pilorama"
|
2023-06-22 11:55:30 +00:00
|
|
|
writecacheconfig "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/writecache/config"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/writecache/writecachebadger"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/writecache/writecachebbolt"
|
2023-05-15 09:06:38 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util"
|
2023-08-23 07:53:42 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/logger/test"
|
2023-07-06 12:36:41 +00:00
|
|
|
objectSDK "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
2023-05-15 09:06:38 +00:00
|
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
|
|
|
"github.com/panjf2000/ants/v2"
|
2020-12-01 13:58:34 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
2023-03-17 07:56:37 +00:00
|
|
|
type epochState struct {
|
|
|
|
Value uint64
|
|
|
|
}
|
2022-07-27 18:34:25 +00:00
|
|
|
|
|
|
|
func (s epochState) CurrentEpoch() uint64 {
|
2023-03-17 07:56:37 +00:00
|
|
|
return s.Value
|
2022-07-27 18:34:25 +00:00
|
|
|
}
|
|
|
|
|
2023-08-31 12:47:06 +00:00
|
|
|
func newShard(t testing.TB, enableWriteCache bool) *Shard {
|
2022-01-20 16:56:07 +00:00
|
|
|
return newCustomShard(t, t.TempDir(), enableWriteCache,
|
2023-06-22 11:55:30 +00:00
|
|
|
writecacheconfig.Options{Type: writecacheconfig.TypeBBolt},
|
2022-09-01 06:03:01 +00:00
|
|
|
nil,
|
2022-01-20 16:56:07 +00:00
|
|
|
nil)
|
2022-01-18 13:40:11 +00:00
|
|
|
}
|
|
|
|
|
2023-08-31 12:47:06 +00:00
|
|
|
func newCustomShard(t testing.TB, rootPath string, enableWriteCache bool, wcOpts writecacheconfig.Options, bsOpts []blobstor.Option, metaOptions []meta.Option) *Shard {
|
|
|
|
var sh *Shard
|
2020-12-01 13:58:34 +00:00
|
|
|
if enableWriteCache {
|
2022-02-02 13:28:08 +00:00
|
|
|
rootPath = filepath.Join(rootPath, "wc")
|
2023-06-22 11:55:30 +00:00
|
|
|
switch wcOpts.Type {
|
|
|
|
case writecacheconfig.TypeBBolt:
|
|
|
|
wcOpts.BBoltOptions = append(
|
|
|
|
[]writecachebbolt.Option{writecachebbolt.WithPath(filepath.Join(rootPath, "wcache"))},
|
|
|
|
wcOpts.BBoltOptions...)
|
|
|
|
case writecacheconfig.TypeBadger:
|
|
|
|
wcOpts.BadgerOptions = append(
|
|
|
|
[]writecachebadger.Option{writecachebadger.WithPath(filepath.Join(rootPath, "wcache"))},
|
|
|
|
wcOpts.BadgerOptions...)
|
|
|
|
}
|
2020-12-01 13:58:34 +00:00
|
|
|
} else {
|
2022-02-02 13:28:08 +00:00
|
|
|
rootPath = filepath.Join(rootPath, "nowc")
|
2020-12-01 13:58:34 +00:00
|
|
|
}
|
|
|
|
|
2022-07-11 12:34:17 +00:00
|
|
|
if bsOpts == nil {
|
|
|
|
bsOpts = []blobstor.Option{
|
2023-08-23 07:55:36 +00:00
|
|
|
blobstor.WithLogger(test.NewLogger(t, true)),
|
2022-07-11 12:34:17 +00:00
|
|
|
blobstor.WithStorages([]blobstor.SubStorage{
|
|
|
|
{
|
|
|
|
Storage: blobovniczatree.NewBlobovniczaTree(
|
2023-08-23 07:55:36 +00:00
|
|
|
blobovniczatree.WithLogger(test.NewLogger(t, true)),
|
2022-07-11 12:34:17 +00:00
|
|
|
blobovniczatree.WithRootPath(filepath.Join(rootPath, "blob", "blobovnicza")),
|
|
|
|
blobovniczatree.WithBlobovniczaShallowDepth(1),
|
|
|
|
blobovniczatree.WithBlobovniczaShallowWidth(1)),
|
2023-07-06 12:36:41 +00:00
|
|
|
Policy: func(_ *objectSDK.Object, data []byte) bool {
|
2022-07-11 12:34:17 +00:00
|
|
|
return len(data) <= 1<<20
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Storage: fstree.New(
|
|
|
|
fstree.WithPath(filepath.Join(rootPath, "blob"))),
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-31 12:47:06 +00:00
|
|
|
opts := []Option{
|
|
|
|
WithID(NewIDFromBytes([]byte{})),
|
|
|
|
WithLogger(test.NewLogger(t, true)),
|
|
|
|
WithBlobStorOptions(bsOpts...),
|
|
|
|
WithMetaBaseOptions(
|
2023-05-15 09:06:38 +00:00
|
|
|
append([]meta.Option{
|
|
|
|
meta.WithPath(filepath.Join(rootPath, "meta")), meta.WithEpochState(epochState{})},
|
|
|
|
metaOptions...)...,
|
2020-12-01 13:58:34 +00:00
|
|
|
),
|
2023-08-31 12:47:06 +00:00
|
|
|
WithPiloramaOptions(pilorama.WithPath(filepath.Join(rootPath, "pilorama"))),
|
|
|
|
WithWriteCache(enableWriteCache),
|
|
|
|
WithWriteCacheOptions(wcOpts),
|
|
|
|
WithDeletedLockCallback(func(_ context.Context, addresses []oid.Address) {
|
2023-05-15 09:06:38 +00:00
|
|
|
sh.HandleDeletedLocks(addresses)
|
|
|
|
}),
|
2023-08-31 12:47:06 +00:00
|
|
|
WithExpiredLocksCallback(func(ctx context.Context, epoch uint64, a []oid.Address) {
|
2023-05-15 09:06:38 +00:00
|
|
|
sh.HandleExpiredLocks(ctx, epoch, a)
|
|
|
|
}),
|
2023-08-31 12:47:06 +00:00
|
|
|
WithGCWorkerPoolInitializer(func(sz int) util.WorkerPool {
|
2023-05-15 09:06:38 +00:00
|
|
|
pool, err := ants.NewPool(sz)
|
|
|
|
require.NoError(t, err)
|
|
|
|
return pool
|
|
|
|
}),
|
2023-08-31 12:47:06 +00:00
|
|
|
WithGCRemoverSleepInterval(100 * time.Millisecond),
|
2020-12-01 13:58:34 +00:00
|
|
|
}
|
|
|
|
|
2023-08-31 12:47:06 +00:00
|
|
|
sh = New(opts...)
|
2020-12-01 13:58:34 +00:00
|
|
|
|
|
|
|
require.NoError(t, sh.Open())
|
2023-03-23 14:59:14 +00:00
|
|
|
require.NoError(t, sh.Init(context.Background()))
|
2020-12-01 13:58:34 +00:00
|
|
|
|
|
|
|
return sh
|
|
|
|
}
|
|
|
|
|
2023-08-31 12:47:06 +00:00
|
|
|
func releaseShard(s *Shard, t testing.TB) {
|
2022-07-11 12:34:17 +00:00
|
|
|
require.NoError(t, s.Close())
|
2020-12-01 13:58:34 +00:00
|
|
|
}
|