- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- filesystem sizes
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2007 02:59 AM
01-26-2007 02:59 AM
What is the advantage/disadvantage of making the filesystem larger/smaller? Are there any documents available on this subject? We are currently running 11.23, rp8420
Thanks
Raji
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2007 03:12 AM
01-26-2007 03:12 AM
Re: filesystem sizes
increased in size later because they must be contiguously allocated. /stand are /root are the obvious examples for this constraint. In those cases, anything over 2X the minimum size is overkill --- and these are normally small filesystems anyway. From a performance perspective there is no disadvantage to a large vxfs filesystem --- as long as large means lots of capacity rather than lots of files in a few directories. The biggest performance hits are going to occur when someone uses a filesystem tree as a substitute for a database rather than a dedicated database. If you have to look for specific files among hundreds of thousands of entries there is a performance penalty to be paid. The other consideration is that normally it is better to spread i/o over as many separate data paths as possible but with moderm cache-centric Fibre-connected arrays even this is not a terribly important point.
If you have OnlineJFS (and you should) then it's so easy to resize filesystems later (other than those which must be contiguously allocated) that it is really not worth worrying about.
Now, if you can ask a more focused question then perhaps a more focused answer is possible.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2007 03:28 AM
01-26-2007 03:28 AM
Re: filesystem sizes
The more focused question is:
We have RAID 1/0 SAN disks allocated to the Oracle database servers. The allocated disk space is about 90GB with one volume group for oracle databse files.
Are there any advantage of splitting the database files across several small mount points versus creating one filesystem with 90GB?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2007 04:04 AM
01-26-2007 04:04 AM
SolutionYou might want to create separate LVs and mountpoints to provide disaster isolation. For example, suppose you have two datafile mountpoints, /u01 and /u02, and that the Oracle RDBMS is shutdown.
# rm -rf /u01
Now everything in /u01 is gone, but /u02 is unaffected. Admittedly, this is a contrived example, but it does illustrate the principle.
Personally, I would split the 90GB into a few LVs, but leaving it whole would also be fine.
PCS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2007 04:10 AM
01-26-2007 04:10 AM
Re: filesystem sizes
It never hurts to divide the i/o into as many LUN's as you have separate data paths for but nowadays that tends to make very little difference.
One dubious advantage of many LUN's is that it makes performance APPEAR better to host-based performance tools like Glance. With only a 1 or 2 LUN's, all Glance can know is that a herd of i/o is going through what it sees as one physical disk -- nevermind that this one "disk" is actually composed of 10 physical disks within the array.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2007 04:14 AM
01-26-2007 04:14 AM
Re: filesystem sizes
> Are there any advantage of splitting the database files across several small mount points versus creating one filesystem with 90GB?
Yes, absolutely there is an advantage to doing this. Large or small filesystems aside, using separate filesystems (mountpoints) enable you to leverage JFS (VxFS) mount options to optimize performance (buffer caching or not)! See the manpages for 'mount_vxfs' for more information along with this whitepaper:
http://docs.hp.com/en/5576/JFS_Tuning.pdf
Regards!
...JRF...