<?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: hight load with idle 100% on k360 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/3482892#M478935</link>
    <description>juste another small thing:&lt;BR /&gt;your explanation for load, is it the same for other unix system (solaris, linux, aix...) ?</description>
    <pubDate>Fri, 11 Feb 2005 04:56:20 GMT</pubDate>
    <dc:creator>Pouponnot</dc:creator>
    <dc:date>2005-02-11T04:56:20Z</dc:date>
    <item>
      <title>hight load with idle 100% on k360</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/3482887#M478930</link>
      <description>hello,&lt;BR /&gt;&lt;BR /&gt;I have a little probleme on a HP-UX 11.11 model&lt;BR /&gt;9000/800/K360.&lt;BR /&gt;My load is hight (for a old machine), &lt;BR /&gt;uptime&lt;BR /&gt;2:36pm  up 427 days, 43 mins,  2 users,  load average: 2.02, 2.05, 1.89&lt;BR /&gt;&lt;BR /&gt;but:&lt;BR /&gt;&lt;BR /&gt;root@fn001u02# sar 2 5&lt;BR /&gt;HP-UX fn001u02 B.11.11 A 9000/800    02/10/05&lt;BR /&gt;14:37:41    %usr    %sys    %wio   %idle&lt;BR /&gt;14:37:43       3       2       2      92&lt;BR /&gt;14:37:45       0       0       0     100&lt;BR /&gt;14:37:47       2       1       1      95&lt;BR /&gt;14:37:49       1       2       1      96&lt;BR /&gt;14:37:51       1       0       0      99&lt;BR /&gt;Average        1       1       1      96&lt;BR /&gt;&lt;BR /&gt;swapinfo -tm&lt;BR /&gt;             Mb      Mb      Mb   PCT  START/      Mb&lt;BR /&gt;TYPE      AVAIL    USED    FREE  USED   LIMIT RESERVE  PRI  NAME&lt;BR /&gt;dev         512     228     284   45%       0       -    1  /dev/vg00/lvol2&lt;BR /&gt;dev         512     194     318   38%       0       -    1  /dev/vg01/lvol1&lt;BR /&gt;reserve       -     443    -443&lt;BR /&gt;memory      477     381      96   80%&lt;BR /&gt;total      1501    1246     255   83%       -       0    -&lt;BR /&gt;&lt;BR /&gt;I don't understand why my load is hight.&lt;BR /&gt;Could you help me ?&lt;BR /&gt;Best Regards&lt;BR /&gt;Julien&lt;BR /&gt;Paris La Defense</description>
      <pubDate>Thu, 10 Feb 2005 07:47:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/3482887#M478930</guid>
      <dc:creator>Pouponnot</dc:creator>
      <dc:date>2005-02-10T07:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: hight load with idle 100% on k360</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/3482888#M478931</link>
      <description>Interesting!  It looks like you may be swapping.  Try running "vmstat 1 5" and look at the "po" column.  Anything over single digits in "po" can indicate a paging/swapping problem.  I suspect your machine is not accomplishing much because it's too busy doing context switches to actually do any real work.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Thu, 10 Feb 2005 08:01:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/3482888#M478931</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2005-02-10T08:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: hight load with idle 100% on k360</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/3482889#M478932</link>
      <description>The load average is not a measure of how hard the computer is working. Load Average is the size of the RUNQUEUE, the queue of programs that are running or ready to run. If you have a single program that uses 100% of the processor (assuming a 1-porcessor system) than the RUNQUEUE will be 1.00 ( probably slightly more as other programs are run). It is not unusual to have a RUNQUEUE of 5 or 10 (I've seen 100+ before) due to certain programs that run for a very short time (like a polling program) and then sleep for a short time. Not very much CPU activity, but start 100 copies of this program and the RUNQUEUE will be high, but system and user CPU load will be low (high %idle).&lt;BR /&gt; &lt;BR /&gt;On the other hand, a program that consumes 100% of the CPU and another that just reads the entire disk as fast as it can will consume all the data processing resource in your system and the RUNQUEUE will be about 2. This short script will consume 100% CPU:&lt;BR /&gt; &lt;BR /&gt;while :&lt;BR /&gt;do &lt;BR /&gt;:&lt;BR /&gt;done&lt;BR /&gt; &lt;BR /&gt;And this program will read the disk as fast as possible:&lt;BR /&gt; &lt;BR /&gt;dd if=/dev/rdsk/c0t6d0 of=/dev/null bs=128k&lt;BR /&gt; &lt;BR /&gt;Run both of those at the same time on a single processor system and you will see a slowdown.&lt;BR /&gt; &lt;BR /&gt;So uptime is only a staring point for learning what is happening on your system.</description>
      <pubDate>Thu, 10 Feb 2005 08:13:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/3482889#M478932</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2005-02-10T08:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: hight load with idle 100% on k360</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/3482890#M478933</link>
      <description>What is the 3rd line in a "top" output ? It shows how many process you have, and how many are in the states sleeping, running.&lt;BR /&gt;&lt;BR /&gt;Are you running any kind of DB ? It may be (assuming this is Oracle) that you have a too high memory allocated to that DB compared to your RAM.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Fred&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Feb 2005 08:37:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/3482890#M478933</guid>
      <dc:creator>Fred Ruffet</dc:creator>
      <dc:date>2005-02-10T08:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: hight load with idle 100% on k360</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/3482891#M478934</link>
      <description>root# vmstat 1 5&lt;BR /&gt;         procs           memory                   page                              faults       cpu&lt;BR /&gt;    r     b     w      avm    free   re   at    pi   po    fr   de    sr     in     sy    cs  us sy id&lt;BR /&gt;    3     0     0   169189    4559    8    3     0    0     0    0     0      0     48    -2  59 11 1190621216768&lt;BR /&gt;    3     0     0   169189    4529    4    0     1    0     0    0     0    601    896   384   0  0 100&lt;BR /&gt;    3     0     0   169189    4522    2    0     1    0     0    0     0    569    663   304   0  0 100&lt;BR /&gt;    3     0     0   169189    4522    1    0     1    0     0    0     0    553    541   257   0  0 100&lt;BR /&gt;    3     0     0   169189    4522    0    0     1    0     0    0     0    542    448   219   0  0 100&lt;BR /&gt;&lt;BR /&gt;System: fn001u02                                      Fri Feb 11 10:51:20 2005&lt;BR /&gt;Load averages: 1.77, 1.50, 1.53&lt;BR /&gt;175 processes: 166 sleeping, 9 running&lt;BR /&gt;Cpu states:&lt;BR /&gt;CPU   LOAD   USER   NICE    SYS   IDLE  BLOCK  SWAIT   INTR   SSYS&lt;BR /&gt; 0    1.57  64.6%   0.0%   7.4%  28.0%   0.0%   0.0%   0.0%   0.0%&lt;BR /&gt; 1    1.98  64.5%   0.0%  10.0%  25.6%   0.0%   0.0%   0.0%   0.0%&lt;BR /&gt;---   ----  -----  -----  -----  -----  -----  -----  -----  -----&lt;BR /&gt;avg   1.77  64.3%   0.0%   8.8%  26.9%   0.0%   0.0%   0.0%   0.0%&lt;BR /&gt;&lt;BR /&gt;Memory: 308544K (252716K) real, 1029912K (760388K) virtual, 18232K free  Page# 1/5&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for your respons, it's realy very usefull to me.&lt;BR /&gt;Do you know if the load is a lineare calculate, 1 of load for 100 precessus for exemple ? If yes, what 's the ratio ?&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 11 Feb 2005 04:05:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/3482891#M478934</guid>
      <dc:creator>Pouponnot</dc:creator>
      <dc:date>2005-02-11T04:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: hight load with idle 100% on k360</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/3482892#M478935</link>
      <description>juste another small thing:&lt;BR /&gt;your explanation for load, is it the same for other unix system (solaris, linux, aix...) ?</description>
      <pubDate>Fri, 11 Feb 2005 04:56:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/3482892#M478935</guid>
      <dc:creator>Pouponnot</dc:creator>
      <dc:date>2005-02-11T04:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: hight load with idle 100% on k360</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/3482893#M478936</link>
      <description>Julien, &lt;BR /&gt;&lt;BR /&gt;yes the load is always calculated that way.&lt;BR /&gt;i.e. a friend of mine is working on huge data warehouse systems on aix.&lt;BR /&gt;they have 16 cpu's which might be all at 100%, but the load can be above 200 at times.&lt;BR /&gt;&lt;BR /&gt;This could be translated as 'currently the system has enough processes to keep 200 cpus busy' but the emphasis is on 'currently'.&lt;BR /&gt;&lt;BR /&gt;We also had an hp-ux based bootp and http server which would be accessed by all clients at times, the load was well above 140, but there was no performance issue in that. The requests were all fullfilled from memory and after 5 minutes it was back to load 0 again.&lt;BR /&gt;&lt;BR /&gt;Also, in Your case You seem to have processes that simply sit in the queue but are not currently using a lot of cpu time, so maybe simply call that thing 'process load'</description>
      <pubDate>Fri, 11 Feb 2005 08:31:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/3482893#M478936</guid>
      <dc:creator>Florian Heigl (new acc)</dc:creator>
      <dc:date>2005-02-11T08:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: hight load with idle 100% on k360</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/6136291#M484769</link>
      <description>&lt;P&gt;I also have problem on HP unix all the time&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;when I displayed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Load Avg is : 0.13, 0,13, 0,14&lt;/P&gt;&lt;P&gt;233 processes, 221 sleeping, 7 running, 5 zombies&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The IDLE% is 100% what does it mean but HP machine was hang.&lt;/P&gt;&lt;P&gt;free 1/14 pages&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2013 07:48:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/6136291#M484769</guid>
      <dc:creator>Wasitthee</dc:creator>
      <dc:date>2013-07-16T07:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: high load with idle 100%</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/6136415#M484770</link>
      <description>&lt;P&gt;&amp;gt;The IDLE% is 100% what does it mean but HP machine was hung.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the machine was hung, how did you run top?&lt;/P&gt;&lt;P&gt;Certain types of hangs, don't use any CPU, so the system will be idle.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What was hung?&amp;nbsp; NFS?&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2013 09:42:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hight-load-with-idle-100-on-k360/m-p/6136415#M484770</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2013-07-16T09:42:31Z</dc:date>
    </item>
  </channel>
</rss>

