Increase Logstash Gearman worker queue length.

Logstash seems to perform better when it is not running out of buffer
space. Increase the buffer size to reduce contention and give the
gearman workers more room to work when things are queueing up. This
should increase throughput.

Change-Id: Ie4b5cc7a3ae4be517012c20559f59071b7b15dd5
This commit is contained in:
Clark Boylan 2013-07-22 17:11:05 -07:00
parent ac1a4b44c6
commit db2e5732b2

View File

@ -231,7 +231,7 @@ class Server(object):
# Pythong logging output file.
self.debuglog = debuglog
self.retriever = None
self.logqueue = Queue.Queue(16384)
self.logqueue = Queue.Queue(131072)
self.processor = None
def setup_logging(self):