View source: R/data-structures.R
job_task | R Documentation |
Job Task
job_task(
task_key,
description = NULL,
depends_on = c(),
existing_cluster_id = NULL,
new_cluster = NULL,
job_cluster_key = NULL,
task,
libraries = NULL,
email_notifications = NULL,
timeout_seconds = NULL,
max_retries = 0,
min_retry_interval_millis = 0,
retry_on_timeout = FALSE
)
task_key |
A unique name for the task. This field is used to refer to
this task from other tasks. This field is required and must be unique within
its parent job. On |
description |
An optional description for this task. The maximum length is 4096 bytes. |
depends_on |
Vector of |
existing_cluster_id |
ID of an existing cluster that is used for all runs of this task. |
new_cluster |
Instance of |
job_cluster_key |
Task is executed reusing the cluster specified in
|
task |
One of |
libraries |
Instance of |
email_notifications |
Instance of email_notifications. |
timeout_seconds |
An optional timeout applied to each run of this job task. The default behavior is to have no timeout. |
max_retries |
An optional maximum number of times to retry an
unsuccessful run. A run is considered to be unsuccessful if it completes with
the |
min_retry_interval_millis |
Optional minimal interval in milliseconds between the start of the failed run and the subsequent retry run. The default behavior is that unsuccessful runs are immediately retried. |
retry_on_timeout |
Optional policy to specify whether to retry a task when it times out. The default behavior is to not retry on timeout. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.