From 76cecf3f6be4769ac4bfd4c105f337ffd5bc4336 Mon Sep 17 00:00:00 2001 From: Elijah DeLee Date: Wed, 7 Dec 2022 13:21:58 -0500 Subject: [PATCH] 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 --- docs/capacity.md | 1 + 1 file changed, 1 insertion(+) 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