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.
-------------------------------
If a process must acquire one of the redo copy latches, it needs to have this control structure to copy redo into the redo log buffer. This type of latch contention is unusual, but can occur with very high-concurrency OLTP workloads.
For pre-Oracle Database 10g systems, the wait event will be latch free, with the associated latch being redo copy. For later systems, the wait event is simply latch free: redo copy. Regardless of your Oracle release, a simple and very effective solution is to increase the instance parameter _log_simultaneous_copies, which will increase the number of redo copy latches. This is an elegant solution that is very likely to eliminate redo copy latch contention without requiring any changes to either the operating system or to the application.
As discussed in the previous section, in pre-Oracle9i systems, the redo copy latch can also be used to allocate space in the redo log buffer. So, one Oracle-focused option is to increase the _log_small_entry_max_size instance parameter. Because this hidden instance parameter affects both the redo allocation and redo copy latches, a more direct solution is to simply add more redo copy latches.
©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.
|