zq9711 发表于 2007-06-27 16:52

关于load average

关于load average


系统平均负载被定义为在特定时间间隔内运行队列中的平均进程树。如果一个进程满足以下条件则其就会位于运行队列中:
??- 它没有在等待I/O操作的结果
??- 它没有主动进入等待状态(也就是没有调用'wait')
??- 没有被停止(例如:等待终止)

load average是什么?
  通过top命令可以查看系统的load average,它显示的是系统在1分钟,5分钟,15分钟之内的load情况。
  通俗的说,load是指run-queue length (i.e., the sum of the number ofprocesses waiting in the run-queue plus the number currentlyexecuting).


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/12631/showart_329560.html
页: [1]
查看完整版本: 关于load average