- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- mincache vs. convosync
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
Discussions
Discussions
Discussions
Forums
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
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
тАО05-03-2007 10:10 AM
тАО05-03-2007 10:10 AM
Thanks for any clarification!!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-03-2007 10:18 AM
тАО05-03-2007 10:18 AM
Re: mincache vs. convosync
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-03-2007 11:23 AM
тАО05-03-2007 11:23 AM
SolutionOn 11.11 and up, I typically see better performance with simply nodatainlog and let the buffer cache do its job, even with large DB SGA's, and large array caches --- assumming your box has plenty of memory and CPU.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-08-2007 08:31 AM
тАО05-08-2007 08:31 AM
Re: mincache vs. convosync
nodatainlog
The nodatainlog mode should be used on systems with disks that do not
support bad block revectoring. Normally, a VxFS file system uses the
intent log for synchronous writes. The inode update and the data are
both logged in the transaction, so a synchronous write only requires one
disk write instead of two. When the synchronous write returns to the
application, the file system has told the application that the data is
already written. If a disk error causes the data update to fail, then the
file must be marked bad and the entire file is lost.
If a disk supports bad block revectoring, then a failure on the data
update is unlikely, so logging synchronous writes should be allowed. If
the disk does not support bad block revectoring, then a failure is more
likely, so the nodatainlog mode should be used.
A nodatainlog mode file system should be approximately 50 percent
slower than a standard mode VxFS file system for synchronous writes.
Other operations are not affected
Our current mount points on this server are mounted as follows: (we have datainlog)
/dev/vg0x/lvol1 /u0x vxfs rw,suid,largefiles,mincache=direct,delaylog,datainlog 0 2
System has 32GB memory and 16x875 PA-Risc processors.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-08-2007 08:38 AM
тАО05-08-2007 08:38 AM
Re: mincache vs. convosync
SEP already answered this:
> On 11.11 and up, I typically see better performance with simply nodatainlog
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-08-2007 08:44 AM
тАО05-08-2007 08:44 AM
Re: mincache vs. convosync
http://h21007.www2.hp.com/dspp/files/unprotected/devresource/Docs/TechPapers/UXPerfCookBook.pdf
In any event, the real way to test this is to vary the mount options and get some metrics because that will tell you what are the optimum settings for your environment.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-08-2007 08:44 AM
тАО05-08-2007 08:44 AM
Re: mincache vs. convosync
"A nodatainlog mode file system should be approximately 50 percent slower than a standard mode VxFS file system for synchronous writes. Other operations are not affected"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-08-2007 08:47 AM
тАО05-08-2007 08:47 AM
Re: mincache vs. convosync
THanks, again.