DB file sequential reads wait event comes under the User I/O wait class. In any busy system this is one of the most common wait event and normally appears in the top 5 wait events. In this post we’ll understand whats happening during this wait event.
In simple words, Db file sequential reads wait event occurs when a process has issued an I/O request to read one block (single block I/O) from a datafile (Or datafile headers) into the buffer cache and is waiting for the operation to complete. These single block I/Os are usually a result of using indexes Or table data blocks accessed through an index.
So, when you issue any SQL Statement that performs a single block read operation against indexes, undo segments, tables (only when accessed by rowid), control files and data file headers, oracle server process waits for the OS to provide that block from the data file, and the wait event on which server process waits till the block is made available is termed as db file sequential read.
This is a common phenomenon BUT if you see this wait event is a significant portion of the total wait time then there are following things that we can do:-
- Identify Top SQLs responsible for Physical Reads (SQL Ordered by Reads section in AWR) and tune them to use efficient explain plan:-
- If Index Range scans are involved, more blocks than necessary could be being visited if the index is unselective. By forcing or enabling the use of a more selective index, we can access the same table data by visiting fewer index blocks (and doing fewer physical I/Os).
- If indexes are fragmented, again we have to visit more blocks because there is less index data per block.
In this case, rebuilding the index will compact its contents into fewer blocks. Indexes can be (online) rebuilt, shrunk, or coalesced. - If the index being used has a large Clustering Factor, then more table data blocks have to be visited in order to get the rows in each index block: by rebuilding the table with its rows sorted by the particular index columns we can reduce the Clustering Factor and hence the number of table data blocks that we have to visit for each index block.
- Use Partitioning to reduce the number of index and table data blocks to be visited for each SQL statement by usage of Partition Pruning.
- Identify HOT Tablespace/Files which are are servicing most of the I/O requests.
- I/Os on particular datafiles may be being serviced slower due to excessive activity on their disks. In this case, find such hot disks and spread out the I/O by manually moving datafiles to other storage or by making use of Striping, RAID and other technologies to automatically perform I/O load balancing for us.
- Analyze V$SEGMENT_STATISTICS and see if indexes should be rebuilt or Partitioning could be used to reduce I/O on them.
- Use Buffer Cache Advisory and Increase the Buffer Cache if there is a potential benefit.
Pingback: Oracle Wait Events | Oracle Database Internal Mechanism
Thank you for the post, glad to read from you again.
Cheers,
Foued
LikeLike
Hi Nitish Srivastava, your blog is nice about the reading of db file sequential reads. Here I have to like clarify my doubts. Please advise if i’m wrong about wait event understanding. Waits is the parameter that indicates a waiting time to completed relative events accomplishing time. such as DB file sequential reads is a server process is waiting for IO operation of requested data block reading from the data file and placing to buffer cache. Actually who perform this operation is OS/server process.
LikeLiked by 1 person
Its the Oracle server process that issues the relevant read() system call.
Regards
Nitish
LikeLike