Segments by ITL Waits 问题及解决

上次在现场做性能测试,并发3000人同时做INSERT操作,每人操作500条记录,也就是一次插入150W,发现有点慢,查看awr报告,主要的等待事件就是“enq: TX - allocate ITL entry”,查看segments by logical reads、segments by Row lock waits 和 segments by ITL waits,都是指向这个表的主键PK_ST。
 
上网查资料,再结合现场相关 技术员的指导,决定将原来的主键删除重建,目的就是为了在主键上建全局分区索引,并把索引的 initrans初始值调大。
 
类似如下脚本:
 
--删除原有表上的主键关系
alter table t_testtab
  drop constraint pk_testtab cascade;

--删除原有表主键默认的索引 
drop index pk_testtab; 
 
--在该字段上重新创建全局、唯一、分区索引,为加快创建速度,这里增加了并行度,若没多少数据的话,可以考虑去掉并行度 
create unique index index_t_testtab on t_testtab(id) global
 partition by hash(id)
(
partition part_index_1 tablespace ST_DB1,
partition part_index_2 tablespace ST_DB2,
partition part_index_3 tablespace ST_DB3,
partition part_index_4 tablespace ST_DB4,
partition part_index_5 tablespace ST_DB5
) parallel 10;
 
--在该字段上创建主键约束
alter table t_testtab add constraint pk_testtab primary key (id);
 
--修改该主键的initrans默认值为20
alter index pk_testtab  initrans 20;
 
--由于前面删除主键,其他表与该表的主外键约束都会自动删除,需要重新建立主外键并在外键字段增加索引
alter table t_testone
  add constraint fk_testone foreign key (TID)
  references t_testtab (ID);
create index INDEX_TESTONE on t_testone (tid);
 
原文地址: http://space.itpub.net/9399028/viewspace-693736

你可能感兴趣的:(Segments by ITL Waits 问题及解决)