`
ijavagos
  • 浏览: 1248104 次
  • 性别: Icon_minigender_2
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

Private strand flush not complete 说明

 
阅读更多

前几天一个朋友问了我一个问题。 说她在alert log里面看到了如下信息:

Thread 1 cannot allocate new log, sequence 415

Private strand flush not complete

Current log# 4 seq# 414 mem# 0: /dev/rora_redotb04

Thread 1 advanced to log sequence 415

Current log# 5 seq# 415 mem# 0: /dev/rora_redotb05

Thu Nov 11 16:01:51 2010

我遇到的是:Checkpoint not complete 有关这方面的解释参考我的Blog

Redo Log Checkpoint not complete

http://blog.csdn.net/tianlesoftware/archive/2009/12/01/4908066.aspx

oracle 官网搜了一下:

Alert Log Messages: Private Strand Flush Not Complete [ID 372557.1]


Modified 01-SEP-2010Type PROBLEMStatus MODERATED

In this Document
Symptoms
Cause
Solution
References


Platforms: 1-914CU;

This document is being delivered to you via Oracle Support's Rapid Visibility (RaV) process and therefore has not been subject to an independent technical review.

Applies to:

Oracle Server - Enterprise Edition - Version: 10.2.0.1 to 11.1.0.7 - Release: 10.2 to 11.1
Information in this document applies to any platform.
"Checked for relevance on 04-Dec-2007"


Private strand flush not complete

Symptoms

"Private strand flush not complete" messages are being populated to the alert log for unknown
reasons.

ALERT LOG EXAMPLE:
>>>
Fri May 19 12:47:29 2006
Thread 1 cannot allocate new log, sequence 18358
Private strand flush not complete
Current log# 7 seq# 18357 mem# 0: /u03/oradata/bitst/redo07.log
Thread 1 advanced to log sequence 18358
Current log# 8 seq# 18358 mem# 0: /u03/oradata/bitst/redo08.log
<<<


>>

Cause

The message means that we haven't completed writing all the redo information to the log when we are trying to switch. It is similar in nature to a "checkpoint not complete" except that is only involves the redo being written to the log. The log switch can not occur until all of the redo has been written.

A "strand" is new terminology for 10g and it deals with latches for redo .

Strands are a mechanism to allow multiple allocation latches for processes to write redo more efficiently in the redo buffer and is related to the log_parallelism parameter present in 9i.

The concept of a strand is to ensure that the redo generation rate for an instance is optimal and that when there is some kind of redo contention then the number of strands is dynamically adjusted to compensate.

The initial allocation for the number of strands depends on the number of CPU's and is started with 2 strands with one strand for active redo generation.

For large scale enterprise systems the amount of redo generation is large and hence these strands are *made active* as and when the foregrounds encounter this redo contention (allocated latch related contention) when this concept of dynamic strands comes into play.

There is always shared strands and a number of private strands .

Oracle 10g has some major changes in the mechanisms for redo (and undo), which seem to be aimed at reducing contention.

Instead of redo being recorded in real time, it can be recorded 'privately' and pumped into the redo log buffer on commit.

Similary the undo can be generated as 'in memory undo' and applied in bulk.

This affect the memory used for redo management and the possibility to flush it in pieces.

The message you get is related to internal Cache Redo File management.

You can disregard these messages as normal messages.

When you switch logs all private strands have to be flushed to the current log before the switch is allowed to proceed.

Solution

These messages are not a cause for concern unless there is a significant gap in seq# between the "cannot allocate new log" message and the "advanced to log sequence" message.


This issue is infact not a bug and is expected behavior.

In some cases, this message can be resolved by increasing db_writer_process value.

这里面涉及到一些Redo 的机制问题。 具体参考Blog

Oracle Redo 并行机制

http://blog.csdn.net/tianlesoftware/archive/2010/11/17/6014898.aspx

一个redo条目包含了相应操作导致的数据库变化的所有信息,所有redo条目最终都要被写入redo文件中去。 Redo log buffer是为了避免Redo文件IO导致性能瓶颈而在sga中分配出的一块内存。 一个redo条目首先在用户内存(PGA)中产生,然后由oracle服务进程拷贝到log buffer中,当满足一定条件时,再由LGWR进程写入redo文件。

由于log buffer是一块“共享”内存,为了避免冲突,它是受到redo allocation latch保护的,每个服务进程需要先获取到该latch才能分配redo buffer。因此在高并发且数据修改频繁的oltp系统中,我们通常可以观察到redo allocation latch的等待。

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

为了进一步降低redo buffer冲突,在10g中引入了新的strand机制——Private strandPrivate strand不是从log buffer中划分的,而是在shared pool中分配的一块内存空间。

Private strand的引入为OracleRedo/Undo机制带来很大的变化。每一个Private strand受到一个单独的redo allocation latch保护,每个Private strand作为“私有的”strand只会服务于一个活动事务。获取到了Private strand的用户事务不是在PGA中而是在Private strand生成Redoflush private strand或者commit时,Private strand被批量写入log文件中。如果新事务申请不到Private strandredo allocation latch,则会继续遵循旧的redo buffer机制,申请写入shared strand中。事务是否使用Private strand,可以由x$ktcxb的字段ktcxbflg的新增的第13位鉴定:

对于使用Private strand的事务,无需先申请Redo Copy Latch,也无需申请Shared Strandredo allocation latch而是flushcommit是批量写入磁盘,因此减少了Redo Copy Latchredo allocation latch申请/释放次数、也减少了这些latch的等待,从而降低了CPU的负荷。

看了这些理论知识,我们在来看一下之前的错误:

Private strand flush not complete

当我们flush或者commit的时候,必须先将buffer中的内容写入到redo中,才能去接收新的记录。 这个错误就是发生在这个过程中。 Oracle 对这个问题提了2个方法:

1 忽略,在使用之前,必须要等待buffer的信息flush完成。 这时候进程是会短暂的hang住。

2 增加db_writer_process的数据。

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

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

网上资源: http://tianlesoftware.download.csdn.net

相关视频:http://blog.csdn.net/tianlesoftware/archive/2009/11/27/4886500.aspx

DBA1 群:62697716(); DBA2 群:62697977()

DBA3 群:62697850 DBA 超级群:63306533;

聊天 群:40132017

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

分享到:
评论

相关推荐

    DBA优化数据库性能心得

    作为一名专业的Oracle DBA,优化数据库性能是日常工作中至关重要的任务。在面对应用性能下降的问题时,我们往往会发现数据库响应变慢。此时,我们不能再仅仅依赖于传统的指标,而是需要转向优化等待事件,即关注...

    hibernate的flush机制

    ### Hibernate的Flush机制详解 #### 引言 Hibernate作为Java领域中最流行的ORM(Object-Relational Mapping)框架之一,极大地简化了数据访问层的开发工作,使得开发者能够更专注于业务逻辑而非底层的数据交互细节...

    hibernate的session.flush

    `Session.flush()`方法是一个关键的操作,它强制Hibernate将内存中的对象状态同步到数据库,确保数据的一致性。这篇博客深入探讨了`Session.flush()`的工作原理和应用场景。 `Session`在Hibernate中主要有以下职责...

    php中flush()、ob_flush()、ob_end_flush()的区别介绍

    echo str_repeat(" ", 1024); // 填充浏览器缓冲 for ($i = 0; $i ; $i++) { echo $i; sleep(1); flush(); // 每秒输出一个数字 } ob_end_flush(); // 结束缓冲并输出剩余内容 ?&gt; ``` 在这个例子中,`flush()` ...

    hibernate_flush 深入了解

    然而,对于其内部的细节,尤其是Flush机制,许多开发者可能并不十分了解。本文将深入探讨Hibernate的Flush过程,以及它如何与数据库事务和隔离级别相互作用。 首先,我们需要明确什么是Hibernate的Flush操作。Flush...

    module_pg_flushbuffer

    在PostgreSQL数据库系统中,`module_pg_flushbuffer`是一个关键组件,主要负责数据缓冲区的刷新操作。在数据库系统中,缓冲区管理是性能优化的关键部分,因为它减少了磁盘I/O,提高了数据读写速度。当对数据库进行...

    MySQL-Flush命令用法.docx#资源达人分享计划#

    MySQL Flush 命令用法详解 MySQL Flush 命令是 MySQL 中的一种非常重要的命令,它可以用于清除或重新加载各种高速缓存、表或者获取锁等。执行 Flush 命令必须要有 reload 权限。今天,我们将详细介绍 MySQL Flush ...

    flush插件下载

    flush插件下载

    blk-flush.rar_flush

    《Linux内核中的BLK-FLUSH:驱动程序与FLUSH/FUA写入序列化》 在Linux操作系统中,磁盘驱动程序是操作系统与硬件之间的重要桥梁,它们负责处理I/O请求并确保数据正确地写入或读取到存储设备。在【标题】"blk-flush....

    三星flush接口定义

    但是需要注意的是,提供的文件片段并没有直接提及“三星flush接口”的具体信息,因此我们将基于文件片段中的线索,以及与e.MMC 4.41接口相关的专业知识来构建相关知识点。 ### 三星e.MMC 4.41接口定义 #### 1. ...

    io-flush-test.zip_flush

    在IT行业中,I/O(Input/Output)操作是程序与外部设备交互的关键部分,而"flush"这个概念在I/O处理中占据着重要的位置。在标题"io-flush-test.zip_flush"和描述"this is a i/o flush code running on windows"中,...

    深入理解ob_flush和flush的区别(ob_flush()与flush()使用方法)

    当同时使用 `ob_flush()` 和 `flush()` 时,通常推荐的顺序是先调用 `ob_flush()`,再调用 `flush()`。这是因为 `ob_flush()` 会清空PHP内部的缓冲区,然后 `flush()` 会尝试将这些内容从服务器端的缓冲区推送到...

    A Smartphone-based Laser Measuring System for Gap and Flush Assessment in Car Bo

    在汽车制造行业中,车身表面各部件之间的间隙(Gap)和平整度(Flush)的质量控制至关重要。不合适的间隙或平整度不仅会影响车辆外观美感,还可能引发噪音、防水性能下降等问题,进而降低汽车的整体品质。传统的人工...

    威卡平膜盒压力表用于卫生应用,紧凑的设计说明书.pdf

    威卡平膜盒压力表用于卫生应用,紧凑的设计说明书pdf,Flush diaphragm pressure gauge For sanitary applications Model PG43SA, compact design Applications Process industry: Biotechnology and ...

    14 当我们更新Buffer Pool中的数据时,flush链表有什么用.pdf

    本文将深入解析在更新*** Pool中的数据时,flush链表所扮演的关键角色,以及它如何帮助管理脏页。 Buffer Pool是数据库中一个非常重要的内存结构,它的主要作用是缓存磁盘上的数据页,使得数据库对数据的访问速度...

    优化LittleVGL驱动接口函数 disp_flush

    华芯微特SWM32SRET6集成了TFT和内部的SDRAM,但是没有硬件加速单元,TFT没有硬件加速单元,而且无法使用DMA传输,这点太窝火了,LittleVGL驱动接口部分,只能使用纯软件打点,占用CPU资源,而且由于只能字访问SDRAM...

    支持RISC-V指令集,32位5级流水线,支持Flush与转发操作的CPU2

    本文将深入探讨一个基于RISC-V指令集、采用32位5级流水线架构,并支持Flush与转发操作的CPU设计。 首先,让我们了解RISC-V(Reduced Instruction Set Computer - Version 5)指令集。RISC-V是一个开放源代码指令集...

    关于flush和evict

    ### 关于flush和evict在Hibernate中的应用 #### 一、引言 在持久层框架Hibernate中,`flush()`和`evict()`方法是开发者在处理数据时经常会遇到的两个重要概念。它们对于理解Hibernate的工作机制及其缓存管理至关...

    php ob_flush,flush在ie中缓冲无效的解决方法

    `ob_flush` 和 `flush` 是两个非常关键的函数,用于处理输出缓冲。 `ob_flush()` 函数的作用是将PHP输出缓冲区中的内容发送到浏览器,而 `flush()` 则是尝试将缓冲区的内容立即发送到客户端,即使服务器端仍有数据...

Global site tag (gtag.js) - Google Analytics