All checks were successful
ci/woodpecker/pr/pre-commit Pipeline was successful
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>
34 lines
662 B
Go
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
|
|
}
|