diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | priv/schema/rabbit.schema | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -16,7 +16,7 @@ define PROJECT_ENV {ssl_options, []}, {vm_memory_high_watermark, 0.4}, {vm_memory_high_watermark_paging_ratio, 0.5}, - {vm_memory_calculation_strategy, allocated}, + {vm_memory_calculation_strategy, rss}, {memory_monitor_interval, 2500}, {disk_free_limit, 50000000}, %% 50MB {msg_store_index_module, rabbit_msg_store_ets_index}, diff --git a/priv/schema/rabbit.schema b/priv/schema/rabbit.schema index dcf49e0c3e..734a8a4102 100644 --- a/priv/schema/rabbit.schema +++ b/priv/schema/rabbit.schema @@ -689,7 +689,7 @@ end}. %% Selects Erlang VM memory consumption calculation strategy. %% Can be `allocated`, `rss` or `legacy` (aliased as `erlang`). %% -%% {vm_memory_calculation_strategy, allocated}, +%% {vm_memory_calculation_strategy, rss}, {mapping, "vm_memory_calculation_strategy", "rabbit.vm_memory_calculation_strategy", [{datatype, {enum, [rss, erlang, allocated, legacy]}}]}. |
