db_jobs_update | R Documentation |
Partially Update A Job
db_jobs_update(
job_id,
fields_to_remove = list(),
name = NULL,
schedule = NULL,
tasks = NULL,
job_clusters = NULL,
email_notifications = NULL,
timeout_seconds = NULL,
max_concurrent_runs = NULL,
access_control_list = NULL,
git_source = NULL,
host = db_host(),
token = db_token(),
perform_request = TRUE
)
job_id |
The canonical identifier of the job. |
fields_to_remove |
Remove top-level fields in the job settings. Removing
nested fields is not supported. This field is optional. Must be a |
name |
Name for the job. |
schedule |
Instance of |
tasks |
Task specifications to be executed by this job. Use
|
job_clusters |
Named list of job cluster specifications (using
|
email_notifications |
Instance of |
timeout_seconds |
An optional timeout applied to each run of this job. The default behavior is to have no timeout. |
max_concurrent_runs |
Maximum allowed number of concurrent runs of the job. Set this value if you want to be able to execute multiple runs of the same job concurrently. This setting affects only new runs. This value cannot exceed 1000. Setting this value to 0 causes all new runs to be skipped. The default behavior is to allow only 1 concurrent run. |
access_control_list |
Instance of |
git_source |
Optional specification for a remote repository containing
the notebooks used by this job's notebook tasks. Instance of |
host |
Databricks workspace URL, defaults to calling |
token |
Databricks workspace token, defaults to calling |
perform_request |
If |
Parameters which are shared with db_jobs_create()
are optional, only
specify those that are changing.
Other Jobs API:
db_jobs_create()
,
db_jobs_delete()
,
db_jobs_get()
,
db_jobs_list()
,
db_jobs_reset()
,
db_jobs_run_now()
,
db_jobs_runs_cancel()
,
db_jobs_runs_delete()
,
db_jobs_runs_export()
,
db_jobs_runs_get()
,
db_jobs_runs_get_output()
,
db_jobs_runs_list()
,
db_jobs_runs_submit()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.