Tiramisu Mokka

Results 217 comments of Tiramisu Mokka

Hi, There is is VirtualFileSystem interface which have to be implemented. You should provide a persistent mapping between files ids and paths. Have a look at hadoop backend https://github.com/kofemann/hadoop-nfs/blob/master/src/main/java/org/dcache/nfs/hadoop/HadoopVfs.java This...

well, the API is evolving. Here it a regular file system base implementation: https://github.com/kofemann/simple-nfs/blob/master/src/main/java/org/dcache/simplenfs/LocalFileSystem.java The Inode represents a file system object. and you need a way how you identified on...

There are two parts of it. The file system related clustering is up-to backend implementation. Nevertheless nfsv4 state handling is currently hard. This part is planned to make cluster-aware, as...

Actually I expect that your simple example must work ander osx. Let me test and come back to you. Wat do you see when you run ```rpcinfo localhost```?

Hi. Sorry to the late reply. The nfs4j nfs client has testing only purpose. Thus doesn't have any recovery capabilities. However, this doesn't mean that they can be added. Just...

Hi, Can you please elaborate what you need. The nfs4j has an interface for user identity management but implantation are up to servers which use it. Our production server uses...

Well, as long as your backed file system supports multiple UIDs, it's simple: ``` @Override public Inode create(Inode parent, Stat.Type type, String path, Subject subject, int mode) throws IOException {...

Huh... What error do you get? On Fri, Oct 23, 2020, 18:21 yangjinlogic wrote: > @kofemann thanks for your response,why I > cant clone this project? > > — >...

Hi @hxedda , unfortunately, the under laying RPC functionality provided by oncrpc4j doesn't lacks of the client side RPCSEC_GSS implementation.

Yes, currently it's not possible to use RPCSEC_GSS in nfs client code. Obviously, we want our rpc layer to support it but there is no timeline when it it be...