- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- NFS Performance
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
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
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
тАО10-17-2002 04:59 AM
тАО10-17-2002 04:59 AM
NFS Performance
My view is the impact is minimal since the link redirection is only done when the file is opened.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2002 05:03 AM
тАО10-17-2002 05:03 AM
Re: NFS Performance
It depend upon how much data is being logged, but what would happen if you went for the NFS option and the remote server died.
I would tend to log locally and ftp the file via a cron job to the remote.
Paula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2002 05:06 AM
тАО10-17-2002 05:06 AM
Re: NFS Performance
If your writing large amounts of Data, keep it local. If it's output from accounting scripts, etc.. that dont frequently write than no impact at all.
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2002 05:08 AM
тАО10-17-2002 05:08 AM
Re: NFS Performance
Also, in this case the logfile is opened and remains open for the duration that the process is running ( Tuxedo ).
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2002 05:12 AM
тАО10-17-2002 05:12 AM
Re: NFS Performance
2) I'm not concerned about the NFS server going away, we use ServiceGuard and if that happends I have much bigger problems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2002 05:53 AM
тАО10-17-2002 05:53 AM
Re: NFS Performance
Also, to see how much overhead NFS has on your system.
Run Glance and type n - this will show you how much traffic NFS is causing.
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2002 06:18 AM
тАО10-17-2002 06:18 AM
Re: NFS Performance
If I read your correctly you are asking what the possible issues are if you log to a file on the local system, but are referencing that file on an NFS mount. And the nfs mount simply is a link to the local file system?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2002 06:19 AM
тАО10-17-2002 06:19 AM
Re: NFS Performance
Or does NFS only get hit on the open, and after that all data goes directly to the local disk?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2002 07:39 AM
тАО10-17-2002 07:39 AM
Re: NFS Performance
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-17-2002 07:57 AM
тАО10-17-2002 07:57 AM
Re: NFS Performance
You are correct. An NFS sym link is just a name. When the OS encounters a sym link, it merely changes the file to be opened to the referenced file.
So, when you open() the sym link name (on NFS or not), it only retrieves the filename that the sym link points to, then that (pointed to) file is opened.
You will cause no more NFS traffic other than the original directory lookup.