Runtime management module. This module contains convenient classes for working with Runtimes
and RuntimeTasks
.
A RuntimeGroup
is the representation of logically related Runtimes
.
The group provides convenient methods for managing those related Runtimes
. Most methods are wrappers around their counterparts in the Runtime
class. Typical usage examples are exposing a port (i.e. a service such as a DB) in the RuntimeGroup
, transfer files, or execute a RuntimeTask
on the contained Runtimes
. Additionally, all concrete RuntimeCluster (e.g. HyperoptCluster) implementations rely on RuntimeGroups
for example.
Examples:
Execute a RuntimeTask
in a RuntimeGroup
# Create instances
group = RuntimeGroup([Runtime('host-1'), Runtime('host-2')])
# group = RuntimeGroup(hosts=['host-1', 'host-2'])
my_task = RuntimeTask('group-demo').run_command('echo Hello Group!')
# Execute a RuntimeTask in a single Runtime
single_task = group.execute_task(my_task)
print(single_task.execution_log[0])
# Execute a RuntimeTask in the whole RuntimeGroup
task_list = group.execute_task(my_task, broadcast=True)
# Execute a RuntimeTask on a single Runtime contained in the RuntimeGroup
task = group.execute_task(my_task)
A DB is running on localhost on port local_port
and the DB is only accessible from localhost. But you also want to access the service on the other Runtimes
on port runtime_port
. Then you can use this method to expose the service which is running on the local machine to the remote machines.
# Expose a port to all Runtimes contained in the Runtime. If a port list is given the next free port is
# chosen and returned.
group_port = group.expose_port_to_runtimes(local_port=60000, runtime_port=list(range(60000,60010)))
print('Local port 60000 is now exposed to port ' + str(group_port) + ' in the RuntimeGroup!')
A DB is running on a remote host on port runtime_port
and the DB is only accessible from the remote machine itself. But you also want to access the service to other Runtimes
in the group. Then you can use this method to expose the service which is running on one Runtime
to the whole group.
# Expose a port from a Runtime to all other ones in the RuntimeGroup. If a port list is given the next
# free port is chosen and returned.
group_port = group.expose_port_from_runtime_to_group(host='host-1', runtime_port=60000,
group_port=list(range(60000,60010)))
print('Port 60000 of `host-1` is now exposed to port ' + str(group_port) + ' in the RuntimeGroup!')
__init__(
runtimes: Optional[List[Runtime]] = None,
hosts: Optional[List[str]] = None,
working_dir: Optional[str] = None
)
Initialization method.
Args:
runtimes
: List ofRuntimes
. If not given, thenhosts
must be supplied.hosts
: List of hosts, which will be used to instantiateRuntime
objects. If not given, thenruntimes
must be supplied.working_dir
: The directory which shall act as working directory on all Runtimes. Defaults to None. See theRuntime
docs for further details.
Raises:
ValueError
: Eitherruntimes
orhosts
must be supplied. Not both or none.InvalidRuntimeError
: If a runtime cannot be instantiated via host.
Getter for function return data from a remote function execution.
Blocks thread until a RuntimeTasks
finished executing and gives back the return data of the remotely executed python functions. The data is returned in the same order as the Tasks were started.
Note:
Only function returns from
RuntimeTasks
that were started via theRuntimeGroup
will be returned. If a containedRuntime
executed furtherRuntimeTasks
directly, then those data will only be returned when querying the respectiveRuntimeTask
directly.
Returns:
Generator[object, None, None]
: The unpickled return data.
Contained hosts in the group.
Returns:
List[str]
: List with hosts of allRuntimes
.
The count of runtimes contained in the group.
Returns:
int
: The count.
Contained Runtimes in the group.
Returns:
List[Runtime]
: List with allRuntimes
.
Processes from all contained Runtimes
which were started to execute a RuntimeTask
.
Returns:
List[Process]
: Process list.
add_env_variables(env_variables: Dict) β None
Update the environment variables of all contained Runtimes.
If a variable already exists it gets updated and if not it will be added.
Note:
This is a convenient wrapper and internally calls Runtime.add_env_variables().
Args:
env_variables
: The env variables used for the update.
add_runtime(
host: Optional[str] = None,
runtime: Optional[Runtime] = None
) β None
Add a Runtime
to the group either by host or as a Runtime
object.
Args:
host
: The host of the runtime. Defaults to None.runtime
: TheRuntime
object to be added to the group. Defaults to None.
Raises:
ValueError
: If the same host is already contained. Or if both host and runtime is given. We refuse the temptation to guess. Also if no argument is supplied.
cleanup() β None
Release all acquired resources and terminate all processes by calling the cleanup method on all contained Runtimes
.
clear_tasks() β None
Clears all internal state related to RuntimeTasks
.
contains_runtime(host: str) β bool
Check if the group contains a Runtime
identified by host.
Args:
host
: TheRuntime
to be looked for.
Returns:
bool
: True if runtime is contained in the group, else False.
execute_task(
task: RuntimeTask,
host: Optional[str] = None,
broadcast: bool = False,
execute_async: bool = True,
omit_on_join: bool = False,
debug: bool = False
) β Union[RuntimeTask, List[RuntimeTask]]
Execute a RuntimeTask
in the whole group or in a single Runtime
.
Note:
When broadcasting a
RuntimeTask
in the group then actually deep copies of the RuntimeTask are created (by using its custom deepcopy implementation), since each RuntimeTask holds state related to its own execution. Thus, multipleRuntimeTasks
will be returned in this case.
Args:
task
: The RuntimeTask to be executed.host
: IfRuntimeTask
should be executed in one Runtime. Optionally, the host could be set in order to ensure the execution in a specific Runtime. Defaults to None. Consequently, the least busyRuntime
will be chosen.broadcast
: True, if theRuntimeTask
will be executed on allRuntimes
. Defaults to False.execute_async
: True, if execution will take place async. Defaults to True.omit_on_join
: If True, then a call to join() won't wait for the termination of the corresponding process. Defaults to False. This parameter has no effect in case of synchronous execution.debug
: IfTrue
, stdout/stderr from the remote host will be printed to stdout. If,False
then the stdout/stderr will be written to execution log files. Defaults toFalse
.
Returns:
RuntimeTask or List[RuntimeTask]
: Either a singleRuntimeTask
object in case the execution took place in a singleRuntime
or a list ofRuntimeTasks
if executed in all.
Raises:
ValueError
: Ifhost
is given and not contained asRuntime
in the group.TaskExecutionError
: If an executedRuntimeTask
step can't be executed successfully.
expose_port_from_runtime_to_group(
host: str,
runtime_port: int,
group_port: Optional[int, List[int]] = None
)
Expose a port from a Runtime
to all other Runtimes
in the RuntimeGroup
.
All traffic to the group_port
is forwarded to the runtime_port
of the runtime.
Args:
host
: The host of theRuntime
.runtime_port
: The port on the runtime.group_port
: The port on the other runtimes where theruntime_port
shall be exposed to. May raise PortInUseError if a single port is given. If a list is used to automatically find a free port then a NoPortsLeftError may be raised. Defaults to runtime_port.
Returns:
int
: Thegroup_port
that was eventually used.
Raises:
ValueError
: If host is not contained.PortInUseError
: Ifgroup_port
is occupied on the local machine.NoPortsLeftError
: Ifgroup_ports
was given and none of the ports was free.
expose_port_to_runtimes(
local_port: int,
runtime_port: Optional[int, List[int]] = None,
exclude_hosts: Optional[str, List[str]] = None
)
Expose a port from localhost to all Runtimes beside the excluded ones.
All traffic on the runtime_port
is forwarded to the local_port
on the local machine. This corresponds to remote port forwarding in ssh tunneling terms. Additionally, all relevant runtimes will be checked if the port is actually free.
Args:
local_port
: The port on the local machine.runtime_port
: The port on the runtimes where thelocal_port
shall be exposed to. May raise PortInUseError if a single port is given. If a list is used to automatically find a free port then a NoPortsLeftError may be raised. Defaults tolocal_port
.exclude_hosts
: List with hosts where the port should not be exposed to. Defaults to None. Consequently, allRuntimes
will be considered.
Returns:
int
: The port which was actually exposed to theRuntimes
.
Raises:
PortInUseError
: Ifruntime_port
is already in use on at least one Runtime.ValueError
: Only hosts orexclude_hosts
must be provided or host is not contained in the group.
fill_runtime_info_buffers_async() β None
Trigger the reading of runtime information asynchronously and buffer the result.
Note:
The actual reading of `Runtime.info data takes place when requesting the attribute the first time. Consequently, the result gets buffered in the respective Runtime instance. The actual reading of the data takes places on the remote host and takes some seconds. This method enables you to read the information in a separate processes so that the execution time stays more or less the same independent of the actual amount of Runtimes used.
get_free_port(ports: List[int], enforce_check_on_localhost: bool = False)
Return the first port from the list which is currently not in use in the whole group.
Args:
ports
: The list of ports that will be used to find a free port in the group.enforce_check_on_localhost
: If true the port check will be executed on localhost as well, although localhost might not be aRuntime
instance contained in theRuntimeGroup
.
Returns:
int
: The first port from the list which is not yet used within the whole group.
Raises:
NoPortsLeftError
: If the port list is empty and no free port was found yet.
get_runtime(host: Optional[str] = None) β Runtime
Get a contained Runtime
.
A runtime identified by the host
or 'the least busy one' will be returned if not host is given, i.e. the one with the fewest alive processes executing a RuntimeTask
.
Note:
The current behavior of the 'least busy runtime' is intended to be changed to a smarter approach as soon as there will be the concrete need. So feel free to reach out to us or provide an alternative approach as PR.
Args:
host
: The host which identifies the runtime.
Returns:
Runtime
: Runtime object.
Raises:
ValueError
: Hostname is not contained in the group.
get_runtimes(
include_hosts: Optional[str, List[str]] = None,
exclude_hosts: Optional[str, List[str]] = None
) β Dict[str, Runtime]
Convenient methods for getting relevant Runtimes
contained in the group.
Args:
include_hosts
: If supplied, only the specifiedRuntimes
will be returned. Defaults to None, i.e. not restricted.exclude_hosts
: If supplied, allRuntimes
beside the here specified ones will be returned. Defaults to an empty list, i.e. not restricted.
Raises:
ValueError
: If include_hosts and exclude_hosts is provided or if a host frominclude_host
is not contained in the group.
has_free_port(port: int, exclude_hosts: Optional[List[str], str] = None) β bool
Check if a given port is free on Runtimes
contained in the group.
The check can be restricted to a specific subset of contained Runtimes
by excluding some hosts.
Args:
port
: The port to be checked in the group.exclude_hosts
: If supplied, the check will be omitted in theseRuntimes
. Defaults to None, i.e. not restricted.
Returns:
bool
: True if port is free on allRuntimes
, else False.
Raises:
ValueError
: Only hosts or exclude_hosts must be provided or Hostname is not contained in the group.
join() β None
Blocks until RuntimeTasks
which were started via the group.execute_task()
method terminated.
print_hosts() β None
Print the hosts of the group.
print_log() β None
Print the execution logs of the contained Runtimes
that were executed in the group.
print_runtime_info() β None
Print information of contained Runtimes
.
remove_runtime(host: str) β None
Remove a runtime from the group by host.
Args:
host
: The host of theRuntime
to be removed from the group.
send_file(
local_path: str,
remote_path: Optional[str] = None,
execute_async: Optional[bool] = True
) β List[RuntimeTask]
Send either a single file or a folder from the manager to all Runtimes
of the group.
Note:
This method is a convenient wrapper around the Runtime's send file functionality. See `Runtime.send_file()Β΄ for further details.
Args:
local_path
: Path to file on local machine.remote_path
: Path on theRuntime
. Defaults to theRuntime.working_dir
. SeeRuntimeTask.execute()
docs for further details.execute_async
: Each individual sending will be done in a separate process if True. Defaults to True.
Returns:
List[RuntimeTask]
: TheRuntimeTasks
that were internally created by the respectiveRuntimes
.
Raises:
ValueError
: If local_path is emtpy.TaskExecutionError
: If an executedRuntimeTask
step can't be executed successfully.OSError
: In case of non existent paths.
set_env_variables(env_variables: Dict) β None
Set environment variables used when executing a task.
Note:
This is a convenient wrapper and internally uses Runtime.env_variables.
Args:
env_variables
: The env variables as dictionary.
The RuntimeManager
can be used for a simplified resource management.
It aims to automatically detect valid Runtimes
based on the ssh configuration. It can be used to create a RuntimeGroup
based on the automatically detected instances and possibly based on further filters such as GPU availability.
__init__() β None
Initialization method.
Raises:
NoRuntimeDetectedError
: If noRuntime
could be automatically detected.
create_group(
include_hosts: Optional[str, List[str]] = None,
exclude_hosts: Optional[str, List[str]] = None,
gpu_required: bool = False,
min_memory: Optional[int] = None,
min_cpu_cores: Optional[int] = None,
installed_executables: Optional[str, List[str]] = None,
filter_commands: Optional[str, List[str]] = None,
working_dir: Optional[str] = None
) β RuntimeGroup
Create a runtime group with either all detected Runtimes
or with a subset thereof.
Args:
include_hosts
: Only these hosts will be included in theRuntimeGroup
. Defaults to None, i.e. not restricted.exclude_hosts
: If supplied, all detectedRuntimes
beside the here specified ones will be included in the group. Defaults to None, i.e. not restricted.gpu_required
: True, if gpu availability is required. Defaults to False.min_memory
: The minimal amount of memory in MB. Defaults to None, i.e. not restricted.min_cpu_cores
: The minimum number of cpu cores required. Defaults to None, i.e. not restricted.installed_executables
: Possibility to only includeRuntimes
that have an specific executables installed.filter_commands
: Shell commands that can be used for generic filtering.working_dir
: The directory which shall act as working one. Defaults to None. See theRuntime
docs for further details.
Note:
The filter criteria are passed through the
check_filter()
method of theRuntime
class. See its documentation for further details and examples.
Returns:
RuntimeGroup
: The createdRuntimeGroup
.
Raises:
ValueError
: Only hosts or excluded_hosts must be provided or Hostname is not contained in the group.NoRuntimesError
: If noRuntime
matches the filter criteria or none could be detected.
print_hosts() β None
Print detected hosts incl. the inactive ones.
Note:
Inactive means that the host is not reachable via ssh or the check vie Runtime.is_valid_runtime() failed.
print_inactive_hosts() β None
Print the inactive hosts.
Note:
Inactive means that the host is not reachable via ssh or the check vie Runtime.is_valid_runtime() failed.
print_runtime_info() β None
Print detailed information of detected Runtimes
and moreover the names of inactive hosts.
Note:
Inactive means that the host is not reachable via ssh or the check vie Runtime.is_valid_runtime() failed.
This file was automatically generated via lazydocs.