- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- load value in 'top' command
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
04-26-2001 12:52 PM
04-26-2001 12:52 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2001 12:57 PM
04-26-2001 12:57 PM
Re: load value in 'top' command
Prashun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2001 06:25 PM
04-26-2001 06:25 PM
Re: load value in 'top' command
Hope this answer your question.
Rgds,
Philip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2001 07:04 PM
04-26-2001 07:04 PM
Re: load value in 'top' command
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2001 08:15 PM
04-26-2001 08:15 PM
SolutionFor any load averages that is equal to or greater than 1, that means your system is under heavy load. Load averages of 2, 3, or 5 don't really matter if you only want to know whether your system is busy or not. Because that just mean how many jobs were splitting the cpu time, the cpu was fully utilized anyway.
You can imaging how busy your system was for the past 15 minutes by looking at the "load averages" line from the top command.
Load averages: x, y, z
If x is equal to or greater than 1, that mean there was x number of jobs in the run queue for the past minute. That also mean your cpu was utilized because there was at least 1 job in the run queue for the whole period.
If y is equal to or larger than 1, that mean your system was very busy and being tied up by y number of jobs for the past 5 minutes.
If z is >= 1, you have an extremely busy system, because the system was under load (prbably full load) for the past 15 minutes.
Rgds,
Philip
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2001 11:52 PM
04-26-2001 11:52 PM
Re: load value in 'top' command
As many have said load as displayed by the TOP command is dependant upon your servers use.
One of my main business servers a 4 way N class runs around 3 for the main part of the working day -
I tend to allow a load of 1 per processor so 4x1 = 4 and if my system goes over 4 I consider it busy in that response to my users is degraded slightly.
Whereas another of the main servers running a different database again a 4 way N class is I consider busy if it reaches 0.75 as this is above normal for it.
Each server has approx 800 concurrent users from a users base of approx 14000 so as previously said, "it depends".
What is more important that the "Load" figure is response to the users and therefore the viability of the server to carry out its prime role. This in my case is selling holidays.
HTH
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2001 03:23 AM
04-27-2001 03:23 AM
Re: load value in 'top' command
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2001 01:48 PM
04-27-2001 01:48 PM
Re: load value in 'top' command
For example, I was working with a machine the other day with an idle around 80% and a LOAD of 400-something and rising slowly.
LOAD indicates the number of processes read to run at a given time. Some tools divide it by the number of processors, some don't... but having a system load of higher than your number of processes means things are getting worse.
Extremely high load values indicate that you probably have a deadlocked condition of a critical resource, causing lots of processed to be 'ready to run' but sleeping on some event that will never happen. In my case it was a veritas get_inode bug... 400 some processes all trying to access a file by name and hanging. The great thing is that virtualy every tool you will run to analysis the problem hangs and just adds to the traffic jam. q4 is your friend.
Just wanted to make people aware than when the numbers get WAY out of line, this is something to check for.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2001 05:09 PM
04-27-2001 05:09 PM
Re: load value in 'top' command
My two cents...
In the top as you can see the load on the CPU's which is the average load on the system. I would like to draw your attention to the following output....
Cpu states:
CPU LOAD USER NICE SYS IDLE BLOCK SWAIT INTR SSYS
0 0.45 4.8% 0.0% 2.9% 92.3% 0.0% 0.0% 0.0% 0.0%
1 0.04 1.9% 0.0% 2.9% 95.2% 0.0% 0.0% 0.0% 0.0%
--- ---- ----- ----- ----- ----- ----- ----- ----- -----
avg 0.25 3.8% 0.0% 2.9% 93.3% 0.0% 0.0% 0.0% 0.0%
Here as a sysadmin, I would observe the values of
LOAD on each CPU (in a multiple CPU environment), CPU utilized by the USER processes, CPU utilized by the system. There should not be an erratic utilization on either part.
Secondly the load on each CPU should be nearly same. In some environments, some programs can adhere to the same CPU. In that scenario we would find that one CPU is being utilized 100% and the other one is idle. Patches are available to avoid this.
Hope this helps.....
Suhas.