Cross-Provider Workflow

Databricks Job Run to DataHub Lineage

Version 1.0.0

Run a Databricks job, then register the produced dataset and its lineage in DataHub.

1 workflow 2 source APIs 2 providers
View Spec View on GitHub ArazzoWorkflowsCross-Provider

Providers Orchestrated

databricks datahub

Workflows

databricks-job-to-datahub-lineage
Run a Databricks job and register its output dataset lineage in DataHub.
Triggers a Databricks job run, then upserts the produced dataset entity into the DataHub catalog so its lineage and metadata are tracked.
2 steps inputs: datasetUrn, jobId, upstreamUrn outputs: registeredUrn, runId
1
run-databricks-job
$sourceDescriptions.databricksApi.runJobNow
Trigger a Databricks job run that produces a dataset.
2
register-lineage
$sourceDescriptions.datahubApi.upsertEntities
Upsert the produced dataset and its lineage into DataHub.

Source API Descriptions

Arazzo Workflow Specification

data-databricks-job-to-datahub-lineage.yml Raw ↑
arazzo: 1.0.1
info:
  title: Databricks Job Run to DataHub Lineage
  summary: Run a Databricks job, then register the produced dataset and its lineage in DataHub.
  description: >-
    A data pipeline workflow that triggers a Databricks job to produce a dataset, then
    upserts the resulting dataset entity and its lineage metadata into the DataHub
    catalog. Demonstrates connecting a compute/processing platform to a metadata and
    lineage catalog for governance.
  version: 1.0.0
sourceDescriptions:
  - name: databricksApi
    url: https://raw.githubusercontent.com/api-evangelist/databricks/refs/heads/main/openapi/databricks-jobs-api-openapi.yml
    type: openapi
  - name: datahubApi
    url: https://raw.githubusercontent.com/api-evangelist/datahub/refs/heads/main/openapi/datahub-entities-api-openapi.yml
    type: openapi
workflows:
  - workflowId: databricks-job-to-datahub-lineage
    summary: Run a Databricks job and register its output dataset lineage in DataHub.
    description: >-
      Triggers a Databricks job run, then upserts the produced dataset entity into the
      DataHub catalog so its lineage and metadata are tracked.
    inputs:
      type: object
      properties:
        jobId:
          type: integer
        datasetUrn:
          type: string
        upstreamUrn:
          type: string
    steps:
      - stepId: run-databricks-job
        description: Trigger a Databricks job run that produces a dataset.
        operationId: $sourceDescriptions.databricksApi.runJobNow
        requestBody:
          contentType: application/json
          payload:
            job_id: $inputs.jobId
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          runId: $response.body#/run_id
      - stepId: register-lineage
        description: Upsert the produced dataset and its lineage into DataHub.
        operationId: $sourceDescriptions.datahubApi.upsertEntities
        requestBody:
          contentType: application/json
          payload:
            - urn: $inputs.datasetUrn
              aspects:
                upstreamLineage:
                  upstreams:
                    - dataset: $inputs.upstreamUrn
                      type: TRANSFORMED
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          registeredUrn: $response.body#/0/urn
    outputs:
      runId: $steps.run-databricks-job.outputs.runId
      registeredUrn: $steps.register-lineage.outputs.registeredUrn

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/data-databricks-job-to-datahub-lineage"
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.