- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: High memory usage by Java process
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
12-28-2004 07:26 PM
12-28-2004 07:26 PM
High memory usage by Java process
We have noticed that the RSS memory reported for one of the java process is very high in glance. Total RSS/VSS :746.9mb/ 1.44gb
Text RSS/VSS: 24kb/ 28kb Data RSS/VSS: 76mb/ 76mb Stack RSS/VSS:1.1mb/2.1mb
Shmem RSS/VSS: 19mb/ 19mb Other RSS/VSS:660mb/1.4gb
Why is Other RSS/VSS value so high. Is this a normal behaviuor ?
Thanks,
Franklin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2004 08:24 PM
12-28-2004 08:24 PM
Re: High memory usage by Java process
Usually java and java applications consume high resources
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-28-2004 08:55 PM
12-28-2004 08:55 PM
Re: High memory usage by Java process
on our systems, it uses both a huge amount of CPU as well as memory too...
Cum Disk
CPU IO Rate RSS
------------------------
154.2 0.1/ 2.1 118.6mb
1247.3 0.1/ 0.0 47.9mb
119.5 0.1/ 0.7 277.9mb
maybe the provider of the Java can explain the why in more details.
regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2005 06:33 PM
01-03-2005 06:33 PM
Re: High memory usage by Java process
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2005 07:33 PM
01-03-2005 07:33 PM
Re: High memory usage by Java process
Java processes should NEVER swap.
A good idea is to use PRM to allocate one cpu for each instance, since the garbage-collector uses lots of cpu, to clean its memory for collected objects.
inside the java code (J2EE), the programmers set there values, about how much memory that should be used..
One also set the limit for when the GC start to clean unused objects..
Talk with the application developers to sort this out.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2005 08:02 PM
01-03-2005 08:02 PM
Re: High memory usage by Java process
the regions flagged as "Other" are typically memory mapped files which are used for JVM-internal memory management. Quite usual though that these are the largest ones.
If RSS is large then either the working set of the process is large (means that the process is quite actively using its allocated memory) or your system has plenty of memory free (means that the kernel has no need to reduce the RSS by paging parts of it out).
A good rule of thunb is to simply look at the system's pageout rate. If it's low then you don't have any memory pressure at all.
Best regards...
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2005 12:11 AM
01-05-2005 12:11 AM