Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Redo latch contention
Setting it too high may cause additional content switching.
"Walking on water and developing software from a specification are easy if both are frozen."
Christopher R. Spence
Oracle DBA
Fuelspot
-----Original Message-----
Sent: Saturday, June 16, 2001 4:26 AM
To: Multiple recipients of list ORACLE-L
Hi All,
I had some situation of Redo Allocation and copy latch contention as stated in following output.....
SQL> SELECT substr(NAME,1,18) NAME, GETS,MISSES, IMMEDIATE_GETS,
IMMEDIATE_MISSES
FROM V$LATCH WHERE NAME LIKE '%redo%'
/
NAME GETS MISSES IMMEDIATE_GETS IMMEDIATE_MISSES ------------------ ---------- ---------- -------------- ---------------- redo allocation 74878 16 0 0 redo copy 114 100 53756 232 redo writing 30219 1 0 0
3 rows selected.
Realizing small contention on redo allocation latch, I increased the value of "log_small_entry_max_size" from 80 to 90.
But this would definitely overload (already suffering) redo copy latches, so I increased the value of log_simultaneous_copies from 2 to 6.
This sorted out redo latch contention, but somewhere in FM it's mentioned that value of log_simultaneous_copies shouldn't be more than (2 * #_of_CPUs). Again I know that the CPU is "not" heavily used so far. So...
Interestingly, in Oracle 8i (Oracle 8.1.6) Tuning Manuals they still talk of these parameters(which are made obsolete)...
Appreciate your inputs ;-)
Cheers,
Rajesh
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Rajesh Dayal
INET: Rajesh_at_ohitelecom.com
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Sat Jun 16 2001 - 11:35:33 CDT