<?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: CPU utilization in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-utilization/m-p/4084289#M309529</link>
    <description>It's important to understand that a process that uses 100% of the CPU (no I/O or other system calls) is the least important process in the system. That's because the scheduler sees the usage and immediately reduces the program's priority until the program only gets "leftover" CPU cycles.The following is the shortest CPU hog script you can create:&lt;BR /&gt; &lt;BR /&gt;while :&lt;BR /&gt;do&lt;BR /&gt;:&lt;BR /&gt;done&lt;BR /&gt; &lt;BR /&gt;If you run this little script, one CPU will jump to 100% CPU usage. Run 10 copies on an 8-CPU system and all your CPUs will be busy BUT you can still login and run vi and database programs will run, etc. This shows that CPU usage is not an important metric by itself for performance tuning.&lt;BR /&gt; &lt;BR /&gt;Now if this little script is changed to perform system calls such as date or a simple filesystem query such as echo *, then the script will have a much bigger impact on performance.&lt;BR /&gt; &lt;BR /&gt;SO while you can purchase PRM and limit CPU usage, I don't think you'll see an improvement in overall performance until you look at disk and network activities. Only the Glance product will give the details that you need.</description>
    <pubDate>Thu, 11 Oct 2007 07:01:45 GMT</pubDate>
    <dc:creator>Bill Hassell</dc:creator>
    <dc:date>2007-10-11T07:01:45Z</dc:date>
    <item>
      <title>CPU utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-utilization/m-p/4084285#M309525</link>
      <description>I have some process is running in the system , some of them use over 90% CPU time , I want the system not to be burden by this high CPU utilization process ,  can advise is it possible to limit the max. of CPU utilization of any process to 50% , so that other user can share the system resource  ?&lt;BR /&gt;&lt;BR /&gt;thx&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Oct 2007 00:18:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-utilization/m-p/4084285#M309525</guid>
      <dc:creator>ust3</dc:creator>
      <dc:date>2007-10-11T00:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: CPU utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-utilization/m-p/4084286#M309526</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;Your kernel has a scheduler that hands out tiem slices. A single process gets 90% of CPU because no other processes demand it. In a normal situation where there are a number of processes demanding CPU, no one process will get a high figure.&lt;BR /&gt;&lt;BR /&gt;Limiting a single process to a certain percentage will merely slow down how quickly the system gets work done when its running single threaded.&lt;BR /&gt;&lt;BR /&gt;So its not advisable to do as you suggest.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 11 Oct 2007 00:35:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-utilization/m-p/4084286#M309526</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2007-10-11T00:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: CPU utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-utilization/m-p/4084287#M309527</link>
      <description>&amp;gt;SEP: In a normal situation where there are a number of processes demanding CPU, no one process will get a high figure.&lt;BR /&gt;&lt;BR /&gt;If some processes are niced, they may be starved.&lt;BR /&gt;&lt;BR /&gt;ust3 may want to nice that process that is getting 90% and that way the others are sure to get CPU time if they need it.</description>
      <pubDate>Thu, 11 Oct 2007 00:41:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-utilization/m-p/4084287#M309527</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2007-10-11T00:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: CPU utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-utilization/m-p/4084288#M309528</link>
      <description>ust3,&lt;BR /&gt;&lt;BR /&gt; You can consider using PRM (Performance Resource Manager) which can help you to maintain CPU threshold.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B3835DATRY" target="_blank"&gt;http://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B3835DATRY&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;WK&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;</description>
      <pubDate>Thu, 11 Oct 2007 01:31:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-utilization/m-p/4084288#M309528</guid>
      <dc:creator>whiteknight</dc:creator>
      <dc:date>2007-10-11T01:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: CPU utilization</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/cpu-utilization/m-p/4084289#M309529</link>
      <description>It's important to understand that a process that uses 100% of the CPU (no I/O or other system calls) is the least important process in the system. That's because the scheduler sees the usage and immediately reduces the program's priority until the program only gets "leftover" CPU cycles.The following is the shortest CPU hog script you can create:&lt;BR /&gt; &lt;BR /&gt;while :&lt;BR /&gt;do&lt;BR /&gt;:&lt;BR /&gt;done&lt;BR /&gt; &lt;BR /&gt;If you run this little script, one CPU will jump to 100% CPU usage. Run 10 copies on an 8-CPU system and all your CPUs will be busy BUT you can still login and run vi and database programs will run, etc. This shows that CPU usage is not an important metric by itself for performance tuning.&lt;BR /&gt; &lt;BR /&gt;Now if this little script is changed to perform system calls such as date or a simple filesystem query such as echo *, then the script will have a much bigger impact on performance.&lt;BR /&gt; &lt;BR /&gt;SO while you can purchase PRM and limit CPU usage, I don't think you'll see an improvement in overall performance until you look at disk and network activities. Only the Glance product will give the details that you need.</description>
      <pubDate>Thu, 11 Oct 2007 07:01:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/cpu-utilization/m-p/4084289#M309529</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2007-10-11T07:01:45Z</dc:date>
    </item>
  </channel>
</rss>

