Skip to content

Commit 3aef38c

Browse files
Merge branch 'stable' into rabbitmq-server-batch-betas
2 parents fc90ef0 + 36a6a68 commit 3aef38c

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ define PROJECT_ENV
1616
{ssl_options, []},
1717
{vm_memory_high_watermark, 0.4},
1818
{vm_memory_high_watermark_paging_ratio, 0.5},
19-
{vm_memory_calculation_strategy, rss},
19+
{vm_memory_calculation_strategy, allocated},
2020
{memory_monitor_interval, 2500},
2121
{disk_free_limit, 50000000}, %% 50MB
2222
{msg_store_index_module, rabbit_msg_store_ets_index},

docs/rabbitmq.config.example

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -262,10 +262,10 @@
262262
%%
263263
%% {vm_memory_high_watermark_paging_ratio, 0.5},
264264

265-
%% Selects Erlang VM memory consumption calculation strategy. Can be `rss` or `erlang`,
266-
%% `rss` is the default. Introduced in 3.6.11.
267-
%% See https://github.com/rabbitmq/rabbitmq-server/issues/1223 for background.
268-
%% {vm_memory_calculation_strategy, rss},
265+
%% Selects Erlang VM memory consumption calculation strategy. Can be `allocated`, `rss` or `legacy` (aliased as `erlang`),
266+
%% Introduced in 3.6.11. `allocated` is the default as of 3.6.13.
267+
%% See https://github.com/rabbitmq/rabbitmq-server/issues/1223 and rabbitmq/rabbitmq-common#224 for background.
268+
%% {vm_memory_calculation_strategy, allocated},
269269

270270
%% Interval (in milliseconds) at which we perform the check of the memory
271271
%% levels against the watermarks.

rabbitmq-components.mk

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ endif
3838
# base of the topic branch.
3939

4040
dep_amqp_client = git_rmq rabbitmq-erlang-client $(current_rmq_ref) $(base_rmq_ref) master
41+
dep_amqp10_client = git_rmq rabbitmq-amqp1.0-client $(current_rmq_ref) $(base_rmq_ref) master
42+
dep_amqp10_common = git_rmq rabbitmq-amqp1.0-common $(current_rmq_ref) $(base_rmq_ref) master
4143
dep_rabbit = git_rmq rabbitmq-server $(current_rmq_ref) $(base_rmq_ref) master
4244
dep_rabbit_common = git_rmq rabbitmq-common $(current_rmq_ref) $(base_rmq_ref) master
4345
dep_rabbitmq_amqp1_0 = git_rmq rabbitmq-amqp1.0 $(current_rmq_ref) $(base_rmq_ref) master
@@ -108,16 +110,18 @@ dep_rabbitmq_public_umbrella = git_rmq rabbitmq-public-umbrella $(curre
108110
# all projects use the same versions. It avoids conflicts and makes it
109111
# possible to work with rabbitmq-public-umbrella.
110112

111-
dep_cowboy_commit = 1.0.4
112-
dep_mochiweb = git git://github.com/basho/mochiweb.git v2.9.0p2
113+
dep_cowboy = hex 1.0.4
114+
dep_ranch = hex 1.3.2
115+
dep_recon = hex 2.3.2
116+
113117
# Last commit of PropEr supporting Erlang R16B03.
114118
dep_proper_commit = 735d972758d8bd85b12483626fe1b66450d6a6fe
115-
dep_ranch_commit = 1.3.2
116119
# Last commit of sockjs support Erlang R16B03 and 17.x.
117120
dep_sockjs = git https://github.com/rabbitmq/sockjs-erlang.git 5af2b588c812c318b19bc105b577a759c71c3e0a
118-
dep_webmachine_commit = 1.10.8p2
119121

120122
RABBITMQ_COMPONENTS = amqp_client \
123+
amqp10_common \
124+
amqp10_client \
121125
rabbit \
122126
rabbit_common \
123127
rabbitmq_amqp1_0 \

0 commit comments

Comments
 (0)