Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WX-1557 Fix default values from Configuring.md and Scaling.md #7393

Merged
merged 2 commits into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/Configuring.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,18 +134,18 @@ system.max-concurrent-workflows = 5000

**New Workflow Poll Rate**

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:
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:

```hocon
system.new-workflow-poll-rate = 2
system.new-workflow-poll-rate = 20
```

**Max Workflow Launch Count**

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:
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:

```hocon
system.max-workflow-launch-count = 50
system.max-workflow-launch-count = 1
```

***Abort configuration***
Expand Down
2 changes: 1 addition & 1 deletion docs/Scaling.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ system {

# Cromwell will launch up to N submitted workflows at a time, regardless of how many open workflow slots exist
# Set this to 0 for a non-runner.
max-workflow-launch-count = 50
max-workflow-launch-count = 1

# The maximum number of workflows to run concurrently.
# Set this to 0 for a non-runner.
Expand Down
Loading