Changes
Page history
Update Excessive cpu load
authored
May 19, 2023
by
Alex Wiens
Show whitespace changes
Inline
Side-by-side
Excessive-cpu-load.md
View page @
b4e90f14
...
...
@@ -14,3 +14,18 @@
*
Possible cures/workarounds:
*
checking parallelization settings
```
Eingabe:
* Metrik cpu_load im node scope
* Metadatum numHwthreads
* Parameter threshold für einen core
Regel:
load_mean = cpu_load.mean('all')
load_threshold = job.numHwthreads * threshold
highload = load_mean > load_threshold
Ausgabe: highload ist True
```