Poller: A limit of 1 seems to be better

This commit is contained in:
Michael 2017-09-25 19:33:41 +00:00
parent dc6593f418
commit 03c9e22334
2 changed files with 2 additions and 2 deletions

View file

@ -690,7 +690,7 @@ function find_worker_processes(&$passing_slow) {
// The higher the number of parallel workers, the more we prefetch to prevent concurring access
// We decrease the limit with the number of entries left in the queue
$worker_queues = Config::get("system", "worker_queues", 4);
$queue_length = Config::get('system', 'worker_fetch_limit', $worker_queues);
$queue_length = Config::get('system', 'worker_fetch_limit', 1);
$lower_job_limit = $worker_queues * $queue_length * 2;
$jobs = poller_total_entries();