gofmt
This commit is contained in:
parent
cb0bb31d06
commit
780596477c
6
sched.go
6
sched.go
@ -394,7 +394,7 @@ func canHandleRequest(needRes Resources, spt abi.RegisteredProof, wid WorkerID,
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if active.cpuUse + uint64(needRes.Threads) > res.CPUs {
|
if active.cpuUse+uint64(needRes.Threads) > res.CPUs {
|
||||||
log.Debugf("sched: not scheduling on worker %d; not enough threads, need %d, %d in use, target %d", wid, needRes.Threads, active.cpuUse, res.CPUs)
|
log.Debugf("sched: not scheduling on worker %d; not enough threads, need %d, %d in use, target %d", wid, needRes.Threads, active.cpuUse, res.CPUs)
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
@ -416,12 +416,12 @@ func (a *activeResources) utilization(wr storiface.WorkerResources) float64 {
|
|||||||
cpu := float64(a.cpuUse) / float64(wr.CPUs)
|
cpu := float64(a.cpuUse) / float64(wr.CPUs)
|
||||||
max = cpu
|
max = cpu
|
||||||
|
|
||||||
memMin := float64(a.memUsedMin + wr.MemReserved) / float64(wr.MemPhysical)
|
memMin := float64(a.memUsedMin+wr.MemReserved) / float64(wr.MemPhysical)
|
||||||
if memMin > max {
|
if memMin > max {
|
||||||
max = memMin
|
max = memMin
|
||||||
}
|
}
|
||||||
|
|
||||||
memMax := float64(a.memUsedMax + wr.MemReserved) / float64(wr.MemPhysical + wr.MemSwap)
|
memMax := float64(a.memUsedMax+wr.MemReserved) / float64(wr.MemPhysical+wr.MemSwap)
|
||||||
if memMax > max {
|
if memMax > max {
|
||||||
max = memMax
|
max = memMax
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user