<?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: IO Wait in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654995#M20221</link>
    <description>I have a friend who had a similar problem, a high iowait (not too high). They changed the database log to raw devices, and the iowait reduced significantly.</description>
    <pubDate>Fri, 21 Oct 2005 13:53:28 GMT</pubDate>
    <dc:creator>Ivan Ferreira</dc:creator>
    <dc:date>2005-10-21T13:53:28Z</dc:date>
    <item>
      <title>IO Wait</title>
      <link>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654992#M20218</link>
      <description>Red Hat Enterprise Linux 3&lt;BR /&gt;&lt;BR /&gt;TOP commando shows me very often a high percentage of "iowait". I have seen until 90% of waits due to io.&lt;BR /&gt;&lt;BR /&gt;How can I know the detail about what is causing this waits?</description>
      <pubDate>Fri, 21 Oct 2005 12:34:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654992#M20218</guid>
      <dc:creator>Tonatiuh</dc:creator>
      <dc:date>2005-10-21T12:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: IO Wait</title>
      <link>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654993#M20219</link>
      <description>Are you running a database? Are you running ntop? Sometimes is hard to know because the iowait is caused by a bad tunned application, that issues a lot of small I/O.&lt;BR /&gt;&lt;BR /&gt;Also, and outdated kernel may cause this issue.</description>
      <pubDate>Fri, 21 Oct 2005 13:21:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654993#M20219</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2005-10-21T13:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: IO Wait</title>
      <link>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654994#M20220</link>
      <description>Yes I have Oracle Database Server 9i running there. No more software.&lt;BR /&gt;&lt;BR /&gt;Update the Kernel is a ver hard task, because the RAC (Custer) configuration and all test that are needed. &lt;BR /&gt;&lt;BR /&gt;I need to know a detailed info about the problem causing the IO Waits (processes, kernel bugs, etc.), to be able to propose a kernel update.</description>
      <pubDate>Fri, 21 Oct 2005 13:28:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654994#M20220</guid>
      <dc:creator>Tonatiuh</dc:creator>
      <dc:date>2005-10-21T13:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: IO Wait</title>
      <link>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654995#M20221</link>
      <description>I have a friend who had a similar problem, a high iowait (not too high). They changed the database log to raw devices, and the iowait reduced significantly.</description>
      <pubDate>Fri, 21 Oct 2005 13:53:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654995#M20221</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2005-10-21T13:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: IO Wait</title>
      <link>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654996#M20222</link>
      <description>What logs?&lt;BR /&gt;a) archive logs&lt;BR /&gt;b) online redo logs&lt;BR /&gt;</description>
      <pubDate>Fri, 21 Oct 2005 14:15:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654996#M20222</guid>
      <dc:creator>Tonatiuh</dc:creator>
      <dc:date>2005-10-21T14:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: IO Wait</title>
      <link>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654997#M20223</link>
      <description>High IO waits if all that is waiting is &lt;BR /&gt;the archive writer and/or log writer is&lt;BR /&gt;not necessarily a problem.  These are I/O&lt;BR /&gt;intensive and will be waiting for I/O most&lt;BR /&gt;of the time they are running.  Likewise,&lt;BR /&gt;for backups, cp, mv, etc.  &lt;BR /&gt;&lt;BR /&gt;Is the load average high (more than 2* CPUs)?&lt;BR /&gt;If not you likely don't have a problem. &lt;BR /&gt;&lt;BR /&gt;If the database has too small an SGA, then &lt;BR /&gt;you may have high read io on the database.&lt;BR /&gt;Default SGA is usually very small.  Try &lt;BR /&gt;increasing the SGA and see if IO goes down.&lt;BR /&gt;&lt;BR /&gt;Try running 'sar -D' to see which disks &lt;BR /&gt;and partitions have the IO occurring. &lt;BR /&gt;It will also so the read/write balance.&lt;BR /&gt;Once the database has been running for a&lt;BR /&gt;while frequently accessed data should be&lt;BR /&gt;in cache.   You should see relatively little&lt;BR /&gt;read activity on the partions with your &lt;BR /&gt;tablespaces.  &lt;BR /&gt;&lt;BR /&gt;If you have heavy tablescanning of large &lt;BR /&gt;tables, then you may see high read IO, if &lt;BR /&gt;the SGA is too small to cache the tables.&lt;BR /&gt;&lt;BR /&gt;If you are in archive log mode, you should&lt;BR /&gt;see periodic heavy read activity on the&lt;BR /&gt;partition with a log file with corresponding&lt;BR /&gt;write activity on the partition with your&lt;BR /&gt;archived redo logs.</description>
      <pubDate>Fri, 21 Oct 2005 16:05:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654997#M20223</guid>
      <dc:creator>Bill Thorsteinson</dc:creator>
      <dc:date>2005-10-21T16:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: IO Wait</title>
      <link>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654998#M20224</link>
      <description>Bill Thorsteinson is totally right. Also you should ensure that Direct I/O and Async I/O is enabled in the oracle database.</description>
      <pubDate>Sat, 22 Oct 2005 02:49:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654998#M20224</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2005-10-22T02:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: IO Wait</title>
      <link>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654999#M20225</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;A high amount of iowaits in combi with an oracle database means you cpu is waiting for the disk i/o. Are you running the oracle from one single disk?&lt;BR /&gt;&lt;BR /&gt;I recommend to use more then one disk.&lt;BR /&gt;One for the OS and the rest for oracle and try to spread the io load. DB files or raw partitions on one set of disk and archives and redo logs on another disk.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Bob</description>
      <pubDate>Sun, 23 Oct 2005 12:17:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/io-wait/m-p/3654999#M20225</guid>
      <dc:creator>B. Hulst</dc:creator>
      <dc:date>2005-10-23T12:17:06Z</dc:date>
    </item>
  </channel>
</rss>

