From e48156a270d88c7d2430861d303073e04b3c24ba Mon Sep 17 00:00:00 2001 From: Pradyumna Kaushik Date: Thu, 4 Oct 2018 20:12:53 -0400 Subject: [PATCH] Other options when plugging in powercapping. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e3b9a08..8e8b5f7 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Use the `-logPrefix` option to provide the prefix for the log file names. ./elektron -master -workload ``` -### Power Capping +### Plug-in Power Capping _Elektron_ is also capable of running power capping policies along with scheduling policies. Use the `-powercap` option with the name of the power capping policy to be run. @@ -62,6 +62,10 @@ Use the `-powercap` option with the name of the power capping policy to be run. ./elektron -master -workload -powercap ``` +If the power capping policy is _Extrema_ or _Progressive Extrema_, then the following options must also be specified. +* `-hiThreshold` - If the average historical power consumption of the cluster exceeds this value, then one or more nodes would be power capped. +* `-loThreshold` - If the average historical power consumption of the cluster is lesser than this value, then one or more nodes would be uncapped. + ### Plug-in Scheduling Policy Use the `-schedPolicy` option with the name of the scheduling policy to be deployed.
The default scheduling policy is First Fit.