File tree Expand file tree Collapse file tree 3 files changed +13
-9
lines changed Expand file tree Collapse file tree 3 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ define PROJECT_ENV
16
16
{ssl_options, []},
17
17
{vm_memory_high_watermark, 0.4},
18
18
{vm_memory_high_watermark_paging_ratio, 0.5},
19
- {vm_memory_calculation_strategy, rss },
19
+ {vm_memory_calculation_strategy, allocated },
20
20
{memory_monitor_interval, 2500},
21
21
{disk_free_limit, 50000000}, %% 50MB
22
22
{msg_store_index_module, rabbit_msg_store_ets_index},
Original file line number Diff line number Diff line change 262
262
% %
263
263
% % {vm_memory_high_watermark_paging_ratio, 0.5},
264
264
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 },
269
269
270
270
% % Interval (in milliseconds) at which we perform the check of the memory
271
271
% % levels against the watermarks.
Original file line number Diff line number Diff line change 38
38
# base of the topic branch.
39
39
40
40
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
41
43
dep_rabbit = git_rmq rabbitmq-server $(current_rmq_ref ) $(base_rmq_ref ) master
42
44
dep_rabbit_common = git_rmq rabbitmq-common $(current_rmq_ref ) $(base_rmq_ref ) master
43
45
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
108
110
# all projects use the same versions. It avoids conflicts and makes it
109
111
# possible to work with rabbitmq-public-umbrella.
110
112
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
+
113
117
# Last commit of PropEr supporting Erlang R16B03.
114
118
dep_proper_commit = 735d972758d8bd85b12483626fe1b66450d6a6fe
115
- dep_ranch_commit = 1.3.2
116
119
# Last commit of sockjs support Erlang R16B03 and 17.x.
117
120
dep_sockjs = git https://github.com/rabbitmq/sockjs-erlang.git 5af2b588c812c318b19bc105b577a759c71c3e0a
118
- dep_webmachine_commit = 1.10.8p2
119
121
120
122
RABBITMQ_COMPONENTS = amqp_client \
123
+ amqp10_common \
124
+ amqp10_client \
121
125
rabbit \
122
126
rabbit_common \
123
127
rabbitmq_amqp1_0 \
You can’t perform that action at this time.
0 commit comments