Remote filesystem based on grpc and fuse. The server and client were implemented with pure go.
Grpcfuse consists of two parts:
- GRPC Server
- GRPC Client
They all follow github.com/hanwen/go-fuse/fuse#RawFileSystem, so you can choose from multiple server-side implementations (e.g. pathfs#FileSystem, nodefs#Node or sugguested fs )and convert to RawFileSystem.
example/client/client.go
contains a grpc client filesystem. A binary to run is in example/loopback/. For example
example/client/client /tmp/mountpoint 127.0.0.1:8760
example/loopback/server.go
contains a grpc server which mounts another piece of the filesystem. Functionally, it is similar to a symlink. A binary to run is in example/loopback/ . For example
example/loopback/loopback /some/other/directory
Yes, probably. Report them through https://github.com/chiyutianyi/grpcfuse/issues
This is not an official Alibaba product.
This library is distributed under Apache License 2.0, see LICENSE