2020-12-01 11:40:32 +03:00
|
|
|
package shard
|
|
|
|
|
|
|
|
import (
|
2020-12-08 12:56:14 +03:00
|
|
|
meta "github.com/nspcc-dev/neofs-node/pkg/local_object_storage/metabase"
|
2022-05-31 20:00:41 +03:00
|
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
2020-12-01 11:40:32 +03:00
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ToMoveItPrm encapsulates parameters for ToMoveIt operation.
|
|
|
|
type ToMoveItPrm struct {
|
2022-05-31 20:00:41 +03:00
|
|
|
addr oid.Address
|
2020-12-01 11:40:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// ToMoveItRes encapsulates results of ToMoveIt operation.
|
|
|
|
type ToMoveItRes struct{}
|
|
|
|
|
2022-07-13 15:43:04 +03:00
|
|
|
// SetAddress sets object address that should be marked to move into another
|
2020-12-01 11:40:32 +03:00
|
|
|
// shard.
|
2022-07-13 15:43:04 +03:00
|
|
|
func (p *ToMoveItPrm) SetAddress(addr oid.Address) {
|
|
|
|
p.addr = addr
|
2020-12-01 11:40:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// ToMoveIt calls metabase.ToMoveIt method to mark object as relocatable to
|
|
|
|
// another shard.
|
2022-05-31 14:50:39 +03:00
|
|
|
func (s *Shard) ToMoveIt(prm ToMoveItPrm) (ToMoveItRes, error) {
|
2022-06-29 14:27:36 +03:00
|
|
|
m := s.GetMode()
|
|
|
|
if m.ReadOnly() {
|
2022-05-31 14:50:39 +03:00
|
|
|
return ToMoveItRes{}, ErrReadOnlyMode
|
2022-06-29 14:27:36 +03:00
|
|
|
} else if m.NoMetabase() {
|
|
|
|
return ToMoveItRes{}, ErrDegradedMode
|
2021-12-27 14:04:07 +03:00
|
|
|
}
|
|
|
|
|
2022-07-12 17:42:55 +03:00
|
|
|
var toMovePrm meta.ToMoveItPrm
|
2022-07-12 17:59:37 +03:00
|
|
|
toMovePrm.SetAddress(prm.addr)
|
2022-07-12 17:42:55 +03:00
|
|
|
|
|
|
|
_, err := s.metaBase.ToMoveIt(toMovePrm)
|
2020-12-01 11:40:32 +03:00
|
|
|
if err != nil {
|
|
|
|
s.log.Debug("could not mark object for shard relocation in metabase",
|
|
|
|
zap.String("error", err.Error()),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-05-31 14:50:39 +03:00
|
|
|
return ToMoveItRes{}, nil
|
2020-12-01 11:40:32 +03:00
|
|
|
}
|