- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- strange top report
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
07-25-2007 02:24 AM
07-25-2007 02:24 AM
Please help explaining this output of top command.
we are using:
Server: 9000/800/rp7420
Main Memory: 4058 MB
Processors: 2
OS: HP-UX 11.11
OS mode: 64 bit
swapinfo -tam
---------------
Mb Mb Mb PCT START/ Mb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 4096 623 3473 15% 0 - 1 /dev/vg00/lvol2
dev 4000 620 3380 16% 0 - 1 /dev/swap02/lvol1
reserve - 3334 -3334
memory 3039 1085 1954 36%
total 11135 5662 5473 51% - 0 -
top output
----------
Load averages: 0.11, 0.12, 0.13
397 processes: 361 sleeping, 35 running, 1 zombie
Cpu states:
CPU LOAD USER NICE SYS IDLE BLOCK SWAIT INTR SSYS
0 0.12 3.4% 0.0% 1.4% 95.2% 0.0% 0.0% 0.0% 0.0%
1 0.10 7.2% 0.0% 5.0% 87.8% 0.0% 0.0% 0.0% 0.0%
--- ---- ----- ----- ----- ----- ----- ----- ----- -----
avg 0.11 5.2% 0.0% 3.2% 91.6% 0.0% 0.0% 0.0% 0.0%
Memory: 2622612K (1958036K) real, 20252400K (19036452K) virtual, 12624K free Page# 1/37
My question relates to the virtual allocated memory(20252400K (19036452K) shown by top. our system has 4GB physical + 8GB swap. how 20GB of virtual space is allocated and where it is getting the extra space from.?????
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2007 02:29 AM
07-25-2007 02:29 AM
Re: strange top report
swapinfo is a utility written by HP, conforming to their definition of memory, which is ram plus swap.
top was not written conforming to this rule and is prone to make mistakes.
swapinfo is accurate when it disagrees with top.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2007 03:46 AM
07-25-2007 03:46 AM
Re: strange top report
You can also verify this using glance -m
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-25-2007 01:07 PM
07-25-2007 01:07 PM
Re: strange top report
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2007 10:07 PM
07-27-2007 10:07 PM
Re: strange top report
Thank you for your quick replies.
We don't have Glance; when we feel slowness in the system the first cmd we use
to check is the TOP cmd. on the memory line
the free memory is almost accurate, and the real memory figures are also acceptable, but the virtaul memory figures are very high value which exceeds the physical + swap installed on the system.
As I understand from your answers TOP is completly wronge on figures shown on memory line for virtual size of the processes on the system.
Is there any other means to see the virual size of the processes running on the system.
Best Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2007 03:25 AM
07-28-2007 03:25 AM
SolutionFrom a performance point of view, paging out has a terrible effect on processing, from 10:1 to 50:1 degradation for competing processes. Fortunately, you can measure this with vmstat. Just look at the po (page out) during the busiest periods, the po number should be 0 to about 10-20. 50 or more means too little RAM is available, and 100 or more means your system is crawling along.
You can see how much space is used by each process by using this command:
UNIX95=1 ps -e -o vsz,pid,ruser,args|sort -rn
the largest processes will be at the top of the list. As with top, shared memory, shared libraries and buffer cache will not be seen.
Now this is only part of the performance puzzle. A poorly designed database may cause massive amounts of disk activity, something that top does not measure.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-28-2007 07:25 PM
07-28-2007 07:25 PM
Re: strange top report
Thanks for your help, your answer was great.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2007 06:45 PM
08-05-2007 06:45 PM