Inheritance diagram for IPython.kernel.scripts.ipcluster:
Start an IPython cluster = (controller + engines).
Bases: object
Bases: IPython.kernel.scripts.ipcluster.ProcessLauncher
Bases: IPython.kernel.scripts.ipcluster.ProcessLauncher
Bases: IPython.kernel.scripts.ipcluster.PBSEngineSet
Bases: IPython.kernel.scripts.ipcluster.BatchEngineSet
Bases: object
Start and stop an external process in an asynchronous manner.
Currently this uses deferreds to notify other parties of process state changes. This is an awkward design and should be moved to using a formal NotificationCenter.
Send a signal to the process.
The argument sig can be (‘KILL’,’INT’, etc.) or any signal number.
Bases: IPython.kernel.scripts.ipcluster.PBSEngineSet
Bases: object
Start a controller on localhost and engines using ssh.
The engine_hosts argument is a dict with hostnames as keys and the number of engine (int) as values. sshx is the name of a local file that will be used to run remote commands. This file is used to setup the environment properly.
Check to see if we should try to resuse FURL files.
Check to see if we should run with SSL support.
Start a controller on localhost and engines using ssh.
Your clusterfile should look like:
send_furl = False # True, if you want
engines = {
'engine_host1' : engine_count,
'engine_host2' : engine_count2
}