open-nomad/scheduler/context.go

99 lines
2.2 KiB
Go
Raw Normal View History

2015-08-13 17:05:54 +00:00
package scheduler
2015-08-13 18:54:59 +00:00
import (
"log"
"github.com/hashicorp/nomad/nomad/structs"
)
2015-08-13 17:13:11 +00:00
// Context is used to track contextual information used for placement
type Context interface {
2015-08-13 18:33:58 +00:00
// State is used to inspect the current global state
State() State
2015-08-13 18:54:59 +00:00
// Plan returns the current plan
Plan() *structs.Plan
// Logger provides a way to log
Logger() *log.Logger
// Metrics returns the current metrics
Metrics() *structs.AllocMetric
// Reset is invoked after making a placement
Reset()
// ProposedAllocs returns the proposed allocations for a node
// which is the existing allocations, removing evictions, and
// adding any planned placements.
ProposedAllocs(nodeID string) ([]*structs.Allocation, error)
2015-08-13 17:13:11 +00:00
}
2015-08-13 17:05:54 +00:00
// EvalContext is a Context used during an Evaluation
type EvalContext struct {
state State
plan *structs.Plan
logger *log.Logger
metrics *structs.AllocMetric
2015-08-13 17:05:54 +00:00
}
// NewEvalContext constructs a new EvalContext
2015-08-13 18:54:59 +00:00
func NewEvalContext(s State, p *structs.Plan, log *log.Logger) *EvalContext {
ctx := &EvalContext{
state: s,
plan: p,
logger: log,
metrics: new(structs.AllocMetric),
2015-08-13 18:54:59 +00:00
}
2015-08-13 17:05:54 +00:00
return ctx
}
2015-08-13 18:33:58 +00:00
func (e *EvalContext) State() State {
return e.state
}
2015-08-13 18:54:59 +00:00
func (e *EvalContext) Plan() *structs.Plan {
return e.plan
}
func (e *EvalContext) Logger() *log.Logger {
return e.logger
}
func (e *EvalContext) Metrics() *structs.AllocMetric {
return e.metrics
}
2015-08-13 18:33:58 +00:00
func (e *EvalContext) SetState(s State) {
e.state = s
}
func (e *EvalContext) Reset() {
e.metrics = new(structs.AllocMetric)
}
func (e *EvalContext) ProposedAllocs(nodeID string) ([]*structs.Allocation, error) {
// Get the existing allocations
existingAlloc, err := e.state.AllocsByNode(nodeID)
if err != nil {
return nil, err
}
2015-08-23 01:30:49 +00:00
// Filter on alloc state
existingAlloc = structs.FilterTerminalAllocs(existingAlloc)
// Determine the proposed allocation by first removing allocations
// that are planned evictions and adding the new allocations.
proposed := existingAlloc
2015-08-26 00:06:06 +00:00
if update := e.plan.NodeUpdate[nodeID]; len(update) > 0 {
proposed = structs.RemoveAllocs(existingAlloc, update)
}
proposed = append(proposed, e.plan.NodeAllocation[nodeID]...)
// Ensure the return is not nil
if proposed == nil {
proposed = make([]*structs.Allocation, 0)
}
return proposed, nil
}