aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--weed/command/mount_std.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/weed/command/mount_std.go b/weed/command/mount_std.go
index 8514f18af..ccd4b1684 100644
--- a/weed/command/mount_std.go
+++ b/weed/command/mount_std.go
@@ -173,11 +173,11 @@ func RunMount(option *MountOptions, umask os.FileMode) bool {
fuse.DaemonTimeout("3600"),
fuse.AllowSUID(),
fuse.DefaultPermissions(),
- fuse.MaxReadahead(1024 * 128),
+ fuse.MaxReadahead(1024 * 512),
fuse.AsyncRead(),
// fuse.WritebackCache(),
- fuse.MaxBackground(128),
- fuse.CongestionThreshold(128),
+ // fuse.MaxBackground(1024),
+ // fuse.CongestionThreshold(1024),
}
options = append(options, osSpecificMountOptions()...)