`

JVM "Out of swap space"错误常见的原因

 
阅读更多

Out of swap space error generally occurs when your native heap is running out of memory not the java heap.The following could be the suspects which may leak the native memory:


1) JDBC Objects if it is a native driver
2) Object streams
3) NIO
4) Any other native libraries 

Tracing the jni calls to the memory would give a better idea. You can use OS Specific tools also to monitor the native memory. Also you can look for the java heap for the growth of the above mentioned java objects and try reducing it. Also make sure that you have got enough space in the swap file system.

分享到:
评论

相关推荐

    OutOfMemoryError_8种典型案例分享

    如果系统交换区耗尽,操作系统无法提供足够的虚拟内存,可能会导致抛出OutOfMemoryError: Out of swap space错误。这需要增加物理内存或调整交换区设置。 7. 请求的数组大小超出VM限制(Requested array size ...

    java内存溢出原因

    Out of swap space?` - **原因**:可能由于Java堆设置过大导致Native Heap空间不足,线程创建过多,或者JNI调用引发的堆外内存泄露。 - **跟踪解决**:通过Jstack分析线程状态,检查JNI调用,减少线程创建,使用...

    遭遇OutOfMemoryError

    接着搜索了"Out of swap space"的问题,但没有找到直接的解决方案。然后尝试通过`-XX:+HeapDumpOnOutOfMemoryError`参数生成堆转储文件,并使用`jHAT`分析,但1.5版本的JVM生成的信息有限,没有找到根本原因。 ...

    解决MyEclipse下启动项目时JBoss内存溢出的问题

    在开发Java应用程序时,我们经常会遇到服务器内存溢出(Out Of Memory)的问题,尤其是在使用集成开发环境如MyEclipse启动大型或复杂项目时,搭配应用服务器如JBoss时,这种情况尤为常见。内存溢出通常是由于应用...

    OutOfMemoryError_8种典型案例分享.pdf

    第六种情况是交换空间不足(Out of swap space)。当系统尝试使用虚拟内存(交换空间)时,如果交换空间不足,也会导致内存溢出错误。在Linux系统中,可以通过增加交换分区或使用 tmpfs 来解决。 第七种是请求的...

Global site tag (gtag.js) - Google Analytics