- 论坛徽章:
- 0
|
Lockwt工具:
使用Esql/C编写的工具lockwt非常适合用来分析锁等待的情况。为了能使用该工具,你需要安装Informix Client SDK及C编译器,然后编译该工具。该工具会搜索sysmaster数据库里面的系统表以找到出现的锁等待情况信息。
该工具将显示每个会话所占有锁资源的信息,及哪些会话在等待这些锁资源释放。执行lockwt -r <#sec> 命令可以按照指定的时间间隔重复收集信息(类似于onstat -r命令)。
该工具可以实时监控复杂的锁资源等待情况,同时以简单易读的形式将相关信息显示出来。
Listing 5. Lockwt - Description of the output format
Output from lockwt:
-------------------
(0) (1) (2) (3) (4) (5) (6) (7) ( (9)
|-------10--------20--------30--------40--------50--------60--------70--------80--------9|
|-------- XML error: The previous line is longer than the max of 90 characters ---------|
WAIT SID ID PROCNAME USERNAME LKTYPE DATABASE:TABLENAME LKOBJ
0 - 13900:12303 workprocess3 dbuser X rome rders row
|-------10--------20--------30--------40--------50--------60--------70--------80--------9|
|-------- XML error: The previous line is longer than the max of 90 characters ---------|
1 W 53600:23613 batchp12 dbuser rome rders
Colno Purpose
(0) Sequence number
(1) Waiting or not waiting, possible values are:
"-" - this session is the holder of the lock and is always listed first.
"W" - this session(s) is(are) waiting for the above session.
(2) Session ID of this session in the database server
(3) Process ID of the UNIX process, remote connections have pid -1
(4) Process name of the UNIX process. If it is a remote connection
(pid = -1), no process name will be available.
(5) UNIX username of this session
(6) Type of lock, possible values are:
"X" - Exclusive Lock
"S" - Shared Lock
"U" - Update Lock
For additional lock types, execute the following sql-statement:
-> select txt from sysmaster:flags_text where tabname = "syslcktab"
(7) Database name
( Table name, the lock is on. If it is an index lock and the index is detached
from the table (has it's own partition number), the name of that index
is shown here.
(9) Type of object locked, possible values are:
"table" - this is a table lock
"idx" - this is an index key lock
"page" - this is a page lock
"row" - this is a row lock
Listing 6. Lockwt - Lock wait situation I
Output from lockwt:
-------------------
WAIT SID ID PROCNAME USERNAME LKTYPE DATABASE:TABLENAME LKOBJ
0 - 13900:12303 workprocess3 dbuser X rome rders row
1 W 53600:23613 batchp12 dbuser rome rders
本例中,会话13900 (process "workprocess3" 是表orders上锁资源的拥有者,会话53600正在等待这些锁资源的释放,因此你需要通过执行onstat -g ses 13900命令去检查会话13900以证实其运行是否正常。
Listing 7. Lockwt - Lock wait situation II
Output from lockwt:
-------------------
WAIT SID ID PROCNAME USERNAME LKTYPE DATABASE:TABLENAME LKOBJ
0 W 3894: -1 (remote) eherber1 X rome :status row
1 W 17048: 3140 batchp3 dbuser rome :status
0 - 63296: -1 (remote) eherber1 X rome :customer_order row
1 W 3894: -1 (remote) eherber1 rome :customer_order
本例是一个交复杂的情况。会话17048正在等待会话3894设置在表status上的锁资源释放。但是通过检查下一部分可以发现,会话3894本身也在等待会话63296释放相应的锁资源。这是一个典型的锁等待传递案例,因为会话3894占据了别的会话需要使用的锁资源,而它本身又在等待被其他会话所拥有的锁资源。因此我们应该通过onstat -g ses 63296去具体分析会话63296是否在正常执行。
从工具lockwt的源代码中,你可以抽取那些与sysmaster相关的查询语句以形成你自己的查询语句。
打开游标的问题:
可能你在修改表的时候曾经碰到过类似的问题。即使你能够在该表上设置排他锁,你仍然不能对该表进行修改。以下为示例的整个过程:
Listing 8. Non-exclusive access on a table
Output from dbaccess -e stores_demo <script.sql>:
--------------------------------------------------
begin;
Started transaction.
lock table customer in exclusive mode;
Table locked.
alter table customer add (mycol integer);
242: Could not open database table (informix.customer).
106: ISAM error: non-exclusive access.
出现这种情况有可能是由于有其他的用户在表customer上使用了游标进行数据读取。由于游标并不在具体的数据记录上放置任何锁,否则我们就不可能能够将该表以排他的方式锁住,但是它却能防止其他用户对表的partition信息进行修改。
1、要解决该问题,首先需要找到该表的16进制partnum:
Select hex(partnum) from systables where tabname = "customer".
2、如果partnum为0,那么这可能是一个分片表。你需要执行以下命令来找到分片表的partnum:
Select st.tabname, dbinfo("dbspace", sf.partn), hex(sf.partn) from systables st, sysfragments sf, where st.tabid = sf.tabid and sf.fragtype = "T"and st.tabname = "customer".
3、用找到的partnum结合onstat命令搜索当前打开表的信息:
onstat -g opn | grep -i <hex_partnum>
4、从rstcb字段,它表明了相关会话线程的内存地址信息,据此信息使用onstat -u命令进行搜索:
onstat -u | grep <rstcb_without_leading_0x>
在确定与此相关的会话以后,你可以通过onmode -z <sessid>终止相关的会话。
如果你使用IDS 7.31.xD5, 9.40 or 10,你可以使用环境变量IFX_DIRTY_WAIT。该环境变量可以被设置在服务器端或客户端。该变量指定了在执行DDL命令时将等待数据库完成修改操作所需的时间。如果指定的时间超时,数据库将返回与没有设置该变量时同样的错误。
总结:
在一个拥有众多并发事物正在运行的环境下,实时分析锁冲突的情况是一个比较艰巨的任务。但是通过本文对数据库锁机制的介绍,将有助于大家在分析锁冲突的时候缩短所需时间。
下载lockwt工具: http://www.herber-consulting.de/ ... .pl?action=IfmxUtil
本文作者:Eric Herber |
|