Oracle 参数 DNFS_BATCH_SIZE 官方解释,作用,如何配置最优化建议

本站中文解释

DNFS_BATCH_SIZE参数用于定义异步I/O的批次数量,Oracle根据此参数控制异步I/O批次数量。

DNFS_BATCH_SIZE参数通常用来优化高速网络性能。默认情况下,未指定此参数时,Oracle将保留小批次的异步I/O(比如:512或2M等);

若指定DNFS_BATCH_SIZE参数,那么就可以根据网络能力设置一个比较大的异步I/O批次数量,以达到提高DNFS网络数据传输性能的目的。

正确设置DNFS_BATCH_SIZE参数的方法:

1、将此参数设置为比内存缓冲区的大小略大的值,这样ChildCursor可以收获最大的好处。

2、将此参数设置为一个适当的值,以获得更高的带宽。

3、可以根据经验调整此参数,以便在不同的硬件平台上获得最佳性能。

官方英文解释

DNFS_BATCH_SIZE controls the number of asynchronous I/O’s that can be queued by an Oracle process when Direct NFS Client is enabled.

Property Description

Parameter type

Integer

Default value

4096

Modifiable

No

Modifiable in a PDB

No

Range of values

0 – 4096

Basic

No

In environments where the NFS server cannot handle a large number of outstanding asynchronous I/O requests, use this parameter to limit the number of I/O’s issued by an Oracle foreground process. The recommended setting for this parameter is to start at 128 and increase or decrease it based on NFS server performance.

See Also:

Oracle Database
Performance Tuning Guide
for additional information about the DNFS_BATCH_SIZE initialization parameter


数据运维技术 » Oracle 参数 DNFS_BATCH_SIZE 官方解释,作用,如何配置最优化建议