
Several patches have landed in cinder and an update is required. Note: the cinder.overrides is a temporary workaround for oslo.messaging. See https://review.openstack.org/#/c/263818/. This file can be removed once a new oslo.messaging release has landed. Change-Id: I8ebcc489c2c84ebc19c51e4712301d4f71660f06 Partial-Bug: #1528332 Partial-Bug: #1537321 Partial-Bug: #1536845 Partial-Bug: #1529720 Partial-Bug: #1529669 Partial-Bug: #1512198 Partial-Bug: #1489231 Partial-Bug: #1488415 Partial-Bug: #1478650
2.1 KiB
2.1 KiB
Configuration option = Default value | Description |
---|---|
[DEFAULT] | |
direct_over_proxy = True |
(BoolOpt) Configures zmq-messaging to use proxy with non PUB/SUB patterns. |
rpc_zmq_bind_address = * |
(StrOpt) ZeroMQ bind address. Should be a wildcard (*), an ethernet interface, or IP. The "host" option should point or resolve to this address. |
rpc_zmq_bind_port_retries = 100 |
(IntOpt) Number of retries to find free port number before fail with ZMQBindError. |
rpc_zmq_concurrency = eventlet |
(StrOpt) Type of concurrency used. Either "native" or "eventlet" |
rpc_zmq_contexts = 1 |
(IntOpt) Number of ZeroMQ contexts, defaults to 1. |
rpc_zmq_host = localhost |
(StrOpt) Name of this node. Must be a valid hostname, FQDN, or IP address. Must match "host" option, if running Nova. |
rpc_zmq_ipc_dir = /var/run/openstack |
(StrOpt) Directory for holding IPC sockets. |
rpc_zmq_matchmaker = redis |
(StrOpt) MatchMaker driver. |
rpc_zmq_max_port = 65536 |
(IntOpt) Maximal port number for random ports range. |
rpc_zmq_min_port = 49152 |
(PortOpt) Minimal port number for random ports range. |
rpc_zmq_topic_backlog = None |
(IntOpt) Maximum number of ingress messages to locally buffer per topic. Default is unlimited. |
use_pub_sub = True |
(BoolOpt) Use PUB/SUB pattern for fanout methods. PUB/SUB always uses proxy. |