diff options
-rw-r--r-- | deps/rabbit/BUILD.bazel | 7 |
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} ] """ |