group¶
-
class
fabric.group.Group(*hosts, **kwargs)¶ A collection of
Connectionobjects whose API operates on its contents.Warning
This is a partially abstract class; you need to use one of its concrete subclasses (such as
SerialGrouporThreadingGroup) or you’ll getNotImplementedErroron most of the methods.Most methods in this class mirror those of
Connection, taking the same arguments; however their return values and exception-raising behavior differs:- Return values are dict-like objects (
GroupResult) mappingConnectionobjects to the return value for the respective connections:Group.runreturns a map ofConnectiontorunners.Result,Group.getreturns a map ofConnectiontotransfer.Result, etc. - If any connections encountered exceptions, a
GroupExceptionis raised, which is a thin wrapper around what would otherwise have been theGroupResultreturned; within that wrappedGroupResult, the excepting connections map to the exception that was raised, in place of aResult(as noResultwas obtained.) Any non-excepting connections will have aResultvalue, as normal.
For example, when no exceptions occur, a session might look like this:
>>> group = SerialGroup('host1', 'host2') >>> group.run("this is fine") { <Connection host='host1'>: <Result cmd='this is fine' exited=0>, <Connection host='host2'>: <Result cmd='this is fine' exited=0>, }
With exceptions (anywhere from 1 to “all of them”), it looks like so; note the different exception classes, e.g.
UnexpectedExitfor a completed session whose command exited poorly, versussocket.gaierrorfor a host that had DNS problems:>>> group = SerialGroup('host1', 'host2', 'notahost') >>> group.run("will it blend?") { <Connection host='host1'>: <Result cmd='will it blend?' exited=0>, <Connection host='host2'>: <UnexpectedExit: cmd='...' exited=1>, <Connection host='notahost'>: gaierror(...), }
As with
Connection,Groupobjects may be used as context managers, which will automaticallyclosethe object on block exit.New in version 2.0.
Changed in version 2.4: Added context manager behavior.
-
__init__(*hosts, **kwargs)¶ Create a group of connections from one or more shorthand host strings.
See
Connectionfor details on the format of these strings - they will be used as the first positional argument ofConnectionconstructors.Any keyword arguments given will be forwarded directly to those
Connectionconstructors as well. For example, to get a serially executing group object that connects toadmin@host1,admin@host2andadmin@host3, and forwards your SSH agent too:group = SerialGroup( "host1", "host2", "host3", user="admin", forward_agent=True, )
Changed in version 2.3: Added
**kwargs(was previously only*hosts).
-
__weakref__¶ list of weak references to the object (if defined)
-
close()¶ Executes
Connection.closeon all memberConnections.New in version 2.4.
-
classmethod
from_connections(connections)¶ Alternate constructor accepting
Connectionobjects.New in version 2.0.
-
get(*args, **kwargs)¶ Executes
Connection.geton all memberConnections.Returns: a GroupResult.New in version 2.0.
-
run(*args, **kwargs)¶ Executes
Connection.runon all memberConnections.Returns: a GroupResult.New in version 2.0.
- Return values are dict-like objects (
-
class
fabric.group.GroupResult(*args, **kwargs)¶ Collection of results and/or exceptions arising from
Groupmethods.Acts like a dict, but adds a couple convenience methods, to wit:
- Keys are the individual
Connectionobjects from within theGroup. - Values are either return values / results from the called method (e.g.
runners.Resultobjects), or an exception object, if one prevented the method from returning. - Subclasses
dict, so has all dict methods. - Has
succeededandfailedattributes containing sub-dicts limited to just those key/value pairs that succeeded or encountered exceptions, respectively.- Of note, these attributes allow high level logic, e.g.
if mygroup.run('command').failedand so forth.
- Of note, these attributes allow high level logic, e.g.
New in version 2.0.
-
__init__(*args, **kwargs)¶ Initialize self. See help(type(self)) for accurate signature.
-
__weakref__¶ list of weak references to the object (if defined)
-
failed¶ A sub-dict containing only failed results.
New in version 2.0.
-
succeeded¶ A sub-dict containing only successful results.
New in version 2.0.
- Keys are the individual
-
class
fabric.group.SerialGroup(*hosts, **kwargs)¶ Subclass of
Groupwhich executes in simple, serial fashion.New in version 2.0.
-
run(*args, **kwargs)¶ Executes
Connection.runon all memberConnections.Returns: a GroupResult.New in version 2.0.
-
-
class
fabric.group.ThreadingGroup(*hosts, **kwargs)¶ Subclass of
Groupwhich uses threading to execute concurrently.New in version 2.0.
-
run(*args, **kwargs)¶ Executes
Connection.runon all memberConnections.Returns: a GroupResult.New in version 2.0.
-