diff options
| author | Lisandro Pin <lisandro.pin@proton.ch> | 2024-12-18 22:26:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-18 13:26:26 -0800 |
| commit | ba0707af641e41ba3cbed2b533ed2432d21295ba (patch) | |
| tree | 967d95ec034ea3d3adbcea86662be3ab043a40d7 /weed/shell/command_ec_encode.go | |
| parent | 44c48c929ac2e513a3ad5749744c77ab480ae1fe (diff) | |
| download | seaweedfs-ba0707af641e41ba3cbed2b533ed2432d21295ba.tar.xz seaweedfs-ba0707af641e41ba3cbed2b533ed2432d21295ba.zip | |
Allow configuring the maximum number of concurrent tasks for EC parallelization. (#6376)
Follow-up to b0210df0.
Diffstat (limited to 'weed/shell/command_ec_encode.go')
| -rw-r--r-- | weed/shell/command_ec_encode.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/shell/command_ec_encode.go b/weed/shell/command_ec_encode.go index 2b35c5c79..2c1625ea7 100644 --- a/weed/shell/command_ec_encode.go +++ b/weed/shell/command_ec_encode.go @@ -65,7 +65,7 @@ func (c *commandEcEncode) Do(args []string, commandEnv *CommandEnv, writer io.Wr collection := encodeCommand.String("collection", "", "the collection name") fullPercentage := encodeCommand.Float64("fullPercent", 95, "the volume reaches the percentage of max volume size") quietPeriod := encodeCommand.Duration("quietFor", time.Hour, "select volumes without no writes for this period") - parallelize := encodeCommand.Bool("parallelize", true, "parallelize operations whenever possible") + maxParallelization := encodeCommand.Int("maxParallelization", 10, "run up to X tasks in parallel, whenever possible") forceChanges := encodeCommand.Bool("force", false, "force the encoding even if the cluster has less than recommended 4 nodes") shardReplicaPlacement := encodeCommand.String("shardReplicaPlacement", "", "replica placement for EC shards, or master default if empty") applyBalancing := encodeCommand.Bool("rebalance", false, "re-balance EC shards after creation") @@ -124,7 +124,7 @@ func (c *commandEcEncode) Do(args []string, commandEnv *CommandEnv, writer io.Wr } } // ...then re-balance ec shards. - if err := EcBalance(commandEnv, collections, "", rp, *parallelize, *applyBalancing); err != nil { + if err := EcBalance(commandEnv, collections, "", rp, *maxParallelization, *applyBalancing); err != nil { return fmt.Errorf("re-balance ec shards for collection(s) %v: %v", collections, err) } |
