[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [Linux-cluster] GFS: fh2dentry misses
- From: Wendy Cheng <wcheng redhat com>
- To: linux clustering <linux-cluster redhat com>
- Subject: Re: [Linux-cluster] GFS: fh2dentry misses
- Date: Wed, 25 Apr 2007 15:33:22 -0400
Chad Slater wrote:
While troubleshooting some GFS performance issues, I came across this
when viewing the counters:
fh2dentry misses 292928
What is fh2dentry misses?
This symbol name is kind of mis-leading. It is actually a counter of
"inode miss". With Linux NFS implementation, each nfs file handle has
file inode embedded in it. When client sends file handle to the server,
nfsd passes the file handle to GFS (or any filesystem). GFS will check
to see whether the subject inode is still in the memory cache. If not,
it increments this counter and re-do lookup. As any filesystem, lookup
is normally expensive since it involves disk read. The more cache
misses, the slower your performance will be.
-- Wendy
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]