ICode9

精准搜索请尝试: 精确搜索
首页 > 数据库> 文章详细

Oracle异步IO的探讨

2019-09-21 18:05:45  阅读:272  来源: 互联网

标签:异步 app dbf oradata IO Oracle ASYNC u01



NAME				     TYPE	 VALUE
------------------------------------ ----------- ------------------------------
disk_asynch_io			     boolean	 TRUE
SQL> COL NAME FORMAT A50
SQL> SELECT NAME,ASYNCH_IO FROM V$DATAFILE F,V$IOSTAT_FILE I
WHERE F.FILE#=I.FILE_NO
AND FILETYPE_NAME='Data File';  2    3  

NAME						   ASYNCH_IO
-------------------------------------------------- ---------
/u01/app/oracle/oradata/yaoy11G/system01.dbf	   ASYNC_OFF
/u01/app/oracle/oradata/yaoy11G/sysaux01.dbf	   ASYNC_OFF
/u01/app/oracle/oradata/yaoy11G/undotbs01.dbf	   ASYNC_OFF
/u01/app/oracle/oradata/yaoy11G/users01.dbf	   ASYNC_OFF
/u01/app/oracle/oradata/yaoy11G/example01.dbf	   ASYNC_OFF

SQL> show parameter systemio

NAME				     TYPE	 VALUE
------------------------------------ ----------- ------------------------------
filesystemio_options		     string	 none
SQL> alter system set filesystemio_options=asynch;
alter system set filesystemio_options=asynch
                 *
ERROR at line 1:
ORA-02095: specified initialization parameter cannot be modified




SQL>  alter system set filesystemio_options=setall  scope=spfile;

System altered.OPTIONS:

  "asynch"    - This allows asynchronous IO to be used where supported by the OS. 
  
   "directIO"  - This allows directIO to be used where supported by the OS. Direct IO bypasses any Unix buffer cache. As of 10.2 most platforms will try to use "directio" option for NFS mounted disks (and will also check NFS attributes are sensible).

"setall"    - Enables both ASYNC and DIRECT IO.

"none"      - This disables ASYNC IO and DIRECT IO so that  Oracle uses normal synchronous writes, without  any direct io options.


SQL> startup force;
ORACLE instance started.

Total System Global Area  835104768 bytes
Fixed Size		    2217952 bytes
Variable Size		  511707168 bytes
Database Buffers	  318767104 bytes
Redo Buffers		    2412544 bytes
Database mounted.
Database opened.
SQL> COL NAME FORMAT A50
SQL>  SELECT NAME,ASYNCH_IO FROM V$DATAFILE F,V$IOSTAT_FILE I
WHERE F.FILE#=I.FILE_NO
AND FILETYPE_NAME='Data File';  2    3  

NAME						   ASYNCH_IO
-------------------------------------------------- ---------
/u01/app/oracle/oradata/yaoy11G/system01.dbf	   ASYNC_ON
/u01/app/oracle/oradata/yaoy11G/sysaux01.dbf	   ASYNC_ON
/u01/app/oracle/oradata/yaoy11G/undotbs01.dbf	   ASYNC_ON
/u01/app/oracle/oradata/yaoy11G/users01.dbf	   ASYNC_ON
/u01/app/oracle/oradata/yaoy11G/example01.dbf	   ASYNC_ON

As for ASM, ASM Inherently Performs Asynchronous I/O Regardless of filesystemio_options Parameter (Doc ID 751463.1)
FILESYSTEMIO_OPTIONS enables asynchronous I/O (AIO) when the value is set to SETALL/ASYNC. However, ASM bypasses the filesystem layer in this case because ASM I/O is entirely controlled by DISK_ASYNCH_IO parameter. AIO needs to be enabled/disabled by setting disk_asynch_io to parameter values TRUE/FALSE.

标签:异步,app,dbf,oradata,IO,Oracle,ASYNC,u01
来源: https://blog.csdn.net/weixin_43424368/article/details/101112281

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有