You were brought to this page based on an internet search
and as a free service to Oracle DBAs.
The text below is an except from the book,
Oracle Performance Firefighting, written by
Craig Shallahamer of
OraPub, Inc.
Figures and tables are not included on this page, only their reference.
To order the book in either print or PDF form, click
here.
©2009, 2010 by Craig Shallahamer. This is copyrighted material.
PleaseOut of respect for those involved in the creation of the book and also for
their familes, we ask you to respect the copyright both in intent and deed. Thank you.
-------------------------------
Figure 4-19. A classic instance-level interval (30 seconds) wait event report based on v$system_event. Over the duration of this report, the IO subsystem responded to Oracle's multiblock read requests on average in 2.8 ms. That's pretty good!
Be careful about making assertions when there are not very many samples. For example, during the 30-second interval between reports, single-block read requests (event db file sequential read) took an average of 8.2 ms, but Oracle server processes issued less than 1,000 of them. Another more pronounced example is log writer multiblock writes (event log file parallel write) took an average of 49.0 ms! Normally, that would be unacceptable, but they occurred less than 1,000 times during the report interval, and their combined time accounts for only 0.45% of the wait time. So this is nothing to be concerned about.
Table 4-1 lists the Oracle-related wait events that can be useful in understanding IO subsystem response time. When focusing on the IO subsystem, and not analyzing Oracle response time, I am primarily concerned with multiblock writes, and single-block and multiblock reads. My general rule of thumb is a 10 ms response time. Different applications will have different service-level requirements, but this is a good general guideline. The wait event log file sync is how long commits take from an Oracle perspective. I've seen commit time requirements range from 2 to 100 ms. So it really depends on your objectives. However, in a top-of-the-line IO subsystem, you can expect IO read and write response time to be well within 10 ms.
©2009, 2010 by Craig Shallahamer. This is copyrighted material.
PleaseOut of respect for those involved in the creation of the book and also for
their familes, we ask you to respect the copyright both in intent and deed. Thank you.
|