zoukankan      html  css  js  c++  java
  • RAC动态资源(DRM)管理介绍

    以下文本摘自: metalink doc 390483.1 Subject:  DRM - Dynamic Resource management Doc ID:  390483.1  Type:  BULLETIN Modified Date :  13-JAN-2009  Status:  PUBLISHED In this Document Purpose Scope and Application DRM - Dynamic Resource management DRM - Dynamic Resource Mastering References Applies to: Oracle Server - Enterprise Edition - Version: 10.1.0.2 to 11.1.0 Oracle Server - Standard Edition - Version: 10.1.0.2 to 11.1.0 Information in this document applies to any platform. Oracle Real application Clusters Purpose To describe the concept of DRM (Dynamic Resource Mastering) Scope and Application This note in intended for experienced Real application cluster DBA's DRM - Dynamic Resource management DRM - Dynamic Resource Mastering When using Real application Clusters (RAC), Each instance has its own SGA and buffer cache. RAC will ensure that these block changes are co -ordinated to maximize performance and to ensure data intergrity. Each copy of the buffer also called as a cache resource has a master which is one of the nodes of the cluster. In database releases before 10g (10.1.0.2) once a cache resource is mastered on an instance, a re-mastering or a change in the master would take place only during a reconfiguration that would happen automatically during both normal operations like instance startup or instance shutdown or abnormal events like Node eviction by Cluster Manager. So if Node B is the master of a cache resource, this resource will remain mastered on Node B until reconfiguration. 10g  introduces a concept of resource remastering via DRM. With DRM a resource can be re-mastered on another node say from Node B to Node A if it is found that the cache resource is accessed more frequently from Node A. A reconfiguration is no longer the only reason for a resource to be re-mastered. In 10gR1 DRM is driven by affinity of files and in 10gR2 it is based on objects. Sample LMD trace file during a DRM operation
    Begin DRM(202) - transfer pkey 4294951314 to 0 oscan 1.1 *** 2006-08-01 17:34:54.645 Begin DRM(202) - transfer pkey 4294951315 to 0 oscan 1.1 *** 2006-08-01 17:34:54.646 Begin DRM(202) - transfer pkey 4294951316 to 0 oscan 1.1 *** 2006-08-01 17:34:54.646 Begin DRM(202) - transfer pkey 4294951317 to 0 oscan 1.1
    DRM attributes are intentionally undocumented since they may change depending on the version. These attributes should not be changed without discussing with Support. @DRM is driven by the following @ 1.) _gc_affinity_time = Time in minutes at which statistics will be evaluated (default = 10 mins) @ 2.) _gc_affinity_limit = # of times a node accesses a file/object (default = 50) @ 3.) _gc_affinity_minimum = minimum # of times per minute a file/object is accessed before affinity kicks in @ (default = 600 per minute per cpu ) It is important to note that
    1. Two instance will not start a DRM operation at the same time however lmd,lms,lmon processes from all instances collectively take part in the DRM operation.
    2. Normal activity on the database is not affected due to DRM. This means users continue insert/update/delete operations without any interruptions. Also DRM operations complete very quickly.
    @ Disable DRM Generally DRM should not be disabled unless Oracle Support/Development has suggested turning it off due to some known issues. @To disable DRM, set @To disable DRM, set @_gc_affinity_time=0                                 # Only if DB version is 10.1 or 10.2 @_gc_undo_affinity=FALSE                       # Only if Db version is 10.2 @_gc_policy_time=FALSE                         # Only if DB version is 11.1 or higher @_gc_affinity_time has been renamed to _gc_policy_time in 11g
  • 相关阅读:
    computed计算属性依赖的响应式属性为对象obj时,对象obj中有属性字段【A、B、C】时,对A、B进行了if判断,那么只有A、B变化时,计算属性才更新,否则不更新
    computed计算属性依赖的响应式属性为对象时,只要依赖的属性变化(值同地址不同:变化),即使前后值相同,监听computed计算属性也是在变化
    S7-200SMART与S7-1500通信
    STM32F103+OLED绘制曲线
    两台S7-300PLC之间的PROFIBUS-DP主从通信示例
    VBScript连接mysql数据库
    mysql数据库基础知识--入门必看
    小白版windows下mysql配置
    mysql5.7.12直接解压安装过程
    西门子S7-200SMART 指针
  • 原文地址:https://www.cnblogs.com/macleanoracle/p/2967339.html
Copyright © 2011-2022 走看看