Ekaterina Lebedeva
0990a9b0bd
It used to always show CLOSED after setting shard mode to read-only regardless of actual mode. Now metric represents actual blobstor mode of operations. Signed-off-by: Ekaterina Lebedeva <ekaterina.lebedeva@yadro.com>
36 lines
647 B
Go
36 lines
647 B
Go
package blobstor
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/shard/mode"
|
|
)
|
|
|
|
// SetMode sets the blobstor mode of operation.
|
|
func (b *BlobStor) SetMode(m mode.Mode) error {
|
|
b.modeMtx.Lock()
|
|
defer b.modeMtx.Unlock()
|
|
|
|
if b.mode == m {
|
|
return nil
|
|
}
|
|
|
|
if b.mode.ReadOnly() == m.ReadOnly() {
|
|
return nil
|
|
}
|
|
|
|
err := b.Close()
|
|
if err == nil {
|
|
if err = b.openBlobStor(context.TODO(), m); err == nil {
|
|
err = b.Init()
|
|
}
|
|
}
|
|
if err != nil {
|
|
return fmt.Errorf("can't set blobstor mode (old=%s, new=%s): %w", b.mode, m, err)
|
|
}
|
|
|
|
b.mode = m
|
|
b.metrics.SetMode(m.ReadOnly())
|
|
return nil
|
|
}
|