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.
    

  • 相关阅读:
    数据库分区、分表、分库、分片
    C# 创建Windows Service(Windows服务)程序
    C# 自定义控件容器,设计时可添加控件
    redis配置文件中常用配置详解
    将博客搬至CSDN
    MD5加密之加密字符串
    MD5加密之提取文件的MD5特征码
    安卓手机下拉状态栏的代码实现
    Android中四大组件总结
    Android中内容提供者ContentProvider的详解
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13352299.html
Copyright © 2011-2022 走看看