<?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: quick disk performance test ? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549936#M840545</link>
    <description>&lt;BR /&gt;What kind of disk drive? &lt;BR /&gt;&lt;BR /&gt;Performance will be based upon speed of rotation (RPM's), IO interface speed, CPU availability, disk caching, ....&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry d brown jr</description>
    <pubDate>Mon, 23 May 2005 08:34:30 GMT</pubDate>
    <dc:creator>harry d brown jr</dc:creator>
    <dc:date>2005-05-23T08:34:30Z</dc:date>
    <item>
      <title>quick disk performance test ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549935#M840544</link>
      <description>I wanted to run a quick disk performance test, in response to questions that have come up.  &lt;BR /&gt;I wrote this little script:&lt;BR /&gt;                TIME=$(timex dd if=$Disk of=/dev/null count=10000 2&amp;gt;&amp;amp;1 \&lt;BR /&gt;                        | grep real | awk '{print $2}' )&lt;BR /&gt;                print -n ${DISKA[$I]} "\t" $TIME "\t"&lt;BR /&gt;                echo 5.12 $TIME | awk '{printf "%.2f\n", $1 / $2 }'&lt;BR /&gt;The idea is that I read raw 10000 blocks of block size 512 bytes = 5 MBs and then caclulate the MBytes/sec.  &lt;BR /&gt;I'm not conducting a rigorous scientific test.  I just want to have something to take to the performance group (who will make recommendations back to the UNIX and Storage teams).&lt;BR /&gt;Questions:&lt;BR /&gt;1.  Does this sound reasonable?  &lt;BR /&gt;2.  Is a raw read off the rdsk acceptable for performance measurements?  I compared it to a dd if=/dev/vgXX/lvolNN and it came out in the same range.&lt;BR /&gt;3.  I'm getting values in the range of 2.8 MBytes/sec.  Does that sound reasonable?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 23 May 2005 08:27:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549935#M840544</guid>
      <dc:creator>Stuart Abramson</dc:creator>
      <dc:date>2005-05-23T08:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: quick disk performance test ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549936#M840545</link>
      <description>&lt;BR /&gt;What kind of disk drive? &lt;BR /&gt;&lt;BR /&gt;Performance will be based upon speed of rotation (RPM's), IO interface speed, CPU availability, disk caching, ....&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry d brown jr</description>
      <pubDate>Mon, 23 May 2005 08:34:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549936#M840545</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2005-05-23T08:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: quick disk performance test ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549937#M840546</link>
      <description>This will give you a basic test however&lt;BR /&gt;&lt;BR /&gt;- If you are testing a disk on an array (XP, EVA, EMC etc) then your results will be greatly skewed due to cache.&lt;BR /&gt;&lt;BR /&gt;- You should perform the tests when the system is idle - random access to the disk you are testing again will skew the results.&lt;BR /&gt;&lt;BR /&gt;Your 2.8MB/sec doesn't sound very fast, but it depends again on your server.  On an rp54xx I'm getting about 8MB/sec on the internal 36Gb disks, but if you're testing an old A class for example those numbers may be more indicative.&lt;BR /&gt;&lt;BR /&gt;You may be better using a combination of Glance/Measureware to get performance information with "real" data.</description>
      <pubDate>Mon, 23 May 2005 08:36:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549937#M840546</guid>
      <dc:creator>Simon Hargrave</dc:creator>
      <dc:date>2005-05-23T08:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: quick disk performance test ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549938#M840547</link>
      <description>I will do:&lt;BR /&gt;&lt;BR /&gt;dd if=/dev/vgname/rlvolname of=/dev/null bs=1024k count=nnn&lt;BR /&gt;&lt;BR /&gt;where nnnn should be sufficiently large to overcome the effect of cache.&lt;BR /&gt;&lt;BR /&gt;Note, for LVM.. your RAW device is the lvolname prefixed with "r".&lt;BR /&gt;&lt;BR /&gt;You may also do the same command on raw physical disks.. i.e. /dev/rdsk/cXtYdZ&lt;BR /&gt;&lt;BR /&gt;I would prefer iozone though.&lt;BR /&gt;</description>
      <pubDate>Mon, 23 May 2005 08:50:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549938#M840547</guid>
      <dc:creator>Alzhy</dc:creator>
      <dc:date>2005-05-23T08:50:11Z</dc:date>
    </item>
    <item>
      <title>Re: quick disk performance test ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549939#M840548</link>
      <description>They're EMC drives.</description>
      <pubDate>Mon, 23 May 2005 11:32:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549939#M840548</guid>
      <dc:creator>Stuart Abramson</dc:creator>
      <dc:date>2005-05-23T11:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: quick disk performance test ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549940#M840549</link>
      <description>&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=864715" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=864715&lt;/A&gt;</description>
      <pubDate>Tue, 24 May 2005 07:03:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549940#M840549</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2005-05-24T07:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: quick disk performance test ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549941#M840550</link>
      <description>hi,&lt;BR /&gt;Please have a look my attachment&lt;BR /&gt;&lt;BR /&gt;good Luck,&lt;BR /&gt;</description>
      <pubDate>Tue, 24 May 2005 07:06:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549941#M840550</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2005-05-24T07:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: quick disk performance test ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549942#M840551</link>
      <description>Several people told me that my blocksize for my reads was to small and that fixed me up.&lt;BR /&gt; &lt;BR /&gt;I tried various blocksizes from 512 to 32768 and I/O rate increases from 2 MB/s to 45 MB/s (depending on server, disk, etc.).  Block Size of 8192 gives me about 20-30 MB/s on hpux L3000s connected to EMC Symmetrix DMX 2000 with 2 Gb/s FAs:&lt;BR /&gt; &lt;BR /&gt; ((BS=8192))&lt;BR /&gt; ((Count=5120000/BS))&lt;BR /&gt; TIME=$(timex dd if=$Disk of=/dev/null count=$Count bs=$BS 2&amp;gt;&amp;amp;1 \&lt;BR /&gt;                | grep real | awk '{print $2}' )&lt;BR /&gt;        MBpS=$( FDIV 5.12 $TIME )&lt;BR /&gt;        printf "%5s %6s %8s %6s %6s %6s %6s \n"  \&lt;BR /&gt;                $LUN $ARRAY $DISK $SP $BS $TIME $MBpS&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 28 May 2005 16:09:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549942#M840551</guid>
      <dc:creator>Stuart Abramson</dc:creator>
      <dc:date>2005-05-28T16:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: quick disk performance test ?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549943#M840552</link>
      <description>Don't re-invent the wheel! There's plenty of free software out there that will do this kind of testing pretty easily - my personal favoutite is iozone:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.iozone.org" target="_blank"&gt;http://www.iozone.org&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;But HP also have a bunch more listed here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=lpg50460#N1053E" target="_blank"&gt;http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=lpg50460#N1053E&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Duncan</description>
      <pubDate>Sun, 29 May 2005 05:10:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/quick-disk-performance-test/m-p/3549943#M840552</guid>
      <dc:creator>Duncan Edmonstone</dc:creator>
      <dc:date>2005-05-29T05:10:01Z</dc:date>
    </item>
  </channel>
</rss>

