oracle中WAIT TIME 和 CPU TIME
(原創)
DB time =DB wait time +DB CPU time
DB Time
Tuning is not just about reducing waits. Its goal is to improve end-user response time and/or minimize the average resources used by each individual request. Sometimes these
go together, and in other cases there is a trade-off (for example, parallel query). In general,we can say that tuning is the avoidance of consuming or holding resources in a wasteful manner.
Any request to the database is composed of two distinct segments: a wait time (DB waittime) and a service time (DB CPU time). The wait time is the sum of all the waits for various resources. The CPU time is the sum of the time that is spent actually working on the request or waiting on the OS run queue. These times are not necessarily composed of one wait and one block of CPU time.
Tuning consists of reducing or eliminating the wait time and reducing the CPU time.
This definition applies to any application type: online transaction processing (OLTP) or
data warehouse (DW).
Note: A very busy system shows longer DB CPU time due to waits on the run queue.
An overloaded system causes processes
DB time =DB wait time +DB CPU time
DB Time
Tuning is not just about reducing waits. Its goal is to improve end-user response time and/or minimize the average resources used by each individual request. Sometimes these
go together, and in other cases there is a trade-off (for example, parallel query). In general,we can say that tuning is the avoidance of consuming or holding resources in a wasteful manner.
Any request to the database is composed of two distinct segments: a wait time (DB waittime) and a service time (DB CPU time). The wait time is the sum of all the waits for various resources. The CPU time is the sum of the time that is spent actually working on the request or waiting on the OS run queue. These times are not necessarily composed of one wait and one block of CPU time.
Tuning consists of reducing or eliminating the wait time and reducing the CPU time.
This definition applies to any application type: online transaction processing (OLTP) or
data warehouse (DW).
Note: A very busy system shows longer DB CPU time due to waits on the run queue.
An overloaded system causes processes
以上是ORACLE 文件上給出的概念
以前經常在AWRRPT中看到CPU TIME 排在TOP5 EVENT的第一位,一直都不太清楚準確意思。這裡給出了,CPU TIME就是實際執行或者等待作業系統執行佇列所需要的時間,這裡作業系統執行佇列應該就是等待CPU時間片佇列吧。但是還不準確,大概就可以理解是做實際操作需要的時間(比如進行SQL分析,執行,取回)。。
然後說了最佳化的目的,就是減少等待時間,比如減少ENQ鎖等待,減少執行時間,比如減少邏輯讀啊,遊標共享啊。當然在OLTP和OLAP的最佳化不一樣,OLAP一般瓶頸在大量的讀,這個時候使用繫結變數視乎效果不好。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7728585/viewspace-680729/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle CPU TIME 漫談Oracle
- 【Mysql】MySQL中interactive_timeout和wait_timeout的區別MySqlAI
- mysql的wait_timeout和interactive_timeoutMySqlAI
- 【MySQL】淺析interactive_timeout和wait_timeoutMySqlAI
- session檢視中wait_timeSessionAI
- cpu time 分析
- Oracle OCP 1Z0-053 Q20(Resource Manager&CPU_WAIT_TIME)OracleAI
- MySQL之wait_timeout和interactive_timeout引數MySqlAI
- 鎖:innodb_lock_wait_timeout和 innodb_rollback_on_timeout?AI
- Python中time, strftime和strptimePython
- MySQL中wait_timeout的坑MySqlAI
- 調整time_waitAI
- time wait bucket table overflowAI
- v$active_session_history的wait_time和time_waited 列SessionAI
- interactive_timeout和wait_timeout引數區別和設定策略AI
- TCP連線狀態和time_waitTCPAI
- 關於trace檔案中的recursive calls , elapse time及cpu time,
- Oracle中Date和Timestamp的區別Oracle
- v$latch 的wait_timeAI
- TCP漫談之keepalive和time_waitTCPAI
- Mysql中的Datetime和Timestamp比較MySql
- MySQL中datetime和timestamp的區別MySql
- Mysql引數解釋---wait_timeout、interactive_timeoutMySqlAI
- timestamp with local time zone型別和timestamp with time zone型別
- TCP連線的TIME_WAIT和CLOSE_WAIT 狀態解說TCPAI
- ConnectionTimeout和SocketTimeout
- Linux中system time和processor time(修改日期和時間)Linux
- Go Time包中的NewTimer()和After()函式Go函式
- Oracle中的TIMESTAMP型別Oracle型別
- 【YashanDB知識庫】YAS-02024 lock wait timeout, wait time 0 millisecondsAI
- DB CPU time% 的計算公式公式
- MySQL:引數wait_timeout和interactive_timeout以及空閒超時的實現MySqlAI
- 大量time-wait的處理方法AI
- time_wait的成因和解決方案AI
- 解決TIME_WAIT的問題AI
- tcp 埠的time_wait 問題TCPAI
- oracle time modeOracle
- Oracle TimestampOracle