2019独角兽企业重金招聘Python工程师标准>>>
- 等待事件:
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.
Wait Time: The wait time is the actual time it takes to do the I/O.
Parameter | Description |
FileOperation | Type of file operation |
fileno | File identification number |
filetype | 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有关系。
- 测试
Sql语句执行前:
Sql语句执行后:
- 文档说明:
-
- 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事件. 对于索引块,如果不是快速全索引扫描,一般都是一个一个块读取的,所以说,这个等待事件很多时候都是索引读取引起的。
-
- 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 | 忽略 |