db file sequential/scattered read

  1. 等待事件:

1:Disk file operations I/O緩存

This event is used to wait for disk file operations (for example, open, close, seek, and resize). It is also used for miscellaneous I/O operations such as block dumps and password file accesses.oracle

Wait Time: The wait time is the actual time it takes to do the I/O.ide

Parameter性能

Description測試

FileOperationspa

Type of file operation操作系統

fileno3d

File identification number日誌

filetypeblog

Type of file (for example, log file, data file, and so on)

 

咱們知道操做系統在操做文件的時候,須要打開文件、關閉文件、定位文件位置等,當這些操做在進行的時候,Oracle就處於等待狀態。

 

操做系統的這些文件操做能夠劃分以下:

1.file creation
2 file open
3 file resize
4 file deletion

5 file close
6 wait for all aio requests to finish
7 write verification
8 wait for miscellaneous io (ftp, block dump, passwd file)
9 read from snapshot files

以上的這些操做大部分跟操做系統的I/O有關係。

  1. 測試

Sql語句執行前:

Sql語句執行後:

  1. 文檔說明:
    1. 2.1 db file sequential read(single-block read)

單塊讀就是一次IO讀取一個block,可能是經過rowid進行數據讀取;Oracle 爲全部的單塊讀取生成db file sequential read事件(既然是單個,固然是連續的,你能夠發現db file sequential read 等待事件的P3參數通常都是1). Oracle始終將單個數據塊存儲在單個緩存塊(cache buffer)中,  所以單塊讀取永遠不會產生db file scattered read事件.  對於索引塊,若是不是快速全索引掃描,通常都是一個一個塊讀取的,因此說,這個等待事件不少時候都是索引讀取引發的。

    1. 2.2 db file scattered read(multi-block read)

多塊讀就是一次讀取多個block,多在full table scan中;db file scattered read 通常都是等待同時讀取多個塊到內存中。爲了性能和更有效的內存空間利用,oracle通常會把這些塊分散在內存中。db file scattered read 等待事件的P3參數指出了每次I/O讀取的塊數。每次I/O讀取多少個塊, 由參數db_file_multiblock_read_count控制。 全表掃描或者快速全索引掃描時通常使用的這種讀取塊的方式,因此,該等待不少時候都是由於全表掃描引發的 ;在大部分狀況下, 全表掃描與快速全索引掃描都會產生一次或屢次db file scattered read.

 

等待問題

可能的解決方法

Sequential Read

代表有不少索引讀——調整代碼(特別是錶鏈接部分)

Scattered Read

代表有不少全表掃描——調整代碼、將小表放入內存

Free Buffer

增大 DB_CACHE_SIZE、加速檢查點和調整代碼

Buffer Busy

段頭——增長 freelists 或者 freelist groups

Buffer Busy

數據塊——分離「熱點」數據、採用反向關鍵字索引、採用小的數據塊

Buffer Busy

數據塊——增大 initrans 和 maxtrans

Buffer Busy

undo header——增長回滾段

Buffer Busy

undo block——增長提交頻度、增大回滾段

Latch Free

研究 Latch 細節(能夠參考下文)

Enqueue - ST

使用本地表空間或者預先分配大擴展

Enqueue - HW

預先分配擴展於高水位線之上

Enqueue - TX4

增大表或索引的 initrans 和 maxtrans

Enqueue - TM

爲外鍵創建索引,查看應用程序中的表鎖

Log Buffer Space

增大日誌緩衝區,重作日誌放在快速磁盤上

Log File Switch

歸檔設備太慢或者太滿,增長或者擴大重作日誌

Log File Sync

每次提交更多記錄、更快的存放重作日誌的磁盤、裸設備

Idle Event

忽略

相關文章
相關標籤/搜索