forked from TrueCloudLab/frostfs-node
923f84722a
Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
14 lines
498 B
Go
14 lines
498 B
Go
package placementrouter
|
|
|
|
import (
|
|
cid "github.com/TrueCloudLab/frostfs-sdk-go/container/id"
|
|
"github.com/TrueCloudLab/frostfs-sdk-go/netmap"
|
|
)
|
|
|
|
// PlacementBuilder describes interface of NeoFS placement calculator.
|
|
type PlacementBuilder interface {
|
|
// BuildPlacement must compose and sort (according to a specific algorithm)
|
|
// storage nodes from the container by its identifier using network map
|
|
// of particular epoch.
|
|
BuildPlacement(epoch uint64, cnr cid.ID) ([][]netmap.NodeInfo, error)
|
|
}
|