java.lang.OutOfMemoryError: unable to create new native thread
程序员文章站
2022-06-13 21:30:11
...
通过翻译获取的中文直译 => java.lang.OutOfMemoryError:无法创建新的本地线程
一、原因:
问题原因是创建太多线程,而能创建的线程数是有限制的。溢出情况可分两种:
1,请求线程数大于所能创建线程数
2,请求线程数小于所能创建线程数
二、解决问题:
请求线程数大于所能创建线程数
相关参数:
MaxProcessMemory 指的是一个进程的最大内存,假设为 3G
JVMMemory JVM内存,假设为 1G
ReservedOsMemory 保留的操作系统内存,假设为100MB
ThreadStackSize 线程栈的大小,Liunx默认1MB
JAVA在创建一个新的线程时,虚拟机在创建一个Thread对象同时创建一个 操作系统线程(ThreadStackSize),这个系统线程所使用的线程不是 JVMMemory(JVM内存)
系统剩余内存 => ( MaxProcessMemory - JVMMemory - ReservedOsMemory )
系统线程创建数 => ( MaxProcessMemory - JVMMemory - ReservedOsMemory )/ ThreadStackSize
结论 => 当JVM内存越大,所能创建的线程就越少,就越容易 java.lang.OutOfMemoryError: unable to create new native thread
MaxProcessMemory 指的是一个进程的最大内存,假设为 3G
JVMMemory JVM内存,假设为 1G
ReservedOsMemory 保留的操作系统内存,假设为100MB
ThreadStackSize 线程栈的大小,Liunx默认1MB
JAVA在创建一个新的线程时,虚拟机在创建一个Thread对象同时创建一个 操作系统线程(ThreadStackSize),这个系统线程所使用的线程不是 JVMMemory(JVM内存)
系统剩余内存 => ( MaxProcessMemory - JVMMemory - ReservedOsMemory )
系统线程创建数 => ( MaxProcessMemory - JVMMemory - ReservedOsMemory )/ ThreadStackSize
结论 => 当JVM内存越大,所能创建的线程就越少,就越容易 java.lang.OutOfMemoryError: unable to create new native thread
请求线程数小于所能创建线程数
这种情况就是程序中有bug,导致创建大量不需要的线程或者线程没有及时回收,那么必须解决这个bug,修改参数是不能解决问题的。
异常代码:
FileInputStream ips = null;
FileOutputStream ops = null;
try{
ips = new FileInputStream(new File("D:/a.txt"));
ops = new FileOutputStream(new File("D:/b.txt"));
}catch(Exception e){
e.printStackTrace();
}finally {
try{
if(ips != null){
ips.close();
}
if(ops != null){
ops.close();
}
}catch(Exception e1){
e1.printStackTrace();
}
}
这段代码看起来没多大问题,但是 ips.close() 时出现异常 , ops.close(); 就无法关闭。优化后:
FileInputStream ips = null;
FileOutputStream ops = null;
try{
ips = new FileInputStream(new File("D:/a.txt"));
ops = new FileOutputStream(new File("D:/b.txt"));
}catch(Exception e){
e.printStackTrace();
}finally {
try{
if(ips != null){
ips.close();
}
}catch(Exception e1){
e1.printStackTrace();
}
try{
if(ops != null){
ops.close();
}
}catch(Exception e1){
e1.printStackTrace();
}
}
PS:转载请注明出处
推荐阅读
-
spark大批量读取Hbase时出现java.lang.OutOfMemoryError: unable to create new native thread
-
java.lang.OutOfMemoryError: unable to create new native thread
-
java.lang.OutOfMemoryError: unable to create new native thread
-
java.lang.OutOfMemoryError: unable to create new native thread问题排查以及当前系统最大进程数量
-
解决Unable to create new native thread
-
“java.lang.OutOfMemoryError : unable to create new native Thread”
-
java.lang.outofmemoryerror unable to create new native thread
-
java.lang.OutOfMemoryError: unable to create new native thread
-
java.lang.OutOfMemoryError: unable to create new native thread
-
java.lang.OutOfMemoryError: unable to create new native thread