Skip to content

Commit

Permalink
[config] Updates pipeline_max_parallelism option default value to 512…
Browse files Browse the repository at this point in the history
…0 and cap to 102400
  • Loading branch information
zhiyanliu authored and Jack47 committed Dec 19, 2017
1 parent c08c9ff commit 20c5b45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/option/option.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func init() {
flag.Var(common.NewUint32Value(5, pipelineMinParallelism), "pipeline_min_parallelism",
"specify min parallelism for a pipeline running in dynamic schedule mode")
pipelineMaxParallelism := new(uint32)
flag.Var(common.NewUint32RangeValue(2048, pipelineMaxParallelism, 1, 10240), "pipeline_max_parallelism",
flag.Var(common.NewUint32RangeValue(5120, pipelineMaxParallelism, 1, 102400), "pipeline_max_parallelism",
"specify max parallelism for a pipeline running in dynamic schedule mode")

flag.Parse()
Expand Down

0 comments on commit 20c5b45

Please sign in to comment.