diff options
| author | Luke Bakken <luke@bakken.io> | 2018-02-07 09:33:31 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-07 09:33:31 -0800 |
| commit | 566f41298ce72e1f8709ad182d46b36b6abbae0e (patch) | |
| tree | 7b48c14b77624ba7a0275e040558b9058ab3ab6a /priv/schema | |
| parent | 5f7d62113b312af732c1db98089ab5888db960dd (diff) | |
| parent | b10c633d63872f5fb51508252a5bfab0383df847 (diff) | |
| download | rabbitmq-server-git-566f41298ce72e1f8709ad182d46b36b6abbae0e.tar.gz | |
Merge pull request #1499 from rabbitmq/rabbitmq-server-1497
Add delegate_count to Cuttlefish schema
Diffstat (limited to 'priv/schema')
| -rw-r--r-- | priv/schema/rabbit.schema | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/priv/schema/rabbit.schema b/priv/schema/rabbit.schema index 9bff18d75d..a39e47f7af 100644 --- a/priv/schema/rabbit.schema +++ b/priv/schema/rabbit.schema @@ -546,6 +546,7 @@ end}. end }. + %% Customising Socket Options. %% %% See (http://www.erlang.org/doc/man/inet.html#setopts-2) for @@ -801,6 +802,15 @@ fun(Conf) -> end end}. +%% Number of delegate processes to use for intra-cluster +%% communication. On a machine which has a very large number of cores +%% and is also part of a cluster, you may wish to increase this value. +%% + +{mapping, "delegate_count", "rabbit.delegate_count", [ + {datatype, integer}, {validators, ["non_negative_integer"]} +]}. + %% Mirror sync batch size, in messages. Increasing this will speed %% up syncing but total batch size in bytes must not exceed 2 GiB. %% Available in RabbitMQ 3.6.0 or later. |
