- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- vxfs os buffering cache
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
07-19-2007 02:39 AM
07-19-2007 02:39 AM
Hello
How can i modify a filesystem so it uses database buffer cache rather than OS buffer cache?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2007 02:45 AM
07-19-2007 02:45 AM
Re: vxfs os buffering cache
mincache=direct,convosync=direct,nodatainlog,delaylog
Man mount_vxfs for details.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2007 02:46 AM
07-19-2007 02:46 AM
Re: vxfs os buffering cache
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2007 02:48 AM
07-19-2007 02:48 AM
Re: vxfs os buffering cache
~hope it helps
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2007 02:48 AM
07-19-2007 02:48 AM
Re: vxfs os buffering cache
Mount your VxFS filesystem with:
# mincache=direct,convosync=direct
You need OnlineJFS for this to work, but you *should* have that for a multitude of reasons.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2007 03:22 AM
07-19-2007 03:22 AM
Re: vxfs os buffering cache
Thanks for your quick reply, i have online jfs and the database filesystems are mounted as:
vxfs delaylog,largefiles 0 2
what are the correct steps to modify parameters to:
vxfsdelaylog,nodatainlog,largefiles,mincache=direct,convosync=direct 0 2
??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2007 03:34 AM
07-19-2007 03:34 AM
Solutione.g.
umount /oradata/ora1
umount /oradata/ora2
Edit /etc/fstab to include your new mount options.
mount /oradata/ora1
mount /oradata/ora2
Restart the database.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-19-2007 09:35 PM
07-19-2007 09:35 PM
Re: vxfs os buffering cache
Thanks for your help!