open-nomad/scheduler/generic_sched.go

299 lines
8.8 KiB
Go
Raw Normal View History

package scheduler
import (
"fmt"
"log"
"github.com/hashicorp/nomad/nomad/structs"
)
2015-08-13 22:17:24 +00:00
const (
// maxServiceScheduleAttempts is used to limit the number of times
// we will attempt to schedule if we continue to hit conflicts for services.
maxServiceScheduleAttempts = 5
// maxBatchScheduleAttempts is used to limit the number of times
// we will attempt to schedule if we continue to hit conflicts for batch.
maxBatchScheduleAttempts = 2
2015-08-26 00:06:06 +00:00
// allocNotNeeded is the status used when a job no longer requires an allocation
allocNotNeeded = "alloc not needed due to job update"
// allocMigrating is the status used when we must migrate an allocation
allocMigrating = "alloc is being migrated"
// allocUpdating is the status used when a job requires an update
allocUpdating = "alloc is being updated due to job update"
// allocInPlace is the status used when speculating on an in-place update
allocInPlace = "alloc updating in-place"
2015-08-13 22:17:24 +00:00
)
// SetStatusError is used to set the status of the evaluation to the given error
type SetStatusError struct {
Err error
EvalStatus string
}
func (s *SetStatusError) Error() string {
return s.Err.Error()
}
// GenericScheduler is used for 'service' and 'batch' type jobs. This scheduler is
// designed for long-lived services, and as such spends more time attemping
// to make a high quality placement. This is the primary scheduler for
// most workloads. It also supports a 'batch' mode to optimize for fast decision
// making at the cost of quality.
type GenericScheduler struct {
logger *log.Logger
state State
planner Planner
batch bool
2015-08-14 00:11:20 +00:00
2015-09-07 18:34:59 +00:00
eval *structs.Evaluation
job *structs.Job
2015-09-07 18:34:59 +00:00
plan *structs.Plan
ctx *EvalContext
stack *GenericStack
limitReached bool
nextEval *structs.Evaluation
}
// NewServiceScheduler is a factory function to instantiate a new service scheduler
func NewServiceScheduler(logger *log.Logger, state State, planner Planner) Scheduler {
s := &GenericScheduler{
logger: logger,
state: state,
planner: planner,
batch: false,
}
return s
}
// NewBatchScheduler is a factory function to instantiate a new batch scheduler
func NewBatchScheduler(logger *log.Logger, state State, planner Planner) Scheduler {
s := &GenericScheduler{
logger: logger,
state: state,
planner: planner,
batch: true,
}
return s
}
// Process is used to handle a single evaluation
func (s *GenericScheduler) Process(eval *structs.Evaluation) error {
// Store the evaluation
s.eval = eval
2015-08-14 00:40:23 +00:00
// Verify the evaluation trigger reason is understood
switch eval.TriggeredBy {
2015-08-14 00:40:23 +00:00
case structs.EvalTriggerJobRegister, structs.EvalTriggerNodeUpdate,
structs.EvalTriggerJobDeregister, structs.EvalTriggerRollingUpdate:
default:
desc := fmt.Sprintf("scheduler cannot handle '%s' evaluation reason",
eval.TriggeredBy)
return setStatus(s.logger, s.planner, s.eval, s.nextEval, structs.EvalStatusFailed, desc)
}
2015-08-14 00:40:23 +00:00
// Retry up to the maxScheduleAttempts
limit := maxServiceScheduleAttempts
if s.batch {
limit = maxBatchScheduleAttempts
}
if err := retryMax(limit, s.process); err != nil {
if statusErr, ok := err.(*SetStatusError); ok {
return setStatus(s.logger, s.planner, s.eval, s.nextEval, statusErr.EvalStatus, err.Error())
}
return err
}
// Update the status to complete
return setStatus(s.logger, s.planner, s.eval, s.nextEval, structs.EvalStatusComplete, "")
}
2015-08-14 00:40:23 +00:00
// process is wrapped in retryMax to iteratively run the handler until we have no
2015-08-14 00:11:20 +00:00
// further work or we've made the maximum number of attempts.
func (s *GenericScheduler) process() (bool, error) {
2015-08-11 23:41:48 +00:00
// Lookup the Job by ID
var err error
s.job, err = s.state.JobByID(s.eval.JobID)
2015-08-11 23:41:48 +00:00
if err != nil {
2015-08-14 00:40:23 +00:00
return false, fmt.Errorf("failed to get job '%s': %v",
2015-08-14 00:11:20 +00:00
s.eval.JobID, err)
}
// Create a plan
s.plan = s.eval.MakePlan(s.job)
2015-08-14 00:11:20 +00:00
2015-09-07 18:34:59 +00:00
// Create an evaluation context
s.ctx = NewEvalContext(s.state, s.plan, s.logger)
// Construct the placement stack
s.stack = NewGenericStack(s.batch, s.ctx, nil)
if s.job != nil {
s.stack.SetJob(s.job)
}
2015-09-07 18:34:59 +00:00
2015-08-14 00:40:23 +00:00
// Compute the target job allocations
if err := s.computeJobAllocs(); err != nil {
2015-08-14 00:11:20 +00:00
s.logger.Printf("[ERR] sched: %#v: %v", s.eval, err)
2015-08-14 00:40:23 +00:00
return false, err
2015-08-11 23:41:48 +00:00
}
2015-08-14 01:16:32 +00:00
// If the plan is a no-op, we can bail
if s.plan.IsNoOp() {
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 {
2015-10-07 10:18:19 +00:00
s.logger.Printf("[ERR] sched: %#v failed to make next eval for rolling update: %v", s.eval, err)
return false, err
}
s.logger.Printf("[DEBUG] sched: %#v: rolling update limit reached, next eval '%s' created", s.eval, s.nextEval.ID)
}
2015-08-14 00:11:20 +00:00
// Submit the plan
result, newState, err := s.planner.SubmitPlan(s.plan)
if err != nil {
2015-08-14 00:40:23 +00:00
return false, err
2015-08-14 00:11:20 +00:00
}
// If we got a state refresh, try again since we have stale data
if newState != nil {
s.logger.Printf("[DEBUG] sched: %#v: refresh forced", s.eval)
s.state = newState
2015-08-14 00:40:23 +00:00
return false, nil
2015-08-14 00:11:20 +00:00
}
// Try again if the plan was not fully committed, potential conflict
fullCommit, expected, actual := result.FullCommit(s.plan)
if !fullCommit {
s.logger.Printf("[DEBUG] sched: %#v: attempted %d placements, %d placed",
s.eval, expected, actual)
2015-08-14 00:40:23 +00:00
return false, nil
2015-08-14 00:11:20 +00:00
}
2015-08-14 00:40:23 +00:00
// Success!
return true, nil
2015-08-14 00:11:20 +00:00
}
// computeJobAllocs is used to reconcile differences between the job,
// existing allocations and node status to update the allocations.
func (s *GenericScheduler) computeJobAllocs() error {
2015-08-14 00:40:23 +00:00
// Materialize all the task groups, job could be missing if deregistered
var groups map[string]*structs.TaskGroup
if s.job != nil {
groups = materializeTaskGroups(s.job)
2015-08-11 23:41:48 +00:00
}
// Lookup the allocations by JobID
2015-08-14 00:11:20 +00:00
allocs, err := s.state.AllocsByJob(s.eval.JobID)
2015-08-11 23:41:48 +00:00
if err != nil {
return fmt.Errorf("failed to get allocs for job '%s': %v",
2015-08-14 00:11:20 +00:00
s.eval.JobID, err)
2015-08-11 23:41:48 +00:00
}
// Filter out the allocations in a terminal state
allocs = structs.FilterTerminalAllocs(allocs)
2015-08-13 23:48:34 +00:00
// Determine the tainted nodes containing job allocs
2015-08-14 00:51:31 +00:00
tainted, err := taintedNodes(s.state, allocs)
2015-08-13 23:48:34 +00:00
if err != nil {
return fmt.Errorf("failed to get tainted nodes for job '%s': %v",
2015-08-14 00:11:20 +00:00
s.eval.JobID, err)
2015-08-13 23:48:34 +00:00
}
2015-08-13 22:57:49 +00:00
2015-08-11 23:41:48 +00:00
// Diff the required and existing allocations
diff := diffAllocs(s.job, tainted, groups, allocs)
2015-08-14 01:28:09 +00:00
s.logger.Printf("[DEBUG] sched: %#v: %#v", s.eval, diff)
2015-08-11 23:41:48 +00:00
2015-08-26 00:06:06 +00:00
// Add all the allocs to stop
for _, e := range diff.stop {
s.plan.AppendUpdate(e.Alloc, structs.AllocDesiredStatusStop, allocNotNeeded)
2015-08-14 01:16:32 +00:00
}
2015-08-14 00:11:20 +00:00
// Attempt to do the upgrades in place
diff.update = inplaceUpdate(s.ctx, s.eval, s.job, s.stack, diff.update)
2015-08-11 23:41:48 +00:00
// Check if a rolling upgrade strategy is being used
limit := len(diff.update) + len(diff.migrate)
if s.job != nil && s.job.Update.Rolling() {
limit = s.job.Update.MaxParallel
2015-08-14 01:16:32 +00:00
}
2015-08-11 23:41:48 +00:00
// Treat migrations as an eviction and a new placement.
s.limitReached = evictAndPlace(s.ctx, diff, diff.migrate, allocUpdating, &limit)
// Treat non in-place updates as an eviction and new placement.
s.limitReached = evictAndPlace(s.ctx, diff, diff.update, allocUpdating, &limit)
2015-08-14 01:05:31 +00:00
// Nothing remaining to do if placement is not required
2015-08-14 01:28:09 +00:00
if len(diff.place) == 0 {
2015-08-14 01:05:31 +00:00
return nil
}
2015-08-14 01:16:32 +00:00
// Compute the placements
return s.computePlacements(diff.place)
2015-08-14 01:16:32 +00:00
}
// computePlacements computes placements for allocations
func (s *GenericScheduler) computePlacements(place []allocTuple) error {
2015-08-14 00:48:26 +00:00
// Get the base nodes
nodes, err := readyNodesInDCs(s.state, s.job.Datacenters)
2015-08-13 22:17:24 +00:00
if err != nil {
2015-08-14 00:48:26 +00:00
return err
2015-08-13 22:17:24 +00:00
}
2015-09-07 18:34:59 +00:00
// Update the set of placement ndoes
s.stack.SetNodes(nodes)
2015-08-14 00:48:26 +00:00
// Track the failed task groups so that we can coalesce
// the failures together to avoid creating many failed allocs.
failedTG := make(map[*structs.TaskGroup]*structs.Allocation)
2015-08-14 00:40:23 +00:00
for _, missing := range place {
// Check if this task group has already failed
if alloc, ok := failedTG[missing.TaskGroup]; ok {
alloc.Metrics.CoalescedFailures += 1
continue
}
// Attempt to match the task group
2015-09-07 18:34:59 +00:00
option, size := s.stack.Select(missing.TaskGroup)
2015-08-14 00:40:23 +00:00
// Create an allocation for this
alloc := &structs.Allocation{
ID: structs.GenerateUUID(),
EvalID: s.eval.ID,
Name: missing.Name,
JobID: s.job.ID,
Job: s.job,
TaskGroup: missing.TaskGroup.Name,
Resources: size,
Metrics: s.ctx.Metrics(),
}
// Set fields based on if we found an allocation option
if option != nil {
alloc.NodeID = option.Node.ID
alloc.TaskResources = option.TaskResources
alloc.DesiredStatus = structs.AllocDesiredStatusRun
alloc.ClientStatus = structs.AllocClientStatusPending
s.plan.AppendAlloc(alloc)
} else {
alloc.DesiredStatus = structs.AllocDesiredStatusFailed
alloc.DesiredDescription = "failed to find a node for placement"
alloc.ClientStatus = structs.AllocClientStatusFailed
s.plan.AppendFailed(alloc)
failedTG[missing.TaskGroup] = alloc
2015-08-14 00:40:23 +00:00
}
2015-08-13 22:17:24 +00:00
}
return nil
}