<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Get task_run_id that is nested in a job_run task in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/get-task-run-id-that-is-nested-in-a-job-run-task/m-p/153781#M54016</link>
    <description>&lt;P&gt;Ok, I think this makes much more sense and I see how it could work.&lt;/P&gt;&lt;P&gt;The only thing I would say as far as how we're trying to implement this, rather than having the intermediary `&lt;SPAN&gt;get_child_run_id` notebook task, I am trying to get the `child_run_id` inside of the parent2 run_job rather than it being passed via the intermediary step. We can still accomplish this by including the &lt;A href="https://docs.databricks.com/aws/en/jobs/dynamic-value-references#supported-value-references" target="_self"&gt;dynamic value reference&lt;/A&gt;&amp;nbsp;`&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;{{tasks.parent1.run_id}}&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;` as a job parameter for parent2. This way, once the parent2 run_job has the parent1 run_id, we can follow similar steps as what you outlined.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you for your assistance! This helps confirm my solution path.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 08 Apr 2026 19:33:36 GMT</pubDate>
    <dc:creator>ChristianRRL</dc:creator>
    <dc:date>2026-04-08T19:33:36Z</dc:date>
    <item>
      <title>Get task_run_id that is nested in a job_run task</title>
      <link>https://community.databricks.com/t5/data-engineering/get-task-run-id-that-is-nested-in-a-job-run-task/m-p/153660#M53992</link>
      <description>&lt;P&gt;Hi, I'm wondering if there is an easier way to accomplish this.&lt;/P&gt;&lt;P&gt;I can use Dynamic Value reference to pull the run_id of Parent 1 into Parent 2, however, what I'm looking for is for Child 1's task run_id to be referenced within Parent 2.&lt;/P&gt;&lt;P&gt;Currently I am considering using the databricks REST API to get the run_id of a notebook task (Child 1) that is nested inside a run_job task (Parent 1), that I can later reference in another run_job task downstream (Parent 2).&lt;/P&gt;&lt;P&gt;Would there be another/easier way of doing this?&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2026 22:29:05 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/get-task-run-id-that-is-nested-in-a-job-run-task/m-p/153660#M53992</guid>
      <dc:creator>ChristianRRL</dc:creator>
      <dc:date>2026-04-07T22:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: Get task_run_id that is nested in a job_run task</title>
      <link>https://community.databricks.com/t5/data-engineering/get-task-run-id-that-is-nested-in-a-job-run-task/m-p/153721#M53999</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi — good question. The cleanest way to do this is with &lt;/SPAN&gt;&lt;STRONG&gt;task values&lt;/STRONG&gt;&lt;SPAN&gt;, no REST API needed.&lt;/SPAN&gt;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Approach: Task Values (Recommended)&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN&gt;In &lt;/SPAN&gt;&lt;STRONG&gt;Child 1's notebook&lt;/STRONG&gt;&lt;SPAN&gt;, capture its own run_id and set it as a task value:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;import json&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;ctx = json.loads(&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;dbutils.notebook.entry_point.getDbutils().notebook().getContext().toJson()&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;child1_run_id = ctx["currentRunId"]["id"]&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;dbutils.jobs.taskValues.set(key="child1_run_id", value=str(child1_run_id))&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Then in your &lt;/SPAN&gt;&lt;STRONG&gt;orchestrator job&lt;/STRONG&gt;&lt;SPAN&gt;, when configuring Parent 2's job parameters, reference it with:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;{{tasks.Parent1.values.child1_run_id}}&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Task values set inside a child job are propagated back through the &lt;/SPAN&gt;&lt;SPAN&gt;run_job&lt;/SPAN&gt;&lt;SPAN&gt; task, so the orchestrator can access them via &lt;/SPAN&gt;&lt;SPAN&gt;{{tasks.&amp;lt;run_job_task_name&amp;gt;.values.&amp;lt;key&amp;gt;}}&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Why not &lt;/STRONG&gt;&lt;STRONG&gt;{{tasks.Parent1.run_id}}&lt;/STRONG&gt;&lt;STRONG&gt;?&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN&gt;As you noticed, &lt;/SPAN&gt;&lt;SPAN&gt;{{tasks.Parent1.run_id}}&lt;/SPAN&gt;&lt;SPAN&gt; gives you the &lt;/SPAN&gt;&lt;STRONG&gt;orchestrator's task run_id&lt;/STRONG&gt;&lt;SPAN&gt; for the run&lt;/SPAN&gt;&lt;I&gt;&lt;SPAN&gt;job task itself — not the child job's internal task run&lt;/SPAN&gt;&lt;/I&gt;&lt;SPAN&gt;id. That's why task values are the right tool here: they let the child task explicitly publish its own metadata for upstream consumption.&lt;/SPAN&gt;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;REST API Fallback&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN&gt;If you &lt;/SPAN&gt;&lt;STRONG&gt;can't modify&lt;/STRONG&gt;&lt;SPAN&gt; Child 1's notebook, then yes, the REST API approach works:&lt;/SPAN&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Pass &lt;/SPAN&gt;&lt;SPAN&gt;{{tasks.Parent1.run_id}}&lt;/SPAN&gt;&lt;SPAN&gt; into an intermediate notebook task&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;SPAN&gt;Use the &lt;/SPAN&gt;&lt;A href="https://docs.databricks.com/api/workspace/jobs/get-run" target="_blank"&gt;&lt;SPAN&gt;Runs Get API&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt; to fetch the triggered child job's run details and extract Child 1's task run_id from the &lt;/SPAN&gt;&lt;SPAN&gt;tasks&lt;/SPAN&gt;&lt;SPAN&gt; array&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;But if you can add a couple of lines to Child 1, the task values approach is simpler and avoids API calls entirely.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Docs:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;A href="https://docs.databricks.com/aws/en/jobs/task-values" target="_blank"&gt;&lt;SPAN&gt;Task Values&lt;/SPAN&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI style="font-weight: 400;" aria-level="1"&gt;&lt;A href="https://docs.databricks.com/aws/en/jobs/dynamic-value-references" target="_blank"&gt;&lt;SPAN&gt;Dynamic Value References&lt;/SPAN&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;SPAN&gt;Hope that helps!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2026 10:56:33 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/get-task-run-id-that-is-nested-in-a-job-run-task/m-p/153721#M53999</guid>
      <dc:creator>anuj_lathi</dc:creator>
      <dc:date>2026-04-08T10:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: Get task_run_id that is nested in a job_run task</title>
      <link>https://community.databricks.com/t5/data-engineering/get-task-run-id-that-is-nested-in-a-job-run-task/m-p/153771#M54014</link>
      <description>&lt;P&gt;I'm sorry, but there's a couple of things I need to call out in your response &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/182781"&gt;@anuj_lathi&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;The response was marked as "Accepted Solution", but I did not personally review and accept this as a solution. So I have marked as "Not the Solution".&lt;/LI&gt;&lt;LI&gt;The response "seems" to be AI generated, which nowadays is not inherently a bad thing so long as it is verified before posting.&lt;/LI&gt;&lt;LI&gt;The "recommended" approach suggested simply does not work. This functionality does not exist in Databricks as described (which is my original suspicion)&lt;UL&gt;&lt;LI&gt;I *cannot* reference the child1 task run_id outside of parent1 by parent2&lt;UL&gt;&lt;LI&gt;&lt;FONT color="#FF0000"&gt;{{tasks.parent1.values.child1_run_id}}&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;I *can* reference the parent1 task run_id outside of parent1 by parent2&lt;UL&gt;&lt;LI&gt;&lt;DIV&gt;&lt;SPAN&gt;{{tasks.parent1.run_id}}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;This is not what I'm looking for necessarily, but it seems like the only thing that is exposed via existing Job Workflow functionality&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Attached images for reference.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2026 16:54:16 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/get-task-run-id-that-is-nested-in-a-job-run-task/m-p/153771#M54014</guid>
      <dc:creator>ChristianRRL</dc:creator>
      <dc:date>2026-04-08T16:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Get task_run_id that is nested in a job_run task</title>
      <link>https://community.databricks.com/t5/data-engineering/get-task-run-id-that-is-nested-in-a-job-run-task/m-p/153772#M54015</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/96188"&gt;@ChristianRRL&lt;/a&gt;&amp;nbsp; you're absolutely right, and I apologize for the earlier suggestion. I've verified that task values from child jobs are &lt;/SPAN&gt;&lt;STRONG&gt;not&lt;/STRONG&gt;&lt;SPAN&gt; propagated back through &lt;/SPAN&gt;&lt;SPAN&gt;run_job&lt;/SPAN&gt;&lt;SPAN&gt; tasks.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Your instinct about the REST API was correct. Here's the fix:&lt;/SPAN&gt;&lt;/P&gt;
&lt;H3&gt;&lt;STRONG&gt;Solution: Add an intermediate notebook task in the orchestrator&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;SPAN&gt;Orchestrator:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;├── Parent1 (run_job)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;├── get_child_run_id (notebook task) ← NEW, depends on Parent1&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;└── Parent2 (run_job, depends on get_child_run_id)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Notebook (`get_child_run_id`):&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;import requests&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;host = dbutils.notebook.entry_point.getDbutils().notebook().getContext().apiUrl().get()&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;token = dbutils.notebook.entry_point.getDbutils().notebook().getContext().apiToken().get()&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;headers = {"Authorization": f"Bearer {token}"}&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;# Get orchestrator run → find Parent1 → get child job run_id → find Child1&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;job_run_id = spark.conf.get("spark.databricks.job.runId")&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;orch_run = requests.get(f"{host}/api/2.1/jobs/runs/get",&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;headers=headers, params={"run_id": job_run_id}).json()&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;parent1 = next(t for t in orch_run["tasks"] if t["task_key"] == "Parent1")&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;child_run = requests.get(f"{host}/api/2.1/jobs/runs/get-output",&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;headers=headers, params={"run_id": parent1["run_id"]}).json()&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;child_job_run_id = child_run["metadata"]["run_id"]&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;child_job = requests.get(f"{host}/api/2.1/jobs/runs/get",&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;headers=headers, params={"run_id": child_job_run_id}).json()&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;child1 = next(t for t in child_job["tasks"] if t["task_key"] == "Child1")&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;dbutils.jobs.taskValues.set(key="child1_run_id", value=str(child1["run_id"]))&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Then in Parent 2, reference: &lt;/SPAN&gt;&lt;SPAN&gt;{{tasks.get_child_run_id.values.child1_run_id}}&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Can you check if this works?&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Apologies again for the earlier response.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;BR /&gt;Anuj&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2026 17:15:45 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/get-task-run-id-that-is-nested-in-a-job-run-task/m-p/153772#M54015</guid>
      <dc:creator>anuj_lathi</dc:creator>
      <dc:date>2026-04-08T17:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: Get task_run_id that is nested in a job_run task</title>
      <link>https://community.databricks.com/t5/data-engineering/get-task-run-id-that-is-nested-in-a-job-run-task/m-p/153781#M54016</link>
      <description>&lt;P&gt;Ok, I think this makes much more sense and I see how it could work.&lt;/P&gt;&lt;P&gt;The only thing I would say as far as how we're trying to implement this, rather than having the intermediary `&lt;SPAN&gt;get_child_run_id` notebook task, I am trying to get the `child_run_id` inside of the parent2 run_job rather than it being passed via the intermediary step. We can still accomplish this by including the &lt;A href="https://docs.databricks.com/aws/en/jobs/dynamic-value-references#supported-value-references" target="_self"&gt;dynamic value reference&lt;/A&gt;&amp;nbsp;`&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;{{tasks.parent1.run_id}}&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;` as a job parameter for parent2. This way, once the parent2 run_job has the parent1 run_id, we can follow similar steps as what you outlined.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you for your assistance! This helps confirm my solution path.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2026 19:33:36 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/get-task-run-id-that-is-nested-in-a-job-run-task/m-p/153781#M54016</guid>
      <dc:creator>ChristianRRL</dc:creator>
      <dc:date>2026-04-08T19:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Get task_run_id that is nested in a job_run task</title>
      <link>https://community.databricks.com/t5/data-engineering/get-task-run-id-that-is-nested-in-a-job-run-task/m-p/153994#M54048</link>
      <description>&lt;P&gt;Sorry, I have to mark this as not solution again. But I think the issue is becoming clearer. Please see my attached images.&lt;/P&gt;&lt;P&gt;Basically, the issue I'm having is that it seems like I can only get the "Child" task run_id for the task at the orchestrator level (e.g. run_fleet_wtg_ge_silver).. however, this run_id is different than the actual nested run_id of the launched job and its respective task. Because a run_job task *launches* a separate instance of that job, I am not able to get the nested job &amp;gt; task run_id I need.&lt;/P&gt;&lt;P&gt;Put another way, what I have is:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Orchestrator Parent1 &amp;gt; run_job task &amp;gt;&amp;gt;&amp;gt; *launches* &amp;gt;&amp;gt;&amp;gt; Parent1 instance (this is different than the original Parent1) &amp;gt; notebook task (this is the actual Child1 run_id I'm looking for)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Let me know if this makes sense. This is trickier than I was originally thinking.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2026 22:09:35 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/get-task-run-id-that-is-nested-in-a-job-run-task/m-p/153994#M54048</guid>
      <dc:creator>ChristianRRL</dc:creator>
      <dc:date>2026-04-09T22:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: Get task_run_id that is nested in a job_run task</title>
      <link>https://community.databricks.com/t5/data-engineering/get-task-run-id-that-is-nested-in-a-job-run-task/m-p/154345#M54085</link>
      <description>&lt;P&gt;Hi, I would refer to the following cross-post for the solution.&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://community.databricks.com/t5/data-engineering/get-task-run-id-or-job-run-id-of-a-launched-job-run-task/m-p/154071#M54063" target="_blank"&gt;Solved: Re: Get task_run_id (or job_run_id) of a *launched... - Databricks Community - 153999&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;As&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/176516"&gt;@emma_s&lt;/a&gt;&amp;nbsp;points out, it basically boils down to:&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;1. Pass {{tasks.parent1.run_id}} to a downstream notebook via base_parameters&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. In that notebook, call get-output with that ID → gives you &lt;STRONG&gt;run_job_output.run_id&lt;/STRONG&gt; (the real parent1 run)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Call get-run on that → find child1 in the tasks list → grab its run_id&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Basically, the part I was missing was getting the `&lt;STRONG&gt;run_job_output.run_id&lt;/STRONG&gt;` with which to programmatically get the child1 run_id.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Apr 2026 15:20:17 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/get-task-run-id-that-is-nested-in-a-job-run-task/m-p/154345#M54085</guid>
      <dc:creator>ChristianRRL</dc:creator>
      <dc:date>2026-04-13T15:20:17Z</dc:date>
    </item>
  </channel>
</rss>

