2018-04-25 13:18:52 -05:00
.. _playbooks_strategies:
2015-07-19 22:35:49 -04:00
Strategies
2015-07-17 13:53:13 -04:00
===========
2017-11-21 20:14:27 -08:00
Strategies are a way to control play execution. By default, plays run with a `` linear `` strategy, in which all hosts will run each task before any host starts the next task, using the number of forks (default 5) to parallelize.
2015-07-17 13:53:13 -04:00
The `` serial `` directive can 'batch' this behaviour to a subset of the hosts, which then run to
completion of the play before the next 'batch' starts.
2017-11-21 20:14:27 -08:00
A second `` strategy `` ships with Ansible - `` free `` - which allows each host to run until the end of
2015-07-17 13:53:13 -04:00
the play as fast as it can.::
- hosts: all
strategy: free
tasks:
...
.. _strategy_plugins:
2015-07-19 17:27:13 -04:00
Strategy Plugins
2015-07-17 13:53:13 -04:00
`` ` ` ` ` ` ` ` ` ` ` ` ` ` ``
2017-11-21 20:14:27 -08:00
The strategies are implemented as plugins. In the future, new
execution strategies can be added, either locally by users or to Ansible itself by
2015-07-17 13:53:13 -04:00
a code contribution.
2016-04-09 03:39:08 +09:00
One example is `` debug `` strategy. See :doc: `playbooks_debugger` for details.
2015-07-17 13:53:13 -04:00
.. seealso ::
:doc: `playbooks`
An introduction to playbooks
2017-06-06 16:39:48 -05:00
:doc: `playbooks_reuse_roles`
2015-07-17 13:53:13 -04:00
Playbook organization by roles
`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