On Wed, Sep 22, 2021 at 10:47:35AM +0100, Daire Byrne wrote: > We don't use or need crossmnt functionality, but I know from chatting > to others within our industry that the fsid/crossmnt limitation causes > them the most grief and confusion. I think in the case of Netapps, > there are similar problems with trying to re-export a namespace made > up of different volumes? > > As noted on the wiki, the only way around that is probably to have a > "proxy" mode (similar to what ganesha does?). I'm not sure what Ganesha does. I spent some time thinking about and couldn't figure out how to do it, at least not on my own in a reasonable amount of time. I liked the idea of limiting the proxy to reexport only one original server and reusing the filehandles from the original server without any wrapping. That addresses the fsid/crossmnt limitation and filehandle length limitations. It means proxies all share the same filehandles so eventually you could also implement migration and failover between them and the original server. It means when you get a filehandle the only way to find out *anything* about it--even what filesystem it's from--is to go ask the server. That's slow, so you need a filehandle cache. You have to deal with the case where you get a filehandle for an object that isn't mounted yet. Its parents may not be mounted yet either. If it's a regular file you can't call LOOKUPP on it. I'm not sure how to handle the vfs details in that case--how do you fake up a superblock and vfsmount? Simpler might be to give up on that idea of reusing the original server's filehandle, and automatically generate and persistently store uuids for new filesystems as you discover them. I don't know, I'm rambling. --b.