Ansible性能优化
1、优化前的准备--收集数据
任务计时插件:"ansible-profile"
Github 地址:https://github.com/jlafon/ansible-profile
cd /etc/ansible
mkdir callback_plugins
cd callback_plugins
wget https://raw.githubusercontent.com/jlafon/ansible-profile/master/callback_plugins/profile_tasks.py
sed -i s#'\#callback_whitelist = timer, mail'#'callback_whitelist = profile_tasks'#g /etc/ansible/ansible.cfg
2、关闭Gathering Facts
playbook文件中加上 "gather_facts: no"
---
- hosts: web
gather_facts: no
remote_user: root
3、ssh pipelining --加速ansible执行速度
ssh pipelining 默认是关闭,之所以默认关闭是为了兼容不同的 sudo 配置,主要是 requiretty 选项。
如果使用sudo,必须关闭requiretty
打开此选项可以减少 ansible 执行没有传输时 ssh 在被控机器上执行任务的连接数。
#开启pipelining;/etc/ansible/ansible.cfg
pipelining = False --> pipelining = true
4、Controlpersist
ControlPersist 特性需要高版本的 SSH 才支持,CentOS 6 默认是不支持的,如果需要使用,需要自行升级 openssh。ControlPersist 即持久化 socket,一次验证,多次通信。并且只需要修改 ssh 客户端就行,也就是 Ansible 机器即可。
# cat ~/.ssh/config
Host *
Compression yes
ServerAliveInterval 60
ServerAliveCountMax 5
ControlMaster auto
ControlPath <a href="mailto:~/.ssh/sockets/%25r@%25h-%25p"><code>~/.ssh/sockets/%r@%h-%p</code></a>
ControlPersist 4h