On Thu, Jan 21, 2021 at 07:50:41PM +0000, Chuck Lever wrote: > I worked with the IETF's nfsv4 WG a couple years ago to produce > a document that describes how we want NFS servers to advertise > their network configuration to clients. > > https://datatracker.ietf.org/doc/rfc8587/ > > That gives a flavor for what we've done for NFSv4. IMO anything > done for NFSv3 ought to leverage similar principles and tactics. Thanks for the pointer - I'll read and take it into consideration. > > we can achieve load > > balancing and much greater throughput, especially on RDMA setups, > > even with the older NFSv3 protocol. > > I support the basic goal of increasing transport parallelism. > > As you probably became aware as you worked on these patches, the > Linux client shares one or a small set of connections across all > mount points of the same server. So a mount option that adds this > kind of control is going to be awkward. I tend to agree, from a developer perspective, but just to give an idea that from an admin POV it is often is not immediately apparent that this is what happens behind the scenes (i.e. the `nfs_match_client` function), so in our case the users have not reported back that our addition to the mount parameters looked weird, considering it as naturally extending nconnect, which I think falls under similar considerations - giving deeper details regarding how transports should behave during the mount command and not afterwards, regarding what actual NFS sessions are established. Surely there may be better ways to do this, following from what's discussed next. > Anna has proposed a /sys API that would enable this information to > be programmed into the kernel for all mount points sharing the > same set of connections. That would be a little nicer for building > separate administrator tools against, or even for providing an > automation mechanism (like an orchestrator) that would enable > clients to automatically fail over to a different server interface. > > IMO I'd prefer to see a user space policy / tool that manages > endpoint lists and passes them to the kernel client dynamically > via Anna's API instead of adding one or more mount options, which > would be fixed for the life of the mount and shared with other > mount points that use the same transports to communicate with > the NFS server. I see now that these are fairly recent patches that I've unfortunately missed while working on other things. If this is the intended API to help manage active NFS sessions, I would very much like to help on testing and extending this code. So a good way to go with this would be to look into supporting an 'add transport' op by extending on the new interface, and for optionally specifying local address bind similarly to the work I've done for the mount options. I'll also be glad to contribute to nfs-utils so that we'd have the anticipated userspace tool, maybe 'nfs' (like `/sbin/ip` from iproute), that can executed for this purpose, e.g. 'nfs transport add <IP> mnt <PATH>'. Also, from a lower level API perspective, we would need a way to figure out client ID from a mount point, so that ID can be used at the relevant sysfs directory. Perhaps this can be done via a new ioctl on the mount point itself? > As far as the NUMA affinity issues go, in the past I've attempted > to provide some degree of CPU affinity between RPC Call and Reply > handling only to find that it reduced performance unacceptably. > Perhaps something that is node-aware or LLC-aware would be better > than CPU affinity, and I'm happy to discuss that and any other > ways we think can improve NFS behavior on NUMA systems. It's quite > true that RDMA transports are more sensitive to NUMA than > traditional socket-based ones. Also to consider that RDMA is special for this as CPU memory caching can be skipped, and even main memory - for example a special case where the NFS read/write payload memory is not the main system memory but mapped from PCI, and the kernel's own PCI_P2PDMA distance matrix can be used for better xprt selection. -- Dan Aloni