pthread_create中Resource temporarily unavailable问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pthread_create中Resource temporarily unavailable问题相关的知识,希望对你有一定的参考价值。
有台设备发现程序启动失败,上去通过日志发现是线程启动(pthread_create)失败,进一步定位,打印errno:11,Resource temporarily unavailable。但是发现失败前不管是top还是free,还是swap虚拟内存都不高,不存在内存不足的问题。
百度发现说是ulimit给的线程数量不足。
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) 257733
max locked memory (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files (-n) 30000
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 10240
cpu time (seconds, -t) unlimited
max user processes (-u) 1024
virtual memory (kbytes, -v) 1200000
file locks (-x) unlimited
进程1024个完全足够,出于实验目的,修改为更大的数字,但是发现进程只能启动几十个线程,尝试修改其他参数,发现最多只能启动115个线程。
只好和其他设备进行对比,发现其他设备的信息是virtual memory (kbytes, -v) unlimited
于是进行修改,发现启动正常。
查了下资源,线程占用的虚拟内存很高,但是实际上并不使用,只是计算一个预计的大小,所以swap依然会是0
一个线程占用的虚拟内存是根据stack size来设置的,这个设备刚好是10240,1200000/10240=117.18,所以启动了115个线程。
以上是关于pthread_create中Resource temporarily unavailable问题的主要内容,如果未能解决你的问题,请参考以下文章
runtime/cgo: pthread_create failed: Resource temporarily unavailable or fork: Cannot allocate mem
Can't get WebApplicationContext object from ContextRegistry.GetContext(): Resource handler for t