Java: Unable to create new native thread

前端 未结 7 729
执念已碎
执念已碎 2020-11-28 10:25

I have a Java application that is hosted on by a web hosting company. Every few days my app goes down with:

[2011-03-09 15:52:14,501] ERROR http-12021-9 
ja         


        
相关标签:
7条回答
  • 2020-11-28 11:00

    Looks like thread leaking. Threads are created but then stuck somewhere. Dump the threads periodically to see if the number of allocated threads is growing. Look for any sleeping/hanging threads in the dump.

    kill -QUIT jvm_pid
    
    0 讨论(0)
提交回复
热议问题