Skip to content

Commit 7db6159

Browse files
Add rabbit.connection_max to rabbitmq.config.example
1 parent e6448b2 commit 7db6159

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

docs/rabbitmq.config.example

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,25 @@
218218
%%
219219
%% {channel_max, 0},
220220

221+
%% Set the max permissible number of client connections to the node.
222+
%% `infinity` means "no limit".
223+
%%
224+
%% This limit applies to client connections to all listeners (regardless of
225+
%% the protocol, whether TLS is used and so on). CLI tools and inter-node
226+
%% connections are exempt.
227+
%%
228+
%% When client connections are rapidly opened in succession, it is possible
229+
%% for the total connection count to go slightly higher than the configured limit.
230+
%% The limit works well as a general safety measure.
231+
%%
232+
%% Clients that are hitting the limit will see their TCP connections fail or time out.
233+
%%
234+
%% Introduced in 3.6.13.
235+
%%
236+
%% Related doc guide: http://www.rabbitmq.com/networking.html.
237+
%%
238+
%% {connection_max, infinity},
239+
221240
%% TCP socket options.
222241
%%
223242
%% Related doc guide: http://www.rabbitmq.com/networking.html.

0 commit comments

Comments
 (0)