- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- VxFS Performance Question
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-11-2001 06:52 AM
07-11-2001 06:52 AM
VxFS Performance Question
I am at a customer site they are currently running VxFS on a 0+1 software strip. We are getting a very heavy lag time from the time Oracle sends the write request to the time the disks are acutally written to.
The disks are hitting about 15-30%, while the sys on the CPU is increase between 30-50%. I am thinking the request is getting lost in the buffer cache or the RAID management.
I am looking at setting the mincache and convosync to direct according to the man pages and some documentation I have found.
The SA at the customer site said that this was not available for the version on VxFS we have. What version do we need to be on, and why are they listed in the man pages?
They are running V10.20 on a T600.
Thanks,
Bryan Lenihan
Oracle Certified Professional
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2001 06:58 AM
07-11-2001 06:58 AM
Re: VxFS Performance Question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2001 07:01 AM
07-11-2001 07:01 AM
Re: VxFS Performance Question
The options you want require Online JFS. Sorry.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2001 07:24 AM
07-11-2001 07:24 AM
Re: VxFS Performance Question
You need B3929BA OnlineJFS (or Advanced VxFS).
I would also add the nodatainlog mount option.
One way that you could test if that is the problem is to go to raw i/o. It's really not as bad as it sounds. All you really need to do
is set up a logical volume that is as big (plus a bit more) as you current data file.
You then copy via dd from the current data file to the rlvol partition. Lastly you symbolically link the data file to the rlvol partition. All of this done with the database down, of course.
e.g. ln -s /dev/vg05/rlvol1 /u01/data/oradata/data01.dbf
You could do this for 1 or two of the 'hot' data files to see if the situation improves. If so, order and install OnlineJFS and you get almost all the benefits of raw i/o with the convenience of cooked files. To take full advantage of the raw/Online JFS i/o you should reduce the unix buffers and increase the SGA buffering.
Food for thought, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2001 11:42 AM
07-11-2001 11:42 AM
Re: VxFS Performance Question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2001 12:09 PM
07-11-2001 12:09 PM
Re: VxFS Performance Question
Actually, raw i/o and asynch i/o are two very different issues. Raw i/o does not compromise integrity in any way and it actually enhances it because a write to raw disk goes to the disk before returning to the process while a write to a 'cooked' file merely goes to the unix buffers before returning. The major reason to use raw i/o is speed but managing and monitoring raw i/o is a pain. The best of both worlds is OnlineJFS.
Clay