Expose rabbit_qos_prefetch_count
The option was supported by puppet-oslo but was not configurable via this module. Change-Id: Ib5af448ebf08136f9c9bcaf7d72ce0245456cdde
This commit is contained in:
parent
73fa7771a3
commit
37398d7f96
@ -173,6 +173,7 @@ class trove::guestagent(
|
|||||||
heartbeat_timeout_threshold => $::trove::rabbit_heartbeat_timeout_threshold,
|
heartbeat_timeout_threshold => $::trove::rabbit_heartbeat_timeout_threshold,
|
||||||
heartbeat_rate => $::trove::rabbit_heartbeat_rate,
|
heartbeat_rate => $::trove::rabbit_heartbeat_rate,
|
||||||
heartbeat_in_pthread => $::trove::rabbit_heartbeat_in_pthread,
|
heartbeat_in_pthread => $::trove::rabbit_heartbeat_in_pthread,
|
||||||
|
rabbit_qos_prefetch_count => $::trove::rabbit_qos_prefetch_count,
|
||||||
rabbit_use_ssl => $rabbit_use_ssl,
|
rabbit_use_ssl => $rabbit_use_ssl,
|
||||||
kombu_reconnect_delay => $::trove::kombu_reconnect_delay,
|
kombu_reconnect_delay => $::trove::kombu_reconnect_delay,
|
||||||
kombu_failover_strategy => $::trove::kombu_failover_strategy,
|
kombu_failover_strategy => $::trove::kombu_failover_strategy,
|
||||||
|
@ -98,6 +98,10 @@
|
|||||||
# will be run through a green thread.
|
# will be run through a green thread.
|
||||||
# Defaults to $facts['os_service_default']
|
# Defaults to $facts['os_service_default']
|
||||||
#
|
#
|
||||||
|
# [*rabbit_qos_prefetch_count*]
|
||||||
|
# (Optional) Specifies the number of messages to prefetch.
|
||||||
|
# Defaults to $facts['os_service_default']
|
||||||
|
#
|
||||||
# [*rabbit_quorum_queue*]
|
# [*rabbit_quorum_queue*]
|
||||||
# (Optional) Use quorum queues in RabbitMQ.
|
# (Optional) Use quorum queues in RabbitMQ.
|
||||||
# Defaults to $facts['os_service_default']
|
# Defaults to $facts['os_service_default']
|
||||||
@ -242,6 +246,7 @@ class trove(
|
|||||||
$rabbit_heartbeat_timeout_threshold = $facts['os_service_default'],
|
$rabbit_heartbeat_timeout_threshold = $facts['os_service_default'],
|
||||||
$rabbit_heartbeat_rate = $facts['os_service_default'],
|
$rabbit_heartbeat_rate = $facts['os_service_default'],
|
||||||
$rabbit_heartbeat_in_pthread = $facts['os_service_default'],
|
$rabbit_heartbeat_in_pthread = $facts['os_service_default'],
|
||||||
|
$rabbit_qos_prefetch_count = $facts['os_service_default'],
|
||||||
$rabbit_quorum_queue = $facts['os_service_default'],
|
$rabbit_quorum_queue = $facts['os_service_default'],
|
||||||
$rabbit_transient_quorum_queue = $facts['os_service_default'],
|
$rabbit_transient_quorum_queue = $facts['os_service_default'],
|
||||||
$rabbit_quorum_delivery_limit = $facts['os_service_default'],
|
$rabbit_quorum_delivery_limit = $facts['os_service_default'],
|
||||||
@ -350,6 +355,7 @@ class trove(
|
|||||||
heartbeat_timeout_threshold => $rabbit_heartbeat_timeout_threshold,
|
heartbeat_timeout_threshold => $rabbit_heartbeat_timeout_threshold,
|
||||||
heartbeat_rate => $rabbit_heartbeat_rate,
|
heartbeat_rate => $rabbit_heartbeat_rate,
|
||||||
heartbeat_in_pthread => $rabbit_heartbeat_in_pthread,
|
heartbeat_in_pthread => $rabbit_heartbeat_in_pthread,
|
||||||
|
rabbit_qos_prefetch_count => $rabbit_qos_prefetch_count,
|
||||||
rabbit_use_ssl => $rabbit_use_ssl,
|
rabbit_use_ssl => $rabbit_use_ssl,
|
||||||
kombu_reconnect_delay => $kombu_reconnect_delay,
|
kombu_reconnect_delay => $kombu_reconnect_delay,
|
||||||
kombu_failover_strategy => $kombu_failover_strategy,
|
kombu_failover_strategy => $kombu_failover_strategy,
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- |
|
||||||
|
The new ``trove::rabbit_qos_prefetch_count`` parameter has been added.
|
@ -50,6 +50,7 @@ describe 'trove::guestagent' do
|
|||||||
:heartbeat_timeout_threshold => '<SERVICE DEFAULT>',
|
:heartbeat_timeout_threshold => '<SERVICE DEFAULT>',
|
||||||
:heartbeat_rate => '<SERVICE DEFAULT>',
|
:heartbeat_rate => '<SERVICE DEFAULT>',
|
||||||
:heartbeat_in_pthread => '<SERVICE DEFAULT>',
|
:heartbeat_in_pthread => '<SERVICE DEFAULT>',
|
||||||
|
:rabbit_qos_prefetch_count => '<SERVICE DEFAULT>',
|
||||||
:rabbit_use_ssl => '<SERVICE DEFAULT>',
|
:rabbit_use_ssl => '<SERVICE DEFAULT>',
|
||||||
:kombu_reconnect_delay => '<SERVICE DEFAULT>',
|
:kombu_reconnect_delay => '<SERVICE DEFAULT>',
|
||||||
:kombu_failover_strategy => '<SERVICE DEFAULT>',
|
:kombu_failover_strategy => '<SERVICE DEFAULT>',
|
||||||
|
@ -58,6 +58,7 @@ describe 'trove' do
|
|||||||
:heartbeat_timeout_threshold => '<SERVICE DEFAULT>',
|
:heartbeat_timeout_threshold => '<SERVICE DEFAULT>',
|
||||||
:heartbeat_rate => '<SERVICE DEFAULT>',
|
:heartbeat_rate => '<SERVICE DEFAULT>',
|
||||||
:heartbeat_in_pthread => '<SERVICE DEFAULT>',
|
:heartbeat_in_pthread => '<SERVICE DEFAULT>',
|
||||||
|
:rabbit_qos_prefetch_count => '<SERVICE DEFAULT>',
|
||||||
:rabbit_use_ssl => '<SERVICE DEFAULT>',
|
:rabbit_use_ssl => '<SERVICE DEFAULT>',
|
||||||
:kombu_reconnect_delay => '<SERVICE DEFAULT>',
|
:kombu_reconnect_delay => '<SERVICE DEFAULT>',
|
||||||
:kombu_failover_strategy => '<SERVICE DEFAULT>',
|
:kombu_failover_strategy => '<SERVICE DEFAULT>',
|
||||||
|
Loading…
Reference in New Issue
Block a user