Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: cpu average load

RE: cpu average load

From: Gogala, Mladen <MGogala_at_allegientsystems.com>
Date: Tue, 30 Nov 2004 10:19:02 -0500
Message-ID: <D42C14B2E3F2B74DB41D5B6B2E2B992F01931F2D@pegasus.lawaudit.com>


This was a very precise and correct answer, but unfortunately rather hard to Implement in practice. Process preemption or context switching, as it is sometimes called, happens while CPU is in kernel mode. Kernel mode is normally spent only on 2 major things:
1) context switching
2) paging
CPU being in kernel mode means that OS it taking care of its own health and Happiness and not working on the user request. Commands like ps -lp <PID> or top will give you precise amount of kernel mode spent by your process. If that amount is significant, it warrants further investigation by using truss or strace. BTW, whenever a system service is requested, a context change happens. It includes things like read, write, stat and alike. The mechanism for calling system services is based on "switch mode to kernel" trap. System service number is the 1st argument for the trap handler.

--

Mladen Gogala
Ext. 121

-----Original Message-----

From: Cary Millsap [mailto:cary.millsap_at_hotsos.com] Sent: Tuesday, November 30, 2004 9:59 AM To: oracle-l_at_freelists.org
Subject: RE: cpu average load

The amount of response time that process preemptions are costing your performance is measured as the amount of response time in an extended SQL trace file that is not accounted for by the sum of your file's c values at recursive depth zero, plus the sum of your file's ela values.

--

http://www.freelists.org/webpage/oracle-l Received on Tue Nov 30 2004 - 09:18:01 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US