zoukankan      html  css  js  c++  java
  • Linux调度器性能分析

    This article was firstly published from http://oliveryang.net. The content reuse need include the original link.

    1. Scheduling perf profiling goals

    For an OS scheduler implementation, there are 3 key features,

    • Time Sharing

      Let multiple tasks share the CPU time fairly and efficiently.

    • Preemption

      Important or latency sensitive tasks could be scheduled as quick as possible.

    • Load balance

      Allow multiple tasks to share multiple CPU resources in system wide fairly and efficiently.

    If system ran into any CPU scheduling perf problems, we would see one of above features might get broken. Our scheduling perf profiling goal is to understand how scheduler behaves from these 3 perspectives, under a certain workload or benchmark.

    2. The major symptoms of scheduling perf issues

    The symptoms of scheduling perf issues could be also classified by above 3 perspectives,

    • High or Low CPU utilization

    • Big task scheduling latency

    • Imbalance CPU utilization or scheduling latency

    Please note that above symptoms might not always be caused by a kernel scheduler bug. For this reason, the most important thing is, we must define the performance problem with a clear baseline. With a clear baseline, we could have better efficiency to rule out different possibilities which have the similar symptoms.

    3. The scheduling perf issues triage process

    Different issues from hardware, kernel, or application level could cause the similar symptoms. For example, I used to handle the CPU high utilization bug caused by wrong MTRR(Memory Type Range Register) setting.

    In another case, the scheduling domain workload imbalance was caused by a buggy ACPI SART table. In my examples, these issues might be easily identified by CPI(cycle per instruction) number reported by Linux perf or NUMAtop tools. However, if the problems comes from kernel or application, it can be very difficult to get the root cause, when we do not have the enough knowledge for that specific components.

    As we always reported perf scheduling issues from specific type of workload or benchmark testing. The most efficient order
    to triage scheduling performance bug is from top to bottom.

    application -> kernel -> hypervisor -> hardware

    One issues move from one layer to next layer, we must have technical justifications with following information,

    • The clear problem definitions with clear performance baseline
    • Why we think the problem is not in this layer
    • The performance tracing data or logs that support your analysis
  • 相关阅读:
    ACM HDU 3910 Liang Guo Sha(数学题,读懂题目)
    防止 7Zip 生成的 ZIP 文件在 Mac OS X 下出现乱码
    NYOJ 506
    Scanner
    String 与StringBuilder
    基于JAVA的聊天室开发
    PS加粗字体
    MySQL相关命令
    Matlab中数据处理和多项式插值与曲线拟合
    dos下进入某一文件
  • 原文地址:https://www.cnblogs.com/ainima/p/6330789.html
Copyright © 2011-2022 走看看