NFS Performance Issue

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat NFS Performance Issue
# 1  
Old 02-17-2013
NFS Performance Issue

Hi,
I have a conflict.
I have 2 servers: the 1st creates an application logs and the 2nd is an empty server.

I want to export (read-only) from the 1st server by NFS the directory that contains the logs to the 2nd server.

Now, the question is:
If in the 2nd server i'm doing a lot of manipulates and reads of the logs (in the NFS from the 1st server), from which server is it takes the massive resources? (CPU, RAM)

thank you all!
# 2  
Old 02-17-2013
On both NFS server and NFS client the NFS activity will take less resources than a native GUI application (say Firefox).
# 3  
Old 02-18-2013
Is that possible to limit the requests from the NFS client?
I don't want the client will influence on the performance of the NFS server.

I read about the mount flag of 'rsize' but i don't have an experience with this flag.

thanks.
# 4  
Old 02-18-2013
By reducing rsize (and wsize) (e.g. rsize=8192) in the mount option you can reduce the read (and write) speed of the NFS client. This will also reduce the disk I/O load on the NFS server. The I/O-bound CPU load will decrease a little, too.
nfsstat -m shows you the parameters of existing mounts.
The NFS mount options are described in the man pages: man nfs or man mount_nfs
In general, the effect is low. I would start with the default mount options.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Performance issue

Hi We have an AIX5.3 server with application which is written in C. We are facing server (lpar) hangs intermediately. If we open new telnet window prompts for user and takes hell of a time to authenticate, not only that if we run ps -aef then also it takes lot of time. surprisingly there is no... (2 Replies)
Discussion started by: powerAIX
2 Replies

2. AIX

Performance issue

Hi, We have 2 lpars on p6 blade. One of the lpar is having 3 core cpu with 5gb memory running sybase as database. An EOD process takes 25 min. to complete. Now we have an lpar on P7 server with entitled cpu capacity of 2 with 16 Gb memory and sybase as database. The EOD process which takes... (17 Replies)
Discussion started by: vjm
17 Replies

3. Shell Programming and Scripting

Performance issue or something else?

Hi All, I have the following script which I use in Nagios to check the health of the applications, the problem with it is that the curl part ($TOTAL) does not return anything after running for 2-3 hrs, even though from command line the script runs fine but not from Nagios. There are 17... (1 Reply)
Discussion started by: jacki
1 Replies

4. Solaris

Performance issue

Hi Gurus, I am beginner in solaris and want to know what are the things we need to check for performance monitoring on our solairs OS. for DISK,CPU and MEMORY. Also how we do ipforwarding in slaris Many thanks for your help Pradeep P (4 Replies)
Discussion started by: ppandey21
4 Replies

5. Programming

performance of mmap() against NFS

Hi all. I got a performance related problem that bothers me a lot. we have two computer nodes(svr1 & svr2), and svr1 has mysql 4.1.20 installed as well as nfs, and svr2 can mount disk from svr2, so we can make it possible to share files between them... the data files we'll deal with can... (6 Replies)
Discussion started by: blf0
6 Replies

6. UNIX for Advanced & Expert Users

Performance issue!

In my C program i am using very large file(approx 400MB) to read parts of it frequently. But due to large file the performance of the program goes down very badly. It shows very high I/O usage and I/O wait time. My question is, What are the ways to optimize or tune I/O on linux or how i can get... (10 Replies)
Discussion started by: mavens
10 Replies

7. Filesystems, Disks and Memory

NFS performance

Hi, In our environment (HP-UX B.11.11) we mainly use NFS v3 resources as the storage solution for our application. It worked fine, however we have recently noticed big I/O performance degradation that affected the application. Is there any command or utility that can help us measure I/O... (2 Replies)
Discussion started by: piooooter
2 Replies

8. AIX

performance issue

We have a AIX v5.3 on a p5 system with a poor performing Ingres database. We added one CPU to the system to see if this would help. Now there are two CPU's. with sar and topas -P I see good results: CPU usage around 30% with topas I only see good results in the process output screen, the... (1 Reply)
Discussion started by: rein
1 Replies

9. Red Hat

NFS performance stats on Linux

Hi everyone, The last two days I'm researching results of NFS operations on Linux, and I noticed some time difference when read and write. cat /proc/version : Linux version 2.6.9-42.ELsmp (bhcompile@hs20-bc1-1.build.redhat.com) (gcc version 3.4.6 20060404 (Red Hat 3.4.6-2)) #1 SMP Wed Jul 12... (1 Reply)
Discussion started by: sysgate
1 Replies

10. UNIX for Advanced & Expert Users

Performance issue

Hello all, I just stuck up in an uncertain situation related to network performance... I am trying to access one of my remote client unix machine from a distant location.. The client machine is Ultra-5_10 , with SunOS 5.5.1 The ndd result ( hme1 )shows that the machine is hooked to a... (5 Replies)
Discussion started by: shibz
5 Replies
Login or Register to Ask a Question