TX鎖(Transaction Lock)分析 (zt)

tolywang發表於2008-01-10
前兩天看到現場alert日誌中有一些00060(Deadlock)的告警。查了一下日誌檔案,發現一些奇怪的現象,比如有些鎖在Insert時產生的,有些死鎖是對同一個物件產生的。於是在解決這些問題的同時,仔細研究了一下TX鎖,總結了產生TX鎖的各種情況。[@more@]

資料記錄被鎖

我們知道,Oracle中事務產生的索都是行級鎖。也就說,事務在對錶做更新操作(UpdateDelete)時,只在針對資料塊中需要更新的資料記錄加鎖。這種型別的鎖就是我們最常見的鎖。看下面的例子:

SQL> create table t_lock(a number, b varchar2(20), c char(10)) initrans 1 maxtrans 3;
 
Table created
 
SQL> insert into t_lock values(1,1,1);
 
1 row inserted
 
SQL> commit;
 
Commit complete
 

會話1:

SQL> update t_lock set b='2' where a=1;
 
1 row updated
 

會話2:

SQL> delete t_lock where a=1;
 

會話1鎖住了a=1的記錄,會話試圖刪除該記錄時,被hung住。

SQL> select * from dba_waiters;
 
WAITING_SESSION HOLDING_SESSION LOCK_TYPE MODE_HELD MODE_REQUESTED LOCK_ID1 LOCK_ID2
--------------- --------------- --------- --------- -------------- -------- --------
28            20              Transaction Exclusive Exclusive    1048671  40361
    

並且,如果將t_lock的資料塊dump出來的話,也可以看到在記錄行上的鎖標誌

tl: 19 fb: --H-FL-- lb: 0x1  cc: 3

其中,0x1對應的是產生鎖的事務在資料塊itl列表中的條目號。

資料塊中itl條目達到最大限制時產生的鎖

 

ITL(Interested Transaction List)直白點說就是對該資料塊“有興趣”的事務列。也就是會對該資料塊進行修改的事務。一個表的資料塊上同時最多可以有多少個事務對其進行更新,是由建立表時的引數maxtrans指定的。但是,如果表建立在基於9i新特性ASSM(自動段空間管理)的表空間上的話,那麼指定的maxtrans就無效,一律都是255。比如上面的例子中,我們指定了maxtrans3(表空間不是ASSM),所以同時最多隻能有3個事務對一個資料塊進行更新。看下面的例子。

先給上面的表多插入一些資料:

SQL> insert into t_lock values(2,2,2);
 
1 row inserted
 
SQL> insert into t_lock values(3,3,3);
 
1 row inserted
 
SQL> insert into t_lock values(4,4,4);
 
1 row inserted
 
SQL> insert into t_lock values(5,5,5);
 
1 row inserted
 
SQL> commit;
 
Commit complete
    

會話1:

SQL> update t_lock set b='2' where a=1;
 
1 row updated
    

會話2:

SQL> update t_lock set b='2' where a=2;
 
1 row updated
    

會話3:

SQL> update t_lock set b='2' where a=3;
 
1 row updated
    

會話4:

SQL> update t_lock set b='2' where a=4;
 
1 row updated
    

前面已經佔用了3itl slot,第4個事務再申請itl時被hung住了。

SQL> select * from dba_waiters;
 
WAITING_SESSION HOLDING_SESSION LOCK_TYPE MODE_HELD MODE_REQUESTED LOCK_ID1 LOCK_ID2
--------------- --------------- --------- --------- -------------- -------- --------
19            27              Transaction Exclusive Exclusive    1048671  40361
 

Dump出資料塊,可以看到itl已經達到最大限制條目數:

seg/obj: 0x87c0  csc: 0x00.a337dee9  itc: 3  flg: -  typ: 1 - DATA
     fsl: 0  fnx: 0x0 ver: 0x01
 
Itl           Xid                  Uba         Flag  Lck        Scn/Fsc
0x01   0x0008.053.00009ef3  0x00802e6a.71b4.2b  ----    1  fsc 0x0000.00000000
0x02   0x000d.037.0000a98a  0x0080655a.ac1f.2b  ----    1  fsc 0x0000.00000000
0x03   0x000c.004.0000acb9  0x008006a6.06bc.28  ----    1  fsc 0x0000.00000000
 

這裡我們需要提出另外一個問題,如果事務操作不是updatedelete,而是進行Insert操作,會不會也會達到maxtrans的限制呢?做個試驗看下吧:

會話1:

SQL> update t_lock set b='2' where a=1;
 
1 row updated
    

會話2:

SQL> update t_lock set b='2' where a=2;
 
1 row updated
    

會話3:

SQL> update t_lock set b='2' where a=3;
 
1 row updated
 

會話4:

SQL> insert into t_lock values(6,6,6);
 
1 row inserted
    

這時,儘管已經分配itl條目給三個事務,但是第四個事務在做insert插入操作時並沒有被hung住。

看下資料塊dump內容:

Object id on Block? Y
 seg/obj: 0x87c0  csc: 0x00.a337df1b  itc: 3  flg: O  typ: 1 - DATA
     fsl: 0  fnx: 0xa03000c ver: 0x01
 
 Itl           Xid                  Uba         Flag  Lck        Scn/Fsc
0x01   0x0003.00b.0000a3ab  0x0080397c.0b0f.2a  ----    1  fsc 0x0000.00000000
0x02   0x0000.000.00000000  0x00806a5a.as1e.2b  ----    1  fsc 0x0000.00000000
0x03   0x000e.037.0000a458  0x14401ff2.17d8.2b  ----    1  fsc 0x0000.00000000
 

我們發現,確實只有三個transaction在這個資料塊上。那麼還有一個事務呢?別急,把下一個資料塊dump出來看看:

Object id on Block? Y
 seg/obj: 0x87c0  csc: 0x00.a337df22  itc: 1  flg: O  typ: 1 - DATA
     fsl: 0  fnx: 0x0 ver: 0x01
 
 Itl           Xid                  Uba         Flag  Lck        Scn/Fsc
0x01   0x0004.038.0000a6dc  0x00806fbf.bb4e.0e  ----    1  fsc 0x0000.00000000
 

原來如此!在做insert操作時,如果發現資料塊已經達到maxtrans的最大限制,就從freelist中取出下一空閒資料塊進行插入操作,而不管是否達到pctused的限制了。

Table上有Index時達到maxtrans限制

以上的測試是針對table上沒有index時做的測試。當在table上建了index,情況就變得複雜多了。

· 場景一:

SQL> drop table t_lock;
 
Table dropped
 
SQL> create table t_lock(a number, b varchar2(20), c char(10)) initrans 1 maxtrans 5;
 
Table created
 
SQL> insert into t_lock values(1,1,1);
 
1 row inserted
 
SQL> insert into t_lock values(2,2,2);
 
1 row inserted
 
SQL> insert into t_lock values(3,3,2);
 
1 row inserted
 
SQL> insert into t_lock values(4,4,2);
 
1 row inserted
 
SQL> insert into t_lock values(5,5,1);
 
1 row inserted
 
SQL> commit;
 
Commit complete
 
SQL> create index t_lock_idx on t_lock(a) maxtrans 3;
 
Index created
 

會話1:

SQL> delete from t_lock where a=1;
 
1 row deleted      
 

會話2:

SQL> delete from t_lock where a=2;
 
1 row deleted 

(注意:以上操作都會索引列)

會話3:

SQL> update t_lock2 set b=2 where b=2;
 
1 row updated

(注意:這個會話沒有涉及索引列)

會話4

SQL> delete from t_lock where a=3;

4個會話被hung住了:

SQL> select * from dba_waiters;
 
WAITING_SESSION HOLDING_SESSION LOCK_TYPE MODE_HELD MODE_REQUESTED LOCK_ID1 LOCK_ID2
--------------- --------------- --------- --------- -------------- -------- --------
19            20              Transaction Exclusive Share         393284   42733

我們的table上的maxtrans5,這裡並沒有達到,而index上的maxtrans3,第4Transactionhung。這裡似乎可以下一個結論:table上有index的話,如果達到index上的maxtrans限制,後面的事務就會被hung住。但是,請注意第3個會話,他的操作並沒有涉及到索引列,那麼去掉第3個會話會怎樣?

 

· 場景二:

會話1:

SQL> delete from t_lock where a=1;
 
1 row deleted      

會話2:

SQL> delete from t_lock where a=2;
 
1 row deleted 

(注意:以上操作都會索引列)

會話3:

SQL> delete from t_lock where a=3;

第3個會話被hung住了:

SQL> select * from dba_waiters;
 
WAITING_SESSION HOLDING_SESSION LOCK_TYPE MODE_HELD MODE_REQUESTED LOCK_ID1 LOCK_ID2
--------------- --------------- --------- --------- -------------- -------- --------
27            20              Transaction Exclusive Share         1048605  40351

這裡,第3個會話就被hung住了。那就是說對有index得情況來說,itl數的限制是minx(maxtrans_of_index1 - 1, maxtrans_of_index2 – 1..., maxtrans_of_table) 。

我們前面提到,如果在insert時發現資料塊的itl數已經達到maxtrans的限制,那麼會在一個新的資料塊進行插入,以避免會話阻塞。那麼有了index以後,是否還是這樣呢?看下面這種情況。

· 場景三:

 

會話1:

SQL> delete from t_lock where a=1;
 
1 row deleted      

會話2:

SQL> delete from t_lock where a=2;
 
1 row deleted 

(注意:以上操作都會索引列)

會話3:

SQL> insert into t_lock values(6,6,6);

第3個會話被hung住了:


                                        

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/35489/viewspace-997020/,如需轉載,請註明出處,否則將追究法律責任。

相關文章