View source: R/crew_options_aws_batch.R
crew_options_aws_batch | R Documentation |
Options for the AWS Batch controller.
crew_options_aws_batch(
job_definition = "example",
job_queue = "example",
cpus = NULL,
gpus = NULL,
memory = NULL,
memory_units = "gigabytes",
config = list(),
credentials = list(),
endpoint = NULL,
region = NULL,
share_identifier = NULL,
scheduling_priority_override = NULL,
parameters = NULL,
container_overrides = NULL,
node_overrides = NULL,
retry_strategy = NULL,
propagate_tags = NULL,
timeout = NULL,
tags = NULL,
eks_properties_override = NULL,
verbose = FALSE
)
job_definition |
Character of length 1, name of the AWS Batch job definition to use. There is no default for this argument, and a job definition must be created prior to running the controller. Please see https://docs.aws.amazon.com/batch/ for details. To create a job definition, you will need to create a Docker-compatible
image which can run R and |
job_queue |
Character of length 1, name of the AWS Batch job queue to use. There is no default for this argument, and a job queue must be created prior to running the controller. Please see https://docs.aws.amazon.com/batch/ for details. |
cpus |
Positive numeric scalar,
number of virtual CPUs to request per job. Can be |
gpus |
Positive numeric scalar,
number of GPUs to request per job. Can be |
memory |
Positive numeric scalar,
amount of random access memory (RAM) to request per job.
Choose the units of memory with the |
memory_units |
Character string, units of memory of the |
config |
Named list, |
credentials |
Named list. |
endpoint |
Character of length 1. |
region |
Character of length 1. |
share_identifier |
|
scheduling_priority_override |
|
parameters |
|
container_overrides |
|
node_overrides |
|
retry_strategy |
|
propagate_tags |
|
timeout |
|
tags |
|
eks_properties_override |
|
verbose |
|
A classed list of options for the controller.
Retryable options are deprecated in crew.aws.batch
as of 2025-01-27 (version 0.0.8
).
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.