123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /*
- Copyright 2018 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 workloads
- import (
- "fmt"
- "strings"
- "time"
- v1 "k8s.io/api/core/v1"
- "k8s.io/apimachinery/pkg/api/resource"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
- "k8s.io/kubernetes/pkg/kubelet/cm/cpumanager"
- )
- // npbEPWorkload defines a workload to run the Embarrassingly Parallel (EP) workload
- // from NAS parallel benchmark (NPB) suite.
- type npbEPWorkload struct{}
- // Ensure npbEPWorkload implements NodePerfWorkload interface.
- var _ NodePerfWorkload = &npbEPWorkload{}
- func (w npbEPWorkload) Name() string {
- return "npb-ep"
- }
- func (w npbEPWorkload) PodSpec() v1.PodSpec {
- var containers []v1.Container
- ctn := v1.Container{
- Name: fmt.Sprintf("%s-ctn", w.Name()),
- Image: "gcr.io/kubernetes-e2e-test-images/node-perf/npb-ep:1.0",
- Resources: v1.ResourceRequirements{
- Requests: v1.ResourceList{
- v1.ResourceName(v1.ResourceCPU): resource.MustParse("15000m"),
- v1.ResourceName(v1.ResourceMemory): resource.MustParse("48Gi"),
- },
- Limits: v1.ResourceList{
- v1.ResourceName(v1.ResourceCPU): resource.MustParse("15000m"),
- v1.ResourceName(v1.ResourceMemory): resource.MustParse("48Gi"),
- },
- },
- Command: []string{"/bin/sh"},
- Args: []string{"-c", "/ep.D.x"},
- }
- containers = append(containers, ctn)
- return v1.PodSpec{
- RestartPolicy: v1.RestartPolicyNever,
- Containers: containers,
- }
- }
- func (w npbEPWorkload) Timeout() time.Duration {
- return 10 * time.Minute
- }
- func (w npbEPWorkload) KubeletConfig(oldCfg *kubeletconfig.KubeletConfiguration) (newCfg *kubeletconfig.KubeletConfiguration, err error) {
- // Enable CPU Manager in Kubelet with static policy.
- newCfg = oldCfg.DeepCopy()
- // Set the CPU Manager policy to static.
- newCfg.CPUManagerPolicy = string(cpumanager.PolicyStatic)
- // Set the CPU Manager reconcile period to 10 second.
- newCfg.CPUManagerReconcilePeriod = metav1.Duration{Duration: 10 * time.Second}
- // The Kubelet panics if either kube-reserved or system-reserved is not set
- // when static CPU Manager is enabled. Set cpu in kube-reserved > 0 so that
- // kubelet doesn't panic.
- if newCfg.KubeReserved == nil {
- newCfg.KubeReserved = map[string]string{}
- }
- if _, ok := newCfg.KubeReserved["cpu"]; !ok {
- newCfg.KubeReserved["cpu"] = "200m"
- }
- return newCfg, nil
- }
- func (w npbEPWorkload) PreTestExec() error {
- cmd := "/bin/sh"
- args := []string{"-c", "rm -f /var/lib/kubelet/cpu_manager_state"}
- err := runCmd(cmd, args)
- return err
- }
- func (w npbEPWorkload) PostTestExec() error {
- cmd := "/bin/sh"
- args := []string{"-c", "rm -f /var/lib/kubelet/cpu_manager_state"}
- err := runCmd(cmd, args)
- return err
- }
- func (w npbEPWorkload) ExtractPerformanceFromLogs(logs string) (perf time.Duration, err error) {
- perfLine, err := getMatchingLineFromLog(logs, "Time in seconds =")
- if err != nil {
- return perf, err
- }
- perfStrings := strings.Split(perfLine, "=")
- perfString := fmt.Sprintf("%ss", strings.TrimSpace(perfStrings[1]))
- perf, err = time.ParseDuration(perfString)
- return perf, err
- }
|