快速业务通道

Linux下谁在切换我们的进程

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-04-15

  我们在做Linux服务器的时候经常会需要知道谁在做进程切换,什么原因需要做进程切换. 进程切换的代价很高,我给出一个LMbench测试出来的数字:

  Context switching – times in microseconds – smaller is better

  ————————————————————————-

  Host OS 2p/0K 2p/16K 2p/64K 8p/16K 8p/64K 16p/16K 16p/64K

  ctxsw ctxsw ctxsw ctxsw ctxsw ctxsw ctxsw

  ——— ————- —— —— —— —— —— ——- ——-

  my174.cm4 Linux 2.6.18- 6.1100 7.0200 6.1100 8.7400 7.7200 8.96000 9.62000

  在我的很高端的服务器上,进程切换的开销在8us左右, 这个相对于高性能的服务器是不可接受的, 我们要在一个时间片内尽可能的多做事情,而不是把时间浪费在无谓的切换上.

  好奇害死猫,我们来调查下谁在切换我们的进程:

  view sourceprint?[root@my174 admin]# dstat 1

  ----total-cpu-usage---- -dsk/total- -net/total- ---paging-- ---system--

  usr sys idl wai hiq siq| read writ| recv send| in out | int csw

  0 0 100 0 0 0| 0 0 | 796B 1488B| 0 0 |1004 128

  0 0 100 0 0 0| 0 0 | 280B 728B| 0 0 |1005 114

  0 0 100 0 0 0| 0 0 | 280B 728B| 0 0 |1005 128

  0 0 100 0 0 0| 0 0 | 280B 728B| 0 0 |1005 114

  0 0 100 0 0 0| 0 320k| 280B 728B| 0 0 |1008 143

  ...

  我们可以看到 csw的数目是 120/S, 但是dstat或者vmstat类似的工具并没有告诉我们谁在干坏事.好吧!我们自己动手行吧.

  祭出我们可爱的systemtap!

  view sourceprint?[root@my174 admin]# cat >cswmon.stp

  #! /usr/bin/env stap

  #

  #

  global csw_count

  global idle_count

  probe scheduler.cpu_off {

  csw_count[task_prev, task_next]

  idle_count =idle

  }

  function fmt_task(task_prev, task_next)

  {

  return sprintf("%s(%d)->%s(%d)",

  task_execname(task_prev),

  task_pid(task_prev),

  task_execname(task_next),

  task_pid(task_next))

  }

  function print_cswtop () {

  printf ("Es sn", "Context switch", "COUNT")

  foreach ([task_prev, task_next] in csw_count- limit 20) {

  printf("Es dn", fmt_task(task_prev, task_next), csw_count[task_prev, task_next])

  }

  printf("Es dn", "idle", idle_count)

  delete csw_count

  delete idle_count

  }

  probe timer.s($1) {

  print_cswtop ()

  printf("--------------------------------------------------------------n")

  }

  CTRL D

  这个脚本会每隔设定的时间打印出TOP 20切换最多的进程和他的pid, 我们来看下结果把:

  view sourceprint?[root@my174 admin]# stap cswmon.stp 5

  Context switch COUNT

  swapper(0)->systemtap/11(908) 500

  systemtap/11(908)->swapper(0) 498

  swapper(0)->fct1-worker(2492) 50

  fct1-worker(2492)->swapper(0) 50

  swapper(0)->fct0-worker(2191) 50

  fct0-worker(2191)->swapper(0) 50

  swapper(0)->bond0(3432) 50

  bond0(3432)->swapper(0) 50

  stapio(879)->swapper(0) 26

  swapper(0)->s

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号