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.

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