1822494 Members
2543 Online
109642 Solutions
New Discussion юеВ

filesystem

 
SOLVED
Go to solution
sanmukh
Occasional Contributor

filesystem

what is main difference between HFS and VXFS filesystem?
4 REPLIES 4
Mridul Shrivastava
Honored Contributor
Solution

Re: filesystem

High-Performance File System (HFS)

HFS represents HP-UX├в s standard implementation of the UNIX File System (UFS). HFS file systems reside on mass storage devices, usually hard disk drives. Prior to HP-UX Release 10.01 this was HP├в s only disk-based file system. HP├в s long term strategy is for JFS to become the default and for HFS to continue to exist for compatibility.

Journaled File Systems (JFS)

The HP-UX Journaled File System, also known as Veritas File System (VxFS), is an extent-based journaling file system which offers fast file system recovery and on-line features such as on-line backup, on-line resizing and on-line reorganization. An intent log contains recent file system data structure updates. After a failure the system checks the intent log and
performs the required rollback or roll forward.

There are two JFS products, base and online. The base JFS file system has the fast recovery feature and is included in all 10.01 and later systems. Online JFS, also referred to as Advanced VxFS is an optional product that adds extensions to JFS. It offers these additional capabilities:
├в ┬в online defragmentation and reorganization
├в ┬в online expansion and contraction of file system size
├в ┬в online backup
Time has a wonderful way of weeding out the trivial
Steven E. Protter
Exalted Contributor

Re: filesystem

Shalom,

HFS is required to boot systems HP-UX 11.11 and before. It used to be the standard.

vxfs is licensed from Veritas, and is a journaling filesystem. It handles sudden problems and errors in a very robust way. Its very hard to lose data on such a filesystem so long as the underlying disk is good.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
A. Clay Stephenson
Acclaimed Contributor

Re: filesystem

HFS is essentiqally the same as the old Berkeley ufs filesystem --- and while it was a huge improvement over the old System V filesystem, it is still block-based and offers poorer performance than the Veritas filesystem. The "main" difference is that the hfs filesystem is block-based whereas the vxfs filesystem is extent-based. This means that the vxfs filesystem always tries to write in large chunks (extents) and that block size has no bearing upon performance (unlike the impact of block size in hfs/ufs filesystems).
If it ain't broke, I can fix that.
sanmukh
Occasional Contributor

Re: filesystem

I m closing this thread.