zoukankan      html  css  js  c++  java
  • asynch descriptor resize等待事件

    问题背景:
    客户数据库服务器cpu很高,查询等待事件

    发现
    asynch descriptor resize等待事件

    从AWR报告里也看到的asynch descriptor resize事件。

    SQL> show parameter async
    
     NAME_COL_PLUS_SHOW_PARAM TYPE VALUE_COL_PLUS_SHOW_PARAM
     —————————— ———————- ——————————
     disk_asynch_io boolean TRUE
     tape_asynch_io boolean TRUE


    猜想是不是BUG导致的?MOS搜索了一下,

    很快找到了Bug 9829397,Excessive CPU and many "asynch descriptor resize" waits for SQL using Async IO,
    此BUG发生于11.2.0.1和11.2.0.2上,11.2.0.3修复了此问题。

    解决办法是:只要将disk_asynch_io设置为false来禁用异步I/O即可。

    SQL> alter system set disk_asynch_io=false scope=spfile;
  • 相关阅读:
    Codeforces 220C
    Codeforces 697D
    HDU 4417
    Codeforces 396C
    Codeforces 246C
    HDU 6333
    HDU 3389
    总结:树上启发式合并
    HDU 6319
    Codeforces 1009G
  • 原文地址:https://www.cnblogs.com/shujuyr/p/13131828.html
Copyright © 2011-2022 走看看