博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle checkpoint 说明
阅读量:4615 次
发布时间:2019-06-09

本文共 7309 字,大约阅读时间需要 24 分钟。

 

 

一. Oracle Checkpoint 说明

 1.1  Checkpoint

(1)A synchronization event at aspecific point in time

(2)Causes some or all dirty blockimages to be written to the database thereby guaranteeing that blocks dirtiedprior to that point in time get written

(3)Brings administration up to date

(4)Several types of checkpoint exist

 

 

 

1.2  the point of Oracle Checkpoints

       The point of Oracle checkpoints is to synchronize all datafiles, some datafiles orsome objects to a point in time for consistency, performance and recoverabilitypurposes.

  

1.3 Buffer Cache

       checkpoint与Buffer Cache 的关系很大,有关Buffer cache,之前整理的相关文章如下:

 

 

 

1.3.1 buffer cache 组成

The buffer cache component structures are:

(1)Buffers

       Eachbuffer may hold an image of one data block at any one time

(2)Buffer headers

       =>Storemetadata about contents of the buffers

       =>Actas cache management structures

(3)Buffer pools

       Collectionof buffers used for the same purpose and managed accordingly

(4)Working set

       =>Allor part of a buffer pool

       =>Assigned to a DBWn process

 

1.3.2 Buffer Management

(1) Cached buffers managed by doublylinked lists:

(2) REPL

              =>Bufferscontaining block images being used

(3) REPL-AUX

             =>Buffersready to be used for I/O or CR build

              关于CR 参考:

             

             

(4) WRITE and CKPT-Q

             =>DirtyBuffers requiring I/O

(5) WRITE-AUX

             =>DirtyBuffers with I/O in progress

(6) Touch count is used to decide theinitial insertion location in the REPL chain

(7) AUX lists avoid wasteful scanning

 

1.3.3 Redo and the Buffer Cache

(1) Block modification dirties thebuffer containing the block image and generates redo

(2) A buffer becomes dirty at aparticular RBA which is a point in the redo stream

       关于RBA,参考我的blog:

      

      

(3) Redo written by LGWR makes thecorresponding part of the redo log file “active”

(4) Dirty block images written by DBWnmakes the corresponding part of the redo log file “inactive”

(5) Redo is always written priorto the corresponding block images

(6) Size of active redo in the logfile influences instance and crash recovery time

(7) Trade-off between performance andrecovery time

 

1.3.4 Buffer Cache I/O

(1)Servers look for an availablebuffer on REPL-AUX then read a data block into selected buffer

       –Buffer gets moved from REPL-AUX to REPL

       –If block is modified, buffer is added to CKPT-Q

       –Servers move dirty buffers to WRITE during free buffer search

(2) DBWn writes dirty buffer contentsto database

       –Buffer gets moved from WRITE to WRITE-AUX

       –Once block written:

       –Buffer is moved back to REPL-AUX

       –Buffer taken off CKPT-Q

(3) DBWn writes upon request

       –Make free buffers

       –Checkpoint

 

1.4 触发checkpoint 的条件

       与checkpoint 触发相关的视图:v$instance_recovery。 关于这个视图的具体说明可以参考官方文档:

      

 

几个相关的字段如下:

(1)WRITES_MTTR:fast_start_mttr_target

(2)WRITES_LOGFILE_SIZE:90% of the smallest online redo logfile

(3)WRITES_LOG_CHECKPOINT_SETTINGS:log_checkpoint_timeout

(4)WRITES_OTHER_SETTINGS:fast_start_io_target

(5)WRITES_AUTOTUNE:10g self tuning checkpoints

(6) WRITES_FULL_THREAD_CKPT:Manual checkpoints

 

CKPT发送CHECKPOINT信号的触发条件有如下几条:

       1.log_checkpoint_timeout时间达到

       2. 当前redo日志已经写够log_checkpoint_internavl*操作系统块大小
       3. redo log switch
       4. alter system checkpoint
       5. alter tablespace XXX begin backup,end backup的時候
       6. alter tablespace , datafileoffline, shutdown immediate, direct read的時候;

 

      

      

 

       在下面具体的checkpoint 分类时有更详细的说明。

 

二. Checkpoint 分类

Checkpoint 可以分为以下几类:

(1) Full Checkpoint

(2) Thread Checkpoint

(3) File Checkpoint

(4) Object “Checkpoint”

(5) Parallel Query Checkpoint

(6) Incremental Checkpoint

(7) Log Switch Checkpoint

 

       如果想看到具体的checkpoint 类型,可以设置log_checkpoints_to_alert 参数为true。 设置为true之后,checkpoint 发生时会写入alert log里。

如:

SYS@dave2(db2)>alter system set log_checkpoints_to_alert=true scope=both;

System altered.

SYS@dave2(db2)> alter system switchlogfile;

System altered.

 

log里的信息如下:

Thu Aug 18 18:46:18 2011

ALTER SYSTEM SETlog_checkpoints_to_alert=TRUE SCOPE=BOTH;

Thu Aug 18 18:48:07 2011

Beginning logswitch checkpoint up to RBA [0xa.2.10], SCN: 2148380730

Thread 1 advanced to log sequence 10

 Current log# 3 seq# 10 mem# 0: /u01/app/oracle/oradata/dave2/redo03.log

 

 

2.1 Full Checkpoint

• Writes block images to the database forall dirty buffers from all instances

• Statistics updated:

– DBWR checkpoints

– DBWR checkpoint buffers written

– DBWR thread checkpoint buffers written

• Caused by:

– Alter system checkpoint [global]

– Alter database close

– Shutdown

• Controlfile and datafile headers areupdated

– CHECKPOINT_CHANGE#

 

2.2 Thread Checkpoint

• Writes block images to the database forall dirty buffers from one instance

• Statistics updated:

– DBWR checkpoints

– DBWR checkpoint buffers written

– DBWR thread checkpoint buffers written

• Caused by:

– Alter system checkpoint local

• Controlfile and datafile headers areupdated

– CHECKPOINT_CHANGE#

 

2.3 File Checkpoint

• Writes block images to the database forall dirty buffers for all files of a tablespace from all instances

• Statistics updated:

– DBWR tablespace checkpoint bufferswritten

– DBWR checkpoint buffers written

– DBWR checkpoints

• Caused by:

– Alter tablespace XXX offline

– Alter tablespace XXX begin backup

– Alter tablespace XXX read only

• Controlfile and datafile headers areupdated

– CHECKPOINT_CHANGE#

 

2.4 Parallel Query Checkpoint

• Writes block images to the database forall dirty buffers belonging to objects accessed by the query from all instances

• Statistics updated:

– DBWR checkpoint buffers written

– DBWR checkpoints

• Caused by:

– Parallel Query

– Parallel Query component of PDML or PDDL

– Mandatory for consistency

 

2.5 Object “Checkpoint”

• Writes block images to the database forall dirty buffers belonging to an object from all instances

• Statistics updated:

– DBWR object drop buffers written

– DBWR checkpoints

• Caused by:

– Drop table XXX

– Drop table XXX purge

– Truncate table XXX

• Mandatory for media recovery purposes

 

2.6 Incremental Checkpoint

• Writes the contents of “some” dirty buffers to the database from CKPT-Q

• Block images written in SCN order

• Checkpoint RBA updated in SGA

• Statistics updated:

– DBWR checkpoint buffers written

• Controlfile is updated every 3 seconds byCKPT

– Checkpoint progress record

 

Definition of “Some”

• Every 3 seconds CKPT calculates thecheckpoint

target RBA based on:

– The most current RBA

– log_checkpoint_timeout

– log_checkpoint_interval

– fast_start_mttr_target

– fast_start_io_target

– 90% of the size of the smallest onlineredo log file

• All buffers dirtied prior to the timecorresponding to the target RBA are written to the database

 

2.7 Log Switch Checkpoint

• Writes the contents of “some” dirtybuffers to the database

• Statistics updated:

– DBWR checkpoints

– DBWR checkpoint buffers written

– background checkpoints started

– background checkpoints completed

• Controlfile and datafile headers areupdated

– CHECKPOINT_CHANGE#

 

2.8 Checkpoint Administration

• Useful checkpoint administration views:

– V$INSTANCE_RECOVERY

– V$SYSSTAT

– V$DATABASE

– V$INSTANCE_LOG_GROUP

– V$THREAD

– V$DATAFILE

– V$DATAFILE_HEADER

 

 

 

 

 

-------------------------------------------------------------------------------------------------------

Blog: http://blog.csdn.net/tianlesoftware

Email: dvd.dba@gmail.com

DBA1 群:62697716(满);   DBA2 群:62697977(满)  DBA3 群:62697850(满)  

DBA 超级群:63306533(满);  DBA4 群: 83829929  DBA5群: 142216823   

DBA6 群:158654907  聊天 群:40132017   聊天2群:69087192

--加群需要在备注说明Oracle表空间和数据文件的关系,否则拒绝申请

转载于:https://www.cnblogs.com/zlja/archive/2011/08/19/2449592.html

你可能感兴趣的文章
3、变量+运算符+Scanner
查看>>
10、数组、二维数组
查看>>
eclipse查看源码的配置
查看>>
mysql的卸载重装+导入大量数据失败的解决方案+工具执行和项目执行结果不同
查看>>
针对发送网络附件的java方法(使用Apache的jar包调用)
查看>>
‘--’之后的所有字符串,正则怎么写
查看>>
sql把一个字段中的特定字符替换成其他字符
查看>>
SQLServer触发器的使用
查看>>
通过AI识图判断图片是否为小票
查看>>
微信开发者工具常用快捷键
查看>>
Linux——静态库和动态库的生成
查看>>
Ulfius交叉编译——搭建http服务器端
查看>>
Linux——进度条实现
查看>>
Linux——定时器与计时器
查看>>
Linux——makefile编写
查看>>
vi/vim使用
查看>>
C/C++——指针
查看>>
讨论Spring整合Mybatis时一级缓存失效得问题
查看>>
Maven私服配置Setting和Pom文件
查看>>
Linux搭建Nexus3.X构建maven私服
查看>>