CPU utlization


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users CPU utlization
# 22  
Old 03-31-2010
If you note the list, there are a number of running ones.
# 23  
Old 03-31-2010
If these were equation solving programs your CPU utilisation would be close to 100% (or 4800% by some reckoning) which is not itself a problem unless there is a queue for cpu time.

What is the realtime duration of a typical process of the proposed 96 processes? What is the frequency of invoking these processes?

You mention processing files. Do you have statistics on individual disc wait times? Something is slowing the application but it is not CPU or swap.

There is a bottleneck somewhere on this computer (which may or may not matter) but without a mention of the design of the application or or a performance problem we are guessing.

Last edited by methyl; 03-31-2010 at 08:04 PM.. Reason: spellin
# 24  
Old 04-03-2010
Quote:
Originally Posted by pludi
I'll try to explain the percentages to the best of my knowledge:
  • ...
  • iowait: the time waiting for an I/O device to come ready. As long as this is 0, none of your processes had to wait for a disk to come ready, or was blocked by a slow net connection.
  • ...
Beware that Solaris 10 and newer always report 0 for iowait regardless of what is actually happening under the hood. This metric has proved itself both confusing (iowait is really idle time as far as the CPU is concerned) and inaccurate.

See OpenSolaris Forums : Wait I/O Calculations ... for details.
# 25  
Old 04-04-2010
That's right. iowait on most unices an lunices (other than Solaris>9) nowadays just means idle time during which IO was being performed. It has become a largely useless statistic, but it may sometimes give a rough indication of where to look.
# 26  
Old 04-07-2010
Quote:
Originally Posted by Scrutinizer
That's right. iowait on most unices an lunices (other than Solaris>9) nowadays just means idle time during which IO was being performed.
Not only nowadays. As far as I know, this metric has always meant idle time while an outstanding I/O was in progress.
Quote:
It has become a largely useless statistic, but it may sometimes give a rough indication of where to look.
Indeed although I would say it stayed a largely useless statistic here. Knowing how many I/Os are waiting to be processed is a much better one.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Why Entitlement CPU can't be set to same as Virtual CPU?

I read that Entitlement CPU should be set to max 75% compare to Virtual CPU. May I know the reason. I have set the Entitlement CPU = Virtual CPU on AIX . It works fine . Can you help to understand. (1 Reply)
Discussion started by: gabhanes
1 Replies

2. AIX

Entitled CPU lesser Than Used CPU !!

Hi All, It may be a n00b question, but i really want to know , How Entitled Capacity is less and Used CPU is more when there is no Free CPU is available in the managed system. I have 5LPARs in a MS with Dual VIO. Managed System CPU details Available: 0.20 Assigned to partitions: 15.80... (11 Replies)
Discussion started by: Thala
11 Replies

3. UNIX for Dummies Questions & Answers

Is it possible to combine multiple CPU to act as a single CPU on the same server?

We have a single threaded application which is restricted by CPU usage even though there are multiple CPUs on the server, hence leading to significant performance issues. Is it possible to merge / combine multiple CPUs at OS level so it appear as a single CPU for the application? (6 Replies)
Discussion started by: Dissa
6 Replies

4. Solaris

Find why CPU utlization WAS high yesterday

I want to investigate why CPU utilization was high yesterday on my solaris 10 machine. I have been reported this problem but how can I investigate why CPU utilization went high at that time? :confused: (4 Replies)
Discussion started by: kashif_islam
4 Replies

5. Solaris

Difference between CPU CHIP and CPU ID

Hi All, What is the difference between CPU CHIP and CUP ID on SUN/ Oracle M5000 servers.. Thanks in advance (3 Replies)
Discussion started by: kumarmani
3 Replies

6. Solaris

CPU and CPU-Utilization

Hi, I am a weblogic Admin I our env there are 5 servers running in one Solaris 10 Sparc machine. But when i tried for process status using <top> command I got the following output load averages: 1.75, 2.18, 2.12; up 134+08:28:49 22:24:21 79 processes: 77 sleeping, 1 running,... (1 Reply)
Discussion started by: Joseph Antoine
1 Replies

7. Solaris

cpu-shares vs cpu-cap in solaris

Can anyone tell me difference between cpu-shares vs cpu-cap in solaris & how FSS will work with cpu-caps ? (9 Replies)
Discussion started by: fugitive
9 Replies

8. Solaris

Multi CPU Solaris system shows 100% CPU usage.

Hello Friends, On one of my Solaris 10 box, CPU usage shows 100% using "sar", "vmstat". However, it has 4 CPUs and prstat and glance are not showing enough processes to justify high CPU utilization. ========================================================================= $ prstat -a ... (4 Replies)
Discussion started by: mahive
4 Replies

9. UNIX for Dummies Questions & Answers

how to get persistant cpu utilization values per process per cpu in linux (! top,ps)

hi, i want to know cpu utilizatiion per process per cpu..for single processor also if multicore in linux ..to use these values in shell script to kill processes exceeding cpu utilization.ps (pcpu) command does not give exact values..top does not give persistant values..psstat,vmstat..does njot... (3 Replies)
Discussion started by: pankajd
3 Replies

10. Solaris

How to down a particular CPU in a server, witch is having 16 CPU's

Hi.., my dout is a solaris server is having 16 cpu's. in tht one cpu running some error process, accupaying more space. I wanna down tht particular CPU only with out interrupting the other 15 CPU's. how can i do this. is there any command for this ?? (5 Replies)
Discussion started by: b.janardhanguru
5 Replies
Login or Register to Ask a Question