crew_class_launcher_aws_batch | R Documentation |
AWS Batch launcher R6
class
See crew_launcher_aws_batch()
.
In order for the AWS Batch crew
plugin to function properly, your IAM
policy needs permission to perform the SubmitJob
and TerminateJob
AWS Batch API calls. For more information on AWS policies and permissions,
please visit
https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies.html.
The AWS Batch controller and launcher accept many arguments
which start with "aws_batch_"
. These arguments are AWS-Batch-specific
parameters forwarded directly to the submit_job()
method for
the Batch client in the paws.compute
R package
For a full description of each argument, including its meaning and format, please visit https://www.paws-r-sdk.com/docs/batch_submit_job/. The upstream API documentation is at https://docs.aws.amazon.com/batch/latest/APIReference/API_SubmitJob.html and the analogous CLI documentation is at https://docs.aws.amazon.com/cli/latest/reference/batch/submit-job.html.
The actual argument names may vary slightly, depending
on which : for example, the aws_batch_job_definition
argument of
the crew
AWS Batch launcher/controller corresponds to the
jobDefinition
argument of the web API and
paws.compute::batch()$submit_job()
, and both correspond to the
--job-definition
argument of the CLI.
Control verbosity with the paws.log_level
global option in R.
Set to 0 for minimum verbosity and 3 for maximum verbosity.
crew::crew_class_launcher
-> crew_class_launcher_aws_batch
options_aws_batch
See crew_launcher_aws_batch()
.
crew::crew_class_launcher$call()
crew::crew_class_launcher$crashes()
crew::crew_class_launcher$launch()
crew::crew_class_launcher$poll()
crew::crew_class_launcher$resolve()
crew::crew_class_launcher$scale()
crew::crew_class_launcher$set_name()
crew::crew_class_launcher$settings()
crew::crew_class_launcher$start()
crew::crew_class_launcher$terminate()
crew::crew_class_launcher$terminate_workers()
crew::crew_class_launcher$update()
new()
Abstract launcher constructor.
crew_class_launcher_aws_batch$new( name = NULL, workers = NULL, seconds_interval = NULL, seconds_timeout = NULL, seconds_launch = NULL, seconds_idle = NULL, seconds_wall = NULL, tasks_max = NULL, tasks_timers = NULL, reset_globals = NULL, reset_packages = NULL, reset_options = NULL, garbage_collection = NULL, tls = NULL, processes = NULL, r_arguments = NULL, options_metrics = NULL, options_aws_batch = NULL )
name
See crew_launcher_aws_batch()
.
workers
See crew_launcher_aws_batch()
.
seconds_interval
See crew_launcher_aws_batch()
.
seconds_timeout
See crew_launcher_aws_batch()
.
seconds_launch
See crew_launcher_aws_batch()
.
seconds_idle
See crew_launcher_aws_batch()
.
seconds_wall
See crew_launcher_aws_batch()
.
tasks_max
See crew_launcher_aws_batch()
.
tasks_timers
See crew_launcher_aws_batch()
.
reset_globals
Deprecated. See crew_launcher_aws_batch()
.
reset_packages
Deprecated. See crew_launcher_aws_batch()
.
reset_options
Deprecated. See crew_launcher_aws_batch()
.
garbage_collection
Deprecated. See crew_launcher_aws_batch()
.
tls
See crew_launcher_aws_batch()
.
processes
See crew_launcher_aws_batch()
.
r_arguments
See crew_launcher_aws_batch()
.
options_metrics
See crew_launcher_aws_batch()
.
options_aws_batch
See crew_launcher_aws_batch()
.
An abstract launcher object.
validate()
Validate the launcher.
crew_class_launcher_aws_batch$validate()
NULL
(invisibly). Throws an error if a field is invalid.
launch_worker()
Launch a local process worker which will dial into a socket.
crew_class_launcher_aws_batch$launch_worker(call, name, launcher, worker)
call
Character string, a namespaced call to
crew::crew_worker()
which will run in the worker and accept tasks.
name
Character string, an informative worker name.
launcher
Character string, name of the launcher.
worker
Character string, name of the worker instance.
The call
argument is R code that will run to
initiate the worker.
A handle object to allow the termination of the worker later on.
terminate_worker()
Terminate a local process worker.
crew_class_launcher_aws_batch$terminate_worker(handle)
handle
A process handle object previously
returned by launch_worker()
.
NULL
(invisibly).
Other plugin_aws_batch:
crew_controller_aws_batch()
,
crew_launcher_aws_batch()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.