seaweedfs/weed/command/mount_std.go

92 lines
2.2 KiB
Go
Raw Normal View History

// +build linux darwin
package command
import (
"fmt"
"runtime"
"strings"
"time"
"bazil.org/fuse"
"bazil.org/fuse/fs"
2018-05-27 18:52:26 +00:00
"github.com/chrislusf/seaweedfs/weed/filesys"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/util"
)
func runMount(cmd *Command, args []string) bool {
fmt.Printf("This is SeaweedFS version %s %s %s\n", util.VERSION, runtime.GOOS, runtime.GOARCH)
if *mountOptions.dir == "" {
fmt.Printf("Please specify the mount directory via \"-dir\"")
return false
}
2018-05-29 08:21:21 +00:00
if *mountOptions.chunkSizeLimitMB <= 0 {
fmt.Printf("Please specify a reasonable buffer size.")
return false
}
2018-05-06 05:47:16 +00:00
fuse.Unmount(*mountOptions.dir)
2018-11-15 06:48:54 +00:00
util.SetupProfiling(*mountCpuProfile, *mountMemProfile)
2018-05-07 07:37:47 +00:00
c, err := fuse.Mount(
*mountOptions.dir,
fuse.VolumeName("SeaweedFS"),
fuse.FSName("SeaweedFS"),
fuse.NoAppleDouble(),
fuse.NoAppleXattr(),
fuse.ExclCreate(),
fuse.DaemonTimeout("3600"),
fuse.AllowOther(),
fuse.AllowSUID(),
fuse.DefaultPermissions(),
2018-11-12 19:19:13 +00:00
fuse.MaxReadahead(1024*128),
2018-05-07 07:37:47 +00:00
fuse.AsyncRead(),
2018-11-11 08:43:30 +00:00
fuse.WritebackCache(),
2018-05-07 07:37:47 +00:00
)
if err != nil {
glog.Fatal(err)
return false
}
2017-06-22 08:33:58 +00:00
util.OnInterrupt(func() {
2014-05-13 22:04:04 +00:00
fuse.Unmount(*mountOptions.dir)
c.Close()
})
2018-07-18 09:37:09 +00:00
filerGrpcAddress, err := parseFilerGrpcAddress(*mountOptions.filer, *mountOptions.filerGrpcPort)
if err != nil {
glog.Fatal(err)
2018-06-06 06:37:41 +00:00
return false
}
2018-07-22 08:14:36 +00:00
mountRoot := *mountOptions.filerMountRootPath
if mountRoot != "/" && strings.HasSuffix(mountRoot, "/") {
2018-07-22 08:15:11 +00:00
mountRoot = mountRoot[0 : len(mountRoot)-1]
2018-07-22 08:14:36 +00:00
}
err = fs.Serve(c, filesys.NewSeaweedFileSystem(&filesys.Option{
FilerGrpcAddress: filerGrpcAddress,
FilerMountRootPath: mountRoot,
Collection: *mountOptions.collection,
Replication: *mountOptions.replication,
TtlSec: int32(*mountOptions.ttlSec),
ChunkSizeLimit: int64(*mountOptions.chunkSizeLimitMB) * 1024 * 1024,
DataCenter: *mountOptions.dataCenter,
DirListingLimit: *mountOptions.dirListingLimit,
EntryCacheTtl: 3 * time.Second,
2018-07-22 08:14:36 +00:00
}))
if err != nil {
fuse.Unmount(*mountOptions.dir)
}
// check if the mount process has an error to report
<-c.Ready
if err := c.MountError; err != nil {
glog.Fatal(err)
}
return true
}