gpt4 book ai didi

linux - 为什么我不能在 Linux 中创建 50k 进程?

转载 作者:太空宇宙 更新时间:2023-11-04 10:12:59 25 4
gpt4 key购买 nike

使用Linux

$ uname -r
4.4.0-1041-aws
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04.3 LTS
Release: 16.04
Codename: xenial

限制最多允许 20 万个进程

$ 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) 563048
max locked memory (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files (-n) 524288
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) unlimited
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
$ cat /proc/sys/kernel/pid_max
200000
$ cat /proc/sys/kernel/threads-max
1126097

并且有足够的空闲内存给 127k 个进程每个 1MB

$ free
total used free shared buff/cache available
Mem: 144156492 5382168 130458252 575604 8316072 137302624
Swap: 0 0 0

而且我的现有进程/线程少于 1k。

$ ps -elfT | wc -l
832

但是我无法启动 50k 个进程

$ echo '
seq 50000 | while read _; do
sleep 20 &
done
' | bash
bash: fork: retry: Resource temporarily unavailable
bash: fork: retry: Resource temporarily unavailable
bash: fork: retry: Resource temporarily unavailable
bash: fork: retry: Resource temporarily unavailable
bash: fork: retry: Resource temporarily unavailable
bash: fork: retry: Resource temporarily unavailable
...

为什么我不能创建 50k 进程?

最佳答案

Linux癌症 systemd引起的。

除了 kernel.pid_max 和 ulimit,我还需要更改第三个限制。

/etc/systemd/logind.conf

[Login]
UserTasksMax=70000

然后重启。

关于linux - 为什么我不能在 Linux 中创建 50k 进程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47838348/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com