aboutsummaryrefslogtreecommitdiff
path: root/weed/command
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-07-14 21:09:21 -0700
committerChris Lu <chris.lu@gmail.com>2018-07-14 21:09:21 -0700
commit7abfab8e77275f97cbc04e048e7d6b6a5ab7b140 (patch)
tree99d824138c77f7c56d8adeb8302ed4a5ba976c46 /weed/command
parent3edfe1d28f6cfa9f33fd591b1a4e40c9c592604a (diff)
downloadseaweedfs-7abfab8e77275f97cbc04e048e7d6b6a5ab7b140.tar.xz
seaweedfs-7abfab8e77275f97cbc04e048e7d6b6a5ab7b140.zip
add feature to mount a specific filer path to local directory
Diffstat (limited to 'weed/command')
-rw-r--r--weed/command/mount.go18
-rw-r--r--weed/command/mount_std.go2
2 files changed, 11 insertions, 9 deletions
diff --git a/weed/command/mount.go b/weed/command/mount.go
index 6a7856546..8d026feac 100644
--- a/weed/command/mount.go
+++ b/weed/command/mount.go
@@ -1,14 +1,15 @@
package command
type MountOptions struct {
- filer *string
- filerGrpcPort *int
- dir *string
- collection *string
- replication *string
- ttlSec *int
- chunkSizeLimitMB *int
- dataCenter *string
+ filer *string
+ filerGrpcPort *int
+ filerMountRootPath *string
+ dir *string
+ collection *string
+ replication *string
+ ttlSec *int
+ chunkSizeLimitMB *int
+ dataCenter *string
}
var (
@@ -19,6 +20,7 @@ func init() {
cmdMount.Run = runMount // break init cycle
mountOptions.filer = cmdMount.Flag.String("filer", "localhost:8888", "weed filer location")
mountOptions.filerGrpcPort = cmdMount.Flag.Int("filer.grpc.port", 0, "filer grpc server listen port, default to http port + 10000")
+ mountOptions.filerMountRootPath = cmdMount.Flag.String("filer.path", "/", "mount this remote path from filer server")
mountOptions.dir = cmdMount.Flag.String("dir", ".", "mount weed filer to this directory")
mountOptions.collection = cmdMount.Flag.String("collection", "", "collection to create the files")
mountOptions.replication = cmdMount.Flag.String("replication", "000", "replication to create to files")
diff --git a/weed/command/mount_std.go b/weed/command/mount_std.go
index 05ed2a02a..4905df986 100644
--- a/weed/command/mount_std.go
+++ b/weed/command/mount_std.go
@@ -73,7 +73,7 @@ func runMount(cmd *Command, args []string) bool {
filerAddress := fmt.Sprintf("%s:%d", hostnameAndPort[0], filerGrpcPort)
err = fs.Serve(c, filesys.NewSeaweedFileSystem(
- filerAddress, *mountOptions.collection, *mountOptions.replication, int32(*mountOptions.ttlSec),
+ filerAddress, *mountOptions.filerMountRootPath, *mountOptions.collection, *mountOptions.replication, int32(*mountOptions.ttlSec),
*mountOptions.chunkSizeLimitMB, *mountOptions.dataCenter))
if err != nil {
fuse.Unmount(*mountOptions.dir)