free buffer waits等待事件

简介:

Problem This will happen if there is no free buffer in the buffer cache for the session to read a new block into. All buffer gets have been suspended. This will frequently occur because DBWR is not writing out buffers fast enough. This could happen when a file was read-only and is now read-write. All the existing buffers associated with the read-only file need to be invalidated since they are not linked to lock elements (needed when mounted parallel (shared)). So cache buffers are not assigned to data block addresses until the invalidation is finished. The session moved some dirty buffers to the dirty queue and now this dirty queue is full. The dirty queue needs to be written to the file system first. The session will wait on this event and try again to find a free buffer This also happens after inspecting free buffer inspected buffers. If no free buffer is found, Oracle waits for one second, and then tries to get the buffer again (depends on the context). Small buffer cache can cause high free buffer waits when large amount of PIOs and LIOs are taking place. Solution Improve DBWR Throughput  


本文转自maclean_007 51CTO博客,原文链接:http://blog.51cto.com/maclean/1277926

相关文章
|
SQL 前端开发 rax
被误读的buffer busy waits
uffer busy waits的等待事件网上资料很多,很多人可能误读了buffer busy waits。puber们把你们对buffer busy waits等待事件的理解统统说出来,大家一起讨论学习,共同进步! 最好有实验步骤加以验证,可以让大家完完全全的彻底理解buffer busy waits。
|
关系型数据库 数据库 Oracle
|
SQL 关系型数据库 Oracle
|
Java 数据库管理 关系型数据库
|
数据库管理 关系型数据库 Oracle