mount.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. package command
  2. import (
  3. "os"
  4. "time"
  5. )
  6. type MountOptions struct {
  7. filer *string
  8. filerMountRootPath *string
  9. dir *string
  10. dirAutoCreate *bool
  11. collection *string
  12. collectionQuota *int
  13. replication *string
  14. diskType *string
  15. ttlSec *int
  16. chunkSizeLimitMB *int
  17. concurrentWriters *int
  18. cacheDir *string
  19. cacheSizeMB *int64
  20. dataCenter *string
  21. allowOthers *bool
  22. umaskString *string
  23. nonempty *bool
  24. volumeServerAccess *string
  25. uidMap *string
  26. gidMap *string
  27. readOnly *bool
  28. debug *bool
  29. debugPort *int
  30. localSocket *string
  31. disableXAttr *bool
  32. extraOptions []string
  33. }
  34. var (
  35. mountOptions MountOptions
  36. mountCpuProfile *string
  37. mountMemProfile *string
  38. mountReadRetryTime *time.Duration
  39. )
  40. func init() {
  41. cmdMount.Run = runMount // break init cycle
  42. mountOptions.filer = cmdMount.Flag.String("filer", "localhost:8888", "comma-separated weed filer location")
  43. mountOptions.filerMountRootPath = cmdMount.Flag.String("filer.path", "/", "mount this remote path from filer server")
  44. mountOptions.dir = cmdMount.Flag.String("dir", ".", "mount weed filer to this directory")
  45. mountOptions.dirAutoCreate = cmdMount.Flag.Bool("dirAutoCreate", false, "auto create the directory to mount to")
  46. mountOptions.collection = cmdMount.Flag.String("collection", "", "collection to create the files")
  47. mountOptions.collectionQuota = cmdMount.Flag.Int("collectionQuotaMB", 0, "quota for the collection")
  48. mountOptions.replication = cmdMount.Flag.String("replication", "", "replication(e.g. 000, 001) to create to files. If empty, let filer decide.")
  49. mountOptions.diskType = cmdMount.Flag.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag")
  50. mountOptions.ttlSec = cmdMount.Flag.Int("ttl", 0, "file ttl in seconds")
  51. mountOptions.chunkSizeLimitMB = cmdMount.Flag.Int("chunkSizeLimitMB", 2, "local write buffer size, also chunk large files")
  52. mountOptions.concurrentWriters = cmdMount.Flag.Int("concurrentWriters", 32, "limit concurrent goroutine writers if not 0")
  53. mountOptions.cacheDir = cmdMount.Flag.String("cacheDir", os.TempDir(), "local cache directory for file chunks and meta data")
  54. mountOptions.cacheSizeMB = cmdMount.Flag.Int64("cacheCapacityMB", 0, "local file chunk cache capacity in MB")
  55. mountOptions.dataCenter = cmdMount.Flag.String("dataCenter", "", "prefer to write to the data center")
  56. mountOptions.allowOthers = cmdMount.Flag.Bool("allowOthers", true, "allows other users to access the file system")
  57. mountOptions.umaskString = cmdMount.Flag.String("umask", "022", "octal umask, e.g., 022, 0111")
  58. mountOptions.nonempty = cmdMount.Flag.Bool("nonempty", false, "allows the mounting over a non-empty directory")
  59. mountOptions.volumeServerAccess = cmdMount.Flag.String("volumeServerAccess", "direct", "access volume servers by [direct|publicUrl|filerProxy]")
  60. mountOptions.uidMap = cmdMount.Flag.String("map.uid", "", "map local uid to uid on filer, comma-separated <local_uid>:<filer_uid>")
  61. mountOptions.gidMap = cmdMount.Flag.String("map.gid", "", "map local gid to gid on filer, comma-separated <local_gid>:<filer_gid>")
  62. mountOptions.readOnly = cmdMount.Flag.Bool("readOnly", false, "read only")
  63. mountOptions.debug = cmdMount.Flag.Bool("debug", false, "serves runtime profiling data, e.g., http://localhost:<debug.port>/debug/pprof/goroutine?debug=2")
  64. mountOptions.debugPort = cmdMount.Flag.Int("debug.port", 6061, "http port for debugging")
  65. mountOptions.localSocket = cmdMount.Flag.String("localSocket", "", "default to /tmp/seaweedfs-mount-<mount_dir_hash>.sock")
  66. mountOptions.disableXAttr = cmdMount.Flag.Bool("disableXAttr", false, "disable xattr")
  67. mountCpuProfile = cmdMount.Flag.String("cpuprofile", "", "cpu profile output file")
  68. mountMemProfile = cmdMount.Flag.String("memprofile", "", "memory profile output file")
  69. mountReadRetryTime = cmdMount.Flag.Duration("readRetryTime", 6*time.Second, "maximum read retry wait time")
  70. }
  71. var cmdMount = &Command{
  72. UsageLine: "mount -filer=localhost:8888 -dir=/some/dir",
  73. Short: "mount weed filer to a directory as file system in userspace(FUSE)",
  74. Long: `mount weed filer to userspace.
  75. Pre-requisites:
  76. 1) have SeaweedFS master and volume servers running
  77. 2) have a "weed filer" running
  78. These 2 requirements can be achieved with one command "weed server -filer=true"
  79. This uses github.com/seaweedfs/fuse, which enables writing FUSE file systems on
  80. Linux, and OS X.
  81. On OS X, it requires OSXFUSE (https://osxfuse.github.io/).
  82. `,
  83. }