diff options
author | Elijah DeLee <kdelee@redhat.com> | 2022-12-07 19:21:58 +0100 |
---|---|---|
committer | Elijah DeLee <kdelee@redhat.com> | 2022-12-12 18:11:56 +0100 |
commit | 76cecf3f6be4769ac4bfd4c105f337ffd5bc4336 (patch) | |
tree | 08d38b1c489900d0030f1ab57565810d8df276bb /docs/capacity.md | |
parent | Add broadcast_websocket to LOG_AGGREGATOR_LOGGERS (diff) | |
download | awx-76cecf3f6be4769ac4bfd4c105f337ffd5bc4336.tar.xz awx-76cecf3f6be4769ac4bfd4c105f337ffd5bc4336.zip |
update capacity docs to cover hybrid node case
this came up in conversation and I saw this was not in this doc as an example
Diffstat (limited to 'docs/capacity.md')
-rw-r--r-- | docs/capacity.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/capacity.md b/docs/capacity.md index 4249effae6..cce0007d25 100644 --- a/docs/capacity.md +++ b/docs/capacity.md @@ -98,6 +98,7 @@ Examples: Given settings.AWX_CONTROL_NODE_TASK_IMPACT is 1: - Project updates (where the execution_node is always the same as the controller_node), have a total impact of 2. - Container group jobs (where the execution node is not a member of the cluster) only control impact applies, and the controller node has a total task impact of 1. + - A job executing on a "hybrid" node where both control and execution will occur on the same node has the task impact of (1 overhead for ansible main process) + (min(forks,hosts)) + (1 control node task impact). Meaning a Job running on a hybrid node with forks set to 1 would have a total task impact of 3. ### Selecting the Right settings.AWX_CONTROL_NODE_TASK_IMPACT |