From a478cd7e5eb89b658f986e3fff43ee985cfce9b4 Mon Sep 17 00:00:00 2001 From: Guido Trotter <ultrotter@google.com> Date: Tue, 1 Jul 2008 10:43:49 +0000 Subject: [PATCH] Increase the thread size to 5 Now that we use the locking library to make sure running opcodes cannot step on each other toes we can have a bigger thread size, and potentially process many opcodes in a parallel manner. Reviewed-by: iustinp --- daemons/ganeti-masterd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemons/ganeti-masterd b/daemons/ganeti-masterd index e04201347..8f53bd39b 100755 --- a/daemons/ganeti-masterd +++ b/daemons/ganeti-masterd @@ -65,7 +65,7 @@ class IOServer(SocketServer.UnixStreamServer): cleanup at shutdown. """ - QUEUE_PROCESSOR_SIZE = 1 + QUEUE_PROCESSOR_SIZE = 5 def __init__(self, address, rqhandler, context): """IOServer constructor -- GitLab