<div dir="ltr"><div>There is in source code:</div><div><br></div><div><a href="https://github.com/yuusuke/pacemaker/blob/efe2d6ebc55be39b8be43de38e7662f039b61dec/crmd/throttle.c">https://github.com/yuusuke/pacemaker/blob/efe2d6ebc55be39b8be43de38e7662f039b61dec/crmd/throttle.c</a></div><div><br></div><div><br></div><div> switch(r->mode) {</div><div>        case throttle_extreme:</div><div>        case throttle_high:</div><div>            jobs = 1; /* At least one job must always be allowed */</div><div>            break;</div><div><br></div><div>and</div><div><br></div><div>throttle_handle_load(float load, const char *desc)</div><div>{</div><div>    if(load > THROTTLE_FACTOR_HIGH * throttle_load_target) {</div><div>        crm_notice("High %s detected: %f", desc, load);</div><div>        return throttle_high;</div><div><br></div><div><br></div><div>There are my log files:</div><div><br></div><div><br></div><div>Dec 16 04:51:09 server1 crmd[29851]:   notice: throttle_handle_load: High CPU load detected: 8.010000</div><div>Dec 16 04:51:39 server1 crmd[29851]:   notice: throttle_handle_load: High CPU load detected: 7.160000</div><div>Dec 16 04:52:09 server1 crmd[29851]:   notice: throttle_handle_load: High CPU load detected: 6.980000</div><div>Dec 16 04:52:39 server1 crmd[29851]:   notice: throttle_handle_load: High CPU load detected: 6.470000</div><div><br></div><div><br></div><div>So, main point of my issue  is  jobs = 1</div><div><br></div><div>Please,  does it possibly to increase number of jobs through  throttle high?</div><div>  </div></div>