k3s/plugin/pkg/scheduler/scheduler.go

156 lines
5.1 KiB
Go
Raw Normal View History

2014-08-03 07:01:28 +00:00
/*
Copyright 2014 The Kubernetes Authors All rights reserved.
2014-08-03 07:01:28 +00:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package scheduler
// Note: if you change code in this file, you might need to change code in
// contrib/mesos/pkg/scheduler/.
2014-08-03 07:01:28 +00:00
import (
"time"
2015-08-05 22:03:47 +00:00
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/client/record"
"k8s.io/kubernetes/pkg/util/wait"
2015-08-05 22:03:47 +00:00
"k8s.io/kubernetes/plugin/pkg/scheduler/algorithm"
"k8s.io/kubernetes/plugin/pkg/scheduler/metrics"
"k8s.io/kubernetes/plugin/pkg/scheduler/schedulercache"
2014-10-27 17:04:39 +00:00
"github.com/golang/glog"
2014-08-03 07:01:28 +00:00
)
// Binder knows how to write a binding.
type Binder interface {
Bind(binding *api.Binding) error
}
type PodConditionUpdater interface {
Update(pod *api.Pod, podCondition *api.PodCondition) error
}
2014-08-03 07:01:28 +00:00
// Scheduler watches for new unscheduled pods. It attempts to find
// nodes that they fit on and writes bindings back to the api server.
2014-08-03 07:01:28 +00:00
type Scheduler struct {
2014-08-18 22:02:42 +00:00
config *Config
2014-08-03 07:01:28 +00:00
}
type Config struct {
// It is expected that changes made via SchedulerCache will be observed
// by NodeLister and Algorithm.
SchedulerCache schedulercache.Cache
NodeLister algorithm.NodeLister
Algorithm algorithm.ScheduleAlgorithm
Binder Binder
// PodConditionUpdater is used only in case of scheduling errors. If we succeed
// with scheduling, PodScheduled condition will be updated in apiserver in /bind
// handler so that binding and setting PodCondition it is atomic.
PodConditionUpdater PodConditionUpdater
2014-08-03 07:01:28 +00:00
// NextPod should be a function that blocks until the next pod
// is available. We don't use a channel for this, because scheduling
// a pod may take some amount of time and we don't want pods to get
// stale while they sit in a channel.
NextPod func() *api.Pod
// Error is called if there is an error. It is passed the pod in
// question, and the error
Error func(*api.Pod, error)
// Recorder is the EventRecorder to use
Recorder record.EventRecorder
// Close this to shut down the scheduler.
StopEverything chan struct{}
2014-08-03 07:01:28 +00:00
}
// New returns a new scheduler.
func New(c *Config) *Scheduler {
s := &Scheduler{
2014-08-18 22:02:42 +00:00
config: c,
2014-08-03 07:01:28 +00:00
}
metrics.Register()
2014-08-03 07:01:28 +00:00
return s
}
2014-08-18 22:02:42 +00:00
// Run begins watching and scheduling. It starts a goroutine and returns immediately.
2014-08-03 07:01:28 +00:00
func (s *Scheduler) Run() {
go wait.Until(s.scheduleOne, 0, s.config.StopEverything)
2014-08-03 07:01:28 +00:00
}
func (s *Scheduler) scheduleOne() {
2014-08-18 22:02:42 +00:00
pod := s.config.NextPod()
glog.V(3).Infof("Attempting to schedule: %+v", pod)
start := time.Now()
dest, err := s.config.Algorithm.Schedule(pod, s.config.NodeLister)
2014-08-03 07:01:28 +00:00
if err != nil {
glog.V(1).Infof("Failed to schedule: %+v", pod)
2014-08-18 22:02:42 +00:00
s.config.Error(pod, err)
2016-04-13 13:44:06 +00:00
s.config.Recorder.Eventf(pod, api.EventTypeWarning, "FailedScheduling", "%v", err)
s.config.PodConditionUpdater.Update(pod, &api.PodCondition{
Type: api.PodScheduled,
Status: api.ConditionFalse,
Reason: "Unschedulable",
})
return
2014-08-03 07:01:28 +00:00
}
metrics.SchedulingAlgorithmLatency.Observe(metrics.SinceInMicroseconds(start))
2016-04-13 13:44:06 +00:00
// Optimistically assume that the binding will succeed and send it to apiserver
// in the background.
// The only risk in this approach is that if the binding fails because of some
// reason, scheduler will be assuming that it succeeded while scheduling next
// pods, until the assumption in the internal cache expire (expiration is
// defined as "didn't read the binding via watch within a given timeout",
// timeout is currently set to 30s). However, after this timeout, the situation
// will self-repair.
assumed := *pod
assumed.Spec.NodeName = dest
if err := s.config.SchedulerCache.AssumePod(&assumed); err != nil {
glog.Errorf("scheduler cache AssumePod failed: %v", err)
}
2016-04-13 13:44:06 +00:00
go func() {
defer metrics.E2eSchedulingLatency.Observe(metrics.SinceInMicroseconds(start))
b := &api.Binding{
ObjectMeta: api.ObjectMeta{Namespace: pod.Namespace, Name: pod.Name},
Target: api.ObjectReference{
Kind: "Node",
Name: dest,
},
}
bindingStart := time.Now()
// If binding succeeded then PodScheduled condition will be updated in apiserver so that
// it's atomic with setting host.
err := s.config.Binder.Bind(b)
if err != nil {
glog.V(1).Infof("Failed to bind pod: %v/%v", pod.Namespace, pod.Name)
s.config.Error(pod, err)
2016-04-13 13:44:06 +00:00
s.config.Recorder.Eventf(pod, api.EventTypeNormal, "FailedScheduling", "Binding rejected: %v", err)
s.config.PodConditionUpdater.Update(pod, &api.PodCondition{
Type: api.PodScheduled,
Status: api.ConditionFalse,
Reason: "BindingRejected",
})
2016-04-13 13:44:06 +00:00
return
}
metrics.BindingLatency.Observe(metrics.SinceInMicroseconds(bindingStart))
s.config.Recorder.Eventf(pod, api.EventTypeNormal, "Scheduled", "Successfully assigned %v to %v", pod.Name, dest)
2016-04-13 13:44:06 +00:00
}()
2014-08-03 07:01:28 +00:00
}