summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoïc Hoguin <lhoguin@vmware.com>2021-04-06 12:23:53 +0200
committerLoïc Hoguin <lhoguin@vmware.com>2021-04-06 12:25:36 +0200
commit3cab7d59a64ceb1f10eb0153cb001b17d71474b4 (patch)
tree46edee1b7d4e0d584a821e43385093ac150c58cf
parent9063bcbd5c141627d1f8f5aa70cf7b78b9cdcb56 (diff)
downloadrabbitmq-server-git-configurable-segment-entry-count.tar.gz
Add new configuration variable to BUILD.bazelconfigurable-segment-entry-count
-rw-r--r--deps/rabbit/BUILD.bazel7
1 files changed, 6 insertions, 1 deletions
diff --git a/deps/rabbit/BUILD.bazel b/deps/rabbit/BUILD.bazel
index 92351d1bb4..2ef488ec68 100644
--- a/deps/rabbit/BUILD.bazel
+++ b/deps/rabbit/BUILD.bazel
@@ -127,7 +127,12 @@ _APP_ENV = """[
%% interval at which connection/channel tracking executes post operations
{tracking_execution_timeout, 15000},
{stream_messages_soft_limit, 256},
- {track_auth_attempt_source, false}
+ {track_auth_attempt_source, false},
+ %% Number of entries per index segment.
+ %% This value can only be changed safely
+ %% on an empty node. Default calculated
+ %% as trunc(math:pow(2,?REL_SEQ_BITS))).
+ {queue_index_segment_entry_count, 16384}
]
"""