Our company is planning to move to 64 bit JVM in order to get away from 2 GB maximum heap size limit. Google gave me very mixed results about 64 bit JVM performance. Has anyone tried moving to 64 bit java and share your experience
|
|
If you need the larger heap, then questions of performance are rather moot, aren't they? Or do you have a plan for horizontal scaling? The main problem that I've heard with 64-bit apps is that a full garbage collection can take a very long time (because it's based on number of live objects). So you want to carefully tune the GC parameters to avoid full collections (I've heard one anecdote about a company that had 64 Gb of heap, and tuned their GC so that they'd never to a full GC; they'd simply shut down once a week). Other than that, recognize that Java is 32-bit by design, so you're not likely to see any huge performance increase from moving data 64 bits at a time. And you're still limited to 32-bit array indices. |
|||||||
|
|
In a nutshell: 64-bit JVMs will consume more memory for object references and a few other types (generally not significant), consume more memory per thread (often significant on high-volume sites) and enable you to have larger heaps (generally only important if you have many long-lived objects) Longer Answers/Comments:
|
||||
|
|
Works fine for us. Why don't you simply try setting it up and run your load test suite under a profiler like jvisualvm? |
|||
|
|
|
Naively taking 32 bit JVM workloads and putting them on 64 bit produces a performance and space hit in my experience. However, Most of the major JVM vendors have now implemented a good technology that essentially compresses some of the heap - it's called compressed references or compressed oops for 64 bit JVMs that aren't "big" (ie: in the 4-30gb range). This makes a big difference and should make a 32->64 transition much lower impact. Reference for the IBM JVM: link text |
|||
|
|