异步IO ORA-27090: Unable to reserve kernel resources for asynchronous disk I/O

--原文:http://blog.itpub.net/29990276/viewspace-2152926/

根据oracle官方文档 (Doc ID 579108.1)的建议,我们需要将数据库中的最大并行异步io的数量限制上调到3145728( aio-max-nr= 1048576)。由于该ORA错误在极高的io请求系统中才会爆发,很少有客户能达到这么高且频繁的io请求数量。






修改方式
1.

echo 3145728 > /proc/sys/fs/aio-max-nr 

2.

vi /etc/sysctl.conf

fs.aio-max-nr = 3145728

:wq

3.

sysctl -p

--修改后

[oracle@pdb1 ~]$ cat /etc/sysctl.conf |grep fs.aio-max-nr
#fs.aio-max-nr = 1048576
fs.aio-max-nr = 3145728
[oracle@pdb1 ~]$

原文地址:https://www.cnblogs.com/ss-33/p/13935514.html