stress 패키지 설치
dnf install -y epel-release
dnf install -y stress
stress 명령어
stress --help
`stress' imposes certain types of compute stress on your system
Usage: stress [OPTION [ARG]] ...
-?, --help show this help statement
--version show version statement
-v, --verbose be verbose
-q, --quiet be quiet
-n, --dry-run show what would have been done
-t, --timeout N timeout after N seconds
--backoff N wait factor of N microseconds before work starts
-c, --cpu N spawn N workers spinning on sqrt()
-i, --io N spawn N workers spinning on sync()
-m, --vm N spawn N workers spinning on malloc()/free()
--vm-bytes B malloc B bytes per vm worker (default is 256MB)
--vm-stride B touch a byte every B bytes (default is 4096)
--vm-hang N sleep N secs before free (default none, 0 is inf)
--vm-keep redirty memory instead of freeing and reallocating
-d, --hdd N spawn N workers spinning on write()/unlink()
--hdd-bytes B write B bytes per hdd worker (default is 1GB)
Example: stress --cpu 8 --io 4 --vm 2 --vm-bytes 128M --timeout 10s
Note: Numbers may be suffixed with s,m,h,d,y (time) or B,K,M,G (size).
CPU 부하
# CPU 부하 명령어
stress --cpu [코어 수]
stress --cpu 4 -v --timeout 10s // 4개의 프로세스로 10초 동안 부하 발생 (해당 코어에는 100% 부하 발생)
# cpu 논리 코어 수 확인
lscpu
cat /proc/cpuinfo | grep -i processor
Memory 부하
stress --vm [프로세스 수] --vm-bytes [사용할 크기]
stress --vm 4 --vm-bytes 1024m -v --timeout 10s // 2개의 프로세스로 메모리 1 GB 씩 할당 및 해제를 10초 동안 수행
Disk 부하
stress --hdd [프로세스 수] --hdd-bytes [테스트 파일 크기]
stress --hdd 2 --hdd-bytes 1024m -v --timeout 10s // 2개의 프로세스로 1 GB 크기의 파일을 디스크에 쓰고 지우는 작업을 10초 동안 수행
stress --hdd 2 --hdd-bytes 1G -v --timeout 10s