Peter Staubach wrote: > Chuck Lever wrote: >> For the record, one downside to using automounter is the mount storm >> that is caused when a distributed application starts up on multiple >> clients requiring many NFS mount points on each client. This is one >> reason some sites choose not to use automounter. "bg"s retry >> behavior, though a kludge, is somewhat more friendly. > > If the application on each client is going to need many mount > points, then how does "bg" do anything but increase the number > of concurrent mount requests coming from each client, thus > increasing the load? "bg" has an exponential backoff, so the load increase isn't terribly bothersome. It's the "bg" recovery mechanism that's useful here for getting all the mount requests to be successful in a nondeterministic environment. I'm not arguing against automounter here; I'm just presenting a typical use case that is common enough for us to pay some heed. >> From my experience, generally mountd (on most any server >> implementation) has been a scalability problem in these scenarios. It >> can't handle more than a few requests per second. > > Perhaps we need to look at multithreading mountd? Ala Solaris? Yes, although I was thinking of ways to make the client side more friendly, say, by serializing mount requests to the same server, since we don't have any influence on the scalability of mountd in non-Linux NFS implementations.