1748169 Members
3878 Online
108758 Solutions
New Discussion юеВ

Async IO concept

 
SOLVED
Go to solution
Lalo Weng
Contributor

Async IO concept

Hi, All Master,

I'm reading Oracle Installation Guide on HP-UX, one term stops me.That is:Async IO. Could any one tell me more about it,I want to know its concept,background,principle, etc. Or Could you give me a link so that I will learn it from there.

Thanks in advance.
2 REPLIES 2
Philip Chan_1
Respected Contributor
Solution

Re: Async IO concept

My interpretation of asynchronous I/O -> Async I/O means nowait I/O, or non-blocked I/O somebody called it. For example, in synchronous I/O mode if a process made a disk I/O request but the resouce isn't ready, the process will be blocked and wait, wait until the resource is available. This impose inefficiency on CPU usage. On the other hand, if the same process was re-written to adopt asynchronous I/O, the process WILL NOT WAIT for the I/O to be returned, it will made the request, then move on to perform the next other instructions, after finishing all queued instructions then the process will made a "select" system call to pick up its previously requested I/O then finish what it supposed to finish. This way CPU time will not be wasted on waiting (wio in the sar output).

My 2 cents.

~Philip
A. Clay Stephenson
Acclaimed Contributor

Re: Async IO concept

Philip is correct and in almost all cases asynch io will give better performance but there is a downside. There is no assurance that the IO operation actually completes. You are trading speed for integrity. You will need to enable asynch_io in the kernel and rebuild the kernel.

If it ain't broke, I can fix that.