From 49a8dfb9765bfa5cb9ffd5246e5af582edaaf65d Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Thu, 26 Aug 2021 17:05:56 -0700 Subject: [PATCH] adjust default concurrent level --- weed/shell/command_remote_cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {