aboutsummaryrefslogtreecommitdiff
path: root/weed/command/mount.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-05-29 01:21:21 -0700
committerChris Lu <chris.lu@gmail.com>2018-05-29 01:21:21 -0700
commit4e3ea49cffd2c65d1354c1406472027914775a49 (patch)
tree530c38f60c766793706d489ed46f06919941fd72 /weed/command/mount.go
parentc4b92e17d033df1e348d3ab83c1ba5603e473a4f (diff)
downloadseaweedfs-4e3ea49cffd2c65d1354c1406472027914775a49.tar.xz
seaweedfs-4e3ea49cffd2c65d1354c1406472027914775a49.zip
properly working local write buffer
Diffstat (limited to 'weed/command/mount.go')
-rw-r--r--weed/command/mount.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/mount.go b/weed/command/mount.go
index f0514b93a..6ba3b3697 100644
--- a/weed/command/mount.go
+++ b/weed/command/mount.go
@@ -18,7 +18,7 @@ func init() {
mountOptions.dir = cmdMount.Flag.String("dir", ".", "mount weed filer to this directory")
mountOptions.collection = cmdMount.Flag.String("collection", "", "collection to create the files")
mountOptions.replication = cmdMount.Flag.String("replication", "000", "replication to create to files")
- mountOptions.chunkSizeLimitMB = cmdMount.Flag.Int("chunkSizeLimitMB", 0, "if set, limit the chunk size in MB")
+ mountOptions.chunkSizeLimitMB = cmdMount.Flag.Int("chunkSizeLimitMB", 16, "local write buffer size, also chunk large files")
}
var cmdMount = &Command{