(via billharlan.com)
Here are notes I've found useful for configuring reliable shared disk on a linux cluster...
NFS for clusters
Submitted by sandip on Mon, 10/01/2012 - 10:58
(via billharlan.com) Here are notes I've found useful for configuring reliable shared disk on a linux cluster... |
See AlsoUser loginRecent blog posts
Who's onlineThere are currently 0 users and 4 guests online.
|
Optimizing NFS Performance
Optimizing NFS Performance
tuning nfs I/O
While tuning nfs mount options, you can check on the transfer speeds doing simultaneous writes via:
for x in {1..10}; do echo "dd if=/dev/zero of=del.me${x} bs=64k count=1000" ; done | xargs -n5 -P10 time
Run the command from the client, where nfs is mounted.
tuning nfs server threads
Of specific interest was the nfs server threads which can be monitored with:
watch -d "grep '^th' /proc/net/rpc/nfsd"