Linux上Oracle启用异步IO
刚解决了一个异步io的问题,还是专门描述一下Oracle中设置异步IO的方式。首先要检查操作系统上,异步io的相关包是否已经安装,如
刚解决了一个异步io的问题,还是专门描述一下Oracle中设置异步IO的方式。
首先要检查操作系统上,,异步io的相关包是否已经安装,如果没有的话,通过rpm进行安装,并检查系统上异步io的参数设置:
[oracle@localhost ~]$ rpm-qa|grep aio
libaio-0.3.107-10.el6.x86_64
libaio-devel-0.3.107-10.el6.x86_64[oracle@localhost ~]$ more/proc/sys/fs/aio-max-nr1048576然后检查数据库在链接时是否已经加载了aio的包:
[oracle@localhost ~]$/usr/bin/ldd $ORACLE_HOME/bin/oracle|grep libaio
libaio.so.1=>/lib64/libaio.so.1(0x0000003e13000000)如果没有看到libaio的包,说明Oracle没有链接aio,那么这时就需要重新make oracle的可执行文件,9i的方法为:
make-f ins_rdbms.mk async_on
make-f ins_rdbms.mk ioracle10g以后的方法为:
make PL_ORALIBS=-laio-f ins_rdbms.mk async_on编译完成后,操作系统的设置完成,还需要设置数据库的初始化参数:
SQL>SHOWparameter disk_asynch_io
NAMETYPEVALUE------------------------------------ -------------------------------- --------------------disk_asynch_ioBOOLEANTRUESQL>SHOWparameter filesystemio_options
NAMETYPEVALUE------------------------------------ -------------------------------- ------------------filesystemio_options stringNONE对于裸设备而言,这样的设置就足够了,但是对于文件系统而言,还需要讲filesystemio_options设置为ASYNCH并重启数据库:
SQL>ALTERSYSTEMSETFILESYSTEMIO_OPTIONS=ASYNCH SCOPE=SPFILE;
System altered.由于编译oracle可执行文件的时候也要关闭数据库,合理的安排设置参数的顺序,可减少数据库的重启次数。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

As a powerful and flexible programming language, Golang has a unique design and implementation of asynchronous IO. This article will deeply analyze the underlying implementation technology of Golang asynchronous IO, explore its mechanism and principles, and provide specific code examples for demonstration. 1. Overview of asynchronous IO In the traditional synchronous IO model, an IO operation blocks the execution of the program until the read and write is completed and the result is returned. In contrast, the asynchronous IO model allows the program to wait for the IO operation to complete while

How to use asynchronous IO and coroutines in Python to implement a highly concurrent distributed task scheduling system. In today's rapidly developing information age, distributed systems are becoming more and more common. High-concurrency task scheduling systems have also become an indispensable part of many enterprises and organizations. This article takes Python as an example to introduce how to use asynchronous IO and coroutines to implement a highly concurrent distributed task scheduling system. Distributed task scheduling systems usually include the following basic components: Task scheduler: responsible for distributing tasks to different execution nodes

How to use coroutines and asynchronous IO in Python to implement a high-performance network server Introduction: With the development of the Internet, the performance requirements of network servers are becoming higher and higher. Traditional synchronous IO methods often cannot meet high concurrency requirements, resulting in slow server response. The use of coroutines and asynchronous IO can greatly improve the concurrency performance of the server. This article will introduce how to use coroutines and asynchronous IO in Python to implement a high-performance network server. 1. Introduction to coroutines and asynchronous IO 1.1 Coroutines (C

How to use asynchronous IO in Python for high-concurrency programming In today's Internet era, high-concurrency processing is one of the important considerations in many system designs. By using asynchronous IO programming, we can effectively handle a large number of concurrent requests and improve the performance and response speed of the system. As a high-level programming language, Python also provides a wealth of asynchronous IO libraries, such as asyncio and aiohttp, etc., making asynchronous programming relatively easy. The following will introduce how to use asynchronous IO in Python for high-speed

Python, as a high-level programming language, has become one of the mainstream choices for web development. However, with the rapid development of the Internet, the data volume and concurrency of web applications are getting higher and higher, which makes the performance of web applications become an important issue. In order to meet business needs and user experience, asynchronous IO performance optimization techniques in Python web development have increasingly become a research hotspot. Introduction to asynchronous IO Asynchronous IO refers to using non-blocking IO operations in a single thread and handing over the IO operations to the operating system

As computer technology continues to develop, the needs of software development are also constantly changing and evolving. In these changes and evolutions, efficiency and performance are the eternal themes. Among them, asynchronous IO and row cache are two important concepts. As an emerging programming language, Go language has focused on high performance and concurrency from the beginning of its design. In the Go language, responsiveness, fastness, high concurrency and high throughput are very important, and asynchronous IO and row caching are one of the main features of the Go language in terms of these goals. Asynchronous IO The purpose of the asynchronous IO model is to

How to use asynchronous IO to speed up access to Java websites? As the development and application of the Internet become more and more widespread, website performance and response speed have become the focus of users. The traditional synchronous IO model will face performance bottlenecks when processing high concurrent requests, affecting the user's access experience. Asynchronous IO is a solution that can improve website access performance. This article will introduce how to use asynchronous IO to accelerate Java website access. First, we need to understand the basic concepts of asynchronous IO. In traditional synchronous IO, each IO operation

With the increasing growth of Web applications and increasingly powerful Internet technologies, modern Web development has become more and more complex. In such an environment, how to improve the performance of web applications has become one of the important tasks for developers. Swoole is a high-performance asynchronous network framework that provides support for coroutines, allowing developers to easily implement high-concurrency, high-performance web applications. This article will introduce how to use coroutines to implement asynchronous IO operations in Swoole. The specific contents are as follows: 1. What is the Agreement?
