diff options
| author | chrislu <chris.lu@gmail.com> | 2023-01-15 21:28:36 -0800 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2023-01-15 21:28:36 -0800 |
| commit | 4614e85efa2e79f811dad2c44cdb027f36aba385 (patch) | |
| tree | d2debf54dadc3b2b4f78d92fccc7a869a087175b /weed/command/mount.go | |
| parent | c24678153c922ee31e421c15620d1e5fe50e8ba8 (diff) | |
| download | seaweedfs-4614e85efa2e79f811dad2c44cdb027f36aba385.tar.xz seaweedfs-4614e85efa2e79f811dad2c44cdb027f36aba385.zip | |
adjust help message
Diffstat (limited to 'weed/command/mount.go')
| -rw-r--r-- | weed/command/mount.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/command/mount.go b/weed/command/mount.go index 028757c25..64c8c754d 100644 --- a/weed/command/mount.go +++ b/weed/command/mount.go @@ -53,9 +53,9 @@ func init() { mountOptions.diskType = cmdMount.Flag.String("disk", "", "[hdd|ssd|<tag>] hard drive or solid state drive or any tag") mountOptions.ttlSec = cmdMount.Flag.Int("ttl", 0, "file ttl in seconds") mountOptions.chunkSizeLimitMB = cmdMount.Flag.Int("chunkSizeLimitMB", 2, "local write buffer size, also chunk large files") - mountOptions.concurrentWriters = cmdMount.Flag.Int("concurrentWriters", 32, "limit concurrent goroutine writers if not 0") + mountOptions.concurrentWriters = cmdMount.Flag.Int("concurrentWriters", 32, "limit concurrent goroutine writers") mountOptions.cacheDir = cmdMount.Flag.String("cacheDir", os.TempDir(), "local cache directory for file chunks and meta data") - mountOptions.cacheSizeMB = cmdMount.Flag.Int64("cacheCapacityMB", 0, "local file chunk cache capacity in MB") + mountOptions.cacheSizeMB = cmdMount.Flag.Int64("cacheCapacityMB", 0, "file chunk read cache capacity in MB") mountOptions.dataCenter = cmdMount.Flag.String("dataCenter", "", "prefer to write to the data center") mountOptions.allowOthers = cmdMount.Flag.Bool("allowOthers", true, "allows other users to access the file system") mountOptions.umaskString = cmdMount.Flag.String("umask", "022", "octal umask, e.g., 022, 0111") |
