run_job
Execute a Databricks job by specifying the job ID and optional notebook parameters, enabling automation of workflows and task management within the Databricks environment.
Instructions
Run a Databricks job
Input Schema
Name | Required | Description | Default |
---|---|---|---|
job_id | Yes | ||
notebook_params | No |
Input Schema (JSON Schema)
{
"properties": {
"job_id": {
"title": "Job Id",
"type": "string"
},
"notebook_params": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Notebook Params"
}
},
"required": [
"job_id"
],
"title": "run_jobArguments",
"type": "object"
}