forked from TrueCloudLab/frostfs-node
Evgenii Stratonikov
c72576e72f
Currently the only way to tell whether `evacuate/set-mode` is finished is to set a very big timeout and _hope_ that the operation will finish. In this commit we add INFO logs for such operations which should simplify the life of an administrator. Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
80 lines
2 KiB
Go
80 lines
2 KiB
Go
package shard
|
|
|
|
import (
|
|
"github.com/TrueCloudLab/frostfs-node/pkg/local_object_storage/shard/mode"
|
|
"github.com/TrueCloudLab/frostfs-node/pkg/local_object_storage/util/logicerr"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// ErrReadOnlyMode is returned when it is impossible to apply operation
|
|
// that changes shard's memory due to the "read-only" shard's mode.
|
|
var ErrReadOnlyMode = logicerr.New("shard is in read-only mode")
|
|
|
|
// ErrDegradedMode is returned when operation requiring metabase is executed in degraded mode.
|
|
var ErrDegradedMode = logicerr.New("shard is in degraded mode")
|
|
|
|
// SetMode sets mode of the shard.
|
|
//
|
|
// Returns any error encountered that did not allow
|
|
// setting shard mode.
|
|
func (s *Shard) SetMode(m mode.Mode) error {
|
|
s.m.Lock()
|
|
defer s.m.Unlock()
|
|
|
|
return s.setMode(m)
|
|
}
|
|
|
|
func (s *Shard) setMode(m mode.Mode) error {
|
|
s.log.Info("setting shard mode",
|
|
zap.Stringer("old_mode", s.info.Mode),
|
|
zap.Stringer("new_mode", m))
|
|
|
|
components := []interface{ SetMode(mode.Mode) error }{
|
|
s.metaBase, s.blobStor,
|
|
}
|
|
|
|
if s.hasWriteCache() {
|
|
components = append(components, s.writeCache)
|
|
}
|
|
|
|
if s.pilorama != nil {
|
|
components = append(components, s.pilorama)
|
|
}
|
|
|
|
// The usual flow of the requests (pilorama is independent):
|
|
// writecache -> blobstor -> metabase
|
|
// For mode.ReadOnly and mode.Degraded the order is:
|
|
// writecache -> blobstor -> metabase
|
|
// For mode.ReadWrite it is the opposite:
|
|
// metabase -> blobstor -> writecache
|
|
if m != mode.ReadWrite {
|
|
if s.hasWriteCache() {
|
|
components[0], components[2] = components[2], components[0]
|
|
} else {
|
|
components[0], components[1] = components[1], components[0]
|
|
}
|
|
}
|
|
|
|
for i := range components {
|
|
if err := components[i].SetMode(m); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
s.info.Mode = m
|
|
if s.metricsWriter != nil {
|
|
s.metricsWriter.SetReadonly(s.info.Mode != mode.ReadWrite)
|
|
}
|
|
|
|
s.log.Info("shard mode set successfully",
|
|
zap.Stringer("mode", s.info.Mode))
|
|
return nil
|
|
}
|
|
|
|
// GetMode returns mode of the shard.
|
|
func (s *Shard) GetMode() mode.Mode {
|
|
s.m.RLock()
|
|
defer s.m.RUnlock()
|
|
|
|
return s.info.Mode
|
|
}
|