docs: fix docs/worker-choice-strategies.md structure
authorJérôme Benoit <jerome.benoit@sap.com>
Wed, 9 Aug 2023 20:44:03 +0000 (22:44 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Wed, 9 Aug 2023 20:44:03 +0000 (22:44 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
docs/worker-choice-strategies.md

index 0a06627951661e7c803cc15f5a611ebfaa29b4ce..147a500e44bd4beb02a5c79637d23c71b7fc3261 100644 (file)
@@ -1,5 +1,7 @@
 # Worker choice strategies
 
+All duration or timestamp are expressed in milliseconds.
+
 ## Table of contents
 
 - [Strategies](#strategies)
@@ -11,8 +13,6 @@
 
 ## Strategies
 
-All duration or timestamp are expressed in milliseconds.
-
 ### Fair share
 
 Its goal is to distribute the load evenly across all workers. To achieve this, the strategy keeps track of the average task execution time for each worker and assigns the next task to the worker with the lowest task end prediction time: `task_end_prediction = max(current_time, task_end_prediction) + average_task_execution_time`.