2022-06-14 18:03:38 +00:00
|
|
|
package sealer
|
2022-05-18 13:47:08 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"math"
|
|
|
|
|
2022-06-15 10:06:22 +00:00
|
|
|
"github.com/filecoin-project/lotus/storage/sealer/storiface"
|
2022-05-18 13:47:08 +00:00
|
|
|
)
|
|
|
|
|
2022-05-18 14:11:07 +00:00
|
|
|
func NewLowestUtilizationAssigner() Assigner {
|
|
|
|
return &AssignerCommon{
|
|
|
|
WindowSel: LowestUtilizationWS,
|
2022-05-18 13:47:08 +00:00
|
|
|
}
|
2022-05-18 14:11:07 +00:00
|
|
|
}
|
2022-05-18 13:47:08 +00:00
|
|
|
|
2022-05-18 14:11:07 +00:00
|
|
|
func LowestUtilizationWS(sh *Scheduler, queueLen int, acceptableWindows [][]int, windows []SchedWindow) int {
|
2022-05-18 13:47:08 +00:00
|
|
|
scheduled := 0
|
|
|
|
rmQueue := make([]int, 0, queueLen)
|
|
|
|
workerUtil := map[storiface.WorkerID]float64{}
|
|
|
|
|
|
|
|
for sqi := 0; sqi < queueLen; sqi++ {
|
|
|
|
task := (*sh.SchedQueue)[sqi]
|
|
|
|
|
|
|
|
selectedWindow := -1
|
|
|
|
var needRes storiface.Resources
|
|
|
|
var info storiface.WorkerInfo
|
|
|
|
var bestWid storiface.WorkerID
|
|
|
|
bestUtilization := math.MaxFloat64 // smaller = better
|
|
|
|
|
|
|
|
for i, wnd := range acceptableWindows[task.IndexHeap] {
|
|
|
|
wid := sh.OpenWindows[wnd].Worker
|
|
|
|
w := sh.Workers[wid]
|
|
|
|
|
2022-05-23 20:18:41 +00:00
|
|
|
res := w.Info.Resources.ResourceSpec(task.Sector.ProofType, task.TaskType)
|
2022-05-18 13:47:08 +00:00
|
|
|
|
|
|
|
log.Debugf("SCHED try assign sqi:%d sector %d to window %d (awi:%d)", sqi, task.Sector.ID.Number, wnd, i)
|
|
|
|
|
|
|
|
// TODO: allow bigger windows
|
2022-05-27 14:01:32 +00:00
|
|
|
if !windows[wnd].Allocated.CanHandleRequest(task.SealTask(), res, wid, "schedAssign", w.Info) {
|
2022-05-18 13:47:08 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
wu, found := workerUtil[wid]
|
|
|
|
if !found {
|
|
|
|
wu = w.Utilization()
|
|
|
|
workerUtil[wid] = wu
|
|
|
|
}
|
|
|
|
if wu >= bestUtilization {
|
|
|
|
// acceptable worker list is initially sorted by utilization, and the initially-best workers
|
|
|
|
// will be assigned tasks first. This means that if we find a worker which isn't better, it
|
|
|
|
// probably means that the other workers aren't better either.
|
|
|
|
//
|
|
|
|
// utilization
|
|
|
|
// ^
|
|
|
|
// | /
|
|
|
|
// | \ /
|
|
|
|
// | \ /
|
|
|
|
// | *
|
|
|
|
// #--------> acceptableWindow index
|
|
|
|
//
|
|
|
|
// * -> we're here
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
info = w.Info
|
|
|
|
needRes = res
|
|
|
|
bestWid = wid
|
|
|
|
selectedWindow = wnd
|
|
|
|
bestUtilization = wu
|
|
|
|
}
|
|
|
|
|
|
|
|
if selectedWindow < 0 {
|
|
|
|
// all windows full
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Debugw("SCHED ASSIGNED",
|
|
|
|
"sqi", sqi,
|
|
|
|
"sector", task.Sector.ID.Number,
|
|
|
|
"task", task.TaskType,
|
|
|
|
"window", selectedWindow,
|
|
|
|
"worker", bestWid,
|
|
|
|
"utilization", bestUtilization)
|
|
|
|
|
2022-05-27 14:01:32 +00:00
|
|
|
workerUtil[bestWid] += windows[selectedWindow].Allocated.Add(task.SealTask(), info.Resources, needRes)
|
2022-05-18 13:47:08 +00:00
|
|
|
windows[selectedWindow].Todo = append(windows[selectedWindow].Todo, task)
|
|
|
|
|
|
|
|
rmQueue = append(rmQueue, sqi)
|
|
|
|
scheduled++
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(rmQueue) > 0 {
|
|
|
|
for i := len(rmQueue) - 1; i >= 0; i-- {
|
|
|
|
sh.SchedQueue.Remove(rmQueue[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-18 14:11:07 +00:00
|
|
|
return scheduled
|
2022-05-18 13:47:08 +00:00
|
|
|
}
|