- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Load average question.
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
05-26-2006 01:12 PM
05-26-2006 01:12 PM
What is the meaning of these 3 load averages 1.10, 1.11, 1.08 ?
When we can say the machine is loaded?
[root@hp01 root]# w
18:09:53 up 91 days, 5:54, 1 user, load average: 1.10, 1.11, 1.08
USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT
root pts/0 10.10.10.10 6:09pm 0.00s 0.07s 0.01s w
Tx.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-26-2006 01:42 PM
05-26-2006 01:42 PM
SolutionAs for your second question: "...machine is loaded...".
run and paste in the results of these commands:
sar -u (* cpu *)
sar -d 5 5 (* disk *)
sar -v 5 5 (* processes *)
sar -b 5 5 (* cache *)
swapinfo -tam (* memory swap *)
vmstat 2 20 (* virtual memory *)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-27-2006 09:00 PM
05-27-2006 09:00 PM
Re: Load average question.
Those are the figures for the load average on the system during the last 1, 5 and 15 minutes respectively. This gives you an understanding how the system was loaded over a period of time - because usually instantaneous values sometimes go very high and other times can be low.
The load average is similar to the CPU run-queue (which you can see using sar -q )
The load average/run queue - indicate average number of runnable processes on each CPU on your system at that time - Suppose you have 10 processes ready to run and if you have 4 CPUs then the load average/run-queue will be 2.5
Generally this figure if high indicates that there are more processes ready to run than your CPUs in the system can process at that moment.
But sometimes this figure in isolation can be deceptive - if there are a large number of short lived processes then this figure shows high value but usually does not affect the system performance.
Usually the term machine is loaded refers to CPU being loaded. So the total CPU utiisation , run-queue , GBL_PRI_QUEUE (In the OVPA/glance metric) are a good indicators to see if your system is loaded for CPU resource.
But you need to check for high memory, disk, network usages as well for a overall system performance.
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2006 08:17 PM
05-28-2006 08:17 PM
Re: Load average question.
uniprocessor system, the average number of processes in the run queue over
the last 5 minutes. It does not, generally, count processes that are
blocked waiting for resources other than the CPU however in some cases you
can get a large spike in load average from a NFS server going down that
the machine depends on.
For a multiprocessor system it gets a bit more complicated. HPUX uses the average of the average of all the CPUs (so a busy
system with an average of 4 processes waiting for each of 2 CPUs would,
under SunOS/Solaris have a load average of 8 while on a HPUX system have a
load average of 4).
High CPU load does not always mean that your CPU is at 100% all
the time. It is not to odd to see a load average of 2-3 with a average
CPU utlization of 50% or less because of lack of resources other then CPU
cycles.
There is a rule of thumb that the load average should not be greater
than the number of processors on the machine.
-Amit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2006 09:42 PM
05-28-2006 09:42 PM
Re: Load average question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2006 06:49 AM
05-30-2006 06:49 AM