- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Java 1.3 memory SIZE
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 05:10 PM
08-18-2004 05:10 PM
When starting even a few lines "Hello World"-type Java application, the SIZE-field of 'top' jumps right over 200M. OS is patched according to instructions found from http://www.hp.com/go/java. Also kernel parameters are set to fill the requisities.
The output of top looks a little bit ugly at least if you look at the SIZE-field of Java-processes. But on the other hand, Glance shows not-so-critical memory consumption. So should I trust Glance on this issue, or what?
As far as I remember, with the older Java 1.3.x-versions and older QPK:s we didn't had this problem. Attachment contains a snippet from 'top'-output.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 07:29 PM
08-18-2004 07:29 PM
Re: Java 1.3 memory SIZE
You will have to rely on the glane report
only as the SIZE column in the top command
is not exactly the size of memory used but...
it's
""Total size of the process in kilobytes. This includes text, data, and stack.""
BTW i saw java running from 2 terminals
ttyp2 & ttyp5 .. Pls try to run it from 1 terminal.
If at all you are really concerned about the memory then i will advise you to use
vmstat & see if the po ( page out ) values are high..
Rest all seems OK to me..
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2004 08:05 PM
08-18-2004 08:05 PM
Re: Java 1.3 memory SIZE
Indeed top is a bad choice for this
Glance is better
Memory Usage - â What is using all of the memoryâ ?
by:eric.herberholz@hp.com
Last modified: July 26, 2004
Latest version available at external ftp site:
ftp://eh:spear9@hprc.external.hp.com/memory.htm
This site gives you access to some real memory toys to see what is happening.Unsupported but good
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2004 02:19 AM
08-19-2004 02:19 AM
Re: Java 1.3 memory SIZE
SIZE can matter since virtual address space usually directly correlates with swap space reservation (so if you don't have much swap, you're not going to be thrilled if some apps go chewing up the virtual address space), but if I recall correctly - Java uses lazy swap, so you're only going to consume what swap you really need.
In summary -- keep an eye on your swapinfo output, but unless RES also shows a similar large chunk I wouldn't worry about it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2004 06:02 AM
08-19-2004 06:02 AM
Solution