<?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: Differences in cpu utilization between rx4660 and N-Class in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513051#M844281</link>
    <description>Thanks for everyone's reply.  I'll try to response back as much as I can with this one thread since I got such a good turn out.&lt;BR /&gt;&lt;BR /&gt;The databases are identical.  Both are test machines that were restored from the same backup set from a production N-Class (same as the one in question).  All the kernel parameters are the same.  We did use glance to see how the cpu's are being used.  The SGA settings may be a bit different since the #of cpu &amp;amp; amount of memory in the box.  Some of the kernel parameters (ie. shmax) may be tweaked a bit toward the amount of physical memory in each box.&lt;BR /&gt;&lt;BR /&gt;They are using the same physical RAID storage device (EMC CX600) using RAID5 but the NClass has its database spread over more RAID (7 RAID of 5 disks each) as opposed to the rx4640 (4 RAID of 5 disks each).  So basically, smaller luns on more spindles vs bigger luns on less spindles.&lt;BR /&gt;&lt;BR /&gt;The queries are done with no user sessions and our dba assures me that there is no writes done with this query.  Our initial thinking is with newer technology = less but faster cpu = less $$cost that could run the same database.&lt;BR /&gt;&lt;BR /&gt;But since the rx4640 is only using 50% of the cpu's shouldn't it try to use more power out of it since it has more reserved?  Disk I/O on both machines is very minimal when the query is run.  I'm still boggled what is preventing the database from using most of the cpus resource, making its query run longer?  All comments welcome.  Thanks, J.D.&lt;BR /&gt;</description>
    <pubDate>Tue, 29 Mar 2005 12:37:48 GMT</pubDate>
    <dc:creator>J.D._3</dc:creator>
    <dc:date>2005-03-29T12:37:48Z</dc:date>
    <item>
      <title>Differences in cpu utilization between rx4660 and N-Class</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513044#M844274</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have 2 databases, one in an N-Class and another in an itanium rx4640.  The N-Class has 8 cpu's 32gb memory.  The itanium has 4 cpus 16gb memory.  The databases are oracle9.2.0.4 and when a dba runs an identical query, the N-Class finishes 1hr 40 mins faster than the itanium.  The N-Class also uses all 8 cpu's to 100% while the itanium only uses about 50% of all its cpus.  The query he runs is:&lt;BR /&gt;&lt;BR /&gt;exec sys.dbms_stats.gather_table_stats(ownname=&amp;gt;'UserName', tabname=&amp;gt;'TableName', degree =&amp;gt; dbms_stats.default_degree)&lt;BR /&gt;&lt;BR /&gt;Where should I look for in the system to find out why the run time has a pretty large range (1hr 40 mins) between the 2 servers?  Basically, we want to understand that if we move our production database from the N-class to the itanium, will we benefit from this configuration or should we add more cpu/memory to the itaniums.  Thanks J.D.</description>
      <pubDate>Mon, 28 Mar 2005 20:53:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513044#M844274</guid>
      <dc:creator>J.D._3</dc:creator>
      <dc:date>2005-03-28T20:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in cpu utilization between rx4660 and N-Class</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513045#M844275</link>
      <description>The difference could result from a number of factors:&lt;BR /&gt;&lt;BR /&gt;* fragmentation of the data.&lt;BR /&gt;* How oracle's "plans" resolve the query.&lt;BR /&gt;* kernel parameters on the two boxes.&lt;BR /&gt;* SGA differences.&lt;BR /&gt;&lt;BR /&gt;I recall hearing a story of how Oracle on a couple of fast Intel boxes was getting its hindquarters kicked in queries by an old K Class box.&lt;BR /&gt;&lt;BR /&gt;Turns out the K class box was executing its queries in a totally different fashion. Just because they are the same query does not mean they are running the same.&lt;BR /&gt;&lt;BR /&gt;If you run a trace or take alook at how the query is being resolved, you will see why the N class box is beating the Itaniums. If you optimize the rx4640 boxes you should be able to get them to outperform the N box.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Mon, 28 Mar 2005 22:21:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513045#M844275</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-03-28T22:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in cpu utilization between rx4660 and N-Class</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513046#M844276</link>
      <description>You are falling into the CPU trap. In almost every case, you are going to find that Oracle is not CPU bound but rather is I/O bound. In many database platforms the CPU is the least important component. Over the years, I've found that database bottlenecks almost always follow this pattern: 1) I/O, 2) Memory, 3) CPU - use Glance and the database performance statistics to identify your bottlenecks. If possible spread your I/O over as many SCSI paths as possible and use RAID 1/0 in favor of RAID5 (or RAID5DP/RAID6).</description>
      <pubDate>Mon, 28 Mar 2005 22:43:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513046#M844276</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2005-03-28T22:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in cpu utilization between rx4660 and N-Class</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513047#M844277</link>
      <description>hmmmm 1) Where both Oracles tuned about the same? SGA size?&lt;BR /&gt;hmmmm 2) Memory and IO systems need to have 'enough' oomph before CPU power becomes important. Did both boxes offers similar IO?&lt;BR /&gt;If your applition reall used thse 32Gb, then 16GB will be a serious handicap!&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hmmm 2: analyze table would not seem to be a reasonable approximation for any reasonalble application. It just does a tablescan and some counting. So with would be IO bound, and use minimal CPU. Even the memory would not be too critical.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; Where should I look for in the system to find out why the run time has a pretty large range (1hr 40 mins&lt;BR /&gt;&lt;BR /&gt;How did the CPU times, withing that elapsed time, compare?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The only reall way to presict you application behaviour on the new box.. it to try the application!&lt;BR /&gt;Can you get a loaner/tester and do a trial migration? You want to do that anyway no?&lt;BR /&gt;- to make sure you actaully knwo how to do the migration in detail no?&lt;BR /&gt;- to make sure you get the procedures set up just right&lt;BR /&gt;- to have a good estimate on how long the real/finale migration will take&lt;BR /&gt;- to perform a performance evaluation.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Good luck,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Tue, 29 Mar 2005 00:20:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513047#M844277</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2005-03-29T00:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in cpu utilization between rx4660 and N-Class</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513048#M844278</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;To me this sounds like a classic IO bottleneck on the rx4640.  That said, there is not enough info to say one way or the otehr!&lt;BR /&gt;&lt;BR /&gt;Are the disksubsystem for the two systems the same?  If different please say how.&lt;BR /&gt;&lt;BR /&gt;1 - If you have OV PerformanceAgent (MeasureWare); then look at the IO statistics of the two boxes. I would focus on the service times to each LUN/Disk.  also check &lt;BR /&gt;&lt;BR /&gt;2 - If you do not have OVPA, look at "sar -d" stats; again looking at the IO rates of te two systems and the service times.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Tim</description>
      <pubDate>Tue, 29 Mar 2005 06:53:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513048#M844278</guid>
      <dc:creator>Tim D Fulford</dc:creator>
      <dc:date>2005-03-29T06:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in cpu utilization between rx4660 and N-Class</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513049#M844279</link>
      <description>I agree to look at the sar -d and -b stats.&lt;BR /&gt;&lt;BR /&gt;I'd also ask if these are identical databases, how was the itanium version created. Dropped indexes or rule based vs cost based config change could be something to look at.&lt;BR /&gt;&lt;BR /&gt;If export import was used, there are some paramters the DBA could have touched during the creation or the 'new' instance.</description>
      <pubDate>Tue, 29 Mar 2005 08:14:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513049#M844279</guid>
      <dc:creator>doug mielke</dc:creator>
      <dc:date>2005-03-29T08:14:47Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in cpu utilization between rx4660 and N-Class</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513050#M844280</link>
      <description>Just a quick thought on the cpu's - remember, you are going from 8 to 4 - think of it this way - one system has 8 workers - now they may be a bit slower - but they can do more work at a given time...as far as I know, Oracle dedicates 1 cpu for "work" processess - so in effect - your N class has 7 workers and your Rx has only 3!&lt;BR /&gt;&lt;BR /&gt;Another analogy - a freeway - you have 1 with 7 lanes + a maintenance lane - max speed 100 KM per hour.  The Itanium freeway only has 3 lanes and a maintenance lane - max speed 120 KM per hour.  Well...it does take a rocket scientist to see which freeway can push through the most traffic....&lt;BR /&gt;&lt;BR /&gt;A final thought - on Itanium - did you re-compile your apps (if any)?&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Tue, 29 Mar 2005 09:26:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513050#M844280</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2005-03-29T09:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in cpu utilization between rx4660 and N-Class</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513051#M844281</link>
      <description>Thanks for everyone's reply.  I'll try to response back as much as I can with this one thread since I got such a good turn out.&lt;BR /&gt;&lt;BR /&gt;The databases are identical.  Both are test machines that were restored from the same backup set from a production N-Class (same as the one in question).  All the kernel parameters are the same.  We did use glance to see how the cpu's are being used.  The SGA settings may be a bit different since the #of cpu &amp;amp; amount of memory in the box.  Some of the kernel parameters (ie. shmax) may be tweaked a bit toward the amount of physical memory in each box.&lt;BR /&gt;&lt;BR /&gt;They are using the same physical RAID storage device (EMC CX600) using RAID5 but the NClass has its database spread over more RAID (7 RAID of 5 disks each) as opposed to the rx4640 (4 RAID of 5 disks each).  So basically, smaller luns on more spindles vs bigger luns on less spindles.&lt;BR /&gt;&lt;BR /&gt;The queries are done with no user sessions and our dba assures me that there is no writes done with this query.  Our initial thinking is with newer technology = less but faster cpu = less $$cost that could run the same database.&lt;BR /&gt;&lt;BR /&gt;But since the rx4640 is only using 50% of the cpu's shouldn't it try to use more power out of it since it has more reserved?  Disk I/O on both machines is very minimal when the query is run.  I'm still boggled what is preventing the database from using most of the cpus resource, making its query run longer?  All comments welcome.  Thanks, J.D.&lt;BR /&gt;</description>
      <pubDate>Tue, 29 Mar 2005 12:37:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513051#M844281</guid>
      <dc:creator>J.D._3</dc:creator>
      <dc:date>2005-03-29T12:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in cpu utilization between rx4660 and N-Class</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513052#M844282</link>
      <description>On the Itanium,&lt;BR /&gt;&lt;BR /&gt;analyze the tables and schemas. This will help the database rebuild its statistical information and run its sql more efficiently.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 29 Mar 2005 12:56:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513052#M844282</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-03-29T12:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in cpu utilization between rx4660 and N-Class</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513053#M844283</link>
      <description>Hi Steven&lt;BR /&gt;&lt;BR /&gt;I'm having the dba do that and also analyze the oracle execution plans.  I'm at the same time verifying which disks the 9 datafiles in the table are hitting on each machine.  I'll keep everyone posted.  Thanks, J.D.</description>
      <pubDate>Tue, 29 Mar 2005 13:16:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513053#M844283</guid>
      <dc:creator>J.D._3</dc:creator>
      <dc:date>2005-03-29T13:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in cpu utilization between rx4660 and N-Class</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513054#M844284</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;&amp;gt; They are using the same physical RAID &lt;BR /&gt;&amp;gt; storage device (EMC CX600) using RAID5 but &lt;BR /&gt;&amp;gt; the NClass has its database spread over &lt;BR /&gt;&amp;gt; more RAID (7 RAID of 5 disks each) as &lt;BR /&gt;&amp;gt; opposed to the rx4640 (4 RAID of 5 disks &lt;BR /&gt;&amp;gt; each). So basically, smaller luns on more &lt;BR /&gt;&amp;gt; spindles vs bigger luns on less spindles.&lt;BR /&gt;&lt;BR /&gt;So If I'm reading this right then you are using 35 disks on N-Class &amp;amp; 20 on rx4640; If the N-class is falttening its disks, then the rx4640 will only do about 1/2 of the IO before it flattens its disks... If you are able to get the rx4640 box another 3 LUNs (not quite doubling its IO capacity) you should be able to get it to go at a similar speed as the N-Class.&lt;BR /&gt;&lt;BR /&gt;You might want to re-assure yourself by looking at the IO stats also..&lt;BR /&gt;&lt;BR /&gt;can you post "typical" sar -d on the two systems?&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Tim</description>
      <pubDate>Tue, 29 Mar 2005 15:25:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513054#M844284</guid>
      <dc:creator>Tim D Fulford</dc:creator>
      <dc:date>2005-03-29T15:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in cpu utilization between rx4660 and N-Class</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513055#M844285</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;there is may be another possibility.&lt;BR /&gt;There is a bug 3048318 where some DBMS_STATS gather options can be slow. It's been confirmed for 9.2.0.4 and affect "most" platforms.&lt;BR /&gt;The fix is to install 9.2.0.5 patch set.&lt;BR /&gt;&lt;BR /&gt;source Metalink&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jean-Luc</description>
      <pubDate>Wed, 30 Mar 2005 05:54:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513055#M844285</guid>
      <dc:creator>Jean-Luc Oudart</dc:creator>
      <dc:date>2005-03-30T05:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: Differences in cpu utilization between rx4660 and N-Class</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513056#M844286</link>
      <description>Hi Tim,&lt;BR /&gt;&lt;BR /&gt;We'll be trying out another test where we would actually be using the LUNS from the NClass and move them all into the rx4640 and testing it that way.  We're thinking its a little bit closer to comparing the 2 different architecture.  At least this way we can isolate the issue a bit more.&lt;BR /&gt;&lt;BR /&gt;Jean-Luc,&lt;BR /&gt;My apologies for mentioning that the databases are 9.2.0.4.  They're actually 9.2.0.6.  We've been running 9204 a while and I got so used to typing that instead of the actual version we're running now.  &lt;BR /&gt;&lt;BR /&gt;We're hoping to do this test this week.  I'll keep everyone posted.  Thanks again for the replies.</description>
      <pubDate>Wed, 30 Mar 2005 12:03:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/differences-in-cpu-utilization-between-rx4660-and-n-class/m-p/3513056#M844286</guid>
      <dc:creator>J.D._3</dc:creator>
      <dc:date>2005-03-30T12:03:59Z</dc:date>
    </item>
  </channel>
</rss>

