frostfs-node/pkg/local_object_storage/writecache/init.go
Pavel Karpy 34544502dc
All checks were successful
ci/woodpecker/pr/pre-commit Pipeline was successful
[#314] wc: Simplify WC
Do not use write-cache as a read cache: always remove objects from the
WC, not only if an object hasn't been used for some time (LRU cache is
dropped). Use object size (in bytes) as a metric of used space, not an
approximate (and too inaccurate) maximum stored objects number.

Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
2023-05-05 21:05:31 +03:00

34 lines
662 B
Go

package writecache
import (
"context"
"fmt"
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/pkg/tracing"
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/shard/mode"
)
// Init runs necessary services.
func (c *Cache) Init() error {
ctx, span := tracing.StartSpanFromContext(context.TODO(), "writecache.Init")
defer span.End()
c.modeMtx.Lock()
defer c.modeMtx.Unlock()
if c.mode.NoMetabase() {
return nil
}
err := c.initCounters(ctx)
if err != nil {
return fmt.Errorf("initializing write-cache size: %w", err)
}
if c.mode == mode.ReadWrite {
c.workersChan = make(chan struct{})
c.runFlushLoop()
}
return nil
}