vote up 6 vote down star
2

For Java SE there are several JVM's available for running in production on x86:

plus some custom offerings for running on a server:

Other platforms:

  • Sun Solaris JVM - better scalability than x86?
  • (edit) GNU compiler for Java - http://gcc.gnu.org/java/ - can compile to native code on multiple platforms.

The Sun JVM has a distinct advantage with the jvisualvm program, which allows runtime inspection of running code. Is there any technical advantages of any other JVM that might make it a better choice for development and/or production?

In other words, is there a killer facility or scenario that would make any investment of time/effort/money worth it in another JVM?

(Please also suggest additional JVM's if they would be a good choice).

flag

64% accept rate
Unless I'm missing something, Azul and Google App Engine give you what they give you. The JVM isn't really part of the consideration. Would you host on Google app engine instead of your own hardware because of the JVM? Of course if it was a bad JVM, that is different, but I am mean assuming it is adequate, it doesn't seem to be a driver in such a decision, so it seems that it shouldn't really be part of the question. – Yishai Nov 1 at 16:49
Azul and Google App Engine both allow deployments of Java applications (with some restrictions). Question was if there was a facility that was so fantastic that it would be beneficial to know about it. – Thorbjørn Ravn Andersen Nov 2 at 7:24

6 Answers

vote up 1 vote down

Not strictly a JVM, but still a Java implementation: gcj. It has the advantage of supporting many processors, so if you target one of the embedded processors, gcj may be your only choice. Plus, since it is a true compiler (not just a JIT), you save the overhead of JIT compilation (both in memory and cycles) on the embedded target.

link|flag
Problem with gcj is that it is based on GNU Classpath (as far as I know) which has not passed the TCK (Suns test for Java compliency). I'll add it to the list. – Thorbjørn Ravn Andersen Nov 1 at 13:29
vote up 0 vote down

From what I've been told, the main difference with Sun's JVM and IBM's JVM is in the actual garbage collectors, IBM's garbage collector(s?) are much more configurable than Sun's and are made only the business world in mind. Additionally IBM's JVM can tell a lot more than "I just crashed, here's my heapdump" in error situations which is obviously important in the business world which is the main living space of IBM's JVM.

So assuming I haven't been lied to, I'd say that IBM's JVM should be used when doing memory-intensive things in business software which relies on aggressive or otherwise highly tunable garbage collection.

link|flag
More configurable than the Sun JVM? Sun's JVM must have 20+ configurable parameters. Having even more is not a good thing. java.sun.com/docs/hotspot/… – jonathan-stafford Nov 6 at 19:19
Sometimes the level of configurability is the difference between crashdumping and stable software, good example being the odd way Sun's JVM handles native DOM elements (hint: poorly, gc:s at the last possible moment instead of granulary piece by piece). Then again I had a nice chat with a pleasant IBM representative about these issues some time ago so that's purely what I base my "knowledge" on. – Esko Nov 6 at 19:42
vote up 1 vote down

Back in the Java 1.4 days my team used the IBM JVM for a high-volume, message-based system running on Linux. Why did we do this? Because we benchmarked the different JVMs! JRockit was actually the fastest, but it would occasionally crash, so not so great for production.

As always with these things, measure it!

link|flag
I was not thinking as much in speed, but in facilities that help. I believe that Sun has a killer application in jvisualvm, and I was wondering if I missed something similar in other offerings. – Thorbjørn Ravn Andersen Nov 2 at 7:22
vote up 3 vote down

IBM J9

This is the kind of sales speech you can read or hear about J9:

IBM has released an SDK for Java 6. Product binaries are available for Linux on x86 and 64-bit AMD, and AIX for PPC for 32- and 64-bits. In addition to supporting the Java SE 6 Platform specification, the new SDK also focuses on, Data sharing between Java Virtual Machines, Enhanced diagnostics information, Operating system stack backtraces, Updated jdmpview tool, platform stability, and performance.

Some would say that the IBM SDK has some advantages beyond speed, that the use and expansion of PermGenSpace is much better than in the Sun SDK or GCJ (not a big deal for client applications, but heavy lifting J2EE servers, especially portal servers, can really cause the Sun JDK heartburn). But, according to this paper comparing Sun vs IBM JVM GC, it turns out that memory performance depends mostly on the application and not so much on the VM.

So, while it's true that the IBM JVM is well known for its troubleshooting features (more advanced than Sun's JVM), I'm not convinced by the differences at the GC level.

And Sun's JVM has a big advantage over IBM, at least on Solaris: DTrace providers. Actually, I've been mainly working with Weblogic on Solaris so Sun' JVM has always been the natural choice.

Oracle JRockit

I did some benchmarks of BEA/Oracle JRockit some years ago and it was indeed a fast VM and it was then supporting bigger heaps than Sun's VM at this time. But it has some stability problems which is not really good for production. Things might have change since then though.

Apache Harmony

I might be wrong but, to me, Harmony is made of code donations from IBM (benefits: the community is doing maintenance) and I don't really see why I should consider Harmony rather than IBM J9.

Apple's JDK

I never had to use Mac for production so I can't really answer. I just remember Apple needed some time to bundle Java 6, and I don't know why. This is maybe not rational but this makes me suspicious.

OpenJDK

I know that some vendor are offering production support (e.g. RedHat with RHEL 5.3+, see this blog entry) for OpenJDK so it might be an option for platforms not supported by Sun. However, unless someone can tell me what makes OpenJDK work better than Sun's, I think I'll install Sun JVM on supported platforms.


So to me, the choices are actually: Sun's JVM unless I've to run some Websphere stuff, in which case I'd choose IBM J9. But to be honest, I've never faced a situation that I couldn't solve on a Sun's JVM and that could have justified (temporary) swapping to IBM' one so I can't actually tell if the troubleshooting features are that nice. But I admit that I may suffer from a lack of knowledge of IBM's JVM.

link|flag
Thank you for listing the options. I was not looking for a comparison or suitability, but a "hey, THIS is so much better than everything else!". – Thorbjørn Ravn Andersen Nov 2 at 7:25
dTrace - I explicitly asked Kirk Pepperdine if dtrace had ever helped him with a Java performance issue. He said, "Never". The iostat and vmstat tools provide enough information to determine system bottlenecks. – Thorbjørn Ravn Andersen Nov 2 at 7:26
Well, to my knowledge, there is no such ultimate thing. But people may have a different opinion so I'll follow this thread very carefully. Regarding dTrace, coming from Kirk Pepperdine, that's a very interesting feedback. Thanks for sharing this. – Pascal Thivent Nov 2 at 9:47
The problem with dtrace and java as I understand it is that the additional things you can learn are low-level and relevant for those implementing the JVM, not those using the JVM. If you can see that "writing to disk is the bottleneck" then it will not make you much wiser to know the name of the C routine doing the work, if you would simply wrap a Writer with a BufferedWriter anyway. – Thorbjørn Ravn Andersen Nov 2 at 12:35
vote up 0 vote down

In my own experience and at face value, I see simplicity in the IBM GC design. Sun's various and new GCs are excellent no doubt and offer a host of tuning options at minute levels, but even in some of the most active web apps I know that handle heavy/aggressive new objects and keep a lot in the heap for cache I rarely see GC ever exceed 1% even trying to keep the footprint low. Sure we could probably tune it better but there's a diminishing return.

I have had much more of a challenge in the exact same applications running IBM's JDK. In particular having issues with pinned clusters and having to tune -Xk.

Now I could mention about a dozen items that both IBM and Sun should implement for the killer JVM but not the scope of your question I presume :)

link|flag
vote up 1 vote down

JRockit comes with JRockit Mission Control, which is a tools suite you can use to monitor the JVM and your application. You can download it here, it's free to use for development.

Mission Control has a lot of features that VisualVM is missing, for instance an online memory leak detector, a latency analyzer, Eclipse integration, JMX.logging to file. etc. If you want to compare VisualVM with Mission Control here are the release notes and the documentation for the latest version.

link|flag

Your Answer

Get an OpenID
or

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