2020-10-21 09:24:02 +00:00
|
|
|
package policer
|
|
|
|
|
|
|
|
import (
|
2022-06-09 16:45:51 +00:00
|
|
|
"sync"
|
2020-10-21 09:24:02 +00:00
|
|
|
"time"
|
|
|
|
|
2021-11-10 08:34:00 +00:00
|
|
|
lru "github.com/hashicorp/golang-lru"
|
2020-10-21 09:24:02 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/core/container"
|
2021-09-06 12:17:14 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/core/netmap"
|
2020-11-19 08:22:43 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/engine"
|
2020-10-21 09:24:02 +00:00
|
|
|
headsvc "github.com/nspcc-dev/neofs-node/pkg/services/object/head"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/services/object_manager/placement"
|
2020-10-21 11:50:48 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/services/replicator"
|
2020-10-21 09:24:02 +00:00
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/util/logger"
|
2022-05-31 17:00:41 +00:00
|
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
2021-11-10 08:34:00 +00:00
|
|
|
"github.com/panjf2000/ants/v2"
|
2020-10-21 09:24:02 +00:00
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
2021-11-10 08:34:00 +00:00
|
|
|
// NodeLoader provides application load statistics.
|
|
|
|
type nodeLoader interface {
|
|
|
|
// ObjectServiceLoad returns object service load value in [0:1] range.
|
|
|
|
ObjectServiceLoad() float64
|
|
|
|
}
|
|
|
|
|
2022-06-09 16:45:51 +00:00
|
|
|
type objectsInWork struct {
|
|
|
|
m sync.RWMutex
|
|
|
|
objs map[oid.Address]struct{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (oiw *objectsInWork) inWork(addr oid.Address) bool {
|
|
|
|
oiw.m.RLock()
|
|
|
|
_, ok := oiw.objs[addr]
|
|
|
|
oiw.m.RUnlock()
|
|
|
|
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (oiw *objectsInWork) remove(addr oid.Address) {
|
|
|
|
oiw.m.Lock()
|
|
|
|
delete(oiw.objs, addr)
|
|
|
|
oiw.m.Unlock()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (oiw *objectsInWork) add(addr oid.Address) {
|
|
|
|
oiw.m.Lock()
|
|
|
|
oiw.objs[addr] = struct{}{}
|
|
|
|
oiw.m.Unlock()
|
|
|
|
}
|
|
|
|
|
2020-10-21 09:24:02 +00:00
|
|
|
// Policer represents the utility that verifies
|
|
|
|
// compliance with the object storage policy.
|
|
|
|
type Policer struct {
|
|
|
|
*cfg
|
|
|
|
|
2021-11-10 08:34:00 +00:00
|
|
|
cache *lru.Cache
|
2022-06-09 16:45:51 +00:00
|
|
|
|
|
|
|
objsInWork *objectsInWork
|
2020-10-21 09:24:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Option is an option for Policer constructor.
|
|
|
|
type Option func(*cfg)
|
|
|
|
|
2021-02-19 15:21:46 +00:00
|
|
|
// RedundantCopyCallback is a callback to pass
|
|
|
|
// the redundant local copy of the object.
|
2022-05-31 17:00:41 +00:00
|
|
|
type RedundantCopyCallback func(oid.Address)
|
2021-02-19 15:21:46 +00:00
|
|
|
|
2020-10-21 09:24:02 +00:00
|
|
|
type cfg struct {
|
|
|
|
headTimeout time.Duration
|
|
|
|
|
|
|
|
log *logger.Logger
|
|
|
|
|
|
|
|
jobQueue jobQueue
|
|
|
|
|
|
|
|
cnrSrc container.Source
|
|
|
|
|
|
|
|
placementBuilder placement.Builder
|
|
|
|
|
|
|
|
remoteHeader *headsvc.RemoteHeader
|
|
|
|
|
2021-09-06 12:17:14 +00:00
|
|
|
netmapKeys netmap.AnnouncedKeys
|
2020-10-21 11:50:48 +00:00
|
|
|
|
|
|
|
replicator *replicator.Replicator
|
2021-02-19 15:21:46 +00:00
|
|
|
|
|
|
|
cbRedundantCopy RedundantCopyCallback
|
2021-11-10 08:34:00 +00:00
|
|
|
|
|
|
|
taskPool *ants.Pool
|
|
|
|
|
|
|
|
loader nodeLoader
|
|
|
|
|
|
|
|
maxCapacity int
|
|
|
|
|
|
|
|
batchSize, cacheSize uint32
|
|
|
|
|
|
|
|
rebalanceFreq, evictDuration time.Duration
|
2020-10-21 09:24:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func defaultCfg() *cfg {
|
|
|
|
return &cfg{
|
2021-11-10 08:34:00 +00:00
|
|
|
log: zap.L(),
|
|
|
|
batchSize: 10,
|
|
|
|
cacheSize: 200_000, // should not allocate more than 200 MiB
|
|
|
|
rebalanceFreq: 1 * time.Second,
|
|
|
|
evictDuration: 30 * time.Second,
|
2020-10-21 09:24:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// New creates, initializes and returns Policer instance.
|
|
|
|
func New(opts ...Option) *Policer {
|
|
|
|
c := defaultCfg()
|
|
|
|
|
|
|
|
for i := range opts {
|
|
|
|
opts[i](c)
|
|
|
|
}
|
|
|
|
|
|
|
|
c.log = c.log.With(zap.String("component", "Object Policer"))
|
|
|
|
|
2021-11-10 08:34:00 +00:00
|
|
|
cache, err := lru.New(int(c.cacheSize))
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2020-10-21 09:24:02 +00:00
|
|
|
return &Policer{
|
2021-11-10 08:34:00 +00:00
|
|
|
cfg: c,
|
|
|
|
cache: cache,
|
2022-06-09 16:45:51 +00:00
|
|
|
objsInWork: &objectsInWork{
|
|
|
|
objs: make(map[oid.Address]struct{}, c.maxCapacity),
|
|
|
|
},
|
2020-10-21 09:24:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithHeadTimeout returns option to set Head timeout of Policer.
|
|
|
|
func WithHeadTimeout(v time.Duration) Option {
|
|
|
|
return func(c *cfg) {
|
|
|
|
c.headTimeout = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithLogger returns option to set Logger of Policer.
|
|
|
|
func WithLogger(v *logger.Logger) Option {
|
|
|
|
return func(c *cfg) {
|
|
|
|
c.log = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithLocalStorage returns option to set local object storage of Policer.
|
2020-11-19 08:22:43 +00:00
|
|
|
func WithLocalStorage(v *engine.StorageEngine) Option {
|
2020-10-21 09:24:02 +00:00
|
|
|
return func(c *cfg) {
|
|
|
|
c.jobQueue.localStorage = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithContainerSource returns option to set container source of Policer.
|
|
|
|
func WithContainerSource(v container.Source) Option {
|
|
|
|
return func(c *cfg) {
|
|
|
|
c.cnrSrc = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithPlacementBuilder returns option to set object placement builder of Policer.
|
|
|
|
func WithPlacementBuilder(v placement.Builder) Option {
|
|
|
|
return func(c *cfg) {
|
|
|
|
c.placementBuilder = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithRemoteHeader returns option to set object header receiver of Policer.
|
|
|
|
func WithRemoteHeader(v *headsvc.RemoteHeader) Option {
|
|
|
|
return func(c *cfg) {
|
|
|
|
c.remoteHeader = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-06 12:17:14 +00:00
|
|
|
// WithNetmapKeys returns option to set tool to work with announced public keys.
|
|
|
|
func WithNetmapKeys(v netmap.AnnouncedKeys) Option {
|
2020-10-21 09:24:02 +00:00
|
|
|
return func(c *cfg) {
|
2021-09-06 12:17:14 +00:00
|
|
|
c.netmapKeys = v
|
2020-10-21 09:24:02 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-21 11:50:48 +00:00
|
|
|
|
|
|
|
// WithReplicator returns option to set object replicator of Policer.
|
|
|
|
func WithReplicator(v *replicator.Replicator) Option {
|
|
|
|
return func(c *cfg) {
|
|
|
|
c.replicator = v
|
|
|
|
}
|
|
|
|
}
|
2021-02-19 15:21:46 +00:00
|
|
|
|
|
|
|
// WithRedundantCopyCallback returns option to set
|
|
|
|
// callback to pass redundant local object copies
|
|
|
|
// detected by Policer.
|
|
|
|
func WithRedundantCopyCallback(cb RedundantCopyCallback) Option {
|
|
|
|
return func(c *cfg) {
|
|
|
|
c.cbRedundantCopy = cb
|
|
|
|
}
|
|
|
|
}
|
2021-11-10 08:34:00 +00:00
|
|
|
|
|
|
|
// WithMaxCapacity returns option to set max capacity
|
|
|
|
// that can be set to the pool.
|
|
|
|
func WithMaxCapacity(cap int) Option {
|
|
|
|
return func(c *cfg) {
|
|
|
|
c.maxCapacity = cap
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithPool returns option to set pool for
|
|
|
|
// policy and replication operations.
|
|
|
|
func WithPool(p *ants.Pool) Option {
|
|
|
|
return func(c *cfg) {
|
|
|
|
c.taskPool = p
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithNodeLoader returns option to set NeoFS node load source.
|
|
|
|
func WithNodeLoader(l nodeLoader) Option {
|
|
|
|
return func(c *cfg) {
|
|
|
|
c.loader = l
|
|
|
|
}
|
|
|
|
}
|