Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Asynchronous I/O on Solaris

RE: Asynchronous I/O on Solaris

From: Steve Adams <steve.adams_at_ixora.com.au>
Date: Thu, 16 Nov 2000 09:02:14 +1000
Message-Id: <10681.122192@fatcity.com>


Hi Yong,

No, that is just AIO. This issue is whether is supports KAIO on a particular datafile.

@   Regards,
@   Steve Adams
@   http://www.ixora.com.au/
@   http://www.christianity.net.au/

-----Original Message-----
From: yong huang [mailto:yong321_at_yahoo.com] Sent: Thursday, 16 November 2000 6:31
To: Multiple recipients of list ORACLE-L Subject: RE: Asynchronous I/O on Solaris

Hi, Steve,

I wonder if we can simply determine whether the OS supports AIO by sysconf(_SC_ASYNCHRONOUS_IO). The following is run on Solaris 2.6 for SPARC:

$ cat q.c
#include <unistd.h>
#include <stdio.h>

main()
{ printf("%ld\n", sysconf(_SC_ASYNCHRONOUS_IO)); }
$ gcc q.c
$ ./a.out
1

I assume if it returns 1, it supports it.

Yong Huang
yong321_at_yahoo.com

you wrote:

> Hi All,

>

> It seems that the issue of asynchronous I/O on Solaris is
> still alive and kicking. Here is an attempt to pull the
> threads together.
>

> Oracle 7 had an 'async_write' parameter that used to default
> to TRUE. If set to FALSE, Oracle would use the standard
> 'write()' system call to

[snipped]

Do You Yahoo!?
Yahoo! Calendar - Get organized for the holidays! http://calendar.yahoo.com/
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: yong huang
  INET: yong321_at_yahoo.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Wed Nov 15 2000 - 17:02:14 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US