JVM 系列二:java.lang.OutOfMemoryError: unable to create new native thread

問題描述

Java程序運行過程當中拋出java.lang.OutOfMemoryError: unable to create new native thread,以下所示:html

java.lang.OutOfMemoryError: unable to create new native thread
 	at java.lang.Thread.start0(Native Method)
 	at java.lang.Thread.start(Thread.java:691)
 	at java.util.concurrent.ThreadPoolExecutor.addWorker(ThreadPoolExecutor.java:949)
 	at java.util.concurrent.ThreadPoolExecutor.processWorkerExit(ThreadPoolExecutor.java:1017)
 	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1163)
 	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
 	at java.lang.Thread.run(Thread.java:722)

Caused by: java.lang.OutOfMemoryError
	at java.util.zip.ZipFile.open(Native Method)
	at java.util.zip.ZipFile.<init>(ZipFile.java:214)
	at java.util.zip.ZipFile.<init>(ZipFile.java:144)
	at java.util.jar.JarFile.<init>(JarFile.java:153)
	at java.util.jar.JarFile.<init>(JarFile.java:117)

從JVM層面去解決

減少thread stack的大小

JVM默認thread stack的大小爲1024,這樣當線程多時致使Native virtual memory被耗盡,實際上當thread stack的大小爲128K 或 256K時是足夠的,因此咱們若是明確指定thread stack爲128K 或 256K便可,具體使用-Xss,例如在JVM啓動的JVM_OPT中添加以下配置java

-Xss128k

減少heap或permgen初始分配的大小

若是JVM啓動的JVM_OPT中有以下配置優化

-Xms1303m -Xmx1303m -XX:PermSize=256m -XX:MaxPermSize=256m
咱們能夠刪除或減少初始化最小值的配置,以下

-Xms256m -Xmx1303m -XX:PermSize=64m -XX:MaxPermSize=256m

-Xmx1303m -XX:MaxPermSize=256m

升級JVM到最新的版本

最新版本的JVM通常在內存優化方面作的更好,升級JVM到最新的版本可能會緩解測問題spa

從操做系統層面去解決

使用64位操做系統

若是使用32位操做系統遇到unable to create new native thread,建議使用64位操做系統操作系統

增大OS對線程的限制

在Linux操做系統設定nofile和nproc,具體編輯/etc/security/limits.conf添加以下:線程

soft    nofile          2048
    hard    nofile          8192

soft    nproc           2048
    hard    nproc           8192

若是使用 Red Hat Enterprise Linux 6,編輯/etc/security/limits.d/90-nproc.conf,添加以下配置:

# cat /etc/security/limits.d/90-nproc.conf
*          soft    nproc     1024
root       soft    nproc     unlimited

user       -       nproc     2048
相關文章
相關標籤/搜索