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:
parent
2298eb42b8
commit
1118adf62e
@ -40,6 +40,9 @@ nova_db_pool_timeout: 30
|
|||||||
|
|
||||||
## RPC
|
## RPC
|
||||||
nova_rpc_backend: nova.openstack.common.rpc.impl_kombu
|
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 virtualization Type, set to KVM if supported
|
||||||
nova_virt_type: kvm
|
nova_virt_type: kvm
|
||||||
|
@ -72,6 +72,9 @@ s3_host = {{ ansible_ssh_host }}
|
|||||||
|
|
||||||
# Rpc all
|
# Rpc all
|
||||||
rpc_backend = {{ nova_rpc_backend }}
|
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
|
||||||
metadata_host = {{ internal_lb_vip_address }}
|
metadata_host = {{ internal_lb_vip_address }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user