Databricks · Arazzo Workflow

Databricks Update Job Settings and Re-Run

Version 1.0.0

Read a job, partially update its settings, then trigger a fresh run.

1 workflow 1 source API 1 provider
View Spec View on GitHub Artificial IntelligenceAnalyticsApache SparkBig DataCleanroomsCloud ComputingDataData AnalyticsData EngineeringData GovernanceDelta LakeDelta SharingETLIdentity ManagementLakehouseMachine-LearningMLflowModel ServingSecuritySQLUnity CatalogVector SearchVisualizeArazzoWorkflows

Provider

databricks

Workflows

update-job-and-rerun
Partially update a job's settings and trigger a run.
Reads the current job, submits a partial settings update, then triggers a run-now to exercise the updated configuration.
3 steps inputs: job_id, new_settings, notebook_params outputs: jobId, runId
1
getJob
Read the job to confirm it exists and capture its current creator before applying changes.
2
updateJob
Apply the partial settings update to the job using new_settings.
3
rerunJob
Trigger an immediate run of the updated job to validate the new configuration.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Databricks Update Job Settings and Re-Run
  summary: Read a job, partially update its settings, then trigger a fresh run.
  description: >-
    Reads an existing Databricks job to confirm it exists, applies a partial
    update to its settings (for example a new name or timeout), and then
    triggers an immediate run so the change can be validated against a live run.
    The job_id is reused across the read, update, and run steps. Every step
    spells out its request inline so the flow can be read and executed without
    opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: jobsApi
  url: ../openapi/databricks-jobs-api-openapi.yml
  type: openapi
workflows:
- workflowId: update-job-and-rerun
  summary: Partially update a job's settings and trigger a run.
  description: >-
    Reads the current job, submits a partial settings update, then triggers a
    run-now to exercise the updated configuration.
  inputs:
    type: object
    required:
    - job_id
    - new_settings
    properties:
      job_id:
        type: integer
        description: The canonical identifier of the job to update and run.
      new_settings:
        type: object
        description: The partial job settings to apply (e.g. name, timeout, tasks).
      notebook_params:
        type: object
        description: Optional notebook parameters for the validation run.
  steps:
  - stepId: getJob
    description: >-
      Read the job to confirm it exists and capture its current creator before
      applying changes.
    operationId: getJob
    parameters:
    - name: job_id
      in: query
      value: $inputs.job_id
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      creatorUserName: $response.body#/creator_user_name
  - stepId: updateJob
    description: >-
      Apply the partial settings update to the job using new_settings.
    operationId: updateJob
    requestBody:
      contentType: application/json
      payload:
        job_id: $inputs.job_id
        new_settings: $inputs.new_settings
    successCriteria:
    - condition: $statusCode == 200
  - stepId: rerunJob
    description: >-
      Trigger an immediate run of the updated job to validate the new
      configuration.
    operationId: runJobNow
    requestBody:
      contentType: application/json
      payload:
        job_id: $inputs.job_id
        notebook_params: $inputs.notebook_params
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      runId: $response.body#/run_id
  outputs:
    jobId: $inputs.job_id
    runId: $steps.rerunJob.outputs.runId

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/databricks-update-job-and-rerun-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.