2013-09-03 06:08:00 +02:00
|
|
|
Accelerated Mode
|
2013-09-29 22:18:01 +02:00
|
|
|
================
|
2013-09-03 06:08:00 +02:00
|
|
|
|
|
|
|
.. versionadded:: 1.3
|
|
|
|
|
|
|
|
While SSH using the ControlPersist feature is quite fast and scalable, there is a certain amount of overhead involved in
|
2013-10-03 03:59:08 +02:00
|
|
|
using SSH connections.
|
|
|
|
|
|
|
|
Accelerate mode is there to help connections work faster, but still uses SSH for initial secure key exchange.
|
|
|
|
|
|
|
|
Accelerated mode can be anywhere from
|
2013-09-03 06:08:00 +02:00
|
|
|
2-6x faster than SSH with ControlPersist enabled, and 10x faster than paramiko.
|
|
|
|
|
|
|
|
Accelerated mode works by launching a temporary daemon over SSH. Once the daemon is running, Ansible will connect directly
|
2013-10-03 03:59:08 +02:00
|
|
|
to it via a socket connection. Ansible secures this communication by using a temporary AES key that is uploaded during
|
2013-09-03 06:08:00 +02:00
|
|
|
the SSH connection (this key is different for every host, and is also regenerated every time the daemon is started). By default,
|
|
|
|
Ansible will use port 5099 for the accelerated connection, though this is configurable. Once running, the daemon will accept
|
|
|
|
connections for 30 minutes, after which time it will terminate itself and need to be restarted over SSH.
|
|
|
|
|
|
|
|
Accelerated mode offers several improvments over the original fireball mode:
|
|
|
|
|
|
|
|
* No bootstrapping is required, only a single line needs to be added to each play you wish to run in accelerated mode.
|
|
|
|
* Support for sudo commands (see below for more details and caveats).
|
2013-10-02 14:16:00 +02:00
|
|
|
* Fewer requirements. ZeroMQ is no longer required, nor are there any special packages beyond python-keyczar.
|
2013-09-03 06:08:00 +02:00
|
|
|
|
|
|
|
In order to use accelerated mode, simply add `accelerate: true` to your play::
|
|
|
|
|
|
|
|
---
|
|
|
|
- hosts: all
|
|
|
|
accelerate: true
|
|
|
|
tasks:
|
|
|
|
- name: some task
|
|
|
|
command: echo {{ item }}
|
|
|
|
with_items:
|
|
|
|
- foo
|
|
|
|
- bar
|
|
|
|
- baz
|
|
|
|
|
|
|
|
If you wish to change the port Ansible will use for the accelerated connection, just add the `accelerated_port` option::
|
|
|
|
|
|
|
|
---
|
|
|
|
- hosts: all
|
|
|
|
accelerate: true
|
|
|
|
# default port is 5099
|
|
|
|
accelerate_port: 10000
|
|
|
|
|
|
|
|
The `accelerate_port` option can also be specified in the environment variable ACCELERATE_PORT, or in your `ansible.cfg` configuration::
|
|
|
|
|
|
|
|
[accelerate]
|
|
|
|
accelerate_port = 5099
|
|
|
|
|
|
|
|
As noted above, accelerated mode also supports running tasks via sudo, however there are two important caveats:
|
|
|
|
|
|
|
|
* You must remove requiretty from your sudoers options.
|
|
|
|
* Prompting for the sudo password is not yet supported, so the NOPASSWD option is required for commands.
|
|
|
|
|
2013-10-05 00:34:39 +02:00
|
|
|
.. _fireball_mode:
|
2013-09-03 06:08:00 +02:00
|
|
|
|
2012-10-17 00:30:18 +02:00
|
|
|
Fireball Mode
|
|
|
|
`````````````
|
|
|
|
|
2013-09-03 06:08:00 +02:00
|
|
|
.. versionadded:: 0.8 (deprecated as of 1.3)
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
The following section has been deprecated as of Ansible 1.3 in favor of the accelerated mode described above. This
|
|
|
|
documentation is here for users who may still be using the original fireball connection method only, and should not
|
|
|
|
be used for any new deployments.
|
2012-10-17 00:30:18 +02:00
|
|
|
|
2012-11-27 00:27:55 +01:00
|
|
|
Ansible's core connection types of 'local', 'paramiko', and 'ssh' are augmented in version 0.8 and later by a new extra-fast
|
2012-10-17 00:30:18 +02:00
|
|
|
connection type called 'fireball'. It can only be used with playbooks and does require some additional setup
|
2013-07-10 21:09:12 +02:00
|
|
|
outside the lines of Ansible's normal "no bootstrapping" philosophy. You are not required to use fireball mode
|
2012-10-17 00:30:18 +02:00
|
|
|
to use Ansible, though some users may appreciate it.
|
|
|
|
|
|
|
|
Fireball mode works by launching a temporary 0mq daemon from SSH that by default lives for only 30 minutes before
|
2013-07-10 21:09:12 +02:00
|
|
|
shutting off. Fireball mode, once running, uses temporary AES keys to encrypt a session, and requires direct
|
2012-10-17 01:12:31 +02:00
|
|
|
communication to given nodes on the configured port. The default is 5099. The fireball daemon runs as any user you
|
|
|
|
set it down as. So it can run as you, root, or so on. If multiple users are running Ansible as the same batch of hosts,
|
2012-10-17 00:30:18 +02:00
|
|
|
take care to use unique ports.
|
|
|
|
|
|
|
|
Fireball mode is roughly 10 times faster than paramiko for communicating with nodes and may be a good option
|
|
|
|
if you have a large number of hosts::
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
# set up the fireball transport
|
|
|
|
- hosts: all
|
2012-12-14 11:56:53 +01:00
|
|
|
gather_facts: no
|
2012-11-15 00:37:17 +01:00
|
|
|
connection: ssh # or paramiko
|
2012-12-14 11:56:53 +01:00
|
|
|
sudo: yes
|
2012-10-17 00:30:18 +02:00
|
|
|
tasks:
|
|
|
|
- action: fireball
|
|
|
|
|
|
|
|
# these operations will occur over the fireball transport
|
|
|
|
- hosts: all
|
|
|
|
connection: fireball
|
|
|
|
tasks:
|
2013-07-15 19:50:48 +02:00
|
|
|
- shell: echo "Hello {{ item }}"
|
2012-10-17 00:30:18 +02:00
|
|
|
with_items:
|
|
|
|
- one
|
|
|
|
- two
|
|
|
|
|
|
|
|
In order to use fireball mode, certain dependencies must be installed on both ends. You can use this playbook as a basis for initial bootstrapping on
|
2012-10-17 01:14:21 +02:00
|
|
|
any platform. You will also need gcc and zeromq-devel installed from your package manager, which you can of course also get Ansible to install::
|
2012-10-17 00:30:18 +02:00
|
|
|
|
|
|
|
---
|
|
|
|
- hosts: all
|
2012-12-14 11:56:53 +01:00
|
|
|
sudo: yes
|
|
|
|
gather_facts: no
|
2012-10-17 00:30:18 +02:00
|
|
|
connection: ssh
|
|
|
|
tasks:
|
2013-07-15 19:50:48 +02:00
|
|
|
- easy_install: name=pip
|
|
|
|
- pip: name={{ item }} state=present
|
2012-11-15 00:39:01 +01:00
|
|
|
with_items:
|
|
|
|
- pyzmq
|
|
|
|
- pyasn1
|
|
|
|
- PyCrypto
|
|
|
|
- python-keyczar
|
2012-10-17 00:30:18 +02:00
|
|
|
|
2012-11-27 00:27:55 +01:00
|
|
|
Fedora and EPEL also have Ansible RPM subpackages available for fireball-dependencies.
|
|
|
|
|
|
|
|
Also see the module documentation section.
|
2013-10-05 18:31:16 +02:00
|
|
|
|
|
|
|
.. seealso::
|
|
|
|
|
|
|
|
:doc:`playbooks`
|
|
|
|
Introductory playbook information
|
|
|
|
`User Mailing List <http://groups.google.com/group/ansible-devel>`_
|
|
|
|
Have a question? Stop by the google group!
|
|
|
|
`irc.freenode.net <http://irc.freenode.net>`_
|
|
|
|
#ansible IRC chat channel
|
|
|
|
|