You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
4.4 KiB

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