85fb964afe
* Deduplicate NodeID list prior to fetching IPs. * Use NodeSelectionCache for fetching reliable IPs. * Return number of segements, reliable pieces and all pieces. Change-Id: I13e679caab275488b4037624b840a4068dad9589
162 lines
4.3 KiB
Go
162 lines
4.3 KiB
Go
// Copyright (C) 2020 Storj Labs, Incache.
|
|
// See LICENSE for copying information.
|
|
|
|
package nodeselection
|
|
|
|
import (
|
|
"context"
|
|
"sync"
|
|
|
|
"github.com/zeebo/errs"
|
|
|
|
"storj.io/common/storj"
|
|
)
|
|
|
|
// ErrNotEnoughNodes is when selecting nodes failed with the given parameters.
|
|
var ErrNotEnoughNodes = errs.Class("not enough nodes")
|
|
|
|
// State defines a node selector state that allows for selection.
|
|
type State struct {
|
|
mu sync.RWMutex
|
|
|
|
stats Stats
|
|
// netByID returns subnet based on storj.NodeID
|
|
netByID map[storj.NodeID]string
|
|
// ipPortByID returns IP based on storj.NodeID
|
|
ipPortByID map[storj.NodeID]string
|
|
// nonDistinct contains selectors for non-distinct selection.
|
|
nonDistinct struct {
|
|
Reputable SelectByID
|
|
New SelectByID
|
|
}
|
|
// distinct contains selectors for distinct slection.
|
|
distinct struct {
|
|
Reputable SelectBySubnet
|
|
New SelectBySubnet
|
|
}
|
|
}
|
|
|
|
// Stats contains state information.
|
|
type Stats struct {
|
|
New int
|
|
Reputable int
|
|
|
|
NewDistinct int
|
|
ReputableDistinct int
|
|
}
|
|
|
|
// Selector defines interface for selecting nodes.
|
|
type Selector interface {
|
|
// Count returns the number of maximum number of nodes that it can return.
|
|
Count() int
|
|
// Select selects up-to n nodes and excluding the IDs.
|
|
// When excludedNets is non-nil it will ensure that selected network is unique.
|
|
Select(n int, excludedIDs []storj.NodeID, excludeNets map[string]struct{}) []*Node
|
|
}
|
|
|
|
// NewState returns a state based on the input.
|
|
func NewState(reputableNodes, newNodes []*Node) *State {
|
|
state := &State{}
|
|
|
|
state.netByID = map[storj.NodeID]string{}
|
|
state.ipPortByID = map[storj.NodeID]string{}
|
|
for _, node := range reputableNodes {
|
|
state.netByID[node.ID] = node.LastNet
|
|
state.ipPortByID[node.ID] = node.LastIPPort
|
|
}
|
|
for _, node := range newNodes {
|
|
state.netByID[node.ID] = node.LastNet
|
|
state.ipPortByID[node.ID] = node.LastIPPort
|
|
}
|
|
|
|
state.nonDistinct.Reputable = SelectByID(reputableNodes)
|
|
state.nonDistinct.New = SelectByID(newNodes)
|
|
|
|
state.distinct.Reputable = SelectBySubnetFromNodes(reputableNodes)
|
|
state.distinct.New = SelectBySubnetFromNodes(newNodes)
|
|
|
|
state.stats = Stats{
|
|
New: state.nonDistinct.New.Count(),
|
|
Reputable: state.nonDistinct.Reputable.Count(),
|
|
|
|
NewDistinct: state.distinct.New.Count(),
|
|
ReputableDistinct: state.distinct.Reputable.Count(),
|
|
}
|
|
|
|
return state
|
|
}
|
|
|
|
// Request contains arguments for State.Request.
|
|
type Request struct {
|
|
Count int
|
|
NewFraction float64
|
|
Distinct bool
|
|
ExcludedIDs []storj.NodeID
|
|
}
|
|
|
|
// Select selects requestedCount nodes where there will be newFraction nodes.
|
|
func (state *State) Select(ctx context.Context, request Request) (_ []*Node, err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
|
|
state.mu.RLock()
|
|
defer state.mu.RUnlock()
|
|
|
|
totalCount := request.Count
|
|
newCount := int(float64(totalCount) * request.NewFraction)
|
|
|
|
var selected []*Node
|
|
var excludedNets map[string]struct{}
|
|
|
|
var reputableNodes Selector
|
|
var newNodes Selector
|
|
|
|
if request.Distinct {
|
|
excludedNets = map[string]struct{}{}
|
|
for _, id := range request.ExcludedIDs {
|
|
if net, ok := state.netByID[id]; ok {
|
|
excludedNets[net] = struct{}{}
|
|
}
|
|
}
|
|
reputableNodes = state.distinct.Reputable
|
|
newNodes = state.distinct.New
|
|
} else {
|
|
reputableNodes = state.nonDistinct.Reputable
|
|
newNodes = state.nonDistinct.New
|
|
}
|
|
|
|
// Get a random selection of new nodes out of the cache first so that if there aren't
|
|
// enough new nodes on the network, we can fall back to using reputable nodes instead.
|
|
selected = append(selected,
|
|
newNodes.Select(newCount, request.ExcludedIDs, excludedNets)...)
|
|
|
|
// Get all the remaining reputable nodes.
|
|
reputableCount := totalCount - len(selected)
|
|
selected = append(selected,
|
|
reputableNodes.Select(reputableCount, request.ExcludedIDs, excludedNets)...)
|
|
|
|
if len(selected) < totalCount {
|
|
return selected, ErrNotEnoughNodes.New("requested from cache %d, found %d", totalCount, len(selected))
|
|
}
|
|
return selected, nil
|
|
}
|
|
|
|
// IPs returns node ip:port for nodes that are in state.
|
|
func (state *State) IPs(ctx context.Context, nodes []storj.NodeID) map[storj.NodeID]string {
|
|
defer mon.Task()(&ctx)(nil)
|
|
xs := make(map[storj.NodeID]string, len(nodes))
|
|
for _, nodeID := range nodes {
|
|
if ip, exists := state.ipPortByID[nodeID]; exists {
|
|
xs[nodeID] = ip
|
|
}
|
|
}
|
|
return xs
|
|
}
|
|
|
|
// Stats returns state information.
|
|
func (state *State) Stats() Stats {
|
|
state.mu.RLock()
|
|
defer state.mu.RUnlock()
|
|
|
|
return state.stats
|
|
}
|