zoukankan      html  css  js  c++  java
  • library cache: mutex X

    我们先来看看 library cache: mutex X 。  是个什么东西
        The library cache mutex is acquired for similar purposes that the library cache latches were acquired in prior versions of Oracle. In 10g, mutexes were 
    
    introduced for certain operations in the library cache.  Starting with 11g, the library cache latches were replaced by mutexes, hence this new wait event. -
    
    ----摘自metalink [ID 727400.1]
    
    
    library cahce 互斥需要的目的;类似于10g中library cache lacthes的目的。在10g中,mutexes 迎来说明library cache中的某些操作。
    
    在11G中,libary cache latches 被mulexes替换。
    
    
    同时oracle也给出了追踪的办法。
    Systemwide Waits:
    At a systemwide level, there are two views which will help diagnose this wait:
    
    GV$MUTEX_SLEEP (or V$MUTEX_SLEEPS for non-RAC)
    and GV$MUTEX_SLEEP_HISTORY (or V$MUTEX_SLEEP_HISTORY for non-RAC)
    
    These views track the instance wide usage of mutexes since instance startup.  Since these views show values that are total values since startup, they are 
    
    most meaningful when you obtain the difference in values during a short time interval when there was problem.  The easiest way to see this information is 
    
    through an AWR or statspack report in the "Mutex Sleep Summary" section. 
    
    Finding Blockers:
    
     You can  see the P2 value in V$MUTEX_SLEEP_HISTORY along with the "REQUESTING_SESSION".  You may find a pattern where one session commonly blocks others - 
    
    this would lead you to obtain a SQL trace of the blocking session to try and get more information about what its doing.
    

  • 相关阅读:
    7.2集训模拟赛(莫名其妙的比赛......)
    CF1042B Vitamins
    P1629 邮递员送信
    P1726 上白泽慧音
    P2341 [USACO03FALL][HAOI2006]受欢迎的牛 G
    最短路
    7.1集训模拟赛5(......)
    求最大公约数和最小共倍数的方法(除穷举)
    6.29集训模拟赛3(暴力骗分的一天,嘿嘿)
    爬虫认证ES用户,并访问api
  • 原文地址:https://www.cnblogs.com/zhaoyangjian724/p/3797870.html
Copyright © 2011-2022 走看看