<?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: HPUX 11i Raid 5 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068554#M438341</link>
    <description>Don't know what a "1200 Disk bay" is, but you may consider to use a hardware RAID controller.</description>
    <pubDate>Wed, 12 Sep 2007 13:46:21 GMT</pubDate>
    <dc:creator>Torsten.</dc:creator>
    <dc:date>2007-09-12T13:46:21Z</dc:date>
    <item>
      <title>HPUX 11i Raid 5</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068547#M438334</link>
      <description>I have four 35 GB disks in one disk bay.&lt;BR /&gt;&lt;BR /&gt;HPUX 11i V1 - with HPUX Mirror app Installed.&lt;BR /&gt;&lt;BR /&gt;How can I set them up in RAID5 ?</description>
      <pubDate>Wed, 12 Sep 2007 10:20:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068547#M438334</guid>
      <dc:creator>Douglass Anderson</dc:creator>
      <dc:date>2007-09-12T10:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11i Raid 5</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068548#M438335</link>
      <description>You can't.  MirrorDisk only mirrors (i.e. RAID 1) in software.</description>
      <pubDate>Wed, 12 Sep 2007 10:22:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068548#M438335</guid>
      <dc:creator>Tom Danzig</dc:creator>
      <dc:date>2007-09-12T10:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11i Raid 5</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068549#M438336</link>
      <description>You can't.&lt;BR /&gt;&lt;BR /&gt;The MirrorDisk/UX software allows you to mirror (Raid 1) only.  There is no software support for RAID 5 with HP-UX LVM.&lt;BR /&gt;&lt;BR /&gt;I **THINK** that you can do software raid 5 if you convert to the full version of Veritas Volume Manager (VXVM) software.  I'm not completely certain though.</description>
      <pubDate>Wed, 12 Sep 2007 10:22:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068549#M438336</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2007-09-12T10:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11i Raid 5</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068550#M438337</link>
      <description>RAID 5 is only useful when it is run by a dedicated controller. If you buy the Advanced VxVM (Veritas Volume Manager), you can setup RAID 5 but be aware that like any RAID 5 arrangement, there is a *LOT* of CPU required to spread the bytes across multiple disks and to compute associated parity codes. You will have significantly lower performance with RAID 5 running inside HP-UX compared to RAID 1 (simple mirroring). Also, it will be tough to setup RAID 5 with just 4 disks. The minimum (not recommended though) is 3 disks with 5 disks being the most common method.</description>
      <pubDate>Wed, 12 Sep 2007 11:13:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068550#M438337</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2007-09-12T11:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11i Raid 5</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068551#M438338</link>
      <description>Are those disk in a bay directly connected to an HBA on the system (local disks) or through an intermediate controller (EVA, Smartarray, EMC,..)?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I'll assume, with the other readers, that it is directly connected and then the answer would be NO.&lt;BR /&gt;&lt;BR /&gt;To expand a little on Bill's reply:&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; RAID 5 is only useful when it is run by a dedicated controller. &lt;BR /&gt;&lt;BR /&gt;Because it really needs a battery backed-up write-back cache to get decend performance&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; If you buy the Advanced VxVM (Veritas Volume Manager), you can setup RAID 5 but be aware that like any RAID 5 arrangement, there is a *LOT* of CPU required to spread the bytes across multiple disks and to compute associated parity codes. &lt;BR /&gt;&lt;BR /&gt;I would worry more about the IO required than the CPU needed, but the end result is the same: Too costly. For every write to a raid-5 disk the system needs to 1) read-old-data (probably already in cache) 2) read-old-parity 3) write new-data 4) write new parity. 1 IO turns into 4, and the read-old-parity is likely to be a non-cached, slow IO.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; it will be tough to setup RAID 5 with just 4 disks. The minimum (not recommended though) is 3 disks with 5 disks being the most common method.&lt;BR /&gt;&lt;BR /&gt;With 4 drive raid 5 you get 3 drives worth of data and a lot of hassle (hassell?).&lt;BR /&gt;Change to raid-1 and performance get's better and you still have 2 out of 4 drivers for data. 50% less, bit not too bad perhaps.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;fwiw,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Sep 2007 12:13:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068551#M438338</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2007-09-12T12:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11i Raid 5</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068552#M438339</link>
      <description>it is attache through a 1200 Disk bay.</description>
      <pubDate>Wed, 12 Sep 2007 12:36:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068552#M438339</guid>
      <dc:creator>Douglass Anderson</dc:creator>
      <dc:date>2007-09-12T12:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11i Raid 5</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068553#M438340</link>
      <description>it is attached SCSI through a 1200 Disk bay.</description>
      <pubDate>Wed, 12 Sep 2007 12:37:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068553#M438340</guid>
      <dc:creator>Douglass Anderson</dc:creator>
      <dc:date>2007-09-12T12:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11i Raid 5</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068554#M438341</link>
      <description>Don't know what a "1200 Disk bay" is, but you may consider to use a hardware RAID controller.</description>
      <pubDate>Wed, 12 Sep 2007 13:46:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068554#M438341</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2007-09-12T13:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: HPUX 11i Raid 5</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068555#M438342</link>
      <description>disk bat 2100 does support Raid Controller.  I will check with HP on ordering one.</description>
      <pubDate>Thu, 13 Sep 2007 09:32:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/hpux-11i-raid-5/m-p/5068555#M438342</guid>
      <dc:creator>Douglass Anderson</dc:creator>
      <dc:date>2007-09-13T09:32:45Z</dc:date>
    </item>
  </channel>
</rss>

