<?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: Difference between HFS vs. VxFS in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-hfs-vs-vxfs/m-p/2544794#M649221</link>
    <description>Hi, there are a number of reasons why you would want to use vxfs as opposed to hfs.  Vxfs writes all transactions to a log and then flushes them to disk at intervals.  If there is a crash you only have to replay the log, fsck does this for you, to return the filesystem to a stable state.  If you have a large hfs file system it can take hours to repair it.  &lt;BR /&gt;&lt;BR /&gt;Also, vxfs allocates inodes on the fly whereas hfs has a fixed number of inodes.  If you run out of indes you have to rebuild the file system and specify more inodes.&lt;BR /&gt;&lt;BR /&gt;See: &lt;A href="http://docs.hp.com/hpux/onlinedocs/B2355-90672/B2355-90672.html" target="_blank"&gt;http://docs.hp.com/hpux/onlinedocs/B2355-90672/B2355-90672.html&lt;/A&gt; for more information.  Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Rob&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 25 Jun 2001 17:39:01 GMT</pubDate>
    <dc:creator>Rob Smith</dc:creator>
    <dc:date>2001-06-25T17:39:01Z</dc:date>
    <item>
      <title>Difference between HFS vs. VxFS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-hfs-vs-vxfs/m-p/2544793#M649220</link>
      <description>I understand that the difference between HFS and VxFS filesystems is that HFS is non-journaled, and VxFS is journaled.  &lt;BR /&gt;&lt;BR /&gt;What does that really mean?  Is there any reason why you wouldn't want to create a new filesystem as VxFS under HP-UX 11.0 for use for a database application?</description>
      <pubDate>Mon, 25 Jun 2001 17:26:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-hfs-vs-vxfs/m-p/2544793#M649220</guid>
      <dc:creator>Debbie Fleith</dc:creator>
      <dc:date>2001-06-25T17:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between HFS vs. VxFS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-hfs-vs-vxfs/m-p/2544794#M649221</link>
      <description>Hi, there are a number of reasons why you would want to use vxfs as opposed to hfs.  Vxfs writes all transactions to a log and then flushes them to disk at intervals.  If there is a crash you only have to replay the log, fsck does this for you, to return the filesystem to a stable state.  If you have a large hfs file system it can take hours to repair it.  &lt;BR /&gt;&lt;BR /&gt;Also, vxfs allocates inodes on the fly whereas hfs has a fixed number of inodes.  If you run out of indes you have to rebuild the file system and specify more inodes.&lt;BR /&gt;&lt;BR /&gt;See: &lt;A href="http://docs.hp.com/hpux/onlinedocs/B2355-90672/B2355-90672.html" target="_blank"&gt;http://docs.hp.com/hpux/onlinedocs/B2355-90672/B2355-90672.html&lt;/A&gt; for more information.  Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Rob&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Jun 2001 17:39:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-hfs-vs-vxfs/m-p/2544794#M649221</guid>
      <dc:creator>Rob Smith</dc:creator>
      <dc:date>2001-06-25T17:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between HFS vs. VxFS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-hfs-vs-vxfs/m-p/2544795#M649222</link>
      <description>Hi Debbie:&lt;BR /&gt;&lt;BR /&gt;"Journaled File Systems" ('JFS', a.k.a. 'vxfs') are the standard type with 11.0.  JFS filesytstems can be extended or shrunk dynamically without having to unmount them (with the Online-JFS component).  JFS filesystems also provide a variety of mount options which when used appropriately can boost filesystem performance (see: 'man 1m mount_vxfs').&lt;BR /&gt;&lt;BR /&gt;Following a crash, the time to verify the integrity of a filesystem (and to repair it) is greatly reduced for JFS ones over the older HFS filesystem.  This is because JFS filesystems keep an "intent log" for replaying the changes made to a filesystem.  Thus the entire structure doesn't need to be verified and/or repaired.&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 25 Jun 2001 17:49:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-hfs-vs-vxfs/m-p/2544795#M649222</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2001-06-25T17:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between HFS vs. VxFS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-hfs-vs-vxfs/m-p/2544796#M649223</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;One great feature of VxFS is the OnlineJFS product.  It is a separately licensed product, but I don't think I could live without it.&lt;BR /&gt;&lt;BR /&gt;OnlineJFS lets you do things such as resize filesystems while mounted.  You can also defrag a FS.  I would consider it a must for a production database environment that requires significant uptime.&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;&lt;BR /&gt;Jared</description>
      <pubDate>Mon, 25 Jun 2001 17:50:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-hfs-vs-vxfs/m-p/2544796#M649223</guid>
      <dc:creator>Jared Westgate_1</dc:creator>
      <dc:date>2001-06-25T17:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Difference between HFS vs. VxFS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-hfs-vs-vxfs/m-p/2544797#M649224</link>
      <description>Hi Debbie,&lt;BR /&gt;&lt;BR /&gt;If you are using OnlineJFS for databases you have another option which will result in a noticeable performance increase (I've observed 18%):&lt;BR /&gt;&lt;BR /&gt;use the vxfs -o convosync=direct,mincache=direct,nodatainlog mount options. &lt;BR /&gt;&lt;BR /&gt;Use these for the data and indexes and the normal options for archive/redo logs. The above options bypass the unix file buffers and only use the buffers in the SGA. This gives you all the performance on raw disk while still using conventional cooked files. This also means that you can reduce the unix buffer size and increase the SGA size.&lt;BR /&gt;&lt;BR /&gt;Regards, Clay</description>
      <pubDate>Mon, 25 Jun 2001 18:08:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/difference-between-hfs-vs-vxfs/m-p/2544797#M649224</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-06-25T18:08:01Z</dc:date>
    </item>
  </channel>
</rss>

