질문
- 이 오류가 발생하는 이유는 무엇입니까?
Resource temporarily unavailable
- 10,000개가 넘는 스레드를 오류 없이 시작하려면 어떻게 해야 합니까?
10,000개가 넘는 스레드로 코드를 실행하고 싶습니다.
문제를 재현하는 단계
- 코드 작성
#include <stdio.h>
#include <pthread.h>
#include <unistd.h>
void *thread ()
{
sleep(9999);
}
int main()
{
int err = 0, count = 0;
pthread_t tid;
while (err == 0)
{
err = pthread_create (&tid, NULL, thread, NULL);
count++;
}
printf("max thread: %d\n", count);
getchar();
}
- 컴파일 및 실행
$ gcc source.c -pthread
$ ./a.out &
max thread: 10800
- 명령 실행
$ touch abc
-bash: fork: retry: Resource temporarily unavailable
$ vim abc
-bash: fork: retry: Resource temporarily unavailable
root@~# cd /etc
-bash: wait_for: No record of process 21875
root@/etc#
내가 뭘 시도한 거야?
- 커널 매개변수를 변경했지만 수정하지 않았습니다.
sysctl -w kernel.threads-max=600000
sysctl -w kernel.pid_max=600000
sysctl -w vm.max_map_count=600000
reboot
- 변경
pids.max
했지만 수정되지 않았습니다.
$ vim /sys/fs/cgroup/pids/user.slice/user-0.slice/pids.max
999999
$ reboot
환경
- 우분투18.04
- CPU 32코어
- 메모리 64GB
$ ulimit - a
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 257435
max locked memory (kbytes, -l) 16384
max memory size (kbytes, -m) unlimited
open files (-n) 65536
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 257435
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
$ uname -a
Linux localhost 4.15.0-50-generic #54-Ubuntu SMP Mon May 6 18:46:08 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
$ cat /proc/sys/kernel/threads-max
514870