- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: IO Wait
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 05:34 AM
10-21-2005 05:34 AM
IO Wait
TOP commando shows me very often a high percentage of "iowait". I have seen until 90% of waits due to io.
How can I know the detail about what is causing this waits?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 06:21 AM
10-21-2005 06:21 AM
Re: IO Wait
Also, and outdated kernel may cause this issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 06:28 AM
10-21-2005 06:28 AM
Re: IO Wait
Update the Kernel is a ver hard task, because the RAC (Custer) configuration and all test that are needed.
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 06:53 AM
10-21-2005 06:53 AM
Re: IO Wait
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 07:15 AM
10-21-2005 07:15 AM
Re: IO Wait
a) archive logs
b) online redo logs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 09:05 AM
10-21-2005 09:05 AM
Re: IO Wait
the archive writer and/or log writer is
not necessarily a problem. These are I/O
intensive and will be waiting for I/O most
of the time they are running. Likewise,
for backups, cp, mv, etc.
Is the load average high (more than 2* CPUs)?
If not you likely don't have a problem.
If the database has too small an SGA, then
you may have high read io on the database.
Default SGA is usually very small. Try
increasing the SGA and see if IO goes down.
Try running 'sar -D' to see which disks
and partitions have the IO occurring.
It will also so the read/write balance.
Once the database has been running for a
while frequently accessed data should be
in cache. You should see relatively little
read activity on the partions with your
tablespaces.
If you have heavy tablescanning of large
tables, then you may see high read IO, if
the SGA is too small to cache the tables.
If you are in archive log mode, you should
see periodic heavy read activity on the
partition with a log file with corresponding
write activity on the partition with your
archived redo logs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 07:49 PM
10-21-2005 07:49 PM
Re: IO Wait
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2005 05:17 AM
10-23-2005 05:17 AM
Re: IO Wait
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?
I recommend to use more then one disk.
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.
Regards,
Bob