20dffc001f
Adding configuration of the size of executor thread pool. Change-Id: I36324bae39e05dde57b962948f832c22599c13d2
49 lines
1.7 KiB
Puppet
49 lines
1.7 KiB
Puppet
# == Define: oslo::messaging::default
|
|
#
|
|
# Configure oslo DEFAULT messaging options
|
|
#
|
|
# It will manage the [DEFAULT] section in the given config resource.
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*executor_thread_pool_size*]
|
|
# (Optional) Size of executor thread pool when executor is threading or eventlet.
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*rpc_response_timeout*]
|
|
# (Optional) Seconds to wait for a response from a call. (integer value)
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*transport_url*]
|
|
# (Optional) A URL representing the messaging driver to use
|
|
# and its full configuration. If not set, we fall back to
|
|
# the rpc_backend option and driver specific configuration.
|
|
# Transport URLs take the form:
|
|
# transport://user:pass@host1:port[,hostN:portN]/virtual_host
|
|
# (string value)
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
# [*control_exchange*]
|
|
# (Optional) The default exchange under which topics are scoped.
|
|
# May be overridden by an exchange name specified in the transport_url option.
|
|
# (string value)
|
|
# Defaults to $::os_service_default.
|
|
#
|
|
|
|
define oslo::messaging::default(
|
|
$executor_thread_pool_size = $::os_service_default,
|
|
$rpc_response_timeout = $::os_service_default,
|
|
$transport_url = $::os_service_default,
|
|
$control_exchange = $::os_service_default,
|
|
) {
|
|
|
|
$default_options = {
|
|
'DEFAULT/executor_thread_pool_size' => { value => $executor_thread_pool_size },
|
|
'DEFAULT/rpc_response_timeout' => { value => $rpc_response_timeout },
|
|
'DEFAULT/transport_url' => { value => $transport_url, secret => true },
|
|
'DEFAULT/control_exchange' => { value => $control_exchange },
|
|
}
|
|
|
|
create_resources($name, $default_options)
|
|
}
|