找出哪个任务在 Linux 上产生大量上下文切换

找出哪个任务在 Linux 上产生大量上下文切换

根据 vmstat,我的 Linux 服务器(2xCore2 Duo 2.5 GHz)每秒持续进行大约 20k 次上下文切换。

# vmstat 3
procs -----------memory----------  ---swap-- -----io----  -system-- ----cpu----
 r  b   swpd   free   buff  cache    si   so    bi    bo   in    cs us sy id wa
 2  0   7292 249472  82340 2291972    0    0     0     0    0     0  7 13 79  0
 0  0   7292 251808  82344 2291968    0    0     0   184   24 20090  1  1 99  0
 0  0   7292 251876  82344 2291968    0    0     0    83   17 20157  1  0 99  0
 0  0   7292 251876  82344 2291968    0    0     0    73   12 20116  1  0 99  0

...但uptime显示负载较小:load average: 0.01, 0.02, 0.01并且top没有显示任何 CPU 使用率较高的进程。

我如何找出究竟是什么导致了这些上下文切换?哪个进程/线程?

我尝试分析pidstat输出:

# pidstat -w 10 1

12:39:13          PID   cswch/s nvcswch/s  Command
12:39:23            1      0.20      0.00  init
12:39:23            4      0.20      0.00  ksoftirqd/0
12:39:23            7      1.60      0.00  events/0
12:39:23            8      1.50      0.00  events/1
12:39:23           89      0.50      0.00  kblockd/0
12:39:23           90      0.30      0.00  kblockd/1
12:39:23          995      0.40      0.00  kirqd
12:39:23          997      0.60      0.00  kjournald
12:39:23         1146      0.20      0.00  svscan
12:39:23         2162      5.00      0.00  kjournald
12:39:23         2526      0.20      2.00  postgres
12:39:23         2530      1.00      0.30  postgres
12:39:23         2534      5.00      3.20  postgres
12:39:23         2536      1.40      1.70  postgres
12:39:23        12061     10.59      0.90  postgres
12:39:23        14442      1.50      2.20  postgres
12:39:23        15416      0.20      0.00  monitor
12:39:23        17289      0.10      0.00  syslogd
12:39:23        21776      0.40      0.30  postgres
12:39:23        23638      0.10      0.00  screen
12:39:23        25153      1.00      0.00  sshd
12:39:23        25185     86.61      0.00  daemon1
12:39:23        25190     12.19     35.86  postgres
12:39:23        25295      2.00      0.00  screen
12:39:23        25743      9.99      0.00  daemon2
12:39:23        25747      1.10      3.00  postgres
12:39:23        26968      5.09      0.80  postgres
12:39:23        26969      5.00      0.00  postgres
12:39:23        26970      1.10      0.20  postgres
12:39:23        26971     17.98      1.80  postgres
12:39:23        27607      0.90      0.40  postgres
12:39:23        29338      4.30      0.00  screen
12:39:23        31247      4.10     23.58  postgres
12:39:23        31249     82.92     34.77  postgres
12:39:23        31484      0.20      0.00  pdflush
12:39:23        32097      0.10      0.00  pidstat

看起来一些 postgresql 任务每秒执行>10次上下文切换,但总的来说并不会达到 20k。

您知道如何更深入地寻找答案吗?

答案1

嗯,这真是一个有趣的案例。试着观察一下watch -tdn1 cat /proc/interrupts。你看到任何有价值的变化了吗?

答案2

尝试使用

pidstat -wt

't' 选项还显示线程。它可能是正在进行上下文切换的线程。

答案3

在较新的内核版本中

sudo perf record -e context-switches -a  # record the events

# then ctrl+c

sudo perf report # inspect the result

这将为您提供有关上下文切换事件的准确结果。

并且你可以通过附加“-g”标志来找到引起上下文切换的原因(可读结果由符号信息决定)

sudo perf record -e context-switches -a -g

答案4

powertop可以告诉您进程唤醒 CPU 的频率。

相关内容