背景:这块儿说是加速,还真是不明白,先扔这儿。
使用redis加速ansible
我们知道,每次使用ansible时候都要收集系统信息,那一步占用挺多时间的,我们可以用redis把GATHERING的时间给省下来。
1. ansible.cfg
[defaults]
gathering = smart
fact_caching = redis
fact_caching_timeout = 86400
2. install redis
mac下面
brew install redis
vim /usr/local/etc/redis.conf
···
daemonize yes
···
/usr/local/bin/redis-server /usr/local/etc/redis.conf
3. install python driver
sudo easy_install pip
sudo pip install redis
如果redis端口不是6379,可以用fact_caching_connection限定:
fact_caching_connection = 127.0.0.1:6378
来自:http://blog.csdn.net/aca_jingru/article/details/46532063
使用redis加速ansible
我们知道,每次使用ansible时候都要收集系统信息,那一步占用挺多时间的,我们可以用redis把GATHERING的时间给省下来。
1. ansible.cfg
[defaults]
gathering = smart
fact_caching = redis
fact_caching_timeout = 86400
2. install redis
mac下面
brew install redis
vim /usr/local/etc/redis.conf
···
daemonize yes
···
/usr/local/bin/redis-server /usr/local/etc/redis.conf
3. install python driver
sudo easy_install pip
sudo pip install redis
如果redis端口不是6379,可以用fact_caching_connection限定:
fact_caching_connection = 127.0.0.1:6378
来自:http://blog.csdn.net/aca_jingru/article/details/46532063
作者:jackxiang@向东博客 专注WEB应用 构架之美 --- 构架之美,在于尽态极妍 | 应用之美,在于药到病除
地址:http://jackxiang.com/post/8957/
版权所有。转载时必须以链接形式注明作者和原始出处及本声明!
评论列表