java ee - Eden space and Old space utilization 100% -
I am using the jwsdp-1.2 web server. I can suddenly see that the server is unable to handle the new request. I ran the jstat on the process and I could get old and used Eden space almost 100%. ? Which JVM parameter should I change now to resolve my problem
& gt; jstat -gc 24802 10000 S0C S1C S0U S1U EC European Union OC OU PC PU YGC YGCT FGC FGCT GCT 13632.0 14208.0 0.0 0.0 23360.0 23360.0 176128.0 176123.0 20480.0 18698.0 218 7324 15948 20963,955 20971,279 13632,0 14208,0,0,0 0 , 0 23360.0 23360.0 176128.0 176123.4 20480,0 18698 218 7,324 15956 20974416 20981,739 13632,0 14208,0 0, 0 0,0 23360.0 23360.0 176128.0 176123.5 20480,0 18698 218 7,324 15964 20984,790 20992,114
Which JVM parameter should I change now to resolve my problem?
It is likely that your problem is a memory leak in your application. If that is the case, then the JVM is not helping to neutralize the parameter.
Refer to this question: You need to use a memory profile so that you can track the bug in your code.
Comments
Post a Comment