WebSphere Application Server & Liberty

WebSphere Application Server & Liberty

Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.

 View Only
Expand all | Collapse all

What is the maxium heap size we can allocate to single JVM?

  • 1.  What is the maxium heap size we can allocate to single JVM?

    Posted Tue December 20, 2011 11:00 PM
    What is the maxium heap size we can allocate to single JVM?


  • 2.  What is the maxium heap size we can allocate to single JVM?

    Posted Wed December 21, 2011 02:13 AM
    in one line......

    it depends on your hardware configuration 


  • 3.  What is the maxium heap size we can allocate to single JVM?

    Posted Thu December 22, 2011 04:26 PM
    If you're running 32-bit WAS on UNIX, it's 2GB. If running 64-bit WAS it's effectively unlimited, limited to the amount of physical memory installed. If on UNIX, you'll need to subtract several GBs for operatnig system, etc.


  • 4.  What is the maxium heap size we can allocate to single JVM?

    Posted Thu December 22, 2011 09:59 PM
    I f you are ruunig on WAS 32 bit then the theoritically maximum heap size you can use would be 4 GB ( 2 power 32) and if you are running on WAS 64 bit then its in teraa bytes (2 power 64).

     


  • 5.  What is the maxium heap size we can allocate to single JVM?

    Posted Fri December 23, 2011 03:59 AM
    However you should be aware of the performance impact of garbage collection when allocating large amounts of RAM to your java process.
    The more RAM you allocate, the longer the garbage collection pauses get (stop the world). On our HP-UX IA64 Systems, we tend not to use more than 2GB HEAP (which results in about 4GB total RSS process memory) for our web application servers, as FULL GC pauses get as high as 6-8 seconds (which is already bad from a user perspective, as the applications become unresponsive for this time).


  • 6.  What is the maxium heap size we can allocate to single JVM?

    Posted Fri December 23, 2011 01:58 PM
    I sugest you to follow this document to determine the heap usage in your application serving environment. Once the mertrics and trends are collected and analyzed.. it will be easy to decide what would be the good heap settings. 

    www.websphereusergroup.org/josephamrithr... 


  • 7.  What is the maxium heap size we can allocate to single JVM?

    Posted Sat December 31, 2011 09:02 AM


  • 8.  What is the maxium heap size we can allocate to single JVM?

    Posted Mon January 02, 2012 04:34 AM
    Perhaps this will help, too:
    www-304.ibm.com/support/docview.wss?uid=...


  • 9.  What is the maxium heap size we can allocate to single JVM?

    Posted Mon January 16, 2012 05:26 AM
    Thanks to All for the reply.