Oracle 阻塞(blocking blocked)介绍和实例演示

阻塞是dba经常碰到的情形,尤其是不良的应用程序设计的阻塞将导致性能严重下降直至数据库崩溃。对dba而言,有必要知道如何定位到当前系统有哪些阻塞,到底谁是阻塞者,谁是被阻塞者。本文对此给出了描述并做了相关演示。

1、阻塞及其类型

a、什么是阻塞
   一个会话持有某个资源的锁,而另一个会话在请求这个资源,就会出现阻塞(blocking)。也就是说新的会话会被挂起,直到持有锁的会话放弃锁定的资源。大多数情况下,在一个交互式应用中被严重阻塞,即可表明应用逻辑有问题,这才是阻塞的根源。
b、阻塞得类型
   数据库中有5条常见的dml语句可能会阻塞,即:insert、update、delete、merge 和select for update。

2、几种不同类型阻塞的处理办法

a、insert阻塞主要是由于有一个带主键的表,或者表上有惟一的约束,在两个会话试图用同样的值插入一行时引发阻塞。多表通过引用完整性约束相互链接时,在其依赖的父表正在创建或删除期间,对子表的插入可能会阻塞。对于该类情形建议使用序列来生成主键/惟一列值。
b、对于update、delete、merge 和select for update阻塞,只要有任一session使用这些操作已经锁定行,其余的必须处于等待状态。直到当前锁定行上的锁(排他锁)释放。对于该类情形,建议尽可能快速提交事务,或采用批量sql方式提交。
c、对于一个阻塞的select for update,解决方案很简单:只需增加nowait 子句,它就不会阻塞了。

3、演示阻塞

--更新表,注,提示符scott@cnmmbo表明用户为scott的session,用户名不同,session不同。
scott@cnmmbo> update emp set sal=sal*1.1 where empno=7788;

1 row updated.

scott@cnmmbo> @my_env

spid    sid serial# username  program
------------ ---------- ---------- --------------- ------------------------------------------------
11205    1073  4642 robin   oracle@szdb (tns v1-v3)

--另起两个session更新同样的行,这两个session都会处于等待,直到第一个session提交或回滚
leshami@cnmmbo> update scott.emp set sal=sal+100 where empno=7788;

goex_admin@cnmmbo> update scott.emp set sal=sal-50 where empno=7788;

--下面在第一个session 查询阻塞情况
scott@cnmmbo> @blocker 

block_msg            block
-------------------------------------------------- ----------
pts/5 ('1073,4642') is blocking 1067,10438     1
pts/5 ('1073,4642') is blocking 1065,4464     1
--上面的结果表明session 1073,4642 阻塞了后面的2个
--即session 1073,4642是阻塞者,后面2个session是被阻塞者

--author : leshami
--blog : http://blog.csdn.net/leshami

--下面查询正在阻塞的session id,sql语句以及被阻塞的时间
scott@cnmmbo> @blocking_session_detail.sql

'sid='||a.sid||'waitclass='||a.wait_class||'time='||a.seconds_in_wait||chr(10)||'query='||b.sql_text
-------------------------------------------------------------------------------------------------------
sid=1067 wait class=application time=5995
 query=update scott.emp set sal=sal+100 where empno=7788

sid=1065 wait class=application time=225
 query=update scott.emp set sal=sal-50 where empno=7788

--下面的查询阻塞时锁的持有情况 
scott@cnmmbo> @request_lock_type

username        sid ty lmode  request   id1  id2
------------------------------ ---------- -- ----------- ----------- ---------- ----------
scott        1073 tx exclusive none   524319  27412
leshami        1067 tx none  exclusive  524319  27412
goex_admin       1065 tx none  exclusive  524319  27412
--可以看到leshami,goex_admin 2个用户都在请求524319/27412上的exclusive锁,而此时已经被scott加了exclusive锁

--查询阻塞时锁的持有详细信息
scott@cnmmbo> @request_lock_detail

  sid username    osuser   terminal     object_name   ty lock mode req_mode
---------- -------------------- --------------- ------------------------- -------------------- -- ----------- --------------------
  1065 goex_admin   robin   pts/1      emp     tm row excl
  1065 goex_admin   robin   pts/1      trans-524319   tx --waiting-- exclusive
  1067 leshami    robin   pts/0      emp     tm row excl
  1067 leshami    robin   pts/0      trans-524319   tx --waiting-- exclusive
  1073 scott    robin   pts/5      emp     tm row excl
  1073 scott    robin   pts/5      trans-524319   tx exclusive 

文中涉及到的相关脚本如下:

robin@szdb:~/dba_scripts/custom/sql> more my_env.sql 
select spid, s.sid, s.serial#, p.username, p.program
from v$process p, v$session s
where p.addr = s.paddr
  and s.sid = (select sid
     from v$mystat
     where rownum = 1);

robin@szdb:~/dba_scripts/custom/sql> more blocker.sql 
col block_msg format a50; 
select c.terminal||' ('''||a.sid||','||c.serial#||''') is blocking '||b.sid||','||d.serial# block_msg, a.block 
from v$lock a,v$lock b,v$session c,v$session d 
 where a.id1=b.id1 
 and a.id2=b.id2 
 and a.block>0
 and a.sid <>b.sid 
 and a.sid=c.sid 
 and b.sid=d.sid; 

robin@szdb:~/dba_scripts/custom/sql> more blocking_session_detail.sql
--to find the query for blocking session

--access privileges: select on v$session, v$sqlarea

select  'sid='
   || a.sid
   || ' wait class='
   || a.wait_class
   || ' time='
   || a.seconds_in_wait
   || chr (10)
   || ' query='
   || b.sql_text
 from v$session a, v$sqlarea b
 where a.blocking_session is not null and a.sql_address = b.address
order by a.blocking_session
/
robin@szdb:~/dba_scripts/custom/sql> more request_lock_type.sql
--this script generates a report of users waiting for locks.
--access privileges: select on v$session, v$lock

select sn.username, m.sid, m.type,
  decode(m.lmode, 0, 'none',
      1, 'null',
      2, 'row share',
      3, 'row excl.',
      4, 'share',
      5, 's/row excl.',
      6, 'exclusive',
    lmode, ltrim(to_char(lmode,'990'))) lmode,
  decode(m.request,0, 'none',
       1, 'null',
       2, 'row share',
       3, 'row excl.',
       4, 'share',
       5, 's/row excl.',
       6, 'exclusive',
       request, ltrim(to_char(m.request,
    '990'))) request, m.id1, m.id2
from v$session sn, v$lock m
where (sn.sid = m.sid and m.request != 0)
  or (sn.sid = m.sid
    and m.request = 0 and lmode != 4
    and (id1, id2) in (select s.id1, s.id2
  from v$lock s
      where request != 0
    and s.id1 = m.id1
        and s.id2 = m.id2)
    )
order by id1, id2, m.request; 
robin@szdb:~/dba_scripts/custom/sql> more request_lock_detail.sql
set linesize 190
col osuser format a15
col username format a20 wrap
col object_name format a20 wrap
col terminal format a25 wrap
col req_mode format a20
select b.sid, c.username, c.osuser, c.terminal,
  decode(b.id2, 0, a.object_name,
   'trans-'||to_char(b.id1)) object_name,
  b.type,
  decode(b.lmode,0,'--waiting--',
      1,'null',
      2,'row share',
      3,'row excl',
     4,'share',
      5,'sha row exc',
   6,'exclusive',
      'other') "lock mode",
  decode(b.request,0,' ',
      1,'null',
      2,'row share',
      3,'row excl',
      4,'share',
      5,'sha row exc',
      6,'exclusive',
      'other') "req_mode"
 from dba_objects a, v$lock b, v$session c
where a.object_id(+) = b.id1
 and b.sid = c.sid
 and c.username is not null
order by b.sid, b.id2;
(0)
上一篇 2022年3月22日
下一篇 2022年3月22日

相关推荐