在大约1024个线程之后,我们在jboss上得到了“java.lang.OutofMemoryError:无法创建新的本机线程”,因为应用程序消耗了最大的用户进程
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) 14866
max locked memory (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files (-n) 1024
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) unlimited
file locks (-x) unlimited
ExecutorService service = Executors.newFixedThreadPool(2);
Collection<Callable<String>> tasks = new ArrayList<Callable<String>>();
tasks.add(ctgService); **--> THIS IS THE LINE OF OOM**
try{
List<Future<String>> taskFutures = service.invokeAll(tasks, 60L, TimeUnit.SECONDS);
for (Future<String> future : taskFutures) {
ctgMsgOut = future.get();
}
} catch (InterruptedException ie){
throw new TimeoutException("The response from GEC-CTG has exceeded the timeout");
} catch (CancellationException ce){
throw new TimeoutException("The response from GEC-CTG has exceeded the timeout");
} catch (ExecutionException ee){
if (ee.getCause() instanceof TimeoutException){
throw new TimeoutException("The response from GEC-CTG has exceeded the timeout");
}else{
throw new ConnectException("Connect exception");
}
} catch (Exception e){
e.printStackTrace();
}finally {
service.shutdown();
}
ctgMsgOut = "<MessageOutGEC>" + ctgMsgOut + "</MessageOutGEC>";
exchange.getOut().setBody(ctgMsgOut, String.class);
exchange.getOut().setHeaders(exchange.getIn().getHeaders());
你能帮我弄清楚代码哪里不对吗?在service.shutdown()之后,我应该添加tasks.clear()还是tasks.remove(ctgService)?
谢谢。
如果在rest方法中调用此代码,并且rest方法被并行调用600次,则同时创建1200个线程。
使所有方法调用都使用相同的executorservice service=executors.newfixedthreadpool(2);
-或者如果您使用现代JBoss/Wildfly,最好插入managedexecutorservice
。
我有一个Ubuntu 16.04.5服务器,运行多个Java应用程序作为根。应用程序经常(大约每30分钟到1小时)从一个。我注意到应用程序不会单独崩溃,而是多个应用程序同时崩溃。 我不知道是什么导致了这一点,我很难找到我需要改变什么来解决这个问题。 我阅读了一些关于错误的文章,并分析了多种可能的原因,但它们似乎不适用于我的情况: 应用程序定期创建线程,但许多线程也会死亡。这意味着并发线程数不会超过
问题内容: 我看到这样的评论 我见过这个问题的一个地方是,如果您继续创建线程,而不是直接在线程对象上调用run(),而不是调用start()。这将导致线程对象不被取消引用…因此,一段时间后,出现无法创建新本机线程的消息 在Sun Java论坛上 在我的应用程序中,最初我们计划使用线程,但是后来,我们决定不再需要线程,因此我们只调用run()而不是start()。我们是否需要为新的threadCla
我正在尝试实现一个广告网络的SDK,它需要我添加Google Play服务。 现在,当我添加到gradle文件时,我得到一个错误(见底部)。这可能是由于已经安装了一些其他库,但我不知道如何修复这些文件。 格拉德尔项目: 模块梯度: 错误: 错误:任务执行失败:appName: mergeDebugResources。java.lang.OutOfMemoryError:无法创建新的本地线程 如前所
我试图在(1and1VPS)上运行服务器。就在服务器启动和客户机的几个请求(重新加载网页)之后,我得到了这个错误: 但是当我在计算机上运行时,一切都正常。我使用和Centos5.8新安装制作了自己的虚拟服务器,它也在那里工作。 这个内存不足错误的原因可能是什么?如果你有任何建议,请分享。我不知道该怎么处理这个了。