summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@lshift.net>2010-01-14 13:46:13 +0000
committerMatthew Sackman <matthew@lshift.net>2010-01-14 13:46:13 +0000
commit9de346af92ef333e1f2c18c81fced1c2c9f96434 (patch)
tree8e6215d0788c074986f28259f10693e87a610c48
parent52e495c11e490002327a4c728c86d4f0cef936a6 (diff)
downloadrabbitmq-server-git-9de346af92ef333e1f2c18c81fced1c2c9f96434.tar.gz
Extensive testing suggests the batch size was previous set too high
-rw-r--r--src/rabbit_variable_queue.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_variable_queue.erl b/src/rabbit_variable_queue.erl
index 2c00c4da07..765d01a4d7 100644
--- a/src/rabbit_variable_queue.erl
+++ b/src/rabbit_variable_queue.erl
@@ -85,7 +85,7 @@
%% fewer than RAM_INDEX_BATCH_SIZE indices out in one go, and we don't
%% write more - we can always come back on the next publish to do
%% more.
--define(RAM_INDEX_BATCH_SIZE, 1024).
+-define(RAM_INDEX_BATCH_SIZE, 64).
%%----------------------------------------------------------------------------