<?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 Disk and Extent-Based Striping in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-and-extent-based-striping/m-p/3753184#M614523</link>
    <description>What is the different between disk striping and extent-based (distributed) striping? &lt;BR /&gt;&lt;BR /&gt;In term of the number of disks to be striped are the same, eg four disks. Which method will give better performance?&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 17 Mar 2006 00:02:19 GMT</pubDate>
    <dc:creator>Emily S</dc:creator>
    <dc:date>2006-03-17T00:02:19Z</dc:date>
    <item>
      <title>Disk and Extent-Based Striping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-and-extent-based-striping/m-p/3753184#M614523</link>
      <description>What is the different between disk striping and extent-based (distributed) striping? &lt;BR /&gt;&lt;BR /&gt;In term of the number of disks to be striped are the same, eg four disks. Which method will give better performance?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Mar 2006 00:02:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-and-extent-based-striping/m-p/3753184#M614523</guid>
      <dc:creator>Emily S</dc:creator>
      <dc:date>2006-03-17T00:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: Disk and Extent-Based Striping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-and-extent-based-striping/m-p/3753185#M614524</link>
      <description>extent-based striping could be done on a single disk by creating say 2 subdisks on a single disk.&lt;BR /&gt;And when it comes to disk striping you do the striping accross the disk which surely gives you performance if you have disks accross multiple controllers.</description>
      <pubDate>Fri, 17 Mar 2006 00:06:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-and-extent-based-striping/m-p/3753185#M614524</guid>
      <dc:creator>Rajeev  Shukla</dc:creator>
      <dc:date>2006-03-17T00:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: Disk and Extent-Based Striping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-and-extent-based-striping/m-p/3753186#M614525</link>
      <description>Disk stripping is done with -i and -I options to lvcreate. In this you create strip over num,ber of disks. For such lvol, if you want to add space, you will have to add same number od disks, with which it was creatd.&lt;BR /&gt;&lt;BR /&gt;Extent based stripping is with use of /etc/lvmpvg. Here lvol is created in such way that an extend is taken from one disk, then second and so on.&lt;BR /&gt;&lt;BR /&gt;About performance, I have really not checked it. But if disks are from SAN/NAS they may already be stripped based on what raid level it is. So you would not want to stripp that again. Also with disk based stippring, you can not do mirroring.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Mar 2006 00:10:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-and-extent-based-striping/m-p/3753186#M614525</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2006-03-17T00:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: Disk and Extent-Based Striping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-and-extent-based-striping/m-p/3753187#M614526</link>
      <description>They, in essence, do the same thing although at a different level of granularity. Conventional LVM striping allows a number of blocks that make up a logical volume to be written to disk0, then the next chunk of blocks gets written to disk1, and so on in round-robin fashion. Mirroring is not allowed under this mode of striping. Extent-based striping does the same thing except that rather than a "number of blocks" the stripe size if changed to 1 physical extent (PE) and mirroring is allowed.&lt;BR /&gt;&lt;BR /&gt;Now here's the rub since you asked a performance question. Ideally, the stripe size should be somewhere in the 64-128 (and maybe 256) KB range to efficiently spread the i/o.  Conventional striping can use these stripe chunks but the smallest possible PE is 1MB. The smallest possible PE size is much too large to be a good stripe size and I have never seen a significant gain from extent-based striping but conventional striping using 64KB (or so) blocks  does yield significant and measureable performance gains. &lt;BR /&gt;&lt;BR /&gt;In general, you are going to find that striping across more than about 3-4 disks yields diminishing gains.</description>
      <pubDate>Fri, 17 Mar 2006 00:32:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-and-extent-based-striping/m-p/3753187#M614526</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2006-03-17T00:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Disk and Extent-Based Striping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-and-extent-based-striping/m-p/3753188#M614527</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;      In LVM, there is nothing called "disk striping"...&lt;BR /&gt;&lt;BR /&gt;      There are 2 type of stiping in LVM...&lt;BR /&gt;&lt;BR /&gt;      1) Extent striping(distributed).&lt;BR /&gt;&lt;BR /&gt;         This is created using "-D" option to lvcreate command. The disadvantage is the stripe size is equal to the PE size / one extent. Hence this is not a optimized solution for disk striping. Because, the extent size cannot be reduced less than 1MB and hence cannot allign to the default block size of certain application. The only advantage of this striping is ,It helps us implement "RAID 1/0" in LVM, that is mirroring a stiped LV. In general this itself is not considered as optimized implementation of RAID 1/0 per say.&lt;BR /&gt;&lt;BR /&gt;       2) Block striping.&lt;BR /&gt;&lt;BR /&gt;        This is created using "-i -I" option to lvcreate. Here the block can be less than a single PE extent size. Hence you can optimize as per the application block size. A stipe size could be even 8kb for instance. The advantage is ,due to this factor it is called true striping because it acheives the optimization required by stripping. The disadvantage being you can't mirror these striped LV's. Because Mirror uses 256kb LTG for keeping tab of syncronization, since in block striping , the stripe size could be less than 256kb, by default mirroing is disable for stripes created using "block striping".&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Senthil Kumar .A</description>
      <pubDate>Fri, 17 Mar 2006 01:15:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-and-extent-based-striping/m-p/3753188#M614527</guid>
      <dc:creator>Senthil Kumar .A_1</dc:creator>
      <dc:date>2006-03-17T01:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: Disk and Extent-Based Striping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-and-extent-based-striping/m-p/3753189#M614528</link>
      <description>In addition to this thought this PV_LV_VG admin doc would be helpful. :)&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Mar 2006 02:06:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-and-extent-based-striping/m-p/3753189#M614528</guid>
      <dc:creator>Bharat Katkar</dc:creator>
      <dc:date>2006-03-17T02:06:55Z</dc:date>
    </item>
  </channel>
</rss>

