2015-08-07 00:25:14 +00:00
|
|
|
package scheduler
|
|
|
|
|
|
|
|
import (
|
2015-08-07 00:46:14 +00:00
|
|
|
"fmt"
|
2015-08-07 00:25:14 +00:00
|
|
|
"log"
|
|
|
|
|
2016-02-10 05:24:47 +00:00
|
|
|
"github.com/hashicorp/go-multierror"
|
2015-08-07 00:25:14 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
)
|
|
|
|
|
2015-08-13 22:17:24 +00:00
|
|
|
const (
|
2015-08-14 05:35:48 +00:00
|
|
|
// 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"
|
2015-09-07 19:27:12 +00:00
|
|
|
|
2016-08-03 22:45:42 +00:00
|
|
|
// allocLost is the status used when an allocation is lost
|
|
|
|
allocLost = "alloc is lost since its node is down"
|
|
|
|
|
2015-09-07 19:27:12 +00:00
|
|
|
// allocInPlace is the status used when speculating on an in-place update
|
|
|
|
allocInPlace = "alloc updating in-place"
|
2016-05-25 21:11:14 +00:00
|
|
|
|
|
|
|
// blockedEvalMaxPlanDesc is the description used for blocked evals that are
|
|
|
|
// a result of hitting the max number of plan attempts
|
|
|
|
blockedEvalMaxPlanDesc = "created due to placement conflicts"
|
|
|
|
|
|
|
|
// blockedEvalFailedPlacements is the description used for blocked evals
|
|
|
|
// that are a result of failing to place all allocations.
|
|
|
|
blockedEvalFailedPlacements = "created to place remaining allocations"
|
2015-08-13 22:17:24 +00:00
|
|
|
)
|
|
|
|
|
2015-08-15 21:47:13 +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()
|
|
|
|
}
|
|
|
|
|
2015-08-14 05:28:37 +00:00
|
|
|
// GenericScheduler is used for 'service' and 'batch' type jobs. This scheduler is
|
2015-08-07 00:25:14 +00:00
|
|
|
// designed for long-lived services, and as such spends more time attemping
|
|
|
|
// to make a high quality placement. This is the primary scheduler for
|
2015-08-14 05:28:37 +00:00
|
|
|
// most workloads. It also supports a 'batch' mode to optimize for fast decision
|
|
|
|
// making at the cost of quality.
|
|
|
|
type GenericScheduler struct {
|
2015-08-07 00:25:14 +00:00
|
|
|
logger *log.Logger
|
|
|
|
state State
|
|
|
|
planner Planner
|
2015-08-14 05:28:37 +00:00
|
|
|
batch bool
|
2015-08-14 00:11:20 +00:00
|
|
|
|
2016-02-10 05:24:47 +00:00
|
|
|
eval *structs.Evaluation
|
|
|
|
job *structs.Job
|
|
|
|
plan *structs.Plan
|
|
|
|
planResult *structs.PlanResult
|
|
|
|
ctx *EvalContext
|
|
|
|
stack *GenericStack
|
2015-09-07 22:17:39 +00:00
|
|
|
|
|
|
|
limitReached bool
|
|
|
|
nextEval *structs.Evaluation
|
2016-01-28 21:43:48 +00:00
|
|
|
|
2016-05-27 18:26:14 +00:00
|
|
|
blocked *structs.Evaluation
|
|
|
|
failedTGAllocs map[string]*structs.AllocMetric
|
2016-07-18 22:04:05 +00:00
|
|
|
queuedAllocs map[string]int
|
2015-08-07 00:25:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewServiceScheduler is a factory function to instantiate a new service scheduler
|
|
|
|
func NewServiceScheduler(logger *log.Logger, state State, planner Planner) Scheduler {
|
2015-08-14 05:28:37 +00:00
|
|
|
s := &GenericScheduler{
|
2016-07-22 23:48:42 +00:00
|
|
|
logger: logger,
|
|
|
|
state: state,
|
|
|
|
planner: planner,
|
|
|
|
batch: false,
|
2015-08-14 05:28:37 +00:00
|
|
|
}
|
|
|
|
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{
|
2016-07-22 23:48:42 +00:00
|
|
|
logger: logger,
|
|
|
|
state: state,
|
|
|
|
planner: planner,
|
|
|
|
batch: true,
|
2015-08-07 00:25:14 +00:00
|
|
|
}
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process is used to handle a single evaluation
|
2015-08-14 05:28:37 +00:00
|
|
|
func (s *GenericScheduler) Process(eval *structs.Evaluation) error {
|
2015-09-23 04:45:20 +00:00
|
|
|
// Store the evaluation
|
|
|
|
s.eval = eval
|
|
|
|
|
2015-08-14 00:40:23 +00:00
|
|
|
// Verify the evaluation trigger reason is understood
|
2015-08-07 00:46:14 +00:00
|
|
|
switch eval.TriggeredBy {
|
2015-08-14 00:40:23 +00:00
|
|
|
case structs.EvalTriggerJobRegister, structs.EvalTriggerNodeUpdate,
|
2016-02-25 00:20:33 +00:00
|
|
|
structs.EvalTriggerJobDeregister, structs.EvalTriggerRollingUpdate,
|
2016-06-21 00:43:02 +00:00
|
|
|
structs.EvalTriggerPeriodicJob, structs.EvalTriggerMaxPlans:
|
2015-08-07 00:46:14 +00:00
|
|
|
default:
|
2015-08-15 21:47:13 +00:00
|
|
|
desc := fmt.Sprintf("scheduler cannot handle '%s' evaluation reason",
|
2015-08-07 00:46:14 +00:00
|
|
|
eval.TriggeredBy)
|
2016-05-27 18:26:14 +00:00
|
|
|
return setStatus(s.logger, s.planner, s.eval, s.nextEval, s.blocked,
|
2016-07-18 22:04:05 +00:00
|
|
|
s.failedTGAllocs, structs.EvalStatusFailed, desc, s.queuedAllocs)
|
2015-08-07 00:46:14 +00:00
|
|
|
}
|
2015-08-14 00:40:23 +00:00
|
|
|
|
2016-02-10 05:24:47 +00:00
|
|
|
// Retry up to the maxScheduleAttempts and reset if progress is made.
|
|
|
|
progress := func() bool { return progressMade(s.planResult) }
|
2015-08-14 05:35:48 +00:00
|
|
|
limit := maxServiceScheduleAttempts
|
|
|
|
if s.batch {
|
|
|
|
limit = maxBatchScheduleAttempts
|
|
|
|
}
|
2016-02-10 05:24:47 +00:00
|
|
|
if err := retryMax(limit, s.process, progress); err != nil {
|
2015-08-15 21:47:13 +00:00
|
|
|
if statusErr, ok := err.(*SetStatusError); ok {
|
2016-02-10 05:24:47 +00:00
|
|
|
// Scheduling was tried but made no forward progress so create a
|
|
|
|
// blocked eval to retry once resources become available.
|
|
|
|
var mErr multierror.Error
|
2016-05-23 23:27:26 +00:00
|
|
|
if err := s.createBlockedEval(true); err != nil {
|
2016-02-10 05:24:47 +00:00
|
|
|
mErr.Errors = append(mErr.Errors, err)
|
|
|
|
}
|
2016-05-27 18:26:14 +00:00
|
|
|
if err := setStatus(s.logger, s.planner, s.eval, s.nextEval, s.blocked,
|
2016-07-18 22:04:05 +00:00
|
|
|
s.failedTGAllocs, statusErr.EvalStatus, err.Error(),
|
|
|
|
s.queuedAllocs); err != nil {
|
2016-02-10 05:24:47 +00:00
|
|
|
mErr.Errors = append(mErr.Errors, err)
|
|
|
|
}
|
|
|
|
return mErr.ErrorOrNil()
|
2015-08-15 21:47:13 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-05-20 23:03:53 +00:00
|
|
|
// If the current evaluation is a blocked evaluation and we didn't place
|
|
|
|
// everything, do not update the status to complete.
|
2016-05-27 18:26:14 +00:00
|
|
|
if s.eval.Status == structs.EvalStatusBlocked && len(s.failedTGAllocs) != 0 {
|
2016-06-10 22:24:06 +00:00
|
|
|
e := s.ctx.Eligibility()
|
|
|
|
newEval := s.eval.Copy()
|
|
|
|
newEval.EscapedComputedClass = e.HasEscaped()
|
|
|
|
newEval.ClassEligibility = e.GetClasses()
|
|
|
|
return s.planner.ReblockEval(newEval)
|
2016-05-20 23:03:53 +00:00
|
|
|
}
|
|
|
|
|
2015-08-15 21:47:13 +00:00
|
|
|
// Update the status to complete
|
2016-05-27 18:26:14 +00:00
|
|
|
return setStatus(s.logger, s.planner, s.eval, s.nextEval, s.blocked,
|
2016-07-18 22:04:05 +00:00
|
|
|
s.failedTGAllocs, structs.EvalStatusComplete, "", s.queuedAllocs)
|
2015-08-07 00:46:14 +00:00
|
|
|
}
|
|
|
|
|
2016-05-23 23:27:26 +00:00
|
|
|
// createBlockedEval creates a blocked eval and submits it to the planner. If
|
|
|
|
// failure is set to true, the eval's trigger reason reflects that.
|
|
|
|
func (s *GenericScheduler) createBlockedEval(planFailure bool) error {
|
2016-02-11 17:45:27 +00:00
|
|
|
e := s.ctx.Eligibility()
|
|
|
|
escaped := e.HasEscaped()
|
|
|
|
|
|
|
|
// Only store the eligible classes if the eval hasn't escaped.
|
|
|
|
var classEligibility map[string]bool
|
|
|
|
if !escaped {
|
|
|
|
classEligibility = e.GetClasses()
|
2016-02-10 05:24:47 +00:00
|
|
|
}
|
|
|
|
|
2016-05-25 01:12:59 +00:00
|
|
|
s.blocked = s.eval.CreateBlockedEval(classEligibility, escaped)
|
2016-05-23 23:27:26 +00:00
|
|
|
if planFailure {
|
|
|
|
s.blocked.TriggeredBy = structs.EvalTriggerMaxPlans
|
2016-05-25 21:11:14 +00:00
|
|
|
s.blocked.StatusDescription = blockedEvalMaxPlanDesc
|
|
|
|
} else {
|
|
|
|
s.blocked.StatusDescription = blockedEvalFailedPlacements
|
2016-05-23 23:27:26 +00:00
|
|
|
}
|
|
|
|
|
2016-02-10 05:24:47 +00:00
|
|
|
return s.planner.CreateEval(s.blocked)
|
|
|
|
}
|
|
|
|
|
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.
|
2015-08-14 05:28:37 +00:00
|
|
|
func (s *GenericScheduler) process() (bool, error) {
|
2015-08-11 23:41:48 +00:00
|
|
|
// Lookup the Job by ID
|
2015-09-07 19:27:12 +00:00
|
|
|
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)
|
|
|
|
}
|
2016-07-26 05:11:11 +00:00
|
|
|
numTaskGroups := 0
|
|
|
|
if s.job != nil {
|
|
|
|
numTaskGroups = len(s.job.TaskGroups)
|
|
|
|
}
|
|
|
|
s.queuedAllocs = make(map[string]int, numTaskGroups)
|
2015-08-14 00:11:20 +00:00
|
|
|
|
|
|
|
// Create a plan
|
2015-09-07 19:27:12 +00:00
|
|
|
s.plan = s.eval.MakePlan(s.job)
|
2015-08-14 00:11:20 +00:00
|
|
|
|
2016-05-19 01:11:40 +00:00
|
|
|
// Reset the failed allocations
|
2016-05-27 18:26:14 +00:00
|
|
|
s.failedTGAllocs = nil
|
2016-05-19 01:11:40 +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
|
2015-10-17 00:05:23 +00:00
|
|
|
s.stack = NewGenericStack(s.batch, s.ctx)
|
2015-09-07 19:27:12 +00:00
|
|
|
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
|
2015-09-07 19:27:12 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-05-19 01:11:40 +00:00
|
|
|
// If there are failed allocations, we need to create a blocked evaluation
|
2016-05-20 23:03:53 +00:00
|
|
|
// to place the failed allocations when resources become available. If the
|
|
|
|
// current evaluation is already a blocked eval, we reuse it.
|
2016-05-27 18:26:14 +00:00
|
|
|
if s.eval.Status != structs.EvalStatusBlocked && len(s.failedTGAllocs) != 0 && s.blocked == nil {
|
2016-05-23 23:27:26 +00:00
|
|
|
if err := s.createBlockedEval(false); err != nil {
|
2016-05-19 01:11:40 +00:00
|
|
|
s.logger.Printf("[ERR] sched: %#v failed to make blocked eval: %v", s.eval, err)
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
s.logger.Printf("[DEBUG] sched: %#v: failed to place all allocations, blocked eval '%s' created", s.eval, s.blocked.ID)
|
|
|
|
}
|
|
|
|
|
2016-05-05 18:21:58 +00:00
|
|
|
// 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-08-14 01:16:32 +00:00
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2015-09-07 22:17:39 +00:00
|
|
|
// 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)
|
2015-09-07 22:17:39 +00:00
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
s.logger.Printf("[DEBUG] sched: %#v: rolling update limit reached, next eval '%s' created", s.eval, s.nextEval.ID)
|
|
|
|
}
|
|
|
|
|
2016-02-10 05:24:47 +00:00
|
|
|
// Submit the plan and store the results.
|
2015-08-14 00:11:20 +00:00
|
|
|
result, newState, err := s.planner.SubmitPlan(s.plan)
|
2016-02-10 05:24:47 +00:00
|
|
|
s.planResult = result
|
2015-08-14 00:11:20 +00:00
|
|
|
if err != nil {
|
2015-08-14 00:40:23 +00:00
|
|
|
return false, err
|
2015-08-14 00:11:20 +00:00
|
|
|
}
|
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-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)
|
2016-02-22 20:15:40 +00:00
|
|
|
if newState == nil {
|
|
|
|
return false, fmt.Errorf("missing state refresh after partial commit")
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2016-02-03 01:19:41 +00:00
|
|
|
// filterCompleteAllocs filters allocations that are terminal and should be
|
|
|
|
// re-placed.
|
|
|
|
func (s *GenericScheduler) filterCompleteAllocs(allocs []*structs.Allocation) []*structs.Allocation {
|
|
|
|
filter := func(a *structs.Allocation) bool {
|
2016-04-08 21:22:06 +00:00
|
|
|
if s.batch {
|
2016-04-12 23:14:32 +00:00
|
|
|
// Allocs from batch jobs should be filtered when the desired status
|
2016-05-25 00:23:18 +00:00
|
|
|
// is terminal and the client did not finish or when the client
|
|
|
|
// status is failed so that they will be replaced. If they are
|
|
|
|
// complete but not failed, they shouldn't be replaced.
|
2016-04-12 23:14:32 +00:00
|
|
|
switch a.DesiredStatus {
|
2016-07-13 19:20:46 +00:00
|
|
|
case structs.AllocDesiredStatusStop, structs.AllocDesiredStatusEvict:
|
2016-05-25 00:23:18 +00:00
|
|
|
return !a.RanSuccessfully()
|
2016-04-12 23:14:32 +00:00
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
switch a.ClientStatus {
|
|
|
|
case structs.AllocClientStatusFailed:
|
|
|
|
return true
|
|
|
|
default:
|
|
|
|
return false
|
|
|
|
}
|
2016-04-08 21:22:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Filter terminal, non batch allocations
|
|
|
|
return a.TerminalStatus()
|
2016-02-03 01:19:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
n := len(allocs)
|
|
|
|
for i := 0; i < n; i++ {
|
|
|
|
if filter(allocs[i]) {
|
|
|
|
allocs[i], allocs[n-1] = allocs[n-1], nil
|
|
|
|
i--
|
|
|
|
n--
|
|
|
|
}
|
|
|
|
}
|
2016-07-27 18:54:55 +00:00
|
|
|
|
|
|
|
// If the job is batch, we want to filter allocations that have been
|
|
|
|
// replaced by a newer version for the same task group.
|
|
|
|
filtered := allocs[:n]
|
|
|
|
if s.batch {
|
|
|
|
byTG := make(map[string]*structs.Allocation)
|
|
|
|
for _, alloc := range filtered {
|
2016-07-28 22:57:56 +00:00
|
|
|
existing := byTG[alloc.Name]
|
2016-07-27 18:54:55 +00:00
|
|
|
if existing == nil || existing.CreateIndex < alloc.CreateIndex {
|
2016-07-28 22:57:56 +00:00
|
|
|
byTG[alloc.Name] = alloc
|
2016-07-27 18:54:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
filtered = make([]*structs.Allocation, 0, len(byTG))
|
|
|
|
for _, alloc := range byTG {
|
|
|
|
filtered = append(filtered, alloc)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return filtered
|
2016-02-03 01:19:41 +00:00
|
|
|
}
|
|
|
|
|
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.
|
2015-09-07 19:27:12 +00:00
|
|
|
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
|
2015-09-07 19:27:12 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2016-08-09 20:11:58 +00:00
|
|
|
// Update the allocations which are in pending/running state on tainted node
|
|
|
|
// to lost
|
|
|
|
updateNonTerminalAllocsToLost(s.plan, tainted, allocs)
|
|
|
|
|
|
|
|
// Filter out the allocations in a terminal state
|
|
|
|
allocs = s.filterCompleteAllocs(allocs)
|
|
|
|
s.logger.Printf("len of allocs: %v", len(allocs))
|
|
|
|
|
2015-08-11 23:41:48 +00:00
|
|
|
// Diff the required and existing allocations
|
2015-09-07 19:27:12 +00:00
|
|
|
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 {
|
2016-08-03 22:45:42 +00:00
|
|
|
s.plan.AppendUpdate(e.Alloc, structs.AllocDesiredStatusStop, allocNotNeeded, "")
|
2015-08-14 01:16:32 +00:00
|
|
|
}
|
2015-08-14 00:11:20 +00:00
|
|
|
|
2015-09-07 19:27:12 +00:00
|
|
|
// Attempt to do the upgrades in place
|
2016-05-17 22:37:37 +00:00
|
|
|
destructiveUpdates, inplaceUpdates := inplaceUpdate(s.ctx, s.eval, s.job, s.stack, diff.update)
|
2016-05-05 18:21:58 +00:00
|
|
|
diff.update = destructiveUpdates
|
|
|
|
|
|
|
|
if s.eval.AnnotatePlan {
|
|
|
|
s.plan.Annotations = &structs.PlanAnnotations{
|
|
|
|
DesiredTGUpdates: desiredUpdates(diff, inplaceUpdates, destructiveUpdates),
|
|
|
|
}
|
|
|
|
}
|
2015-08-11 23:41:48 +00:00
|
|
|
|
2015-09-07 22:17:39 +00:00
|
|
|
// Check if a rolling upgrade strategy is being used
|
2016-08-03 22:45:42 +00:00
|
|
|
limit := len(diff.update) + len(diff.migrate) + len(diff.lost)
|
2015-09-07 22:17:39 +00:00
|
|
|
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
|
|
|
|
2015-09-07 22:17:39 +00:00
|
|
|
// Treat migrations as an eviction and a new placement.
|
2015-10-16 18:36:26 +00:00
|
|
|
s.limitReached = evictAndPlace(s.ctx, diff, diff.migrate, allocMigrating, &limit)
|
2015-09-07 22:17:39 +00:00
|
|
|
|
|
|
|
// Treat non in-place updates as an eviction and new placement.
|
2016-02-03 20:00:43 +00:00
|
|
|
s.limitReached = s.limitReached || evictAndPlace(s.ctx, diff, diff.update, allocUpdating, &limit)
|
2015-09-07 19:27:12 +00:00
|
|
|
|
2016-08-03 22:45:42 +00:00
|
|
|
// Lost allocations should be transistioned to desired status stop and client
|
|
|
|
// status lost and a new placement should be made
|
|
|
|
s.limitReached = s.limitReached || markLostAndPlace(s.ctx, diff, diff.lost, allocLost, &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 {
|
2016-07-28 19:13:35 +00:00
|
|
|
if s.job != nil {
|
|
|
|
for _, tg := range s.job.TaskGroups {
|
|
|
|
s.queuedAllocs[tg.Name] = 0
|
|
|
|
}
|
|
|
|
}
|
2015-08-14 01:05:31 +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
|
2016-07-18 22:04:05 +00:00
|
|
|
for _, allocTuple := range diff.place {
|
2016-07-22 06:13:07 +00:00
|
|
|
s.queuedAllocs[allocTuple.TaskGroup.Name] += 1
|
2016-07-18 22:04:05 +00:00
|
|
|
}
|
|
|
|
|
2015-08-14 01:16:32 +00:00
|
|
|
// Compute the placements
|
2015-09-07 19:27:12 +00:00
|
|
|
return s.computePlacements(diff.place)
|
2015-08-14 01:16:32 +00:00
|
|
|
}
|
|
|
|
|
2015-09-07 19:27:12 +00:00
|
|
|
// computePlacements computes placements for allocations
|
2015-10-16 18:43:09 +00:00
|
|
|
func (s *GenericScheduler) computePlacements(place []allocTuple) error {
|
2015-08-14 00:48:26 +00:00
|
|
|
// Get the base nodes
|
2016-01-04 20:07:33 +00:00
|
|
|
nodes, byDC, 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
|
|
|
|
2015-08-14 00:40:23 +00:00
|
|
|
for _, missing := range place {
|
2015-08-16 17:03:21 +00:00
|
|
|
// Check if this task group has already failed
|
2016-05-27 18:26:14 +00:00
|
|
|
if metric, ok := s.failedTGAllocs[missing.TaskGroup.Name]; ok {
|
2016-05-25 01:12:59 +00:00
|
|
|
metric.CoalescedFailures += 1
|
2015-08-16 17:03:21 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to match the task group
|
2016-03-01 22:09:25 +00:00
|
|
|
option, _ := s.stack.Select(missing.TaskGroup)
|
2015-08-16 17:03:21 +00:00
|
|
|
|
2016-01-04 22:23:06 +00:00
|
|
|
// Store the available nodes by datacenter
|
|
|
|
s.ctx.Metrics().NodesAvailable = byDC
|
|
|
|
|
2015-09-13 22:20:50 +00:00
|
|
|
// Set fields based on if we found an allocation option
|
|
|
|
if option != nil {
|
2016-05-19 01:11:40 +00:00
|
|
|
// Create an allocation for this
|
|
|
|
alloc := &structs.Allocation{
|
|
|
|
ID: structs.GenerateUUID(),
|
|
|
|
EvalID: s.eval.ID,
|
|
|
|
Name: missing.Name,
|
|
|
|
JobID: s.job.ID,
|
|
|
|
TaskGroup: missing.TaskGroup.Name,
|
|
|
|
Metrics: s.ctx.Metrics(),
|
|
|
|
NodeID: option.Node.ID,
|
|
|
|
TaskResources: option.TaskResources,
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusRun,
|
|
|
|
ClientStatus: structs.AllocClientStatusPending,
|
|
|
|
}
|
|
|
|
|
2015-08-15 20:40:13 +00:00
|
|
|
s.plan.AppendAlloc(alloc)
|
|
|
|
} else {
|
2016-05-19 01:11:40 +00:00
|
|
|
// Lazy initialize the failed map
|
2016-05-27 18:26:14 +00:00
|
|
|
if s.failedTGAllocs == nil {
|
|
|
|
s.failedTGAllocs = make(map[string]*structs.AllocMetric)
|
2016-05-19 01:11:40 +00:00
|
|
|
}
|
|
|
|
|
2016-05-27 18:26:14 +00:00
|
|
|
s.failedTGAllocs[missing.TaskGroup.Name] = s.ctx.Metrics()
|
2015-08-14 00:40:23 +00:00
|
|
|
}
|
2015-08-13 22:17:24 +00:00
|
|
|
}
|
2016-01-04 22:23:06 +00:00
|
|
|
|
2015-08-07 00:46:14 +00:00
|
|
|
return nil
|
|
|
|
}
|