Ekaterina Lebedeva
d5194ab2a6
All checks were successful
Vulncheck / Vulncheck (pull_request) Successful in 1m20s
DCO action / DCO (pull_request) Successful in 1m59s
Build / Build Components (1.21) (pull_request) Successful in 3m25s
Build / Build Components (1.20) (pull_request) Successful in 4m46s
Tests and linters / Staticcheck (pull_request) Successful in 6m5s
Tests and linters / gopls check (pull_request) Successful in 6m17s
Tests and linters / Lint (pull_request) Successful in 7m7s
Tests and linters / Tests (1.20) (pull_request) Successful in 8m38s
Tests and linters / Tests with -race (pull_request) Successful in 8m51s
Tests and linters / Tests (1.21) (pull_request) Successful in 8m56s
metabase.Open() now reports metabase mode metric. shard.UpdateID() needs to read shard ID from metabase => needs to open metabase. It caused reporting 'shard undefined' metrics. To avoid reporting wrong metrics metabase.GetShardID() was added which also opens metabase and does not report metrics. Signed-off-by: Ekaterina Lebedeva <ekaterina.lebedeva@yadro.com>
73 lines
1.8 KiB
Go
73 lines
1.8 KiB
Go
package shard
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/shard/mode"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/logger"
|
|
"github.com/mr-tron/base58"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// ID represents Shard identifier.
|
|
//
|
|
// Each shard should have the unique ID within
|
|
// a single instance of local storage.
|
|
type ID []byte
|
|
|
|
// NewIDFromBytes constructs ID from byte slice.
|
|
func NewIDFromBytes(v []byte) *ID {
|
|
return (*ID)(&v)
|
|
}
|
|
|
|
func (id ID) String() string {
|
|
return base58.Encode(id)
|
|
}
|
|
|
|
// ID returns Shard identifier.
|
|
func (s *Shard) ID() *ID {
|
|
return s.info.ID
|
|
}
|
|
|
|
// UpdateID reads shard ID saved in the metabase and updates it if it is missing.
|
|
func (s *Shard) UpdateID() (err error) {
|
|
var idFromMetabase []byte
|
|
modeDegraded := s.GetMode().NoMetabase()
|
|
if !modeDegraded {
|
|
if idFromMetabase, err = s.metaBase.GetShardID(mode.ReadOnly); err != nil {
|
|
err = fmt.Errorf("failed to read shard id from metabase: %w", err)
|
|
}
|
|
}
|
|
|
|
if len(idFromMetabase) != 0 {
|
|
s.info.ID = NewIDFromBytes(idFromMetabase)
|
|
}
|
|
|
|
shardID := s.info.ID.String()
|
|
if s.cfg.metricsWriter != nil {
|
|
s.cfg.metricsWriter.SetShardID(shardID)
|
|
}
|
|
if s.writeCache != nil && s.writeCache.GetMetrics() != nil {
|
|
s.writeCache.GetMetrics().SetShardID(shardID)
|
|
}
|
|
|
|
s.log = &logger.Logger{Logger: s.log.With(zap.Stringer("shard_id", s.info.ID))}
|
|
s.metaBase.SetLogger(s.log)
|
|
s.blobStor.SetLogger(s.log)
|
|
if s.hasWriteCache() {
|
|
s.writeCache.SetLogger(s.log)
|
|
}
|
|
s.metaBase.SetParentID(s.info.ID.String())
|
|
s.blobStor.SetParentID(s.info.ID.String())
|
|
if s.pilorama != nil {
|
|
s.pilorama.SetParentID(s.info.ID.String())
|
|
}
|
|
|
|
if len(idFromMetabase) == 0 && !modeDegraded {
|
|
if setErr := s.metaBase.SetShardID(*s.info.ID, s.GetMode()); setErr != nil {
|
|
err = errors.Join(err, fmt.Errorf("failed to write shard id to metabase: %w", setErr))
|
|
}
|
|
}
|
|
return
|
|
}
|