123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273 |
- /*
- Copyright 2015 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.
- */
- package benchmark
- import (
- "fmt"
- "testing"
- "time"
- "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/labels"
- "k8s.io/kubernetes/test/integration/framework"
- testutils "k8s.io/kubernetes/test/utils"
- "k8s.io/klog"
- )
- var (
- defaultNodeStrategy = &testutils.TrivialNodePrepareStrategy{}
- )
- // BenchmarkScheduling benchmarks the scheduling rate when the cluster has
- // various quantities of nodes and scheduled pods.
- func BenchmarkScheduling(b *testing.B) {
- tests := []struct{ nodes, existingPods, minPods int }{
- {nodes: 100, existingPods: 0, minPods: 100},
- {nodes: 100, existingPods: 1000, minPods: 100},
- {nodes: 1000, existingPods: 0, minPods: 100},
- {nodes: 1000, existingPods: 1000, minPods: 100},
- {nodes: 5000, existingPods: 1000, minPods: 1000},
- }
- setupStrategy := testutils.NewSimpleWithControllerCreatePodStrategy("rc1")
- testStrategy := testutils.NewSimpleWithControllerCreatePodStrategy("rc2")
- for _, test := range tests {
- name := fmt.Sprintf("%vNodes/%vPods", test.nodes, test.existingPods)
- b.Run(name, func(b *testing.B) {
- benchmarkScheduling(test.nodes, test.existingPods, test.minPods, defaultNodeStrategy, setupStrategy, testStrategy, b)
- })
- }
- }
- // BenchmarkSchedulingPodAntiAffinity benchmarks the scheduling rate of pods with
- // PodAntiAffinity rules when the cluster has various quantities of nodes and
- // scheduled pods.
- func BenchmarkSchedulingPodAntiAffinity(b *testing.B) {
- tests := []struct{ nodes, existingPods, minPods int }{
- {nodes: 500, existingPods: 250, minPods: 250},
- {nodes: 500, existingPods: 5000, minPods: 250},
- {nodes: 1000, existingPods: 1000, minPods: 500},
- {nodes: 5000, existingPods: 1000, minPods: 1000},
- }
- // The setup strategy creates pods with no affinity rules.
- setupStrategy := testutils.NewSimpleWithControllerCreatePodStrategy("setup")
- testBasePod := makeBasePodWithPodAntiAffinity(
- map[string]string{"name": "test", "color": "green"},
- map[string]string{"color": "green"})
- // The test strategy creates pods with anti-affinity for each other.
- testStrategy := testutils.NewCustomCreatePodStrategy(testBasePod)
- for _, test := range tests {
- name := fmt.Sprintf("%vNodes/%vPods", test.nodes, test.existingPods)
- b.Run(name, func(b *testing.B) {
- benchmarkScheduling(test.nodes, test.existingPods, test.minPods, defaultNodeStrategy, setupStrategy, testStrategy, b)
- })
- }
- }
- // BenchmarkSchedulingPodAffinity benchmarks the scheduling rate of pods with
- // PodAffinity rules when the cluster has various quantities of nodes and
- // scheduled pods.
- func BenchmarkSchedulingPodAffinity(b *testing.B) {
- tests := []struct{ nodes, existingPods, minPods int }{
- {nodes: 500, existingPods: 250, minPods: 250},
- {nodes: 500, existingPods: 5000, minPods: 250},
- {nodes: 1000, existingPods: 1000, minPods: 500},
- {nodes: 5000, existingPods: 1000, minPods: 1000},
- }
- // The setup strategy creates pods with no affinity rules.
- setupStrategy := testutils.NewSimpleWithControllerCreatePodStrategy("setup")
- testBasePod := makeBasePodWithPodAffinity(
- map[string]string{"foo": ""},
- map[string]string{"foo": ""},
- )
- // The test strategy creates pods with affinity for each other.
- testStrategy := testutils.NewCustomCreatePodStrategy(testBasePod)
- nodeStrategy := testutils.NewLabelNodePrepareStrategy(v1.LabelZoneFailureDomain, "zone1")
- for _, test := range tests {
- name := fmt.Sprintf("%vNodes/%vPods", test.nodes, test.existingPods)
- b.Run(name, func(b *testing.B) {
- benchmarkScheduling(test.nodes, test.existingPods, test.minPods, nodeStrategy, setupStrategy, testStrategy, b)
- })
- }
- }
- // BenchmarkSchedulingNodeAffinity benchmarks the scheduling rate of pods with
- // NodeAffinity rules when the cluster has various quantities of nodes and
- // scheduled pods.
- func BenchmarkSchedulingNodeAffinity(b *testing.B) {
- tests := []struct{ nodes, existingPods, minPods int }{
- {nodes: 500, existingPods: 250, minPods: 250},
- {nodes: 500, existingPods: 5000, minPods: 250},
- {nodes: 1000, existingPods: 1000, minPods: 500},
- {nodes: 5000, existingPods: 1000, minPods: 1000},
- }
- // The setup strategy creates pods with no affinity rules.
- setupStrategy := testutils.NewSimpleWithControllerCreatePodStrategy("setup")
- testBasePod := makeBasePodWithNodeAffinity(v1.LabelZoneFailureDomain, []string{"zone1", "zone2"})
- // The test strategy creates pods with node-affinity for each other.
- testStrategy := testutils.NewCustomCreatePodStrategy(testBasePod)
- nodeStrategy := testutils.NewLabelNodePrepareStrategy(v1.LabelZoneFailureDomain, "zone1")
- for _, test := range tests {
- name := fmt.Sprintf("%vNodes/%vPods", test.nodes, test.existingPods)
- b.Run(name, func(b *testing.B) {
- benchmarkScheduling(test.nodes, test.existingPods, test.minPods, nodeStrategy, setupStrategy, testStrategy, b)
- })
- }
- }
- // makeBasePodWithPodAntiAffinity creates a Pod object to be used as a template.
- // The Pod has a PodAntiAffinity requirement against pods with the given labels.
- func makeBasePodWithPodAntiAffinity(podLabels, affinityLabels map[string]string) *v1.Pod {
- basePod := &v1.Pod{
- ObjectMeta: metav1.ObjectMeta{
- GenerateName: "anit-affinity-pod-",
- Labels: podLabels,
- },
- Spec: testutils.MakePodSpec(),
- }
- basePod.Spec.Affinity = &v1.Affinity{
- PodAntiAffinity: &v1.PodAntiAffinity{
- RequiredDuringSchedulingIgnoredDuringExecution: []v1.PodAffinityTerm{
- {
- LabelSelector: &metav1.LabelSelector{
- MatchLabels: affinityLabels,
- },
- TopologyKey: v1.LabelHostname,
- },
- },
- },
- }
- return basePod
- }
- // makeBasePodWithPodAffinity creates a Pod object to be used as a template.
- // The Pod has a PodAffinity requirement against pods with the given labels.
- func makeBasePodWithPodAffinity(podLabels, affinityZoneLabels map[string]string) *v1.Pod {
- basePod := &v1.Pod{
- ObjectMeta: metav1.ObjectMeta{
- GenerateName: "affinity-pod-",
- Labels: podLabels,
- },
- Spec: testutils.MakePodSpec(),
- }
- basePod.Spec.Affinity = &v1.Affinity{
- PodAffinity: &v1.PodAffinity{
- RequiredDuringSchedulingIgnoredDuringExecution: []v1.PodAffinityTerm{
- {
- LabelSelector: &metav1.LabelSelector{
- MatchLabels: affinityZoneLabels,
- },
- TopologyKey: v1.LabelZoneFailureDomain,
- },
- },
- },
- }
- return basePod
- }
- // makeBasePodWithNodeAffinity creates a Pod object to be used as a template.
- // The Pod has a NodeAffinity requirement against nodes with the given expressions.
- func makeBasePodWithNodeAffinity(key string, vals []string) *v1.Pod {
- basePod := &v1.Pod{
- ObjectMeta: metav1.ObjectMeta{
- GenerateName: "node-affinity-",
- },
- Spec: testutils.MakePodSpec(),
- }
- basePod.Spec.Affinity = &v1.Affinity{
- NodeAffinity: &v1.NodeAffinity{
- RequiredDuringSchedulingIgnoredDuringExecution: &v1.NodeSelector{
- NodeSelectorTerms: []v1.NodeSelectorTerm{
- {
- MatchExpressions: []v1.NodeSelectorRequirement{
- {
- Key: key,
- Operator: v1.NodeSelectorOpIn,
- Values: vals,
- },
- },
- },
- },
- },
- },
- }
- return basePod
- }
- // benchmarkScheduling benchmarks scheduling rate with specific number of nodes
- // and specific number of pods already scheduled.
- // This will schedule numExistingPods pods before the benchmark starts, and at
- // least minPods pods during the benchmark.
- func benchmarkScheduling(numNodes, numExistingPods, minPods int,
- nodeStrategy testutils.PrepareNodeStrategy,
- setupPodStrategy, testPodStrategy testutils.TestPodCreateStrategy,
- b *testing.B) {
- if b.N < minPods {
- b.N = minPods
- }
- schedulerConfigFactory, finalFunc := mustSetupScheduler()
- defer finalFunc()
- c := schedulerConfigFactory.GetClient()
- nodePreparer := framework.NewIntegrationTestNodePreparer(
- c,
- []testutils.CountToStrategy{{Count: numNodes, Strategy: nodeStrategy}},
- "scheduler-perf-",
- )
- if err := nodePreparer.PrepareNodes(); err != nil {
- klog.Fatalf("%v", err)
- }
- defer nodePreparer.CleanupNodes()
- config := testutils.NewTestPodCreatorConfig()
- config.AddStrategy("sched-test", numExistingPods, setupPodStrategy)
- podCreator := testutils.NewTestPodCreator(c, config)
- podCreator.CreatePods()
- for {
- scheduled, err := schedulerConfigFactory.GetScheduledPodLister().List(labels.Everything())
- if err != nil {
- klog.Fatalf("%v", err)
- }
- if len(scheduled) >= numExistingPods {
- break
- }
- time.Sleep(1 * time.Second)
- }
- // start benchmark
- b.ResetTimer()
- config = testutils.NewTestPodCreatorConfig()
- config.AddStrategy("sched-test", b.N, testPodStrategy)
- podCreator = testutils.NewTestPodCreator(c, config)
- podCreator.CreatePods()
- for {
- // This can potentially affect performance of scheduler, since List() is done under mutex.
- // TODO: Setup watch on apiserver and wait until all pods scheduled.
- scheduled, err := schedulerConfigFactory.GetScheduledPodLister().List(labels.Everything())
- if err != nil {
- klog.Fatalf("%v", err)
- }
- if len(scheduled) >= numExistingPods+b.N {
- break
- }
- // Note: This might introduce slight deviation in accuracy of benchmark results.
- // Since the total amount of time is relatively large, it might not be a concern.
- time.Sleep(100 * time.Millisecond)
- }
- }
|