1752810 Members
5896 Online
108789 Solutions
New Discussion юеВ

What is I/O Wait

 
SOLVED
Go to solution
Sagar Sirdesai
Trusted Contributor

What is I/O Wait

Hi All,
I need whether I/O Wait is a Measure of CPU Utilization or Idle Time.

Sagar
6 REPLIES 6
Wim Rombauts
Honored Contributor

Re: What is I/O Wait

I/O Wait is the time the CPU is doing nothing because all processes it could work on are waiting for I/O operatons to complete.

So, there is no CPU utilization, but it's not idle time either.
Ricky_HK
Frequent Advisor

Re: What is I/O Wait

idle + iowait = total idle time
muruganantham raju
Valued Contributor

Re: What is I/O Wait

Hi Sagar,
I/O wait is accounted for idle time.

To find out CPU IDLE % in your system, run the sar command.

e.g.

# sar -u 1 2

HP-UX biavm4-3 B.11.23 U ia64 08/18/10

04:47:47 %usr %sys %wio %idle
04:47:48 0 0 0 100
04:47:49 0 0 0 100

Total Idle% = %wio + %idle

Regards,
Muru
Hakki Aydin Ucar
Honored Contributor

Re: What is I/O Wait

Hi,
%wio - idle with some process waiting for I/O ;

related with Disks that was busy with another process before..
Sagar Sirdesai
Trusted Contributor

Re: What is I/O Wait

Thanks to all for their replies