<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Declare all I/O will be Asynchronous in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/declare-all-i-o-will-be-asynchronous/m-p/5014840#M427249</link>
    <description>Thank you for all of your advice.</description>
    <pubDate>Wed, 22 Nov 2006 22:47:02 GMT</pubDate>
    <dc:creator>YAQUB_1</dc:creator>
    <dc:date>2006-11-22T22:47:02Z</dc:date>
    <item>
      <title>Declare all I/O will be Asynchronous</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/declare-all-i-o-will-be-asynchronous/m-p/5014835#M427244</link>
      <description>Hi There,&lt;BR /&gt;&lt;BR /&gt;Our main database is on RAW space under oracle RAC. Now we are facing some disk bottleneck problem so we like using Asynchronous I/O in our database space. From my understanding now logical volume status is Synchronous. Is there any way to declare all I/O will be Asynchronous in all logical volume under RAW space, like we can declare in file system with mount command?&lt;BR /&gt;&lt;BR /&gt;Please give me your feedback ASAP.&lt;BR /&gt;&lt;BR /&gt;It will highly appreciate for your cooperation and support.&lt;BR /&gt;&lt;BR /&gt;Thanks-Yaqub.</description>
      <pubDate>Mon, 20 Nov 2006 07:32:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/declare-all-i-o-will-be-asynchronous/m-p/5014835#M427244</guid>
      <dc:creator>YAQUB_1</dc:creator>
      <dc:date>2006-11-20T07:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: Declare all I/O will be Asynchronous</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/declare-all-i-o-will-be-asynchronous/m-p/5014836#M427245</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Raw space is not mounted, so mount options don't do any good.&lt;BR /&gt;&lt;BR /&gt;Asyncronous access is usualy handled by the application. The RAC installation puts in a file called /etc/privgroup which enables asyncronous (some would say psuedo asynchonous) i/o.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 20 Nov 2006 07:55:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/declare-all-i-o-will-be-asynchronous/m-p/5014836#M427245</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-11-20T07:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: Declare all I/O will be Asynchronous</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/declare-all-i-o-will-be-asynchronous/m-p/5014837#M427246</link>
      <description>What Oracle version?&lt;BR /&gt;Did you exactly follow the detailed instructions in the Oracle documentation for this? Did you at least make sure all those steps were taken correctly (trust but verify).&lt;BR /&gt;&lt;BR /&gt;See:&lt;BR /&gt;Oracle9i Administrator's Reference &lt;BR /&gt;Release 2 (9.2.0.1.0) for UNIX Systems: AIX-Based Systems, Compaq Tru64 UNIX, HP 9000 Series HP-UX, Linux Intel, and Sun Solaris &lt;BR /&gt;Part No. A97297-01"&lt;BR /&gt;&lt;BR /&gt;Chapters:&lt;BR /&gt;- Implementing Asynchronous I/O &lt;BR /&gt;- Verifying Asynchronous I/O&lt;BR /&gt;- Asynchronous Flag in SGA &lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Nov 2006 08:17:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/declare-all-i-o-will-be-asynchronous/m-p/5014837#M427246</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2006-11-20T08:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: Declare all I/O will be Asynchronous</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/declare-all-i-o-will-be-asynchronous/m-p/5014838#M427247</link>
      <description>&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1052398" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1052398&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;To implement asynchronous I/O on HP-UX for raw logical volumes:&lt;BR /&gt;* set the async_disk driver (Asynchronous Disk Pseudo Driver)to IN&lt;BR /&gt;in the HP-UX Kernel, this will require generating a new kernel and rebooting .&lt;BR /&gt;&lt;BR /&gt;* create the device file:&lt;BR /&gt;&lt;BR /&gt;# mknod /dev/async c 101 0x00000#&lt;BR /&gt;#=the minor number can be one of the following values:&lt;BR /&gt;&lt;BR /&gt;0x000000 default-immediate reporting will not be used&lt;BR /&gt;a cache flush will be done before posting an IO operation complete&lt;BR /&gt;&lt;BR /&gt;0x000001 enable immediate reporting&lt;BR /&gt;0x000002 flush the CPU cache after reads&lt;BR /&gt;0x000004 allow disks to timeout&lt;BR /&gt;0x000005 is a combination of 1 and 4&lt;BR /&gt;0x000007 is a combination of 1, 2 and 4&lt;BR /&gt;&lt;BR /&gt;Note: Contact your database vendor or product vendor to determine the&lt;BR /&gt;correct minor number for your application.&lt;BR /&gt;Change the ownership to the approriate group and owner :&lt;BR /&gt;&lt;BR /&gt;chown oracle:dba /dev/async&lt;BR /&gt;&lt;BR /&gt;change the permissions :&lt;BR /&gt;&lt;BR /&gt;chmod 660 /dev/async&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;vi /etc/privgroup&lt;BR /&gt;&lt;BR /&gt;add 1 line : dba MLOCK&lt;BR /&gt;&lt;BR /&gt;give the group MLOCK priviledges&lt;BR /&gt;&lt;BR /&gt;/usr/sbin/setprivgrp MLOCK&lt;BR /&gt;&lt;BR /&gt;To verify if a group has the MLOCK privilege execute:&lt;BR /&gt;&lt;BR /&gt;/usr/bin/getprivgrp</description>
      <pubDate>Mon, 20 Nov 2006 08:41:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/declare-all-i-o-will-be-asynchronous/m-p/5014838#M427247</guid>
      <dc:creator>David de Beer</dc:creator>
      <dc:date>2006-11-20T08:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: Declare all I/O will be Asynchronous</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/declare-all-i-o-will-be-asynchronous/m-p/5014839#M427248</link>
      <description>I can confirm that the previous posters steps is correct for Oracle on 11.11. This is exactly the steps we use.&lt;BR /&gt;&lt;BR /&gt;Additionally, IF your Database instance is the only load on your server (i.e. You have a purely database Server and runs nothing else), you will also need to :&lt;BR /&gt;&lt;BR /&gt;Add to /etc/privgroup:&lt;BR /&gt;&lt;BR /&gt;dba RTSCHED RTPRIO&lt;BR /&gt;&lt;BR /&gt;In init.ora set: "hpux_sched_noage=178"&lt;BR /&gt;&lt;BR /&gt;And start Oracle with something like:&lt;BR /&gt;rtsched -s SCHED_NOAGE -p 180 &lt;ORACLE_STARTUP&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps...&lt;BR /&gt;&lt;BR /&gt;&lt;/ORACLE_STARTUP&gt;</description>
      <pubDate>Mon, 20 Nov 2006 11:31:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/declare-all-i-o-will-be-asynchronous/m-p/5014839#M427248</guid>
      <dc:creator>Zinky</dc:creator>
      <dc:date>2006-11-20T11:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Declare all I/O will be Asynchronous</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/declare-all-i-o-will-be-asynchronous/m-p/5014840#M427249</link>
      <description>Thank you for all of your advice.</description>
      <pubDate>Wed, 22 Nov 2006 22:47:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/declare-all-i-o-will-be-asynchronous/m-p/5014840#M427249</guid>
      <dc:creator>YAQUB_1</dc:creator>
      <dc:date>2006-11-22T22:47:02Z</dc:date>
    </item>
  </channel>
</rss>

