[database]
connection = mysql+pymysql://{{ nova_database_user }}:{{ nova_database_password }}@{{ api_interface_address }}/{{ nova_database_name }}
max_pool_size = 128
max_overflow = 1000
max_retries = -1
[api_database]
connection = mysql+pymysql://{{ nova_api_database_user }}:{{ nova_api_database_password }}@{{ api_interface_address }}/{{ nova_api_database_name }}
max_retries = -1
{% endif %}
nova 3306 不用vip即可,简单可靠 且有高可用
基于3 r620
vip 会经常在批量创建虚拟机的场景下 3306端口无法转发,而后端三台机器管理ip对应的3306端口都是正常的。
将db 改为本地访问模式,可以更快的访问数据库,而且在api层仍具有负载均衡。
500host,批量创建200 gpu服务器没有问题,十分钟内。
vip 一般都是基于网卡子接口实现,比如secondery ip,一个物理网卡支持255个网卡字节口,字节口的性能和global ip是一致的
https://serverfault.com/questions/273099/performance-penalty-of-multiple-ips-per-network-interface
I don't think you need to worry about that. Network contention is the limiting factor
网友评论