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.
    

  • 相关阅读:
    数学符号表
    对比深度学习十大框架:TensorFlow最流行但并不是最好
    支持向量机通俗导论(理解SVM的三层境界)
    Annotation
    Struts2的拦截器
    DLL文件的引用
    JS引擎
    Windows窗口的创建
    解决构造器多参数的设计问题
    静态工厂对比构造器之优缺点
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13352299.html
Copyright © 2011-2022 走看看