From 97d751d65c0068512628a048a53984baf3b9c9bd Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 10 Jun 2023 14:35:59 +0200 Subject: [PATCH] docs: add weighted round robin documentation MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/pools/selection-strategies/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pools/selection-strategies/README.md b/src/pools/selection-strategies/README.md index 0e49d6df..6796a12f 100644 --- a/src/pools/selection-strategies/README.md +++ b/src/pools/selection-strategies/README.md @@ -9,7 +9,7 @@ By default, the strategy uses the average task execution time for each worker bu ### Weighted round robin -The strategy assigns the next task using a robin round algorithm. The worker weights are maximum tasks execution time, once the worker has reached its maximum tasks execution time, the next task is assigned to the next worker. +The worker weights are maximum tasks execution time, once the worker has reached its maximum tasks execution time, the next task is assigned to the next worker. The default worker weights are the same for all workers and is computed given the CPU cores speed and theirs numbers. ### Interleaved weighted round robin -- 2.34.1