1834882 Members
2472 Online
110071 Solutions
New Discussion

Re: JVM Stability

 
Tim Jones_3
New Member

JVM Stability

We have a production environment with 24 web server instances running on 4 hosts (6 per). Each instance has a java connector tied to it, each running in it's own JVM.

The issue is stability. Our JVMs are fine with a low load, but once we get a little traffic they start crashing left and right, leaving core dumps as they go.

We are using jvm 1.2.2.05, with all the recommended patches for it and kernel parameter settings.

Could this problem be alleviated by upgrading the JVM? Are there any other issues that could be affecting stability? What is the best way to realistically stress our environment and figure out what the issue is?

Thanks,

Tim
2 REPLIES 2
Santosh Nair_1
Honored Contributor

Re: JVM Stability

I believe HP's patching policy on JVM is that they deliver the patches in the form of a new release of the JVM. The latest 1.2 release is 1.2.0.9. There were a lot of HotSpot issues that were resolved with this release.

See the release notes:

http://www.hp.com/products1/unix/java/java2/sdkrte/infolibrary/release_notes_SDK_1-2-2-09.html#Features of this Release

-Santosh
Life is what's happening while you're busy making other plans
Praveen Bezawada
Respected Contributor

Re: JVM Stability

Hi
We had the problem of JVM crash with JVM1.2.2.07 and 1.2.2.05.
The problem was with the deprecated method 'stop', most of the time when stop was called it was causing a core dump. We changed the stop to interrupt, now it seems to be working fine.
Hope this helps.

...BPK...