Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Forums
Discussions
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-18-2000 02:37 AM
10-18-2000 02:37 AM
NFS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2000 03:43 AM
10-18-2000 03:43 AM
Re: NFS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2000 03:46 AM
10-18-2000 03:46 AM
Re: NFS
Without more information about your particular environment the standard answer would have to be that there must be some WAN links involved over a distance of 200 miles and that the performance of NFS over this distance will be impacted most by the slowest WAN link in place betweens the sites involved. Traffic prioritisation may be a factor as well, i.e. routers may have been configured to place a lower priority on NFS traffic in relation to more interactive or OLTP related traffic, eg telnet etc.
Maybe NFS is not the best method for achieving you data transfer requirements.
Regards, Trevor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2000 04:03 AM
10-18-2000 04:03 AM
Re: NFS
client-server ratio, has it increased recently
what the shared apps are
what the nfs server spec is and what else is it doing
what is the network link load/reliability
If the problem is due to distance it might be due to the NFS process. The client has to ask the server what port mountd is running on it reponds; client then asks mountd for the filehandle for a specific file you've requested; server responds; then with this filehandle the client asks the portmapper what nfsd to use; server responds; client then queries the nfsd with the filehandle and it provides a filehandle for the desired object. Although the whole process isn't repeated every time, the stateless nature of NFS means a fair amount of network traffic which is obviously exacerbated by the distance in your scenario.
You could upgrade your NFS server
Create an aditional server to balance out the load
Add more NFS daemons (nfsd) on the server
Monitor it with nfsstat, especially look at the write rates. Other fields to watch are:
badcalls
nullrecv
badlen
retrans
badxid
timeout
A nonzero in any of these fields could mean trouble.
Hope this helps, Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2000 04:11 AM
10-18-2000 04:11 AM
Re: NFS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2000 11:26 AM
10-18-2000 11:26 AM
Re: NFS
/usr/share/doc/RelNotesNFS_TCP.txt for more information.
Darren