Create a controller with a SLURM launcher.
Source:R/crew_controller_slurm.R
crew_controller_slurm.Rd
Create an R6
object to submit tasks and
launch workers on SLURM workers.
Usage
crew_controller_slurm(
name = NULL,
workers = 1L,
host = NULL,
port = NULL,
tls = crew::crew_tls(mode = "automatic"),
tls_enable = NULL,
tls_config = NULL,
seconds_interval = 0.25,
seconds_timeout = 60,
seconds_launch = 86400,
seconds_idle = 300,
seconds_wall = Inf,
seconds_exit = NULL,
retry_tasks = NULL,
tasks_max = Inf,
tasks_timers = 0L,
reset_globals = TRUE,
reset_packages = FALSE,
reset_options = FALSE,
garbage_collection = FALSE,
crashes_error = NULL,
r_arguments = c("--no-save", "--no-restore"),
crashes_max = 5L,
backup = NULL,
options_metrics = crew::crew_options_metrics(),
options_cluster = crew.cluster::crew_options_slurm(),
verbose = NULL,
command_submit = NULL,
command_terminate = NULL,
command_delete = NULL,
script_directory = NULL,
script_lines = NULL,
slurm_log_output = NULL,
slurm_log_error = NULL,
slurm_memory_gigabytes_required = NULL,
slurm_memory_gigabytes_per_cpu = NULL,
slurm_cpus_per_task = NULL,
slurm_time_minutes = NULL,
slurm_partition = NULL
)
Arguments
- name
Deprecated on 2025-01-14 (
crew
version 0.10.2.9002).- workers
Deprecated on 2025-01-13 (
crew
version 0.10.2.9002).- host
IP address of the
mirai
client to send and receive tasks. IfNULL
, the host defaults to the local IP address.- port
TCP port to listen for the workers. If
NULL
, then an available ephemeral port is automatically chosen. Controllers running simultaneously on the same computer (as in a controller group) must not share the same TCP port.- tls
A TLS configuration object from
crew_tls()
.- tls_enable
Deprecated on 2023-09-15 in version 0.4.1. Use argument
tls
instead.- tls_config
Deprecated on 2023-09-15 in version 0.4.1. Use argument
tls
instead.- seconds_interval
Number of seconds between polling intervals waiting for certain internal synchronous operations to complete, such as checking
mirai::status()
- seconds_timeout
Number of seconds until timing out while waiting for certain synchronous operations to complete, such as checking
mirai::status()
.- seconds_launch
Seconds of startup time to allow. A worker is unconditionally assumed to be alive from the moment of its launch until
seconds_launch
seconds later. Afterseconds_launch
seconds, the worker is only considered alive if it is actively connected to its assign websocket.- seconds_idle
Maximum number of seconds that a worker can idle since the completion of the last task. If exceeded, the worker exits. But the timer does not launch until
tasks_timers
tasks have completed. See theidletime
argument ofmirai::daemon()
.crew
does not excel with perfectly transient workers because it does not micromanage the assignment of tasks to workers, so please allow enough idle time for a new worker to be delegated a new task.- seconds_wall
Soft wall time in seconds. The timer does not launch until
tasks_timers
tasks have completed. See thewalltime
argument ofmirai::daemon()
.- seconds_exit
Deprecated on 2023-09-21 in version 0.1.2.9000. No longer necessary.
- retry_tasks
Deprecated on 2025-01-13 (
crew
version 0.10.2.9002).- tasks_max
Maximum number of tasks that a worker will do before exiting. See the
maxtasks
argument ofmirai::daemon()
.crew
does not excel with perfectly transient workers because it does not micromanage the assignment of tasks to workers, it is recommended to settasks_max
to a value greater than 1.- tasks_timers
Number of tasks to do before activating the timers for
seconds_idle
andseconds_wall
. See thetimerstart
argument ofmirai::daemon()
.- reset_globals
TRUE
to reset global environment variables between tasks,FALSE
to leave them alone.- reset_packages
TRUE
to unload any packages loaded during a task (runs between each task),FALSE
to leave packages alone.- reset_options
TRUE
to reset global options to their original state between each task,FALSE
otherwise. It is recommended to only setreset_options = TRUE
ifreset_packages
is alsoTRUE
because packages sometimes rely on options they set at loading time.- garbage_collection
TRUE
to run garbage collection between tasks,FALSE
to skip.- crashes_error
Deprecated on 2025-01-13 (
crew
version 0.10.2.9002).- r_arguments
Optional character vector of command line arguments to pass to
Rscript
(non-Windows) orRscript.exe
(Windows) when starting a worker. Example:r_arguments = c("--vanilla", "--max-connections=32")
.- crashes_max
In rare cases, a worker may exit unexpectedly before it completes its current task. If this happens,
pop()
returns a status of"crash"
instead of"error"
for the task. The controller does not automatically retry the task, but you can retry it manually by callingpush()
again and using the same task name as before. (However,targets
pipelines runningcrew
do automatically retry tasks whose workers crashed.)crashes_max
is a non-negative integer, and it sets the maximum number of allowable consecutive crashes for a given task. If a task's worker crashes more thancrashes_max
times in a row, thenpop()
throws an error when it tries to return the results of the task.- backup
An optional
crew
controller object, orNULL
to omit. If supplied, thebackup
controller runs any pushed tasks that have already reachedcrashes_max
consecutive crashes. Usingbackup
, you can create a chain of controllers with different levels of resources (such as worker memory and CPUs) so that a task that fails on one controller can retry using incrementally more powerful workers. All controllers in a backup chain should be part of the same controller group (seecrew_controller_group()
) so you can call the group-levelpop()
andcollect()
methods to make sure you get results regardless of which controller actually ended up running the task.Limitations of
backup
: *crashes_max
needs to be positive in order forbackup
to be used. Otherwise, every task would always skip the current controller and go tobackup
. *backup
cannot be a controller group. It must be an ordinary controller.- options_metrics
Either
NULL
to opt out of resource metric logging for workers, or an object fromcrew_options_metrics()
to enable and configure resource metric logging for workers. For resource logging to run, theautometric
R package version 0.1.0 or higher must be installed.- options_cluster
An options list from
crew_options_slurm()
with cluster-specific configuration options.- verbose
Deprecated. Use
options_cluster
instead.- command_submit
Deprecated. Use
options_cluster
instead.- command_terminate
Deprecated. Use
options_cluster
instead.- command_delete
Deprecated on 2024-01-08 (version 0.1.4.9001). Use
command_terminate
instead.- script_directory
Deprecated. Use
options_cluster
instead.- script_lines
Deprecated. Use
options_cluster
instead.- slurm_log_output
Deprecated. Use
options_cluster
instead.- slurm_log_error
Deprecated. Use
options_cluster
instead.- slurm_memory_gigabytes_required
Deprecated. Use
options_cluster
instead.- slurm_memory_gigabytes_per_cpu
Deprecated. Use
options_cluster
instead.- slurm_cpus_per_task
Deprecated. Use
options_cluster
instead.- slurm_time_minutes
Deprecated. Use
options_cluster
instead.- slurm_partition
Deprecated. Use
options_cluster
instead.
Details
WARNING: the crew.cluster
SLURM plugin is experimental
and has not actually been tested on a SLURM cluster. Please proceed
with caution and report bugs to
https://github.com/wlandau/crew.cluster.
Attribution
The template files at
https://github.com/mschubert/clustermq/tree/master/inst
informed the development of the crew
launcher plugins in
crew.cluster
, and we would like to thank
Michael Schubert for developing clustermq
and releasing it under
the permissive Apache License 2.0.
See the NOTICE
and README.md
files in the crew.cluster
source code for additional attribution.
See also
Other slurm:
crew_class_launcher_slurm
,
crew_class_monitor_slurm
,
crew_launcher_slurm()
,
crew_monitor_slurm()
,
crew_options_slurm()
Examples
if (identical(Sys.getenv("CREW_EXAMPLES"), "true")) {
controller <- crew_controller_slurm()
controller$start()
controller$push(name = "task", command = sqrt(4))
controller$wait()
controller$pop()$result
controller$terminate()
}