<?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 Test read IO of filesystem using dd in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/test-read-io-of-filesystem-using-dd/m-p/4401774#M560904</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;We are planning to upgrade our VXFS from disk layout 4 to 6 and prior to the upgrade in production we simulate the upgrade in development server. After the upgrade we compared the batch job that we ran before the upgrade and found the performance degrade by 4-8%. I took the following approach to test the FS performance.&lt;BR /&gt;&lt;BR /&gt;I test the read performance of VXFS (different disk layout, 4/5/6) using dd. I use a 2GB file as the input file and ran the following CMD. The start &amp;amp; end time are the same for the 3 disk layout.&lt;BR /&gt;&lt;BR /&gt;dd if=/xxx/yyy/filename.log of=/dev/null&lt;BR /&gt;&lt;BR /&gt;I need some feedback if this test was sufficient to justify that the issue was not with the upgrade (FS) since the read performance is the same.</description>
    <pubDate>Thu, 16 Apr 2009 05:02:37 GMT</pubDate>
    <dc:creator>muzi_1</dc:creator>
    <dc:date>2009-04-16T05:02:37Z</dc:date>
    <item>
      <title>Test read IO of filesystem using dd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/test-read-io-of-filesystem-using-dd/m-p/4401774#M560904</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;We are planning to upgrade our VXFS from disk layout 4 to 6 and prior to the upgrade in production we simulate the upgrade in development server. After the upgrade we compared the batch job that we ran before the upgrade and found the performance degrade by 4-8%. I took the following approach to test the FS performance.&lt;BR /&gt;&lt;BR /&gt;I test the read performance of VXFS (different disk layout, 4/5/6) using dd. I use a 2GB file as the input file and ran the following CMD. The start &amp;amp; end time are the same for the 3 disk layout.&lt;BR /&gt;&lt;BR /&gt;dd if=/xxx/yyy/filename.log of=/dev/null&lt;BR /&gt;&lt;BR /&gt;I need some feedback if this test was sufficient to justify that the issue was not with the upgrade (FS) since the read performance is the same.</description>
      <pubDate>Thu, 16 Apr 2009 05:02:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/test-read-io-of-filesystem-using-dd/m-p/4401774#M560904</guid>
      <dc:creator>muzi_1</dc:creator>
      <dc:date>2009-04-16T05:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: Test read IO of filesystem using dd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/test-read-io-of-filesystem-using-dd/m-p/4401775#M560905</link>
      <description>&lt;!--!*#--&gt;&amp;gt; [...] we compared the batch job [...]&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I test the read performance [...]&lt;BR /&gt;&lt;BR /&gt;Does your batch job do nothing except read a&lt;BR /&gt;2GB file?  (And throw the data away?)&lt;BR /&gt;&lt;BR /&gt;Your test seems unlikely to be much like any&lt;BR /&gt;actual job, so I don't see that you have&lt;BR /&gt;proved very much.  If the real job is much&lt;BR /&gt;different from the test job, then what does&lt;BR /&gt;the test tell you?&lt;BR /&gt;&lt;BR /&gt;I'd want to know where the batch job was&lt;BR /&gt;spending its time (before and after the&lt;BR /&gt;changes), how much I/O it was doing, and so&lt;BR /&gt;on.</description>
      <pubDate>Thu, 16 Apr 2009 06:29:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/test-read-io-of-filesystem-using-dd/m-p/4401775#M560905</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-04-16T06:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Test read IO of filesystem using dd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/test-read-io-of-filesystem-using-dd/m-p/4401776#M560906</link>
      <description>The batch job reads multiple records from oracle database server does some formatting and writes to application server. The JFS upgrade was performed on the DB server only.&lt;BR /&gt;&lt;BR /&gt;The IO during the job durations are as follow.&lt;BR /&gt;&lt;BR /&gt;Before upgrade&lt;BR /&gt;Average IO Rate = 774.46&lt;BR /&gt;Average Logical IO Rate = 2572.55&lt;BR /&gt;&lt;BR /&gt;After upgrade&lt;BR /&gt;Average IO Rate = 922.97&lt;BR /&gt;Average Logical IO Rate = 2528.14&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Apr 2009 07:46:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/test-read-io-of-filesystem-using-dd/m-p/4401776#M560906</guid>
      <dc:creator>muzi_1</dc:creator>
      <dc:date>2009-04-16T07:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: Test read IO of filesystem using dd</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/test-read-io-of-filesystem-using-dd/m-p/4401777#M560907</link>
      <description>&amp;gt; dd if=/xxx/yyy/filename.log of=/dev/null&lt;BR /&gt; &lt;BR /&gt;This is about the worst use of dd there is. The default for dd is to read one 512-byte record and write that same 512-byte record. ALWAYS specify the bs= parameter to a reasonable size, for instance: bs=512k. You will see a huge improvement in performance.&lt;BR /&gt; &lt;BR /&gt;Aside from reading very small records (which really emphasizes system overhead), it won't test the filesystem layout/version. VxFS code spends most all of it's activity with open,close, add/delete/move but once a file is open, there is no significant interaction with the VxFS code -- the file is open and reads just continue. The layout version has a lot to do with internal record keeping and sizes of fields.&lt;BR /&gt; &lt;BR /&gt;A better test would be to create dozens of files simultaneously, write a few records, then lseek a long way from the start, write a few more, close and then remove the files. This will likely show more of the VxFS performance differences than a simple read.</description>
      <pubDate>Thu, 16 Apr 2009 12:24:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/test-read-io-of-filesystem-using-dd/m-p/4401777#M560907</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2009-04-16T12:24:33Z</dc:date>
    </item>
  </channel>
</rss>

