- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- pvtimeout on 11.23 (ia-64)
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
09-25-2007 06:38 AM
09-25-2007 06:38 AM
We have an rx8640 connected to an EMC DMX-3. EMC has recently looked at our setup from a grab utility and is telling us to correct our pvtimeout and set it to a value of 90.
Our current pvtimeout is set to default as far as IO Seconds go. Could someone tell me what the default value of seconds equals on HP-UX 11.23 IA-64?
Thanks,
KPS
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2007 06:39 AM
09-25-2007 06:39 AM
Re: pvtimeout on 11.23 (ia-64)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2007 06:43 AM
09-25-2007 06:43 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2007 06:54 AM
09-25-2007 06:54 AM
Re: pvtimeout on 11.23 (ia-64)
# pvchange â t 90 /dev/dsk/cxtxdx ( either 90 or 180 is fine)
Also, On all the logical volumes make bad block re allocation to None.
# lvchange â r N /dev/vgxx/lvolxx ( Please not that the â -r â n â will turn it off but to make it NONE we have to use â r â Nâ !!)
Rgds / James
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2007 03:19 AM
09-26-2007 03:19 AM
Re: pvtimeout on 11.23 (ia-64)
However, if you have multiple paths to the DMX, either out separate host fibrechannel adapters, potentially going through separate fibrechannel fabrics to separate FA ports on the DMX, this will increase the amount of time before the host tries this alternate path.
So if the host does an I/O, and the DMX is not responding on the primary path for whatever reason (maintenance on the DMX, firmware upgrades, rolling resets through the fibre adapters, etc.), rather than waiting 30 seconds before it retries the I/O on the second path, it will wait 90 or 180 seconds. It's going to be up to you to know, as LVM forces the requesting application to wait for this I/O to complete - what is the behavior of the application? If it's a simple cp or tar command, then it will wait, and the activity will just take longer. However, there are many pieces of software that will not wait, and will start exhibiting problems.
If you have a database package, for example, which is configured to use asynchronous I/O, it could wake up and go - hmmm... 45 seconds since I asked for that piece of information from the disk, eh? Well, then, I'm going to fail that transaction back to the client.
Any disk subsystem that's going to take longer than 30 seconds to return an I/O may have profound effects on the 'upstream' applications passing on the request.
One thing the increased timeout value definitely WILL due is reduce the number of pvlink failover messages that you receive. If you know your apps can tolerate it, and you're interested in decreasing the frequency of the messages, then the increase will do that for you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2007 08:52 AM
09-26-2007 08:52 AM
Re: pvtimeout on 11.23 (ia-64)
-denver