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"
|
|
|
|
|
2015-08-13 21:03:03 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/mock"
|
2015-08-07 00:25:14 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
)
|
|
|
|
|
2015-08-13 22:17:24 +00:00
|
|
|
const (
|
|
|
|
// maxScheduleAttempts is used to limit the number of times
|
|
|
|
// we will attempt to schedule if we continue to hit conflicts.
|
|
|
|
maxScheduleAttempts = 5
|
|
|
|
)
|
|
|
|
|
2015-08-07 00:25:14 +00:00
|
|
|
// ServiceScheduler is used for 'service' 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.
|
|
|
|
type ServiceScheduler struct {
|
|
|
|
logger *log.Logger
|
|
|
|
state State
|
|
|
|
planner Planner
|
2015-08-14 00:11:20 +00:00
|
|
|
|
2015-08-14 01:05:31 +00:00
|
|
|
eval *structs.Evaluation
|
|
|
|
plan *structs.Plan
|
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 {
|
|
|
|
s := &ServiceScheduler{
|
|
|
|
logger: logger,
|
|
|
|
state: state,
|
|
|
|
planner: planner,
|
|
|
|
}
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process is used to handle a single evaluation
|
2015-08-07 00:46:14 +00:00
|
|
|
func (s *ServiceScheduler) Process(eval *structs.Evaluation) error {
|
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,
|
|
|
|
structs.EvalTriggerJobDeregister:
|
2015-08-07 00:46:14 +00:00
|
|
|
default:
|
|
|
|
return fmt.Errorf("service scheduler cannot handle '%s' evaluation reason",
|
|
|
|
eval.TriggeredBy)
|
|
|
|
}
|
2015-08-14 00:40:23 +00:00
|
|
|
|
2015-08-14 01:05:31 +00:00
|
|
|
// Store the evaluation
|
|
|
|
s.eval = eval
|
|
|
|
|
2015-08-14 00:40:23 +00:00
|
|
|
// Retry up to the maxScheduleAttempts
|
|
|
|
return retryMax(maxScheduleAttempts, s.process)
|
2015-08-07 00:46:14 +00:00
|
|
|
}
|
|
|
|
|
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 00:40:23 +00:00
|
|
|
func (s *ServiceScheduler) process() (bool, error) {
|
2015-08-11 23:41:48 +00:00
|
|
|
// Lookup the Job by ID
|
2015-08-14 00:11:20 +00:00
|
|
|
job, err := s.state.GetJobByID(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(job)
|
|
|
|
|
2015-08-14 00:40:23 +00:00
|
|
|
// Compute the target job allocations
|
2015-08-14 01:05:31 +00:00
|
|
|
if err := s.computeJobAllocs(job); 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
|
|
|
|
}
|
|
|
|
|
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.
|
2015-08-14 01:05:31 +00:00
|
|
|
func (s *ServiceScheduler) computeJobAllocs(job *structs.Job) 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-08-14 01:05:31 +00:00
|
|
|
if job != nil {
|
|
|
|
groups = materializeTaskGroups(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
|
|
|
|
2015-08-11 23:41:48 +00:00
|
|
|
// Diff the required and existing allocations
|
2015-08-14 01:28:09 +00:00
|
|
|
diff := diffAllocs(job, tainted, groups, allocs)
|
|
|
|
s.logger.Printf("[DEBUG] sched: %#v: %#v", s.eval, diff)
|
2015-08-11 23:41:48 +00:00
|
|
|
|
|
|
|
// Add all the evicts
|
2015-08-14 01:28:09 +00:00
|
|
|
for _, e := range diff.evict {
|
2015-08-14 01:16:32 +00:00
|
|
|
s.plan.AppendEvict(e.Alloc)
|
|
|
|
}
|
2015-08-14 00:11:20 +00:00
|
|
|
|
|
|
|
// For simplicity, we treat all migrates as an evict + place.
|
|
|
|
// XXX: This could probably be done more intelligently?
|
2015-08-14 01:28:09 +00:00
|
|
|
for _, e := range diff.migrate {
|
2015-08-14 01:16:32 +00:00
|
|
|
s.plan.AppendEvict(e.Alloc)
|
|
|
|
}
|
2015-08-14 01:28:09 +00:00
|
|
|
diff.place = append(diff.place, diff.migrate...)
|
2015-08-11 23:41:48 +00:00
|
|
|
|
|
|
|
// For simplicity, we treat all updates as an evict + place.
|
|
|
|
// XXX: This should be done with rolling in-place updates instead.
|
2015-08-14 01:28:09 +00:00
|
|
|
for _, e := range diff.update {
|
2015-08-14 01:16:32 +00:00
|
|
|
s.plan.AppendEvict(e.Alloc)
|
|
|
|
}
|
2015-08-14 01:28:09 +00:00
|
|
|
diff.place = append(diff.place, diff.update...)
|
2015-08-11 23:41:48 +00:00
|
|
|
|
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
|
2015-08-14 01:28:09 +00:00
|
|
|
return s.computePlacements(job, diff.place)
|
2015-08-14 01:16:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ServiceScheduler) computePlacements(job *structs.Job, place []allocTuple) error {
|
2015-08-14 00:48:26 +00:00
|
|
|
// Create an evaluation context
|
|
|
|
ctx := NewEvalContext(s.state, s.plan, s.logger)
|
|
|
|
|
|
|
|
// Get the base nodes
|
2015-08-14 01:05:31 +00:00
|
|
|
nodes, err := readyNodesInDCs(s.state, 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-08-14 00:48:26 +00:00
|
|
|
// Construct the placement stack
|
|
|
|
stack := NewServiceStack(ctx, nodes)
|
|
|
|
|
2015-08-14 00:40:23 +00:00
|
|
|
for _, missing := range place {
|
2015-08-14 01:44:27 +00:00
|
|
|
option, size := stack.Select(missing.TaskGroup)
|
2015-08-14 00:40:23 +00:00
|
|
|
if option == nil {
|
2015-08-14 05:07:01 +00:00
|
|
|
s.logger.Printf("[DEBUG] sched: %#v: failed to place alloc %s: %#v",
|
|
|
|
s.eval, missing.Name, ctx.Metrics())
|
2015-08-14 00:40:23 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create an allocation for this
|
|
|
|
alloc := &structs.Allocation{
|
|
|
|
ID: mock.GenerateUUID(),
|
|
|
|
Name: missing.Name,
|
|
|
|
NodeID: option.Node.ID,
|
2015-08-14 01:05:31 +00:00
|
|
|
JobID: job.ID,
|
|
|
|
Job: job,
|
2015-08-14 01:44:27 +00:00
|
|
|
Resources: size,
|
2015-08-14 01:34:04 +00:00
|
|
|
Metrics: ctx.Metrics(),
|
2015-08-14 00:40:23 +00:00
|
|
|
Status: structs.AllocStatusPending,
|
|
|
|
}
|
|
|
|
s.plan.AppendAlloc(alloc)
|
2015-08-13 22:17:24 +00:00
|
|
|
}
|
2015-08-07 00:46:14 +00:00
|
|
|
return nil
|
|
|
|
}
|