<?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 Mirroring and Striping in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirroring-and-striping/m-p/2439916#M656644</link>
    <description>Am in the process of procurring 2 new L 1000 servers running HP 11.0 with a group of (10) SC10 disks shared between them.  Would like to mirror them and then stripe a portion of them.  Is this feasible?</description>
    <pubDate>Fri, 25 Aug 2000 12:33:59 GMT</pubDate>
    <dc:creator>Jerry Owens</dc:creator>
    <dc:date>2000-08-25T12:33:59Z</dc:date>
    <item>
      <title>Disk Mirroring and Striping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirroring-and-striping/m-p/2439916#M656644</link>
      <description>Am in the process of procurring 2 new L 1000 servers running HP 11.0 with a group of (10) SC10 disks shared between them.  Would like to mirror them and then stripe a portion of them.  Is this feasible?</description>
      <pubDate>Fri, 25 Aug 2000 12:33:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirroring-and-striping/m-p/2439916#M656644</guid>
      <dc:creator>Jerry Owens</dc:creator>
      <dc:date>2000-08-25T12:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Mirroring and Striping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirroring-and-striping/m-p/2439917#M656645</link>
      <description>&lt;BR /&gt;It most certainly is feasible to stripe any disk(s) you want. If youre going to stripe and mirror then use the lvcreate -D (distributed) option.</description>
      <pubDate>Fri, 25 Aug 2000 12:51:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirroring-and-striping/m-p/2439917#M656645</guid>
      <dc:creator>Stefan Farrelly</dc:creator>
      <dc:date>2000-08-25T12:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Mirroring and Striping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirroring-and-striping/m-p/2439918#M656646</link>
      <description>Yes,&lt;BR /&gt;&lt;BR /&gt;Mirroring requires the add-on MirrorDiskUX software for HP-UX.&lt;BR /&gt;&lt;BR /&gt;Striping is a normal feature of Logical Volume Manager (LVM).&lt;BR /&gt;&lt;BR /&gt;Mirroring and striping of the same logical volume can only be done at a physical extent level. Search the ITRC for information on extent based striping.&lt;BR /&gt;&lt;BR /&gt;Another alternative is that HP have recently made RAID controller cards available for the L series which can use the SC10 disk subsystem.&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;John&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Aug 2000 12:58:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirroring-and-striping/m-p/2439918#M656646</guid>
      <dc:creator>John Palmer</dc:creator>
      <dc:date>2000-08-25T12:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Mirroring and Striping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirroring-and-striping/m-p/2439919#M656647</link>
      <description>Certainly is feasible and IMO recommended. You can use the -D (distributed) switch on the lvcreate command to do this very easily.&lt;BR /&gt;As well, you will need to set the -s g switch on the lvcreate command (pvg strict).  Before starting, setup two PVG's for the VG in the /etc/lvmpvg, say VG_primary and VG_mirror and you'll be able to do it with one command:&lt;BR /&gt;&lt;BR /&gt;lvcreate -l &amp;lt;# extents&amp;gt; -n &lt;LVNAME&gt; -D y -s g -m 1 /dev/vgxx&lt;/LVNAME&gt;</description>
      <pubDate>Fri, 25 Aug 2000 13:00:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirroring-and-striping/m-p/2439919#M656647</guid>
      <dc:creator>Vince Inman</dc:creator>
      <dc:date>2000-08-25T13:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: Disk Mirroring and Striping</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirroring-and-striping/m-p/2439920#M656648</link>
      <description>There is a big difference between block level striping ( -i &amp;amp; -I options ) and extent level striping ( -D option ) in terms of efficiency and throughput.  Block level is best, but the Mirrordisk product does not allow both block level striping and mirroring in the same volume.  If you are going to do extent level striping (still a good idea), it is best to have extents as small as possible.  The default LVM extent size is 4MB.  Reducing it to the smallest value (1MB) is best but there are limitations in the overall size of the volume group table which may prevent you from reducing the PE size this far if you are using large disks or you have many physical disks allocated for the group.  In any case, adjusting PE size can only be defined at the time of volume group creation, so you may need to rebuild the volume group first to achieve a smaller PE size.  The new raid controller sounds like a good option where it will probably allow for block level striping with the controller handling the actual mirroring at the hardware level.  I have not played with it, so I can't be sure.  But I wonder how this controller would fit into a shared machine environment.</description>
      <pubDate>Fri, 25 Aug 2000 13:50:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disk-mirroring-and-striping/m-p/2439920#M656648</guid>
      <dc:creator>Tim Malnati</dc:creator>
      <dc:date>2000-08-25T13:50:59Z</dc:date>
    </item>
  </channel>
</rss>

