<?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: How to measure the transfer rate over the production? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-measure-the-transfer-rate-over-the-production/m-p/2526981#M648702</link>
    <description>Try iostat.</description>
    <pubDate>Thu, 10 May 2001 15:05:55 GMT</pubDate>
    <dc:creator>Vincenzo Restuccia</dc:creator>
    <dc:date>2001-05-10T15:05:55Z</dc:date>
    <item>
      <title>How to measure the transfer rate over the production?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-measure-the-transfer-rate-over-the-production/m-p/2526980#M648701</link>
      <description>I found a problem to find the real measurement rate of disk transfer. How do I have a cool procedure to measure the transfer disk rate?  What if I have two Fibre Channel FC60 and full split-type ULTRA LVDs with two disk SC10 enclosures?  I read the previous article in regards of using dd command and output to /dev/null.  But, I am quite not sure how to get the real measurement rate.</description>
      <pubDate>Thu, 10 May 2001 14:08:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-measure-the-transfer-rate-over-the-production/m-p/2526980#M648701</guid>
      <dc:creator>Boonchu Ngampairoijpibu_1</dc:creator>
      <dc:date>2001-05-10T14:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to measure the transfer rate over the production?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-measure-the-transfer-rate-over-the-production/m-p/2526981#M648702</link>
      <description>Try iostat.</description>
      <pubDate>Thu, 10 May 2001 15:05:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-measure-the-transfer-rate-over-the-production/m-p/2526981#M648702</guid>
      <dc:creator>Vincenzo Restuccia</dc:creator>
      <dc:date>2001-05-10T15:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to measure the transfer rate over the production?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-measure-the-transfer-rate-over-the-production/m-p/2526982#M648703</link>
      <description>&lt;BR /&gt;if you do an ioscan -fknCdisk it lists all the disk devices (or Luns - which are groups of disks) visible to your HP server.&lt;BR /&gt;&lt;BR /&gt;eg. ioscan -fknCdisk&lt;BR /&gt;&lt;BR /&gt;Class     I  H/W Path     Driver      S/W State H/W Type  Description&lt;BR /&gt;======================================================================&lt;BR /&gt;disk     22  8/0.4.0      sdisk       CLAIMED   DEVICE    SEAGATE ST39173WC&lt;BR /&gt;                         /dev/dsk/c0t4d0   /dev/rdsk/c0t4d0&lt;BR /&gt;disk     23  8/0.12.0     sdisk       CLAIMED   DEVICE    SEAGATE ST39173WC&lt;BR /&gt;                         /dev/dsk/c0t12d0   /dev/rdsk/c0t12d0&lt;BR /&gt;disk     24  8/0.13.0     sdisk       CLAIMED   DEVICE    SEAGATE ST39173WC&lt;BR /&gt;                         /dev/dsk/c0t13d0   /dev/rdsk/c0t13d0&lt;BR /&gt;disk     25  8/0.14.0     sdisk       CLAIMED   DEVICE    SEAGATE ST39173WC&lt;BR /&gt;                         /dev/dsk/c0t14d0   /dev/rdsk/c0t14d0&lt;BR /&gt;disk     26  8/0.15.0     sdisk       CLAIMED   DEVICE    SEAGATE ST34371W&lt;BR /&gt;                         /dev/dsk/c0t15d0   /dev/rdsk/c0t15d0&lt;BR /&gt;disk      1  8/4.0.0      sdisk       CLAIMED   DEVICE    EMC     SYMMETRIX&lt;BR /&gt;                         /dev/dsk/c1t0d0   /dev/rdsk/c1t0d0&lt;BR /&gt;&lt;BR /&gt;You can see from this there are 5 disk devices on the SCSI controller 8/0 (H/W Path) and 1 on 8/4 (The EMC device/lun).&lt;BR /&gt;&lt;BR /&gt;To test each in turn do;&lt;BR /&gt;&lt;BR /&gt;time dd if=/dev/rdsk/cXXXXX of=/dev/null bs=1024k count=50&lt;BR /&gt;&lt;BR /&gt;This will read 50 MB off the disk device (you can set this to whatever value you want but 50 is sufficient for a good read test) and give you a time in seconds to do it. &lt;BR /&gt;eg. &lt;BR /&gt;50+0 records in&lt;BR /&gt;50+0 records out&lt;BR /&gt;&lt;BR /&gt;real        3.5&lt;BR /&gt;user        0.0&lt;BR /&gt;sys         0.0&lt;BR /&gt;&lt;BR /&gt;Now, divide 50 (MB) by 3.5 seconds gives 14.2 MB/s for that disk device. Pretty quick - considering the HP FWD SCSI controller will only run as fast as around 15 MB/s.&lt;BR /&gt;&lt;BR /&gt;When I do the same test on the EMC device (which is a Lun - combined over multiple disks inside the EMC frame - you will need to talk to EMC to find out exactly how, but that doesnt really concern us, just its speed!)&lt;BR /&gt;time dd gives me 4.6 secs, so 10.8 MB/s. But, the EMC has tons of cache so if I repeat the test on the EMC I now get 2.9s, for 17.2 MB/s (Which is great - the HP scsi controller wont really go any faster). The first disk I tried it on was an internal drive (no cache - or very small cache so no improvement) so multiple dd tests give the same result - it doesnt get faster like the EMC does.&lt;BR /&gt;&lt;BR /&gt;This is how to test your disk device speeds.&lt;BR /&gt;</description>
      <pubDate>Thu, 10 May 2001 15:08:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-measure-the-transfer-rate-over-the-production/m-p/2526982#M648703</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2001-05-10T15:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to measure the transfer rate over the production?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-measure-the-transfer-rate-over-the-production/m-p/2526983#M648704</link>
      <description>Thanks for response, especially &lt;BR /&gt;Stefan guide me to the real life.  &lt;BR /&gt;I got FC60 with cache size 256 Mbytes. &lt;BR /&gt;&lt;BR /&gt;I try with RAID 1 device.  It returns&lt;BR /&gt;as you say.  First time, it tooks about &lt;BR /&gt;2.55 seconds per 50 Mbytes.  Without RAID&lt;BR /&gt;, it responses with 3.32 seconds per &lt;BR /&gt;50 Mbytes.  &lt;BR /&gt;&lt;BR /&gt;But, it tooks better response when I use &lt;BR /&gt;them twice.  It responses back 0.733 seconds &lt;BR /&gt;per 50 Mbytes.&lt;BR /&gt;&lt;BR /&gt;So it writes to cache to acheive the better &lt;BR /&gt;rate.&lt;BR /&gt;&lt;BR /&gt;Stefan, If I want to test with lvm device, &lt;BR /&gt;does it return with the same rate?</description>
      <pubDate>Thu, 10 May 2001 16:15:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-measure-the-transfer-rate-over-the-production/m-p/2526983#M648704</guid>
      <dc:creator>Boonchu Ngampairoijpibu_1</dc:creator>
      <dc:date>2001-05-10T16:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to measure the transfer rate over the production?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-measure-the-transfer-rate-over-the-production/m-p/2526984#M648705</link>
      <description>Boonchu,&lt;BR /&gt;&lt;BR /&gt;That test will work exactly the same if you give it an lvol instead of a raw disk device.</description>
      <pubDate>Mon, 14 May 2001 14:37:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-measure-the-transfer-rate-over-the-production/m-p/2526984#M648705</guid>
      <dc:creator>David Hixson</dc:creator>
      <dc:date>2001-05-14T14:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to measure the transfer rate over the production?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-measure-the-transfer-rate-over-the-production/m-p/2526985#M648706</link>
      <description>I think is more usefull to test the speed using file systems.&lt;BR /&gt;The tests above are directly to the disk...&lt;BR /&gt;Probabli You use a filesystem to read/write to your disks lvol.&lt;BR /&gt;So, try a write test&lt;BR /&gt;&lt;BR /&gt;time prealloc &lt;DIMENSION-IN-BYTE&gt; file&lt;BR /&gt;&lt;BR /&gt;Try a dimension bigger then your cache and try to do the test 2-3 times with different file names&lt;BR /&gt;&lt;BR /&gt;Then try to read using dd&lt;BR /&gt;&lt;BR /&gt;dd if=file of=/dev/null &lt;BR /&gt;with the right block size&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Roberto&lt;/DIMENSION-IN-BYTE&gt;</description>
      <pubDate>Tue, 15 May 2001 08:52:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-measure-the-transfer-rate-over-the-production/m-p/2526985#M648706</guid>
      <dc:creator>Roberto Gallis</dc:creator>
      <dc:date>2001-05-15T08:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to measure the transfer rate over the production?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-measure-the-transfer-rate-over-the-production/m-p/2526986#M648707</link>
      <description>Sorry,&lt;BR /&gt;the right command is&lt;BR /&gt;&lt;BR /&gt;time prealloc file &lt;SIZE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SIZE&gt;</description>
      <pubDate>Tue, 15 May 2001 08:58:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-measure-the-transfer-rate-over-the-production/m-p/2526986#M648707</guid>
      <dc:creator>Roberto Gallis</dc:creator>
      <dc:date>2001-05-15T08:58:16Z</dc:date>
    </item>
  </channel>
</rss>

