From 1daae3849b10d6aa6634614c11e3bae8a6553d77 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Mon, 6 Oct 2008 13:29:51 +0000 Subject: [PATCH] Increase the number of threads to 25 Since our locks are not gathered nicely, we can have jobs that are actually blocking on locks (parallel burnin shows this), so at least we need to increase the number of threads above the usual number of jobs we could have in a such a case. Reviewed-by: imsnah --- lib/jqueue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jqueue.py b/lib/jqueue.py index 1fdd1ec..8f01a5b 100644 --- a/lib/jqueue.py +++ b/lib/jqueue.py @@ -46,7 +46,7 @@ from ganeti import jstore from ganeti import rpc -JOBQUEUE_THREADS = 5 +JOBQUEUE_THREADS = 25 def TimeStampNow(): -- 1.7.10.4