Home >Database >Mysql Tutorial >理解redo(7)oracle redo并行机制的原理介绍

理解redo(7)oracle redo并行机制的原理介绍

WBOY
WBOYOriginal
2016-06-07 17:19:31838browse

由于log buffer是一块ldquo;共享rdquo;内存,为了避免冲突,它是受到redo allocation latch保护的,每个server process需要先获

在前面的文章中,

理解REDO LOG(1) 介质恢复和实例恢复的基本概念
理解redo(2)redo内容:change vector和redo entries 
理解redo(3)详解一个update的过程
理解redo(4)redo log buffer和LGWR
理解redo(5)深入学习RBA 
理解redo(6)日志却的流程和直接路径加载的REDO分析 

我们知道,redo entries写入log buffer大致的过程如下:

在PGA中生产Redo Entry -> 服务进程获取Redo Copy latch(存在多个---CPU_COUNT*2) -> 服务进程获取redo allocation latch(仅1个) -> 分配log buffer ->

释放redo  allocation latch -> 将Redo Entry写入Log Buffer -> 释放Redo Copy latch

由于log buffer是一块“共享”内存,为了避免冲突,它是受到redo allocation latch保护的,每个server process需要先获取到该latch才能分配redo buffer。因此,在OLTP系统中,我们通常可以观察到redo allocation latch的等待事件。

Oracle引入shared strand和private strand来实现并行redo buffer分配机制,,借此避免高并发下的redo allocation latch等待事件。

1   shared strand

为了减少redo allocation latch等待事件,oracle引入了log buffer的并行机制。其基本原理是,将log buffer划分为多个小的buffer,这些小的buffer被称作shared strand。每一个shared strand受到一个单独的redo allocation latch的保护。多个shared strand的出现,使得原来序列化的redo buffer分配变成了并行的过程,从而减少了redo allocation latch的等待。

shared strand由一些隐藏参数控制:

每一个shared_strand的大小=log_buffer/(shared_strand的数量):

关于shared strand的数量设置,16个cpu之内最大默认为2,当系统中存在redo allocation latch等待时,每增加16个cpu可以考虑增加1个strand,最大不应该超过8。

并且_log_parallelism_max不允许大于cpu_count。

linux

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Oracle scn介绍Next article:MySQL锁的用法之行级锁