diff options
| author | Arnaud Cogoluègnes <acogoluegnes@gmail.com> | 2016-11-29 10:25:32 +0100 |
|---|---|---|
| committer | Arnaud Cogoluègnes <acogoluegnes@gmail.com> | 2016-11-29 10:25:32 +0100 |
| commit | 39df722a3e471be3d40dc24cb391317f16e9d4a0 (patch) | |
| tree | a3d485065f11406ccbf8abce8cb1a74a1d461166 /priv | |
| parent | b2141bde48add4f3281e5667c8d7835dbd62601a (diff) | |
| download | rabbitmq-server-git-39df722a3e471be3d40dc24cb391317f16e9d4a0.tar.gz | |
Add background GC settings to new config format
Fixes #1040
Diffstat (limited to 'priv')
| -rw-r--r-- | priv/schema/rabbitmq.schema | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/priv/schema/rabbitmq.schema b/priv/schema/rabbitmq.schema index f31ec5416c..187e77017c 100644 --- a/priv/schema/rabbitmq.schema +++ b/priv/schema/rabbitmq.schema @@ -910,6 +910,20 @@ end}. {mapping, "queue_index_embed_msgs_below", "rabbit.queue_index_embed_msgs_below", [{datatype, bytesize}]}. +%% Whether or not to enable background GC. +%% +%% {background_gc_enabled, true} + +{mapping, "background_gc_enabled", "rabbit.background_gc_enabled", + [{datatype, {enum, [true, false]}}]}. + +%% Interval (in milliseconds) at which we run background GC. +%% +%% {background_gc_target_interval, 60000} + +{mapping, "background_gc_target_interval", "rabbit.background_gc_target_interval", + [{datatype, integer}]}. + % ========================== % Lager section % ========================== |
