<?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: HP Performance in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-performance/m-p/2910265#M933302</link>
    <description>Hi:&lt;BR /&gt;  Very glad to meet you,this is the command result.&lt;BR /&gt;# swapinfo -t&lt;BR /&gt;             Kb      Kb      Kb   PCT  START/      Kb&lt;BR /&gt;TYPE      AVAIL    USED    FREE  USED   LIMIT RESERVE  PRI  NAME&lt;BR /&gt;dev     2097152    1564 2095588    0%       0       -    1  /dev/vg00/lvol2&lt;BR /&gt;dev     1843200 1225808  617392   67%       0       -    0  /dev/vg00/lvol11&lt;BR /&gt;reserve       - 2235408 -2235408&lt;BR /&gt;memory  1117812  302892  814920   27%&lt;BR /&gt;total   5058164 3765672 1292492   74%       -       0    -&lt;BR /&gt;thanks.</description>
    <pubDate>Fri, 21 Feb 2003 12:10:46 GMT</pubDate>
    <dc:creator>mingzheng huo</dc:creator>
    <dc:date>2003-02-21T12:10:46Z</dc:date>
    <item>
      <title>HP Performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-performance/m-p/2910263#M933300</link>
      <description>hello:&lt;BR /&gt;I met a performance problem .My Database is oracle9.0.1 for HP-UX11.0. When the DB Server is running,the job queue process uesed all of my CPU time.&lt;BR /&gt;If I set JOB_QUEUE_PROCESSES parameter to 1, it will take CPU time 96 percent, if I set it to 6, it also take so much.&lt;BR /&gt;So my application become very slow.&lt;BR /&gt;Why the job queue process takes so much CPU time, how can I resolve this problem.&lt;BR /&gt;Thanks</description>
      <pubDate>Fri, 21 Feb 2003 10:47:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-performance/m-p/2910263#M933300</guid>
      <dc:creator>mingzheng huo</dc:creator>
      <dc:date>2003-02-21T10:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: HP Performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-performance/m-p/2910264#M933301</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;can u reveal RAM size and swapinfo -t o/p ?</description>
      <pubDate>Fri, 21 Feb 2003 11:47:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-performance/m-p/2910264#M933301</guid>
      <dc:creator>Ravi_8</dc:creator>
      <dc:date>2003-02-21T11:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: HP Performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-performance/m-p/2910265#M933302</link>
      <description>Hi:&lt;BR /&gt;  Very glad to meet you,this is the command result.&lt;BR /&gt;# swapinfo -t&lt;BR /&gt;             Kb      Kb      Kb   PCT  START/      Kb&lt;BR /&gt;TYPE      AVAIL    USED    FREE  USED   LIMIT RESERVE  PRI  NAME&lt;BR /&gt;dev     2097152    1564 2095588    0%       0       -    1  /dev/vg00/lvol2&lt;BR /&gt;dev     1843200 1225808  617392   67%       0       -    0  /dev/vg00/lvol11&lt;BR /&gt;reserve       - 2235408 -2235408&lt;BR /&gt;memory  1117812  302892  814920   27%&lt;BR /&gt;total   5058164 3765672 1292492   74%       -       0    -&lt;BR /&gt;thanks.</description>
      <pubDate>Fri, 21 Feb 2003 12:10:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-performance/m-p/2910265#M933302</guid>
      <dc:creator>mingzheng huo</dc:creator>
      <dc:date>2003-02-21T12:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: HP Performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-performance/m-p/2910266#M933303</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;The info you provided us shows how bad it is looking right now. &lt;BR /&gt;You currently have a system with aprox 1-1.5 Gb of internal memory. In total you have defined 3.8 Gb of Swap whereof on one device 67% is used.&lt;BR /&gt;&lt;BR /&gt;So, instead of using (the fast) memory it will swap onto disk. A disk is very slow compared to physical memory. as soon as you start Oracle your system is die-ing because of the high swap. You can see this using the command sar -d 5 100 (for example). The swap disk will be very busy now.&lt;BR /&gt;&lt;BR /&gt;So, a couple of solutions possible :&lt;BR /&gt;&lt;BR /&gt;- increase physical memory (will cost money)&lt;BR /&gt;- decrease the memory oracle claimes (per instance)&lt;BR /&gt;- decrease the amount of instances&lt;BR /&gt;&lt;BR /&gt;When you issue the following program:&lt;BR /&gt;&lt;BR /&gt;#!/bin/ksh &lt;BR /&gt;# This script is written to retreive the total memory claimed&lt;BR /&gt;# Written by D.M. van der Geer  # 11 februari 2003&lt;BR /&gt;&lt;BR /&gt;/usr/bin/clear&lt;BR /&gt;t=0&lt;BR /&gt;for i in `UNIX95= ps -e -o vsz=Kbytes -o ruser -o pid,args=Command-Line | sort -rnk1 | grep -v Kbytes | awk '{print $1}'`&lt;BR /&gt;do&lt;BR /&gt;t=`expr $t + $i`&lt;BR /&gt;done&lt;BR /&gt;echo "\n In totaal is er $t Kbytes aan memory geclaimed \n"&lt;BR /&gt;&lt;BR /&gt;echo "Swapinfo :"&lt;BR /&gt;/usr/sbin/swapinfo&lt;BR /&gt;&lt;BR /&gt;echo "\n"&lt;BR /&gt;&lt;BR /&gt;You can see how much memory is claimed by the system.&lt;BR /&gt;If you want to see only the memory claimed by oracle you can change the UNIX95 line into :&lt;BR /&gt;&lt;BR /&gt;UNIX95= ps -e -o vsz=Kbytes -o ruser -o pid,args=Command-Line | sort -rnk1 | grep -v Kbytes | grep oracle | awk '{print $1}'&lt;BR /&gt;&lt;BR /&gt;Maybe you can give us some of this info. I don't think we can give you more options than we just did :(&lt;BR /&gt;&lt;BR /&gt;Regs David&lt;BR /&gt;</description>
      <pubDate>Fri, 21 Feb 2003 12:33:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-performance/m-p/2910266#M933303</guid>
      <dc:creator>David_246</dc:creator>
      <dc:date>2003-02-21T12:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: HP Performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-performance/m-p/2910267#M933304</link>
      <description>You have kernel configuration problems most likely, and other performance issues.&lt;BR /&gt;&lt;BR /&gt;I've attached a script to collect data over a period of time and give you the ability to analyze it. The script was originally developed by HP and enhanced by me.  Neither party takes responsibility for it, though it does work and has yet to damage any system after wide distribution in itrc.&lt;BR /&gt;&lt;BR /&gt;Increasing message queue sizes seems to me to be your most immediate concern.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Fri, 21 Feb 2003 18:44:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-performance/m-p/2910267#M933304</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-02-21T18:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: HP Performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-performance/m-p/2910268#M933305</link>
      <description>thanks a lot.&lt;BR /&gt;I will try it soon.</description>
      <pubDate>Sat, 22 Feb 2003 01:49:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-performance/m-p/2910268#M933305</guid>
      <dc:creator>mingzheng huo</dc:creator>
      <dc:date>2003-02-22T01:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: HP Performance</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hp-performance/m-p/2910269#M933306</link>
      <description>Hi:&lt;BR /&gt;   There is 3 instance in my HP , but one instance is strange. when it's running , it will make a process and take most CPU time.&lt;BR /&gt;   Can u tell me what the process is?&lt;BR /&gt;   TTY     PID USERNAME PRI NI   SIZE    RES STATE    TIME %WCPU  %CPU COMMAND&lt;BR /&gt;  ?     2940 oracle   236 20 52416K  3348K run      7:01 95.98 95.81 ora_j000_GYGBSI&lt;BR /&gt;</description>
      <pubDate>Sat, 22 Feb 2003 02:23:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hp-performance/m-p/2910269#M933306</guid>
      <dc:creator>mingzheng huo</dc:creator>
      <dc:date>2003-02-22T02:23:03Z</dc:date>
    </item>
  </channel>
</rss>

