博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Wait Event "Disk file operations I/O"
阅读量:4652 次
发布时间:2019-06-09

本文共 1014 字,大约阅读时间需要 3 分钟。

ORALCE的等待事件有很多,今天在一个数据库的awr报告中发现了一个新的等待事件: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有关系,跟数据库本身的参数等待是没有关系的,数据库出现Disk file operations I/O等待事件的时候往往也可以看到另外一个熟悉的等待事件:log file sync;

via:

http://blog.sina.com.cn/s/blog_450e72d10101o2qc.html

转载于:https://www.cnblogs.com/xyarn/p/9772321.html

你可能感兴趣的文章
gated pixelCNN。
查看>>
[题解]CQOI2012 T1 编号 number
查看>>
centos 6.5 mysql 5.7.11安装流程
查看>>
ADO.NET
查看>>
test
查看>>
设置为灰度图
查看>>
性能测试分析
查看>>
python的函数
查看>>
C# GUID的使用
查看>>
用老毛桃PE系统给电脑安装win7详细图文教程[多图]
查看>>
moment.js常用总结
查看>>
Angular 5.0 环境搭建
查看>>
正则表达式 贪婪模式和非贪婪模式
查看>>
如何复制DataRow(dataTabel中的行)
查看>>
2D物体一直朝向某个2D物体(LookAt2D)
查看>>
致我们无处安放的“安全感”
查看>>
hadoop中使用lzo的压缩
查看>>
模板 - 数据结构 - 可并堆
查看>>
js动画学习(五)
查看>>
JAVA WEB EL表达式注入
查看>>