Memory Architecture-SGA-Database Buffer Cache
启动instance:1、分配内存空间SGA
2、启动后台进程
内存结构:1、SGA
2、PGA
3、UGA
4、Software code areas
SGA components:1、Database Buffer Cache
2、Redo Log Buffer
3、Shared Pool
4、Large Pool
5、Java Pool
6、Streams Pool
7、Fixed SGA
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Database Buffer Cache(数据库快速缓存):
Database Buffer Cache存储data files中data blocks的copies.全部并行连接同一个数据库instance的用户能够共享訪问buffer Cache.
1、Database Buffer Cache的长处:
a、Optimize Physical I/O(优化物理I/O)
数据库将数据更新写到buffer cache中,将进行更新的SQL语句写入redo log buffer中,当运行commit之后,不马上把buffer cache中的数据写入disk,而是将redo log buffer中的数据写入磁盘。Database writer(DBW) performslazy writes in the background.
b、Keep frequently accessed blocks in the buffer cache and write infrequently accessed blocks to disk(保持频繁使用的blocks在buffer cache,不频繁使用的写进disk)
When Database Smart Flash Cache (flash cache) is enabled, part of the buffer cache can reside in the flash cache. This buffer cache extension is stored on a flash disk device,
which is a solid state storage device that uses flash memory. The database can improve performance by caching buffers in flash memory instead of reading from magnetic disk.
2、Buffer States(缓冲区状态):
a、Unused
当前没有被使用的buffer,能够被database使用。
b、Clean
buffer之前被使用,如今存在一个时间点的一致性读版本号,database能够pin缓存中的块而且reuse
it.
c、Dirty
The buffer contain modified data that has not yet been written to disk. The database must checkpoint the block before reusing it.
----------------
每一个buffer都有access mode:pined或者free(即unpined),多个session不能同一时候改动同一个pined buffer.
The database uses a sophisticated algorithm to make buffer access efficient. Pointers to dirty and nondirty buffers exist on the sameleast recently used (LRU)
list, which has a hot end and cold end. Acold
buffer is one that has not been recently used. Ahot buffer is frequently accessed and has been recently used.
3、Buffer Modes:
a、Current Mode
A current mode get, also called a
db block get, is a retrieval of a block as it currently appears in the buffer cache.
b、Consistent Mode
A
consistent read get is a retrieval of a read-consistent version of a block. This retrieval may use undo data.
4、Buffer I/O(logical I/O&physical I/O):
logical I/O即buffer I/O,读取或写入buffer cache中的buffers。当在buffer cache中找不到数据时就会发生physical I/O,physical I/O 把flash cache或者disk中的数据copy到cache buffer,再通过logical I/O从cache buffer中读取数据。
a、Buffer Writes
database writer(DBW)进程会定期地将cold、dirty buffers写入disk(即:将LRU队列的cold end的buffers写入disk)。
DBWn在下面情况下会把buffers写入disk:
1:服务进程在把new blocks读入database buffer cache中时找不到clean buffer.
假设unused buffers数量降到小于内部临界值,而且clean buffers被请求时,DBWn会将cold、dirty buffers写入disk。
数据库用LRU算法来决定把哪个dirty buffer中的数据写入disk。数据库把LRU 队列cold end的dirty buffer 从LRU队列移除,并移到write queue。DBWn 将write queue的buffer写入到disk(using multiblock writes if possible)。这样的机制使得dirty buffers和clean buffers变得可用。
2:The database must advance the checkpoint,which is the position in the redo thread from which instance recovery must begin.
3:Tablespace are changed to read-only status or taken offline.
b、Buffer Reads
1:Flash casche disabled
The database re-uses each clean buffer as needed, overwriting it. If the overwritten buffer is needed later, then the database must read it from magnetic disk.
2:Flash cache enabled
DBWn能够把clean buffer的body写入flash cache,这样能够使cache buffer中的空间重用。数据库把buffer header放入LRU list中。当buffer再次被请求的时候,数据库能够从flash cache中读取,而不是磁盘。
当一个client进程请求buffer时,The search order is as follows:
1:server进程search整个buffer cache
2:server进程search flah cache LRU list中的buffer header
3:将disk数据copy到buffer cache(物理读),从buffer cache读取数据(逻辑读)
注:假设在步骤1或2找到buffer则称为cache hit,没有找到称为cache miss
data file 和 temp file都能够发生physical reads。data file物理读之后还要进行logical I/O。temp file绕过buffer cache,物理读之后不发生logical I/O。(当内存不够时数据库强制将数据写入temporary table)
c、Buffer Touch Count
假设一个buffer is pinned而且上次添加计数是在3秒钟曾经,则touche count添加一个计数。假设一个buffer is pinned,但上次添加计数没有超过3秒,则touche count不曾加计数,保持原值(即看做一次touch)。
假设LRU list cold端的buffer的touch count值比較大,则次cold buffer会被移到hot end。假设LRU list cold端的touch count值比較小,then the buffer ages out of the cache.
d、Buffers and Full Table Scans
当从disk把数据写入buffers时,数据库会把buffers插入到the middle of the LRU list。这样的情况下,full table scan可能会引发一个问题:如果表中的total block size比buffer cache的size大,全表扫描会clean out the buffer cache,preventing the database from maintaining a cache of frequently accessed blocks。所以full table
scan这样的情况和其它的处理方式不一样,当为full table scan时,buffer cache中的blocks能够马上被reuse。
5、Buffer Pools:
A
buffer pool is a collection of buffers. The database buffer cache is divided into one or more buffer pools.
You can manually configure separate buffer pools that either keep data in the buffer cache or make the buffers available for new data immediately after using the data blocks.
You can then assign specific schema objects to the appropriate buffer pool to control how blocks age out of the cache.
The possible buffer pools are as follows:
Default pool
This pool is the location where blocks are normally cached. Unless you manually configure separate pools, the default pool is the only buffer pool.
Keep pool
This pool is intended for blocks that were accessed frequently, but which aged out of the default pool because of lack of space. The goal of the keep buffer pool is to retain objects in memory, thus avoiding I/O operations.
Recycle pool
This pool is intended for blocks that are used infrequently. A recycle pool prevent objects from consuming unnecessary space in the cache.
数据库有标准的block size。在创建tablespace的时候能够指定和标准块大小不一样的block size。每个不是默认block size的tablespace有自己的pool。这些pool的管理和default pool的管理方式同样。
Memory Architecture-SGA-Database Buffer Cache的更多相关文章
- Oracle优化 -- 关于Database Buffer Cache相关参数DB_CACHE_SIZE的优化设置
select size_for_estimate, buffers_for_estimate ,ESTD_PHYSICAL_READ_factor,ESTD_PHYSICAL_READS from v ...
- Multiple Database Block Sizes and the Buffer Cache
In oracle 10g we can have multiple block sizes at the same time. When a tablespace is created we can ...
- Buffer cache 的调整与优化
Buffer cache 的调整与优化 -============================== -- Buffer cache 的调整与优化(一) --==================== ...
- [转载]Buffer cache的调整与优化
Buffer Cache是SGA的重要组成部分,主要用于缓存数据块,其大小也直接影响系统的性能.当Buffer Cache过小的时候,将会造成更多的free buffer waits事件.下面将具体描 ...
- Tuning 04 Sizing the Buffer Cache
Buffer Cache 特性 The buffer cache holds copies of the data blocks from the data files. Because the bu ...
- 相克军_Oracle体系_随堂笔记005-Database buffer cache
本章主要阐述SGA中的Database buffer cache. Buffer cache { 1.pin (读写瞬间的状态) 2.clean 3.dirty 4.unused } --Databa ...
- buffer cache —— buffer busy waits/read by other session
oracle提供非常精确.有效的row level lock机制,多个用户同时修改数据时,为了保护数据,以块为单位挂起锁的情况不会发生.但这不太正确.以块为单位的锁虽然不存在,但正因为oracle I ...
- ORACLE性能优化- Buffer cache 的调整与优化
Buffer Cache是SGA的重要组成部分,主要用于缓存数据块,其大小也直接影响系统的性能.当Buffer Cache过小的时候,将会造成更多的 free buffer waits事件. 下面将具 ...
- buffer cache 深度解析
本文首先详细介绍了oracle中buffer cache的概念以及所包含的内存结构.然后结合各个后台进程(包括DBWRn.CKPT.LGWR等)深入介绍了oracle对于buffer cache的管理 ...
随机推荐
- 美化 input type=file控件
大家都知道input的type=file控件默认样式是不能修改的 可以通过一个小技巧处理下 html: <a href="javascript:;" class=" ...
- ThinkPHP第二十五天(自动完成、用户名密码PHP正则、移位或加密函数)
1.ThinkPHP自动完成功能 跟昨天的自动验证功能类似,也是需要在自定义的UserModel类,进行使用. 使用方法:定义$_auto属性 $_auto = array( array(完成字段,完 ...
- call和apply方法的理解
第一种:直接先来个粟子吧... ; } var child = {}; console.log(child); //Object() 对象 Parent.call(child); console. ...
- 用python 10min手写一个简易的实时内存监控系统
简易的内存监控系统 本文需要有一定的python和前端基础,如果没基础的,请关注我后续的基础教程系列博客 文章github源地址,还可以看到具体的代码,喜欢请在原链接右上角加个star 腾讯视频链接 ...
- NodeJS 从0开始
查看Node 基本配置$ npm config ls -l $npm help install将展开install的help文档 初始化目录 npm init 根据提示完成 将生成package.js ...
- NET Core开发-使用Nancy框架
NET Core开发-使用Nancy框架 Nancy简介 Nancy是一个轻量级的独立的框架,下面是官网的一些介绍: Nancy 是一个轻量级用于构建基于 HTTP 的 Web 服务,基于 .NET ...
- font简写语法
font简写语法 测试 <p class="p box">这是子元素的字体 默认继承了哪些字体属性 **font-style font-weight font-size ...
- QTableView的表格项中加入图标的方法(重载View::mouseMoveEvent,并使用View::setIconSize函数设置图标的大小)
当在使用表格视图的时候,需要在表格每一行前面加入图标,应该怎么做呢?Qt中通过使用MVC的处理方式,很容易做到这一点,具体实现如下: 先贴出图,让大家一睹为快 下面我就来介绍一下,上图的灯泡是怎么实现 ...
- Qt中如果通过QStyle自定义能够跨平台的界面控件
我们经常会碰到需要定制界面控件的要求.如果只是在一个平台上,比如说你的控件只需要在Windows上显示,那很好办,Hard code 你的look and feel就可以了.但是如果界面需要在不同平台 ...
- Is it possible to implement a Firebug-like “inspect element” DOM element highlighter with client-side JavaScript?
Is it possible to implement a Firebug-like "inspect element" DOM element highlighter with ...