Merge "Cap the maximum number of rpc workers"

This commit is contained in:
Zuul 2019-06-11 06:03:02 +00:00 committed by Gerrit Code Review
commit 8cc4bf1eff

View File

@ -264,7 +264,8 @@ neutron_oslomsg_amqp1_enabled: "{{ neutron_oslomsg_rpc_transport == 'amqp' }}"
neutron_rpc_thread_pool_size: 64
neutron_rpc_conn_pool_size: 30
neutron_rpc_response_timeout: 60
neutron_rpc_workers: 1
neutron_rpc_workers_max: 16
neutron_rpc_workers: "{{ [[ansible_processor_vcpus|default(2) // 2, 1] | max, neutron_rpc_workers_max] | min }}"
###
### Identity (Keystone) integration