Description of RabbitMQ configuration options
Configuration option = Default value Description
[oslo_messaging_rabbit]
= False (BoolOpt) Auto-delete queues in AMQP.
= False (BoolOpt) Use durable queues in AMQP.
= False (BoolOpt) Deprecated, use rpc_backend=kombu+memory or rpc_backend=fake
= 2 (IntOpt) How often times during the heartbeat_timeout_threshold we check the heartbeat.
= 0 (IntOpt) Number of seconds after which the Rabbit broker is considered down if heartbeat's keep-alive fails (0 disables the heartbeat, >0 enables it. Enabling heartbeats requires kombu>=3.0.7 and amqp>=1.4.0). EXPERIMENTAL
= 1.0 (FloatOpt) How long to wait before reconnecting in response to an AMQP consumer cancel notification.
= (StrOpt) SSL certification authority file (valid only if SSL enabled).
= (StrOpt) SSL cert file (valid only if SSL enabled).
= (StrOpt) SSL key file (valid only if SSL enabled).
= (StrOpt) SSL version to use (valid only if SSL enabled). Valid values are TLSv1 and SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may be available on some distributions.
= False (BoolOpt) Use HA queues in RabbitMQ (x-ha-policy: all). If you change this option, you must wipe the RabbitMQ database.
= localhost (StrOpt) The RabbitMQ broker address where a single node is used.
= $rabbit_host:$rabbit_port (ListOpt) RabbitMQ HA cluster host:port pairs.
= AMQPLAIN (StrOpt) The RabbitMQ login method.
= 0 (IntOpt) Maximum number of RabbitMQ connection retries. Default is 0 (infinite retry count).
= guest (StrOpt) The RabbitMQ password.
= 5672 (IntOpt) The RabbitMQ broker port where a single node is used.
= 2 (IntOpt) How long to backoff for between retries when connecting to RabbitMQ.
= 1 (IntOpt) How frequently to retry connecting with RabbitMQ.
= False (BoolOpt) Connect over SSL for RabbitMQ.
= guest (StrOpt) The RabbitMQ userid.
= / (StrOpt) The RabbitMQ virtual host.
= 30 (IntOpt) Size of RPC connection pool.