Re: Database performance during hot backup

From: Jonathan Lewis <jonathan_at_jlcomp.demon.co.uk>
Date: Fri, 30 Mar 2012 17:21:46 +0100
Message-ID: <CDD8F455735A43D3ABE3C34C432B3957_at_Primary>


If you're doing a backup you're presumably copying the database files - which may mean that every db file read is a little slower, which may be enough to slow down the DML - especially since DML often requires indexes to be maintained and index maintenance often leads to random single block reads. The I/O due to backing up could also slow down the log file parallel writes, increasing the time for log file sync waits.

Given that you could be increasing the size and number of writes to the log file you've got another reason for seeing slower DML times, even if the log writes isn't under any particularly heavy load.

Regards

Jonathan Lewis
http://jonathanlewis.wordpress.com
Oracle Core (Apress 2011)
http://www.apress.com/9781430239543

  • Original Message ----- From: "Hameed, Amir" <Amir.Hameed_at_xerox.com> To: <oracle-l_at_freelists.org> Sent: Friday, March 30, 2012 2:37 PM Subject: Database performance during hot backup

Folks,
I am trying to understand if it is expected to see performance degradation of DML transactions that are active during a hot backup. It is my understanding that the only noticeable thing that happens during a hot backup for DML statement is an increase in the amount of redo generation and that is because Oracle starts to log full images of data blocks before a change is made to a data block. I am not aware of any impact on performance while in hot backup mode, unless the LGWR is being constrained for some reason.

--

http://www.freelists.org/webpage/oracle-l Received on Fri Mar 30 2012 - 11:21:46 CDT

Original text of this message