vote up 11 vote down star
2

I'm surprised at how little information I can find comparing IBM's jvm to Sun's. How do they compare?

I have always used Sun's version - what are the reasons (if any) to consider switching to IBM's?

EDIT: To phrase the question a little differently: For those of you who use IBM's jvm, what are your reasons?

flag

7 Answers

vote up 3 vote down check

I've been using IBM and Sun pretty much equally often in production. Occasionally we run across some crashing-bugs in one or the other, try the other one and if it works it's the JVM of the moment until that bug is fixed.

Some time ago the IBM JDK was quite some bit faster in some setups, but I don't know if that is true any more.

The main question is: Do you want commercial support and if so, who'd you rather pay? When you're running a very IBM-heavy shop, then you might want to consider using the IBM JRE.

link|flag
That's good to know that they are pretty interchangeable. Thanks for the info. – nathan Dec 4 '08 at 15:01
vote up 4 vote down

I use IBM's JVM mostly because it is used in their WebSphere product line. One difference that I learned about a few years back is that the garbage collection algorithms are different. I don't have a link to back that up and I'm not even certain if that is still the case.

link|flag
Yeah, all the info I could find online was fairly dated, and mostly referred to garbage collection. I wonder if there is a difference anymore. – nathan Dec 3 '08 at 21:51
I just did some more surfing for answers on this with little to show for it. – martinatime Dec 3 '08 at 22:39
vote up 3 vote down

An additional alternate JVM you can investigate is BEA's jrockit, which was also supposed to faster, specifically advertised as optimized for J2EE. As with the IBM jdk, the benefit was supposed to be performance.

Haven't looked at this since 1.4 days, so my information is a bit dated.

link|flag
FWIW, I tried jRocket about 3 years ago - it seemed to perform slower in my testing. – Software Monkey Dec 4 '08 at 9:11
A lot has happened in 3 years... – staffan Feb 4 at 10:27
vote up 2 vote down

We used to use IBM's JVM years ago because it was noticeably faster on a number of platforms. For the longest time Sun's JVM has been better on the majority of platforms to the point that we only ever use IBM's JVM on AIX systems.

link|flag
vote up 2 vote down

I've used IBM's very briefly and it was faster at the time - but that was a while ago and I don't think that's the case any more.

You might want to consider running your app under 2 or 3 different JVMs for a few reasons besides performance:

  • To avoid bugs in a particular JVM
  • To ensure you're not relying on any JVM-specific behaviour
  • To ensure compatibility if you release the software to people who may be using different JVMs
  • There have been (and still are) problems with Sun's JVM and the way it uses / talks to X11 so IBM might be a better choice for Swing
link|flag
vote up 1 vote down

We use IBM's JVMs on iSeries systems... It works well enough, but I have always been left with the feeling that my desktop PC outperforms a sizeable midrange system. I can't comment, though, on whether that's differences in the hardware or JVM. It must surely be both, you'd think.

EDIT: By way of comparison, our iSeries 9406-520 with 2 CPU's, 24GB RAM and 140MB 15K HDD's takes about 2.5 minutes to startup our web server platform; the same software from the same JAR starts up in 5 seconds on my PC - a Dell Precision T7400 Intel XEON quad core at 3GHZ with 2GB RAM and 70 MB 15K HDD's.

link|flag
Possibly something to do with the workloads your putting on the ISeries. I know on a midrange Z/OS system set up for development not production IBM's Java can be an order of magnitude slower then IBM's jvm on the pC. – Jared Dec 3 '08 at 22:47
These are on reasonably powerful systems with no other apps competing for resources and the entire memory pool available (well, other than the bit reserved for the system pool). – Software Monkey Dec 3 '08 at 23:47
I have found that the Classic JVM on IBM i (same platform) is very slow at starting as it need to do a lot of housework even with the -Djava.compiler=jitc flag. This is apparently a MI-compliation issue. When up and running it is reasonably fast, but you have to be very careful with garbage collection and memory pools. – Thorbjørn Ravn Andersen Nov 1 at 7:47
vote up -1 vote down

I use Son's JVM on my desktop for most development unless IBM's comes bundled with something such as DB2 or Websphere in which case I use what ever that product defaults. I use IBM's on Z/OS since Son's doesn't run on it.

link|flag

Your Answer

Get an OpenID
or

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