From 39f6516ca8f2076a53fee85e216a93dab8f1a8f8 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 14 Dec 2017 21:06:13 -0500 Subject: [PATCH] queue batch size of 5 --- src/EventsProcessor/Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/EventsProcessor/Program.cs b/src/EventsProcessor/Program.cs index 7afb3ce558..e4c5e02f99 100644 --- a/src/EventsProcessor/Program.cs +++ b/src/EventsProcessor/Program.cs @@ -12,6 +12,8 @@ namespace Bit.EventsProcessor config.UseDevelopmentSettings(); } + config.Queues.BatchSize = 5; + var host = new JobHost(config); host.RunAndBlock(); }