Skip to content

Commit cb7241c

Browse files
AlexITCaednichols
andauthored
WX-1557 Fix default values from Configuring.md and Scaling.md (#7393)
Co-authored-by: Adam Nichols <anichols@broadinstitute.org>
1 parent b8b81ab commit cb7241c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/Configuring.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,18 +134,18 @@ system.max-concurrent-workflows = 5000
134134

135135
**New Workflow Poll Rate**
136136

137-
Cromwell will look for new workflows to start on a regular interval, configured as a number of seconds. You can change the polling rate from the default `2` seconds by editing the value:
137+
Cromwell will look for new workflows to start on a regular interval, configured as a number of seconds. You can change the polling rate from the default `20` seconds by editing the value:
138138

139139
```hocon
140-
system.new-workflow-poll-rate = 2
140+
system.new-workflow-poll-rate = 20
141141
```
142142

143143
**Max Workflow Launch Count**
144144

145-
On every poll, Cromwell will take at limited number of new submissions, provided there are new workflows to launch and the `system.max-concurrent-workflows` number has not been reached. While the default is to launch up to `50` workflows, you can override this by setting:
145+
On every poll, Cromwell will take at limited number of new submissions, provided there are new workflows to launch and the `system.max-concurrent-workflows` number has not been reached. While the default is to launch up to `1` workflow, you can override this by setting:
146146

147147
```hocon
148-
system.max-workflow-launch-count = 50
148+
system.max-workflow-launch-count = 1
149149
```
150150

151151
***Abort configuration***

docs/Scaling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ system {
3838
3939
# Cromwell will launch up to N submitted workflows at a time, regardless of how many open workflow slots exist
4040
# Set this to 0 for a non-runner.
41-
max-workflow-launch-count = 50
41+
max-workflow-launch-count = 1
4242
4343
# The maximum number of workflows to run concurrently.
4444
# Set this to 0 for a non-runner.

0 commit comments

Comments
 (0)