- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-15-2026 08:26 AM
hi,
i want to fetch job id of child job which executes its own workflow ,
into parent job which executes its own workflow but depends on job child jobs job id?
how to do that?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-16-2026 11:06 PM
Hello,
Assuming a few things
- The parent job triggers the child job programmatically
- By "job id" I am assuming you mean the job run ID (the actual execution instance), not the static job definition ID.
Trigger the child job using jobs/runnow. The response will give you the child's run_id.
Optionally wait for the child job to finish, if the parent depends on it, using jobs/runs/get
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-17-2026 03:16 AM
Hi @bricksuser
looks like a common fan-out orchestration patter. your parent job should triger child job programatically and then capture maintain its run_id. you can use databricks jobs api endpoints to start child job.
Use POST /api/2.1/jobs/run-now or POST /api/2.1/jobs/runs/submit.