Add remote procedure call tunables to nova and neutron

This allows us to override the default settings, which is useful for
large deployments or deploying a large number of instances.  It also
uses an unused variable in neutron for setting the rpc_backend.

Change-Id: I83d11eb79b30dda51c6f738433ca960a0f63246e
Closes-bug: 1471926
This commit is contained in:
Matthew Thode 2015-07-23 12:58:37 -05:00
parent 2298eb42b8
commit 1118adf62e
2 changed files with 6 additions and 0 deletions

View File

@ -40,6 +40,9 @@ nova_db_pool_timeout: 30
## RPC
nova_rpc_backend: nova.openstack.common.rpc.impl_kombu
nova_rpc_thread_pool_size: 64
nova_rpc_conn_pool_size: 30
nova_rpc_response_timeout: 60
## Nova virtualization Type, set to KVM if supported
nova_virt_type: kvm

View File

@ -72,6 +72,9 @@ s3_host = {{ ansible_ssh_host }}
# Rpc all
rpc_backend = {{ nova_rpc_backend }}
rpc_thread_pool_size = {{ nova_rpc_thread_pool_size }}
rpc_conn_pool_size = {{ nova_rpc_conn_pool_size }}
rpc_response_timeout = {{ nova_rpc_response_timeout }}
# Metadata
metadata_host = {{ internal_lb_vip_address }}