Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 636 Bytes

平均负载.md

File metadata and controls

45 lines (35 loc) · 636 Bytes

平均负载

平均负载

是指单位时间内,系统处于可运行状态和不可中断状态的平均进程数,也就是平均活跃进程数,它和 CPU 使用率并没有直接关系。

example

# 获取cpu核数
grep 'model name' /proc/cpuinfo | wc -l

CPU密集型

# terminator 1
stress --cpu 1 --timeout 600
# terminator 2
watch -d uptime
# terminator 3
mpstat -P ALL 5

I/O密集型

# t1
stress -i 1 --timeout 600
# t2
watch -d uptime
# t3
mpstat -P ALL 5

大量进程抢占CPU场景

# t1
stress -c 8 --timeout 600
# t2
watch -d uptime
# t3
pidstat -u 5 1