Oraclearraysize和fetchsize参数与性能优化说明.doc_第1页
Oraclearraysize和fetchsize参数与性能优化说明.doc_第2页
Oraclearraysize和fetchsize参数与性能优化说明.doc_第3页
Oraclearraysize和fetchsize参数与性能优化说明.doc_第4页
Oraclearraysize和fetchsize参数与性能优化说明.doc_第5页
已阅读5页,还剩1页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

Oracle arraysize 和 fetch size 参数与性能优化说明/Linux/2011-07/37996.htm一. 参数说明1.1 arraysize 参数 Oracle sqlplus 有很多设置,这个在我之前的blog有说明: Oracle sqlplus 常用命令总结 /Linux/2010-02/24553.htm 昨天和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 说明 /Linux/2011-07/37997.htm 所以通过上面的说明,arraysize 参数如果过低,会影响如physical reads,consistent gets 还有SQL*Netroundtripsto/fromclient次数。永久保存arraysize 参数: 可以该参数保存到glogin.sql 或者login.sql 文件里,这样可以永久生效,不必每次都去set 指定。- 查看默认值SYSanqing2(rac2) show arraysizearraysize 15-手工修改arraysizeSYSanqing2(rac2) set arraysize 100 SYSanqing2(rac2) show arraysizearraysize 100-修改glogin.sqloraclerac2 admin$ pwd/u01/app/oracle/product/10.2.0/db_1/sqlplus/adminoraclerac2 admin$ lsglogin.sql help iplus libisqlplus.def libsqlplus.def plustrce.sql pupbld.sql在glogin.sql里添加:set arraysize 5000-重新登陆,查询SYSanqing2(rac2) show arraysizearraysize 50001.2 fetch size 参数 arraysize 和 fetch size 参数都是客户段的一个参数,需要在客户段来设置,arraysize 是在sqlplus 中设置的,如果我们通过程序去连数据库,那么这个参数就是Fetch size。 它的作用和arraysize 一样。 Fetch size 默认是10,一般改成50就ok了,太大会消耗内存。 The JDBC fetch 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 querys 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的示例。 /data/Programming/java/jdbc/FetchSize.java二. 相关测试 每个block 中row的条数和row的大小也有关系,row 内容越多,那么block 中的row就会少。每个block里有多少条记录,可以通过rowid 来判断。 关于Oracle rowid说明,参考我的Blog Oracle Rowid 介绍 /Linux/2011-07/37998.htm 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).DAVEanqing2(rac2) create table dave as select * from sys.ta where rownum select owner,extents,segment_name,blocks from dba_segments where segment_name=DAVE and owner=DAVE;OWNER EXTENTS SEGMENT_NAME BLOCKS- - - -DAVE 3 DAVE 24从这个数据算一个,1000行数据24个数据块。 平均下来每个数据块里有417条记录. 但事情情况可能不是这样.-表结构很简单DAVEanqing2(rac2) desc dave;Name Null? Type- - -ID NUMBERNAME VARCHAR2(10)- 查看rowid格式DAVEanqing2(rac2) select rowid from dave where rownum=1;ROWID-AAANXzAAHAAAAAMAAA-查看每个数据块中有多少记录:/* Formatted on 2011/7/1 14:59:56 (QP5 v5.163.1008.3004) */ SELECT prerid, COUNT (rid) rid FROM (SELECT SUBSTR (ROWID, 1, 15) prerid, ROWID rid FROM dave)GROUP BY prerid;DAVEanqing2(rac2) select prerid,count(rid) rid from (select substr(rowid,1,15) prerid,rowid rid from dave) group by prerid;PRERID RID- -AAANXzAAHAAAAAa 517AAANXzAAHAAAAAf 517AAANXzAAHAAAAAP 517AAANXzAAHAAAAAU 517AAANXzAAHAAAAAW 517AAANXzAAHAAAAAX 517AAANXzAAHAAAAAM 524AAANXzAAHAAAAAO 517AAANXzAAHAAAAAQ 517AAANXzAAHAAAAAS 517AAANXzAAHAAAAAY 517AAANXzAAHAAAAAR 517AAANXzAAHAAAAAg 169AAANXzAAHAAAAAN 517AAANXzAAHAAAAAT 517AAANXzAAHAAAAAV 517AAANXzAAHAAAAAb 517AAANXzAAHAAAAAe 517AAANXzAAHAAAAAc 517AAANXzAAHAAAAAd 51720 rows selected.- 这里只有20行,即实际只使用了20个数据块,每个数据块的记录如上查询结果,因为表的记录很简单,所以每个块中的记录很多。 但是之前我们查询表占用了24个数据块,那么通过以下查询,可以理解为什么是24个blocks:DAVEanqing2(rac2) select extent_id,block_id,blocks from dba_extents where owner=DAVE and segment_name=DAVE;EXTENT_ID BLOCK_ID BLOCKS- - - 0 9 8 1 17 8 2 25 8因为这里分配了3个extents,每个extent 由8个blocks组成。 如果按照默认的情况,arraysize 为15,那么每个块要查询的次数是:517/15 = 35次。 那么这个就会带来更多的consiste

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论