Create Run Group
omics_create_run_group | R Documentation |
You can optionally create a run group to limit the compute resources for the runs that you add to the group¶
Description¶
You can optionally create a run group to limit the compute resources for the runs that you add to the group.
Usage¶
omics_create_run_group(name, maxCpus, maxRuns, maxDuration, tags,
requestId, maxGpus)
Arguments¶
name |
A name for the group. |
maxCpus |
The maximum number of CPUs that can run concurrently across all active runs in the run group. |
maxRuns |
The maximum number of runs that can be running at the same time. |
maxDuration |
The maximum time for each run (in minutes). If a run exceeds the maximum run time, the run fails automatically. |
tags |
Tags for the group. |
requestId |
[required] To ensure that requests don't run multiple times, specify a unique ID for each request. |
maxGpus |
The maximum number of GPUs that can run concurrently across all active runs in the run group. |
Value¶
A list with the following syntax:
list(
arn = "string",
id = "string",
tags = list(
"string"
)
)
Request syntax¶
svc$create_run_group(
name = "string",
maxCpus = 123,
maxRuns = 123,
maxDuration = 123,
tags = list(
"string"
),
requestId = "string",
maxGpus = 123
)