aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_remote_cache.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-08-26 17:05:56 -0700
committerChris Lu <chris.lu@gmail.com>2021-08-26 17:05:56 -0700
commit49a8dfb9765bfa5cb9ffd5246e5af582edaaf65d (patch)
tree69a2b60320f2d30e2cf69ec2abe2ab3dae886690 /weed/shell/command_remote_cache.go
parent6a0bb7106bc7c3524991f8a2a5b78d636613095d (diff)
downloadseaweedfs-49a8dfb9765bfa5cb9ffd5246e5af582edaaf65d.tar.xz
seaweedfs-49a8dfb9765bfa5cb9ffd5246e5af582edaaf65d.zip
adjust default concurrent level
Diffstat (limited to 'weed/shell/command_remote_cache.go')
-rw-r--r--weed/shell/command_remote_cache.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_remote_cache.go b/weed/shell/command_remote_cache.go
index 647de0d25..2888ec979 100644
--- a/weed/shell/command_remote_cache.go
+++ b/weed/shell/command_remote_cache.go
@@ -51,7 +51,7 @@ func (c *commandRemoteCache) Do(args []string, commandEnv *CommandEnv, writer io
remoteMountCommand := flag.NewFlagSet(c.Name(), flag.ContinueOnError)
dir := remoteMountCommand.String("dir", "", "a directory in filer")
- concurrency := remoteMountCommand.Int("concurrent", 8, "concurrent file downloading")
+ concurrency := remoteMountCommand.Int("concurrent", 32, "concurrent file downloading")
fileFiler := newFileFilter(remoteMountCommand)
if err = remoteMountCommand.Parse(args); err != nil {