Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I work on a Java application which is run within Tomcat 6 on top of the Oracle JVM (build 1.6.0_07-b06). This JVM is now 2+ years old and I think upgrading to a newer version (e.g. build 1.6.0_25-b06) would be a good idea.

Will upgrading the JVM make much impact on performance or stability of my application? Are there any good benchmarks of the likely performance difference between JVM builds? Are there any good writeups of the new features which have been introduced along with their significance? This page shows all the updates and described the new features but doesn't make it clear which features I should care about.

share|improve this question
If this is a public facing server employing SSL/TLS, update 22 or above is recommended. – Vineet Reynolds May 23 '11 at 9:02
1  
Also: strictly speaking you'd be upgrading from the Sun JVM 1.6.0_07 to a newer Oracle JVM ;-) – Joachim Sauer May 23 '11 at 9:10

2 Answers

up vote 3 down vote accepted

There have been many security fixes in this time frame. So if this is a publicly facing server (or even an accessible intranet server with a large-ish audience), then that alone is enough reason to upgrade to the newest release.

Having said that: major performance improvements in Update releases are rare with the Oracle JVM. While there are always some minor improvements, major changes usually end up in major releases.

Java 6 Update 10 was somewhat of an exception, in that it included some semi-major changes.

My suggestion: update. And work on a more aggressive upgrading-schedule.

share|improve this answer
hotspot itself has moved on a long way in the last few years (from hs10 I think in 6u7 to hs20 today), we've seen substantial performance improvements as a result (in the order of ~30% between 6u6 and 6u21 for example) – Matt May 23 '11 at 11:09
@Matt: indeed? To be honest I don't have an easily comparable code-base, because most project I worked on evolved together with the Java version, so performance wasn't ever directly comparable. – Joachim Sauer May 23 '11 at 11:10

Definitely. It is likely to improve performance and fix security issues and other bugs.

It is always possible that it could have a negative impact, so just make sure that you keep your current Java installation around so that you can revert it there are problems.

... but doesn't make it clear which features I should care about

Yea well, its not really Oracle's responsibility to tell you what to care about :-)

Seriously, the issues that are relevant to you will depend on your application. The release notes assume that you are a professional and are able to make your own informed judgements on these things. (And that includes trying things out on your test platform and measuring any performance changes.)

share|improve this answer
You make a fair point. However, update 14 added the DoEscapeAnalysis option which sounds very good but would have been more impressive if Oracle had quoted some numbers about what a difference it can make or some more detail about exactly when it is useful. – mchr May 23 '11 at 9:24
@mchr - The only numbers that really matter are the ones for your application ... and Oracle can't predict that with any level of certainty. If you care about it, you can do your own benchmarking with escape analysis enabled and disabled. AFAIK, it is disabled by default. – Stephen C May 23 '11 at 9:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.