docs: refine worker choice strategies README
authorJérôme Benoit <jerome.benoit@sap.com>
Mon, 12 Jun 2023 14:58:29 +0000 (16:58 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Mon, 12 Jun 2023 14:58:29 +0000 (16:58 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/pools/selection-strategies/README.md

index 7377bc3905bb149c451768106feebe14bef01d72..d7619e0bf84fc4a70c09c1de11739e57f50f6fc8 100644 (file)
@@ -1,5 +1,7 @@
 # Worker choice strategies
 
+All duration or timestamp are expressed in milliseconds.
+
 ## Strategies
 
 ### Fair share
@@ -23,4 +25,4 @@ Worker choice strategies enable only the statistics that are needed to choose th
 
 ### Median
 
-Strategies using the average task execution time for each worker can use the median instead. Median is more robust to outliers and can be used to avoid assigning tasks to workers that are currently overloaded. Median usage introduces a small overhead: measurement history must be kept for each worker and the median must be recomputed each time a new task has finished.
+Strategies using the average task execution time for each worker can use the median instead. Median is more robust to outliers and can be used to avoid assigning tasks to workers that are currently overloaded. Median usage introduces a small overhead: measurement history must be kept for each worker and the median must be recomputed each time a task has finished.