open-nomad/scheduler/system_sched.go

381 lines
12 KiB
Go
Raw Normal View History

2015-10-14 23:43:06 +00:00
package scheduler
import (
"fmt"
2018-09-15 23:23:13 +00:00
log "github.com/hashicorp/go-hclog"
2017-02-08 04:31:23 +00:00
memdb "github.com/hashicorp/go-memdb"
"github.com/hashicorp/nomad/helper/uuid"
2015-10-14 23:43:06 +00:00
"github.com/hashicorp/nomad/nomad/structs"
)
const (
// maxSystemScheduleAttempts is used to limit the number of times
// we will attempt to schedule if we continue to hit conflicts for system
// jobs.
maxSystemScheduleAttempts = 5
2015-10-14 23:43:06 +00:00
)
// SystemScheduler is used for 'system' jobs. This scheduler is
// designed for services that should be run on every client.
type SystemScheduler struct {
2018-09-15 23:23:13 +00:00
logger log.Logger
2015-10-14 23:43:06 +00:00
state State
planner Planner
eval *structs.Evaluation
job *structs.Job
plan *structs.Plan
planResult *structs.PlanResult
ctx *EvalContext
stack *SystemStack
nodes []*structs.Node
nodesByDC map[string]int
2015-10-14 23:43:06 +00:00
limitReached bool
nextEval *structs.Evaluation
2016-06-15 19:58:19 +00:00
failedTGAllocs map[string]*structs.AllocMetric
queuedAllocs map[string]int
2015-10-14 23:43:06 +00:00
}
// NewSystemScheduler is a factory function to instantiate a new system
// scheduler.
2018-09-15 23:23:13 +00:00
func NewSystemScheduler(logger log.Logger, state State, planner Planner) Scheduler {
2015-10-14 23:43:06 +00:00
return &SystemScheduler{
2018-09-15 23:23:13 +00:00
logger: logger.Named("system_sched"),
state: state,
planner: planner,
2015-10-14 23:43:06 +00:00
}
}
// Process is used to handle a single evaluation.
func (s *SystemScheduler) Process(eval *structs.Evaluation) error {
// Store the evaluation
s.eval = eval
2018-09-15 23:23:13 +00:00
// Update our logger with the eval's information
s.logger = s.logger.With("eval_id", eval.ID, "job_id", eval.JobID, "namespace", eval.Namespace)
2015-10-14 23:43:06 +00:00
// Verify the evaluation trigger reason is understood
switch eval.TriggeredBy {
case structs.EvalTriggerJobRegister, structs.EvalTriggerNodeUpdate, structs.EvalTriggerFailedFollowUp,
structs.EvalTriggerJobDeregister, structs.EvalTriggerRollingUpdate, structs.EvalTriggerPreemption,
structs.EvalTriggerDeploymentWatcher, structs.EvalTriggerNodeDrain:
2015-10-14 23:43:06 +00:00
default:
desc := fmt.Sprintf("scheduler cannot handle '%s' evaluation reason",
eval.TriggeredBy)
return setStatus(s.logger, s.planner, s.eval, s.nextEval, nil, s.failedTGAllocs, structs.EvalStatusFailed, desc,
2017-07-06 00:13:45 +00:00
s.queuedAllocs, "")
2015-10-14 23:43:06 +00:00
}
// Retry up to the maxSystemScheduleAttempts and reset if progress is made.
progress := func() bool { return progressMade(s.planResult) }
if err := retryMax(maxSystemScheduleAttempts, s.process, progress); err != nil {
2015-10-14 23:43:06 +00:00
if statusErr, ok := err.(*SetStatusError); ok {
return setStatus(s.logger, s.planner, s.eval, s.nextEval, nil, s.failedTGAllocs, statusErr.EvalStatus, err.Error(),
2017-07-06 00:13:45 +00:00
s.queuedAllocs, "")
2015-10-14 23:43:06 +00:00
}
return err
}
// Update the status to complete
return setStatus(s.logger, s.planner, s.eval, s.nextEval, nil, s.failedTGAllocs, structs.EvalStatusComplete, "",
2017-07-06 00:13:45 +00:00
s.queuedAllocs, "")
2015-10-14 23:43:06 +00:00
}
// process is wrapped in retryMax to iteratively run the handler until we have no
// further work or we've made the maximum number of attempts.
func (s *SystemScheduler) process() (bool, error) {
// Lookup the Job by ID
var err error
2017-02-08 04:31:23 +00:00
ws := memdb.NewWatchSet()
2017-09-07 23:56:15 +00:00
s.job, err = s.state.JobByID(ws, s.eval.Namespace, s.eval.JobID)
2015-10-14 23:43:06 +00:00
if err != nil {
return false, fmt.Errorf("failed to get job '%s': %v",
s.eval.JobID, err)
}
numTaskGroups := 0
2017-04-19 17:54:03 +00:00
if !s.job.Stopped() {
numTaskGroups = len(s.job.TaskGroups)
}
s.queuedAllocs = make(map[string]int, numTaskGroups)
2015-10-14 23:43:06 +00:00
// Get the ready nodes in the required datacenters
2017-04-19 17:54:03 +00:00
if !s.job.Stopped() {
2016-01-04 22:23:06 +00:00
s.nodes, s.nodesByDC, err = readyNodesInDCs(s.state, s.job.Datacenters)
2015-10-14 23:43:06 +00:00
if err != nil {
return false, fmt.Errorf("failed to get ready nodes: %v", err)
}
}
// Create a plan
s.plan = s.eval.MakePlan(s.job)
// Reset the failed allocations
2016-06-15 19:58:19 +00:00
s.failedTGAllocs = nil
2015-10-14 23:43:06 +00:00
// Create an evaluation context
s.ctx = NewEvalContext(s.state, s.plan, s.logger)
// Construct the placement stack
s.stack = NewSystemStack(s.ctx)
2017-04-19 17:54:03 +00:00
if !s.job.Stopped() {
2015-10-14 23:43:06 +00:00
s.stack.SetJob(s.job)
}
// Compute the target job allocations
if err := s.computeJobAllocs(); err != nil {
2018-09-15 23:23:13 +00:00
s.logger.Error("failed to compute job allocations", "error", err)
2015-10-14 23:43:06 +00:00
return false, err
}
// If the plan is a no-op, we can bail. If AnnotatePlan is set submit the plan
// anyways to get the annotations.
if s.plan.IsNoOp() && !s.eval.AnnotatePlan {
2015-10-14 23:43:06 +00:00
return true, nil
}
// If the limit of placements was reached we need to create an evaluation
// to pickup from here after the stagger period.
if s.limitReached && s.nextEval == nil {
s.nextEval = s.eval.NextRollingEval(s.job.Update.Stagger)
if err := s.planner.CreateEval(s.nextEval); err != nil {
2018-09-15 23:23:13 +00:00
s.logger.Error("failed to make next eval for rolling update", "error", err)
2015-10-14 23:43:06 +00:00
return false, err
}
2018-09-15 23:23:13 +00:00
s.logger.Debug("rolling update limit reached, next eval created", "next_eval_id", s.nextEval.ID)
2015-10-14 23:43:06 +00:00
}
// Submit the plan
result, newState, err := s.planner.SubmitPlan(s.plan)
s.planResult = result
2015-10-14 23:43:06 +00:00
if err != nil {
return false, err
}
2016-07-22 06:13:07 +00:00
// Decrement the number of allocations pending per task group based on the
// number of allocations successfully placed
2016-07-22 21:53:49 +00:00
adjustQueuedAllocations(s.logger, result, s.queuedAllocs)
2015-10-14 23:43:06 +00:00
// If we got a state refresh, try again since we have stale data
if newState != nil {
2018-09-15 23:23:13 +00:00
s.logger.Debug("refresh forced")
2015-10-14 23:43:06 +00:00
s.state = newState
return false, nil
}
// Try again if the plan was not fully committed, potential conflict
fullCommit, expected, actual := result.FullCommit(s.plan)
if !fullCommit {
2018-09-15 23:23:13 +00:00
s.logger.Debug("plan didn't fully commit", "attempted", expected, "placed", actual)
2015-10-14 23:43:06 +00:00
return false, nil
}
// Success!
return true, nil
}
// computeJobAllocs is used to reconcile differences between the job,
// existing allocations and node status to update the allocations.
func (s *SystemScheduler) computeJobAllocs() error {
// Lookup the allocations by JobID
2017-02-08 04:31:23 +00:00
ws := memdb.NewWatchSet()
2017-09-07 23:56:15 +00:00
allocs, err := s.state.AllocsByJob(ws, s.eval.Namespace, s.eval.JobID, true)
2015-10-14 23:43:06 +00:00
if err != nil {
return fmt.Errorf("failed to get allocs for job '%s': %v",
s.eval.JobID, err)
}
// Determine the tainted nodes containing job allocs
tainted, err := taintedNodes(s.state, allocs)
if err != nil {
return fmt.Errorf("failed to get tainted nodes for job '%s': %v",
s.eval.JobID, err)
}
2016-08-09 21:48:25 +00:00
// Update the allocations which are in pending/running state on tainted
// nodes to lost
updateNonTerminalAllocsToLost(s.plan, tainted, allocs)
// Filter out the allocations in a terminal state
allocs, terminalAllocs := structs.FilterTerminalAllocs(allocs)
2015-10-14 23:43:06 +00:00
// Diff the required and existing allocations
diff := diffSystemAllocs(s.job, s.nodes, tainted, allocs, terminalAllocs)
2018-09-15 23:23:13 +00:00
s.logger.Debug("reconciled current state with desired state",
"place", len(diff.place), "update", len(diff.update),
"migrate", len(diff.migrate), "stop", len(diff.stop),
"ignore", len(diff.ignore), "lost", len(diff.lost))
2015-10-14 23:43:06 +00:00
// Add all the allocs to stop
for _, e := range diff.stop {
s.plan.AppendUpdate(e.Alloc, structs.AllocDesiredStatusStop, allocNotNeeded, "")
}
// Add all the allocs to migrate
for _, e := range diff.migrate {
s.plan.AppendUpdate(e.Alloc, structs.AllocDesiredStatusStop, allocNodeTainted, "")
}
2017-12-13 17:36:03 +00:00
// Lost allocations should be transitioned to desired status stop and client
// status lost.
for _, e := range diff.lost {
s.plan.AppendUpdate(e.Alloc, structs.AllocDesiredStatusStop, allocLost, structs.AllocClientStatusLost)
2015-10-14 23:43:06 +00:00
}
// Attempt to do the upgrades in place
destructiveUpdates, inplaceUpdates := inplaceUpdate(s.ctx, s.eval, s.job, s.stack, diff.update)
diff.update = destructiveUpdates
if s.eval.AnnotatePlan {
s.plan.Annotations = &structs.PlanAnnotations{
DesiredTGUpdates: desiredUpdates(diff, inplaceUpdates, destructiveUpdates),
}
}
2015-10-14 23:43:06 +00:00
// Check if a rolling upgrade strategy is being used
limit := len(diff.update)
2017-04-19 17:54:03 +00:00
if !s.job.Stopped() && s.job.Update.Rolling() {
2015-10-14 23:43:06 +00:00
limit = s.job.Update.MaxParallel
}
// Treat non in-place updates as an eviction and new placement.
s.limitReached = evictAndPlace(s.ctx, diff, diff.update, allocUpdating, &limit)
2015-10-14 23:43:06 +00:00
// Nothing remaining to do if placement is not required
if len(diff.place) == 0 {
2017-04-19 17:54:03 +00:00
if !s.job.Stopped() {
for _, tg := range s.job.TaskGroups {
s.queuedAllocs[tg.Name] = 0
}
}
2015-10-14 23:43:06 +00:00
return nil
}
2016-07-22 06:13:07 +00:00
// Record the number of allocations that needs to be placed per Task Group
for _, allocTuple := range diff.place {
2016-07-22 06:13:07 +00:00
s.queuedAllocs[allocTuple.TaskGroup.Name] += 1
}
2015-10-14 23:43:06 +00:00
// Compute the placements
return s.computePlacements(diff.place)
}
// computePlacements computes placements for allocations
2015-10-16 18:43:09 +00:00
func (s *SystemScheduler) computePlacements(place []allocTuple) error {
2015-10-14 23:43:06 +00:00
nodeByID := make(map[string]*structs.Node, len(s.nodes))
for _, node := range s.nodes {
nodeByID[node.ID] = node
}
nodes := make([]*structs.Node, 1)
for _, missing := range place {
node, ok := nodeByID[missing.Alloc.NodeID]
2015-10-14 23:43:06 +00:00
if !ok {
return fmt.Errorf("could not find node %q", missing.Alloc.NodeID)
2015-10-14 23:43:06 +00:00
}
// Update the set of placement nodes
2015-10-14 23:43:06 +00:00
nodes[0] = node
s.stack.SetNodes(nodes)
// Attempt to match the task group
2018-10-02 20:36:04 +00:00
option := s.stack.Select(missing.TaskGroup, nil)
2015-10-14 23:43:06 +00:00
if option == nil {
2017-12-13 17:36:03 +00:00
// If nodes were filtered because of constraint mismatches and we
// couldn't create an allocation then decrementing queued for that
// task group
if s.ctx.metrics.NodesFiltered > 0 {
s.queuedAllocs[missing.TaskGroup.Name] -= 1
// If we are annotating the plan, then decrement the desired
// placements based on whether the node meets the constraints
if s.eval.AnnotatePlan && s.plan.Annotations != nil &&
s.plan.Annotations.DesiredTGUpdates != nil {
desired := s.plan.Annotations.DesiredTGUpdates[missing.TaskGroup.Name]
desired.Place -= 1
}
}
2015-10-14 23:43:06 +00:00
// Check if this task group has already failed
2016-06-15 19:58:19 +00:00
if metric, ok := s.failedTGAllocs[missing.TaskGroup.Name]; ok {
metric.CoalescedFailures += 1
2015-10-14 23:43:06 +00:00
continue
}
}
2016-01-04 22:23:06 +00:00
// Store the available nodes by datacenter
s.ctx.Metrics().NodesAvailable = s.nodesByDC
2018-08-18 01:11:07 +00:00
// Compute top K scoring node metadata
s.ctx.Metrics().PopulateScoreMetaData()
2015-10-14 23:43:06 +00:00
// Set fields based on if we found an allocation option
if option != nil {
2018-10-02 20:36:04 +00:00
resources := &structs.AllocatedResources{
Tasks: option.TaskResources,
Shared: structs.AllocatedSharedResources{
2018-10-16 22:34:32 +00:00
DiskMB: int64(missing.TaskGroup.EphemeralDisk.SizeMB),
2018-10-02 20:36:04 +00:00
},
}
// Create an allocation for this
alloc := &structs.Allocation{
2018-10-02 20:36:04 +00:00
ID: uuid.Generate(),
Namespace: s.job.Namespace,
EvalID: s.eval.ID,
Name: missing.Name,
JobID: s.job.ID,
TaskGroup: missing.TaskGroup.Name,
Metrics: s.ctx.Metrics(),
NodeID: option.Node.ID,
TaskResources: resources.OldTaskResources(),
AllocatedResources: resources,
DesiredStatus: structs.AllocDesiredStatusRun,
ClientStatus: structs.AllocClientStatusPending,
2016-08-29 19:49:52 +00:00
SharedResources: &structs.Resources{
DiskMB: missing.TaskGroup.EphemeralDisk.SizeMB,
2016-08-29 19:49:52 +00:00
},
}
// If the new allocation is replacing an older allocation then we
// set the record the older allocation id so that they are chained
if missing.Alloc != nil {
alloc.PreviousAllocation = missing.Alloc.ID
}
// If this placement involves preemption, set DesiredState to evict for those allocations
if option.PreemptedAllocs != nil {
var preemptedAllocIDs []string
for _, stop := range option.PreemptedAllocs {
s.plan.AppendPreemptedAlloc(stop, structs.AllocDesiredStatusEvict, alloc.ID)
preemptedAllocIDs = append(preemptedAllocIDs, stop.ID)
if s.eval.AnnotatePlan && s.plan.Annotations != nil {
s.plan.Annotations.PreemptedAllocs = append(s.plan.Annotations.PreemptedAllocs, stop.Stub())
if s.plan.Annotations.DesiredTGUpdates != nil {
desired := s.plan.Annotations.DesiredTGUpdates[missing.TaskGroup.Name]
desired.Preemptions += 1
}
}
}
alloc.PreemptedAllocations = preemptedAllocIDs
}
2015-10-14 23:43:06 +00:00
s.plan.AppendAlloc(alloc)
} else {
// Lazy initialize the failed map
2016-06-15 19:58:19 +00:00
if s.failedTGAllocs == nil {
s.failedTGAllocs = make(map[string]*structs.AllocMetric)
}
2016-06-15 19:58:19 +00:00
s.failedTGAllocs[missing.TaskGroup.Name] = s.ctx.Metrics()
2015-10-14 23:43:06 +00:00
}
}
2015-10-14 23:43:06 +00:00
return nil
}