<?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: OnlineJFS performance question... in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/onlinejfs-performance-question/m-p/2596870#M647875</link>
    <description>If you option A with multiple disks and striping (say extent) then option A could be made faster.  &lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;pvcreate -f /dev/rdsk/&lt;DISK1&gt;&lt;BR /&gt;pvcreate -f /dev/rdsk/&lt;DISK2&gt;&lt;BR /&gt;:&lt;BR /&gt;mkdir /dev/vg01&lt;BR /&gt;mknod /dev/vg01/group c 64 0x010000&lt;BR /&gt;vgcreate vg01 /dev/dsk/&lt;DISK1&gt; /dev/dsk/&lt;DISK2&gt;&lt;BR /&gt;lvcreate -l xxx -D y vg01&lt;BR /&gt;newfs -F vxfs /dev/vg01/rlvol1&lt;BR /&gt;mount /dev/vg01/lvol1 /mount&lt;BR /&gt;&lt;BR /&gt;You copuld get furthur performance increases if you put the disks on different SCSI controllers&lt;BR /&gt;&lt;BR /&gt;Tim&lt;/DISK2&gt;&lt;/DISK1&gt;&lt;/DISK2&gt;&lt;/DISK1&gt;</description>
    <pubDate>Thu, 18 Oct 2001 11:08:23 GMT</pubDate>
    <dc:creator>Tim D Fulford</dc:creator>
    <dc:date>2001-10-18T11:08:23Z</dc:date>
    <item>
      <title>OnlineJFS performance question...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/onlinejfs-performance-question/m-p/2596868#M647873</link>
      <description>We are using OnlineJFS to obtain greater performance from the file system.&lt;BR /&gt;&lt;BR /&gt;My question is this?&lt;BR /&gt;&lt;BR /&gt;Given a disk device (/dev/dsk/c4t0d0, for example), would using LVM to configure the disk incur a performance penalty over just using the device directly?&lt;BR /&gt;&lt;BR /&gt;I.e., which of the two configuration opgions below delivers higher performance?  Option A or B? (for comparison purposes, both options are using mincache=direct,convosync=direct to achieve "Direct I/O" per the OnlineJFS docs)&lt;BR /&gt;&lt;BR /&gt;Option A:&lt;BR /&gt;  pvcreate &lt;RDISK&gt;&lt;BR /&gt;  vgcreate vg01 &lt;DISK&gt;&lt;BR /&gt;  lvcreate -l xxx vg01&lt;BR /&gt;  newfs -F vxfs /dev/vg01/rlvol1&lt;BR /&gt;  mount /dev/vg01/lvol1 /drive&lt;BR /&gt;&lt;BR /&gt;Option B:&lt;BR /&gt;  newfs -F vxfs /dev/dsk/c4t0d0&lt;BR /&gt;  mount /dev/vg01/lvol1 /drive&lt;BR /&gt;&lt;BR /&gt;My initial thoughts are that Option B is faster because accesses to the disk don't have to go through the LVM subsystem, but go directly to the device.&lt;BR /&gt;&lt;BR /&gt;Thoughts?&lt;BR /&gt;&lt;/DISK&gt;&lt;/RDISK&gt;</description>
      <pubDate>Wed, 17 Oct 2001 20:26:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/onlinejfs-performance-question/m-p/2596868#M647873</guid>
      <dc:creator>Eric Ladner</dc:creator>
      <dc:date>2001-10-17T20:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: OnlineJFS performance question...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/onlinejfs-performance-question/m-p/2596869#M647874</link>
      <description>Hi Eric:&lt;BR /&gt;&lt;BR /&gt;Your analysis is correct but just barely so and only for single disks. The actual overhead associated with LVM raw lvols is very small. All that happens is that a request to character  to major device 64 minor device 0x020001  block 3457 for example simply does a table lookup to say that that is really character major device 188 minor 0x032000 block 239 (for example). This is a very fast lookup and happens many times faster than the actual disk i/o. &lt;BR /&gt;&lt;BR /&gt;If you then compare LVM raw/io where the lvol is stripped across multiple disks/controllers then LVM wins hands down. Given the ease of extending LVM lvols, stripping, and mirroring -this is really a no brainer - LVM.&lt;BR /&gt;&lt;BR /&gt;The analysis is identical with block i/o devices but since you mentioned the =direct vxfs options, I thought I would answer it as raw since that is what you are emulating.&lt;BR /&gt;&lt;BR /&gt;Also, you probably want to add nodatainlog,delaylog to your OnlineJFS mount options as well.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards, Clay</description>
      <pubDate>Wed, 17 Oct 2001 20:46:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/onlinejfs-performance-question/m-p/2596869#M647874</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-10-17T20:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: OnlineJFS performance question...</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/onlinejfs-performance-question/m-p/2596870#M647875</link>
      <description>If you option A with multiple disks and striping (say extent) then option A could be made faster.  &lt;BR /&gt;&lt;BR /&gt;e.g.&lt;BR /&gt;pvcreate -f /dev/rdsk/&lt;DISK1&gt;&lt;BR /&gt;pvcreate -f /dev/rdsk/&lt;DISK2&gt;&lt;BR /&gt;:&lt;BR /&gt;mkdir /dev/vg01&lt;BR /&gt;mknod /dev/vg01/group c 64 0x010000&lt;BR /&gt;vgcreate vg01 /dev/dsk/&lt;DISK1&gt; /dev/dsk/&lt;DISK2&gt;&lt;BR /&gt;lvcreate -l xxx -D y vg01&lt;BR /&gt;newfs -F vxfs /dev/vg01/rlvol1&lt;BR /&gt;mount /dev/vg01/lvol1 /mount&lt;BR /&gt;&lt;BR /&gt;You copuld get furthur performance increases if you put the disks on different SCSI controllers&lt;BR /&gt;&lt;BR /&gt;Tim&lt;/DISK2&gt;&lt;/DISK1&gt;&lt;/DISK2&gt;&lt;/DISK1&gt;</description>
      <pubDate>Thu, 18 Oct 2001 11:08:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/onlinejfs-performance-question/m-p/2596870#M647875</guid>
      <dc:creator>Tim D Fulford</dc:creator>
      <dc:date>2001-10-18T11:08:23Z</dc:date>
    </item>
  </channel>
</rss>

