Oracle arraysize 和 fetch size 参数 与 性能优化 说明

一.参数说明

1.1 arraysize参数

Oracle sqlplus有很多设置,这个在我之前的blog有说明:

Oracle sqlplus常用命令总结

http://blog.csdn.net/xujinyang/article/details/6823232

昨天和owind讨论问题的时候,他强调了这个参数,通过一些测试,确实与性能这块有很大影响。

Arraysize specifies how many rows SQL*Plus will fetch in a call. The number n can be between 1 and 5000.

arraysize定义了一次返回到客户端的行数,当扫描了arraysize行后,停止扫描,返回数据,然后继续扫描。

这个过程就是统计信息中的SQL*Netroundtripsto/fromclient。因为arraysize默认是15行,那么就有一个问题,因为我们一个block中的记录数一般都会超过15行,所以如果按照15行扫描一次,那么每次扫描要多扫描一个数据块,一个数据块也可能就会重复扫描多次。

重复的扫描会增加consistentgets和physicalreads。增加physical reads,这个很好理解,扫描的越多,物理的可能性就越大。

consistent gets,这个是从undo里读的数量,Oracle为了保证数据的一致性,当一个查询很长,在查询之后,数据块被修改,还未提交,再次查询时候,Oracle根据Undo来构建CR块,这个CR块,可以理解成数据块在之前某个时间的状态。这样通过查询出来的数据就是一致的。

那么如果重复扫描的块越多,需要构建的CR块就会越多,这样读Undo的机会就会越多,consistent gets就会越多。

如果数据每次传到客户端有中断,那么这些数据会重新扫描,这样也就增加逻辑读,所以调整arraysize可以减少传的次数,减少逻辑读。

关于CR参考我的Blog:

CR (consistent read) blocks create说明

http://blog.csdn.net/xujinyang/article/details/6823237

所以通过上面的说明,arraysize参数如果过低,会影响如physical reads,consistent gets还有SQL*Netroundtripsto/fromclient次数。

永久保存arraysize参数:

可以该参数保存到glogin.sql或者login.sql文件里,这样可以永久生效,不必每次都去set指定。

--查看默认值

SYS@anqing2(rac2)> show arraysize

arraysize 15

--手工修改arraysize

SYS@anqing2(rac2)> set arraysize 100

SYS@anqing2(rac2)> show arraysize

arraysize 100

--修改glogin.sql

[oracle@rac2 admin]$ pwd

/u01/app/oracle/product/10.2.0/db_1/sqlplus/admin

[oracle@rac2 admin]$ ls

glogin.sqlhelpipluslibisqlplus.deflibsqlplus.defplustrce.sqlpupbld.sql

在glogin.sql里添加:

set arraysize 5000

--重新登陆,查询

SYS@anqing2(rac2)> show arraysize

arraysize5000

1.2fetch size参数

arraysize和fetch size参数都是客户段的一个参数,需要在客户段来设置,arraysize是在sqlplus中设置的,如果我们通过程序去连数据库,那么这个参数就是Fetch size。它的作用和arraysize一样。Fetch size默认是10,一般改成50就ok了,太大会消耗内存。

The JDBCfetch size gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed. For large queries that return a large number of objects you can configure the row fetch size used in the query to improve performance by reducing the number database hits required to satisfy the selection criteria.Most JDBC drivers (including Oracle) default to a fetch size of 10, so if you are reading 1000 objects, increasing the fetch size to 256 can significantly reduce the time required to fetch the query's results. The optimal fetch size is not always obvious. Usually, a fetch size of one half or one quarter of the total expected result size is optimal.Note that if you are unsure of the result set size, incorrectly setting a fetch size too large or too small can decrease performance.

In this example application, I print out the default fetch size and then increase it to 50 using the setFetchSize(int) method of a Statement object. When you execute the query, the JDBC driver retrieves the first 50 rows from the database (or all rows if less than 50 rows satisfy the selection criteria). As you iterate over the first 50 rows, each time you call rset.next(), the JDBC driver returns a row from local memory – it does not need to retrieve the row from the database. When you try to access the fifty first row (assuming there are more than 50 rows that satisfy the selection criteria), the JDBC driver again goes to the database and retrieves another 50 rows. In this way, 100 rows are returned with only two database hits.

Alternatively, you can use the method setMaxRows() to set the limit for the maximum number of rows that any ResultSet can contain.If you specify a value of zero, then the hint is ignored: the JDBC driver returns one row at a time. The default value is zero.

如下连接是一个Jdbc中配置Fetch size的示例。

http://www.idevelopment.info/data/Programming/java/jdbc/FetchSize.java

二.相关测试

每个block中row的条数和row的大小也有关系,row内容越多,那么block中的row就会少。

每个block里有多少条记录,可以通过rowid来判断。

关于Oracle rowid说明,参考我的Blog

Oracle Rowid介绍

http://blog.csdn.net/xujinyang/article/details/6829751

rowid格式如下:OOOOOOFFFBBBBBBRRR,其中:

(1)OOOOOO

The data object number identifies the segment (data object AAAPec in Example 12-1). A data object number is assigned to every database segment. Schema objects in the same segment, such as a table cluster, have the same data object number.

(2)FFF

The tablespace-relative data file number identifies the data file that contains the row (file AAF in Example 12-1).

(3)BBBBBB

The data block number identifies the block that contains the row(block AAAABS in Example 12-1). Block numbers are relative to their data file, not their tablespace. Thus, two rows with identical block numbers could reside in different data files of the same tablespace.

(4)RRR

The row number identifies the row in the block (row AAA in Example 12-1).

DAVE@anqing2(rac2)>create table dave as select * from sys.ta where rownum<10000;

Table created.

--查看table占用blocks数量

DAVE@anqing2(rac2)>select owner,extents,segment_name,blocks from dba_segments where segment_name='DAVE' and owner='DAVE';

OWNEREXTENTS SEGMENT_NAMEBLOCKS

---------- ---------- -------------------- ----------

DAVE3DAVE24

从这个数据算一个,1000行数据24个数据块。平均下来每个数据块里有417条记录.但事情情况可能不是这样.

--表结构很简单

DAVE@anqing2(rac2)> desc dave;

NameNull?Type

----------------------------------------- -------- ----------------------------

IDNUMBER

NAMEVARCHAR2(10)

--查看rowid格式

DAVE@anqing2(rac2)> select rowid from dave where rownum=1;

ROWID

------------------

AAANXzAAHAAAAAMAAA

--查看每个数据块中有多少记录:

/* Formatted on 2011/7/1 14:59:56 (QP5 v5.163.1008.3004) */

SELECTprerid,COUNT(rid)rid

FROM(SELECTSUBSTR(ROWID,1,15)prerid,ROWIDridFROMdave)

GROUPBYprerid;

DAVE@anqing2(rac2)>selectprerid,count(rid) rid from (selectsubstr(rowid,1,15) prerid,rowid rid from dave) group byprerid;

PRERIDRID

------------------------------ ----------

AAANXzAAHAAAAAa517

AAANXzAAHAAAAAf517

AAANXzAAHAAAAAP517

AAANXzAAHAAAAAU517

AAANXzAAHAAAAAW517

AAANXzAAHAAAAAX517

AAANXzAAHAAAAAM524

AAANXzAAHAAAAAO517

AAANXzAAHAAAAAQ517

AAANXzAAHAAAAAS517

AAANXzAAHAAAAAY517

AAANXzAAHAAAAAR517

AAANXzAAHAAAAAg169

AAANXzAAHAAAAAN517

AAANXzAAHAAAAAT517

AAANXzAAHAAAAAV517

AAANXzAAHAAAAAb517

AAANXzAAHAAAAAe517

AAANXzAAHAAAAAc517

AAANXzAAHAAAAAd517

20 rows selected.

--这里只有20行,即实际只使用了20个数据块,每个数据块的记录如上查询结果,因为表的记录很简单,所以每个块中的记录很多。

但是之前我们查询表占用了24个数据块,那么通过以下查询,可以理解为什么是24个blocks:

DAVE@anqing2(rac2)>select extent_id,block_id,blocks from dba_extents where owner='DAVE' and segment_name='DAVE';

EXTENT_IDBLOCK_IDBLOCKS

---------- ---------- ----------

098

1178

2258

因为这里分配了3个extents,每个extent由8个blocks组成。

如果按照默认的情况,arraysize为15,那么每个块要查询的次数是:517/15 = 35次。那么这个就会带来更多的consistents gets和physical read。我们验证一下。

DAVE@anqing2(rac2)> set autot traceonly stat

DAVE@anqing2(rac2)>select * from dave where rownum<518;

--因为一个数据块中有517条记录,所以这里只查询一个数据块的次数。

517 rows selected.

Statistics

----------------------------------------------------------

7recursive calls

0db block gets

87consistent gets

0physical reads

0redo size

9354bytes sent via SQL*Net to client

774bytes received via SQL*Net from client

36SQL*Net roundtrips to/from client

0sorts (memory)

0sorts (disk)

517rows processed

--注意这里的SQL*Net roundtrips to/from client,在之前,我们估计是按照arraysize的默认值,读完这个数据块需要roundtrips 35次,这里实际用了36次。

我们设置下arraysize,在查询:

DAVE@anqing2(rac2)>set arraysize 10000

SP2-0267: arraysize option 10000 out of range (1 through 5000)

--arraysize最大5000

DAVE@anqing2(rac2)>set arraysize 5000

DAVE@anqing2(rac2)> select * from dave where rownum<518;

517 rows selected.

Statistics

----------------------------------------------------------

0recursive calls

0db block gets

5consistent gets

0physical reads

0redo size

5036bytes sent via SQL*Net to client

400bytes received via SQL*Net from client

2SQL*Net roundtrips to/from client

0sorts (memory)

0sorts (disk)

517rows processed

比较:

consistent gets:从87变成了5.

SQL*Net roundtrips to/from client:从36变成了2

如果数据量越大,那么这种优化的性能提升就越明显。


-------------------------------------------------------------------------------------------------------

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值