最近遇到一个问题,需要直接读取 Oracle 数据文件所在的扇区数据,所以需要确定一点,Oracle在写入数据文件的时候是否为 Direct IO。
这里解释一下,为啥需要确认这一点。我是通过查询 Oracle 的内部表获取数据文件在裸盘上的位置信息,如果 Oracle 的 IO 不是 Direct IO,那么可能造成在读取磁盘数据的时候,数据还没有写入磁盘,此时读的数据不可用。
在查找一番后,发现需要分情况考虑 IO(对于 IO 本篇博客只考虑是否为 Direct IO,其他的知识点不在本篇博客范围之内)。
对于 Oracle 数据文件存放在操作系统的文件系统中,此时可以通过修改参数 FILESYSTEMIO_OPTIONS 进行 Direct IO。
You can use the FILESYSTEMIO_OPTIONS initialization parameter to
enable or disable asynchronous I/O or direct I/O on file system files.
This parameter is platform-specific and has a default value that is
best for a particular platform.FILESYTEMIO_OPTIONS can be set to one
of the followingvalues:
■ ASYNCH: enable asynchronous I/O on file system files, which has no
timing requirement for transmission.
■ DIRECTIO: enable direct I/O on file system files, which bypasses
the buffer cache.
■ SETALL: enable both asynchronous and direct I/O on file system files.
■ NONE: disable both asynchronous and direct I/O on file system files.
也可通过 show parameter filesystemio 查看当前 Oracle 的 IO 方式。
对于ASM,Oracle会直接跳过文件系统层面,filesystemio_options 参数是无作用的 ,direct I/O 默认被使用,且没有接口修改。
参考
《Oracle® Database Performance Tuning Guide》
Oracle中filesystemio_options and disk_asynch_io两个参数的思考-阿里云开发者社区 (aliyun.com)