Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
5497e893
Commit
5497e893
authored
Oct 23, 2017
by
Bobby (Babak) Salamat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change type of scheduling queue from cache.FIFO to a new interface
parent
0829376d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
78 additions
and
11 deletions
+78
-11
scheduling_queue.go
plugin/pkg/scheduler/core/scheduling_queue.go
+61
-0
factory.go
plugin/pkg/scheduler/factory/factory.go
+12
-6
factory_test.go
plugin/pkg/scheduler/factory/factory_test.go
+2
-1
scheduler.go
plugin/pkg/scheduler/scheduler.go
+1
-2
testutil.go
plugin/pkg/scheduler/testutil.go
+2
-2
No files found.
plugin/pkg/scheduler/core/scheduling_queue.go
0 → 100644
View file @
5497e893
/*
Copyright 2017 The Kubernetes Authors.
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.
*/
// This file contains structures that implement scheduling queue types.
// Scheduling queues hold pending pods waiting to be scheduled.
package
core
import
(
"k8s.io/client-go/tools/cache"
)
// SchedulingQueue is an interface for a queue to store pods waiting to be scheduled.
// The interface follows a pattern similar to cache.FIFO and cache.Heap and
// makes it easy to use those data structures as a SchedulingQueue.
type
SchedulingQueue
interface
{
Add
(
obj
interface
{})
error
AddIfNotPresent
(
obj
interface
{})
error
Pop
()
(
interface
{},
error
)
Update
(
obj
interface
{})
error
Delete
(
obj
interface
{})
error
List
()
[]
interface
{}
ListKeys
()
[]
string
Get
(
obj
interface
{})
(
item
interface
{},
exists
bool
,
err
error
)
GetByKey
(
key
string
)
(
item
interface
{},
exists
bool
,
err
error
)
}
// FIFO is only used to add a Pop() method to cache.FIFO so that it can be
// used as a SchedulingQueue interface.
type
FIFO
struct
{
*
cache
.
FIFO
}
// Pop removes the head of FIFO and returns it.
// This is just a copy/paste of cache.Pop(queue Queue) from fifo.go that scheduler
// has always been using. There is a comment in that file saying that this method
// shouldn't be used in production code, but scheduler has always been using it.
// This function does minimal error checking.
func
(
f
*
FIFO
)
Pop
()
(
interface
{},
error
)
{
var
result
interface
{}
f
.
FIFO
.
Pop
(
func
(
obj
interface
{})
error
{
result
=
obj
return
nil
})
return
result
,
nil
}
var
_
=
SchedulingQueue
(
&
FIFO
{})
// Making sure that FIFO implements SchedulingQueue.
plugin/pkg/scheduler/factory/factory.go
View file @
5497e893
...
@@ -77,7 +77,7 @@ var (
...
@@ -77,7 +77,7 @@ var (
type
configFactory
struct
{
type
configFactory
struct
{
client
clientset
.
Interface
client
clientset
.
Interface
// queue for pods that need scheduling
// queue for pods that need scheduling
podQueue
*
cache
.
FIFO
podQueue
core
.
SchedulingQueue
// a means to list all known scheduled pods.
// a means to list all known scheduled pods.
scheduledPodLister
corelisters
.
PodLister
scheduledPodLister
corelisters
.
PodLister
// a means to list all known scheduled pods and pods assumed to have been scheduled.
// a means to list all known scheduled pods and pods assumed to have been scheduled.
...
@@ -142,10 +142,11 @@ func NewConfigFactory(
...
@@ -142,10 +142,11 @@ func NewConfigFactory(
stopEverything
:=
make
(
chan
struct
{})
stopEverything
:=
make
(
chan
struct
{})
schedulerCache
:=
schedulercache
.
New
(
30
*
time
.
Second
,
stopEverything
)
schedulerCache
:=
schedulercache
.
New
(
30
*
time
.
Second
,
stopEverything
)
schedulingQueue
:=
&
core
.
FIFO
{
FIFO
:
cache
.
NewFIFO
(
cache
.
MetaNamespaceKeyFunc
)}
c
:=
&
configFactory
{
c
:=
&
configFactory
{
client
:
client
,
client
:
client
,
podLister
:
schedulerCache
,
podLister
:
schedulerCache
,
podQueue
:
cache
.
NewFIFO
(
cache
.
MetaNamespaceKeyFunc
)
,
podQueue
:
schedulingQueue
,
pVLister
:
pvInformer
.
Lister
(),
pVLister
:
pvInformer
.
Lister
(),
pVCLister
:
pvcInformer
.
Lister
(),
pVCLister
:
pvcInformer
.
Lister
(),
serviceLister
:
serviceInformer
.
Lister
(),
serviceLister
:
serviceInformer
.
Lister
(),
...
@@ -901,9 +902,14 @@ func (f *configFactory) getPluginArgs() (*PluginFactoryArgs, error) {
...
@@ -901,9 +902,14 @@ func (f *configFactory) getPluginArgs() (*PluginFactoryArgs, error) {
}
}
func
(
f
*
configFactory
)
getNextPod
()
*
v1
.
Pod
{
func
(
f
*
configFactory
)
getNextPod
()
*
v1
.
Pod
{
pod
:=
cache
.
Pop
(
f
.
podQueue
)
.
(
*
v1
.
Pod
)
if
obj
,
err
:=
f
.
podQueue
.
Pop
();
err
==
nil
{
glog
.
V
(
4
)
.
Infof
(
"About to try and schedule pod %v"
,
pod
.
Name
)
pod
:=
obj
.
(
*
v1
.
Pod
)
return
pod
glog
.
V
(
4
)
.
Infof
(
"About to try and schedule pod %v"
,
pod
.
Name
)
return
pod
}
else
{
glog
.
Errorf
(
"Error while retrieving next pod from scheduling queue: %v"
,
err
)
return
nil
}
}
}
// unassignedNonTerminatedPod selects pods that are unassigned and non-terminal.
// unassignedNonTerminatedPod selects pods that are unassigned and non-terminal.
...
@@ -1011,7 +1017,7 @@ func NewPodInformer(client clientset.Interface, resyncPeriod time.Duration, sche
...
@@ -1011,7 +1017,7 @@ func NewPodInformer(client clientset.Interface, resyncPeriod time.Duration, sche
}
}
}
}
func
(
factory
*
configFactory
)
MakeDefaultErrorFunc
(
backoff
*
util
.
PodBackoff
,
podQueue
*
cache
.
FIFO
)
func
(
pod
*
v1
.
Pod
,
err
error
)
{
func
(
factory
*
configFactory
)
MakeDefaultErrorFunc
(
backoff
*
util
.
PodBackoff
,
podQueue
core
.
SchedulingQueue
)
func
(
pod
*
v1
.
Pod
,
err
error
)
{
return
func
(
pod
*
v1
.
Pod
,
err
error
)
{
return
func
(
pod
*
v1
.
Pod
,
err
error
)
{
if
err
==
core
.
ErrNoNodesAvailable
{
if
err
==
core
.
ErrNoNodesAvailable
{
glog
.
V
(
4
)
.
Infof
(
"Unable to schedule %v %v: no nodes are registered to the cluster; waiting"
,
pod
.
Namespace
,
pod
.
Name
)
glog
.
V
(
4
)
.
Infof
(
"Unable to schedule %v %v: no nodes are registered to the cluster; waiting"
,
pod
.
Namespace
,
pod
.
Name
)
...
...
plugin/pkg/scheduler/factory/factory_test.go
View file @
5497e893
...
@@ -36,6 +36,7 @@ import (
...
@@ -36,6 +36,7 @@ import (
"k8s.io/kubernetes/plugin/pkg/scheduler/algorithm"
"k8s.io/kubernetes/plugin/pkg/scheduler/algorithm"
schedulerapi
"k8s.io/kubernetes/plugin/pkg/scheduler/api"
schedulerapi
"k8s.io/kubernetes/plugin/pkg/scheduler/api"
latestschedulerapi
"k8s.io/kubernetes/plugin/pkg/scheduler/api/latest"
latestschedulerapi
"k8s.io/kubernetes/plugin/pkg/scheduler/api/latest"
"k8s.io/kubernetes/plugin/pkg/scheduler/core"
"k8s.io/kubernetes/plugin/pkg/scheduler/schedulercache"
"k8s.io/kubernetes/plugin/pkg/scheduler/schedulercache"
schedulertesting
"k8s.io/kubernetes/plugin/pkg/scheduler/testing"
schedulertesting
"k8s.io/kubernetes/plugin/pkg/scheduler/testing"
"k8s.io/kubernetes/plugin/pkg/scheduler/util"
"k8s.io/kubernetes/plugin/pkg/scheduler/util"
...
@@ -280,7 +281,7 @@ func TestDefaultErrorFunc(t *testing.T) {
...
@@ -280,7 +281,7 @@ func TestDefaultErrorFunc(t *testing.T) {
v1
.
DefaultHardPodAffinitySymmetricWeight
,
v1
.
DefaultHardPodAffinitySymmetricWeight
,
enableEquivalenceCache
,
enableEquivalenceCache
,
)
)
queue
:=
cache
.
NewFIFO
(
cache
.
MetaNamespaceKeyFunc
)
queue
:=
&
core
.
FIFO
{
FIFO
:
cache
.
NewFIFO
(
cache
.
MetaNamespaceKeyFunc
)}
podBackoff
:=
util
.
CreatePodBackoff
(
1
*
time
.
Millisecond
,
1
*
time
.
Second
)
podBackoff
:=
util
.
CreatePodBackoff
(
1
*
time
.
Millisecond
,
1
*
time
.
Second
)
errFunc
:=
factory
.
MakeDefaultErrorFunc
(
podBackoff
,
queue
)
errFunc
:=
factory
.
MakeDefaultErrorFunc
(
podBackoff
,
queue
)
...
...
plugin/pkg/scheduler/scheduler.go
View file @
5497e893
...
@@ -26,7 +26,6 @@ import (
...
@@ -26,7 +26,6 @@ import (
utilfeature
"k8s.io/apiserver/pkg/util/feature"
utilfeature
"k8s.io/apiserver/pkg/util/feature"
clientset
"k8s.io/client-go/kubernetes"
clientset
"k8s.io/client-go/kubernetes"
corelisters
"k8s.io/client-go/listers/core/v1"
corelisters
"k8s.io/client-go/listers/core/v1"
"k8s.io/client-go/tools/cache"
"k8s.io/client-go/tools/record"
"k8s.io/client-go/tools/record"
"k8s.io/kubernetes/pkg/features"
"k8s.io/kubernetes/pkg/features"
"k8s.io/kubernetes/plugin/pkg/scheduler/algorithm"
"k8s.io/kubernetes/plugin/pkg/scheduler/algorithm"
...
@@ -80,7 +79,7 @@ type Configurator interface {
...
@@ -80,7 +79,7 @@ type Configurator interface {
GetPredicates
(
predicateKeys
sets
.
String
)
(
map
[
string
]
algorithm
.
FitPredicate
,
error
)
GetPredicates
(
predicateKeys
sets
.
String
)
(
map
[
string
]
algorithm
.
FitPredicate
,
error
)
GetHardPodAffinitySymmetricWeight
()
int
GetHardPodAffinitySymmetricWeight
()
int
GetSchedulerName
()
string
GetSchedulerName
()
string
MakeDefaultErrorFunc
(
backoff
*
util
.
PodBackoff
,
podQueue
*
cache
.
FIFO
)
func
(
pod
*
v1
.
Pod
,
err
error
)
MakeDefaultErrorFunc
(
backoff
*
util
.
PodBackoff
,
podQueue
core
.
SchedulingQueue
)
func
(
pod
*
v1
.
Pod
,
err
error
)
// Needs to be exposed for things like integration tests where we want to make fake nodes.
// Needs to be exposed for things like integration tests where we want to make fake nodes.
GetNodeLister
()
corelisters
.
NodeLister
GetNodeLister
()
corelisters
.
NodeLister
...
...
plugin/pkg/scheduler/testutil.go
View file @
5497e893
...
@@ -23,9 +23,9 @@ import (
...
@@ -23,9 +23,9 @@ import (
"k8s.io/apimachinery/pkg/util/sets"
"k8s.io/apimachinery/pkg/util/sets"
clientset
"k8s.io/client-go/kubernetes"
clientset
"k8s.io/client-go/kubernetes"
corelisters
"k8s.io/client-go/listers/core/v1"
corelisters
"k8s.io/client-go/listers/core/v1"
"k8s.io/client-go/tools/cache"
"k8s.io/kubernetes/plugin/pkg/scheduler/algorithm"
"k8s.io/kubernetes/plugin/pkg/scheduler/algorithm"
schedulerapi
"k8s.io/kubernetes/plugin/pkg/scheduler/api"
schedulerapi
"k8s.io/kubernetes/plugin/pkg/scheduler/api"
"k8s.io/kubernetes/plugin/pkg/scheduler/core"
"k8s.io/kubernetes/plugin/pkg/scheduler/util"
"k8s.io/kubernetes/plugin/pkg/scheduler/util"
)
)
...
@@ -65,7 +65,7 @@ func (fc *FakeConfigurator) GetSchedulerName() string {
...
@@ -65,7 +65,7 @@ func (fc *FakeConfigurator) GetSchedulerName() string {
}
}
// MakeDefaultErrorFunc is not implemented yet.
// MakeDefaultErrorFunc is not implemented yet.
func
(
fc
*
FakeConfigurator
)
MakeDefaultErrorFunc
(
backoff
*
util
.
PodBackoff
,
podQueue
*
cache
.
FIFO
)
func
(
pod
*
v1
.
Pod
,
err
error
)
{
func
(
fc
*
FakeConfigurator
)
MakeDefaultErrorFunc
(
backoff
*
util
.
PodBackoff
,
podQueue
core
.
SchedulingQueue
)
func
(
pod
*
v1
.
Pod
,
err
error
)
{
return
nil
return
nil
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment