<?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 system.lakeflow.job_task_run_timeline table missing task parameters on for each loop input in Administration &amp; Architecture</title>
    <link>https://community.databricks.com/t5/administration-architecture/system-lakeflow-job-task-run-timeline-table-missing-task/m-p/143054#M4694</link>
    <description>&lt;P&gt;The&amp;nbsp;system.lakeflow.job_task_run_timeline does not include the task level parameters on the input of the for each loop if dynamically setting the parameter in another notebook using&amp;nbsp;&lt;SPAN&gt;dbutils.jobs.taskValues.&lt;/SPAN&gt;&lt;SPAN&gt;set. This information is not included in the API (&lt;A href="https://docs.databricks.com/api/workspace/jobs/getrunoutput" target="_blank"&gt;https://docs.databricks.com/api/workspace/jobs/getrunoutput&lt;/A&gt;) either. Where can I find this information to build a job execution log to monitor jobs overtime?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 05 Jan 2026 19:05:12 GMT</pubDate>
    <dc:creator>hgintexas</dc:creator>
    <dc:date>2026-01-05T19:05:12Z</dc:date>
    <item>
      <title>system.lakeflow.job_task_run_timeline table missing task parameters on for each loop input</title>
      <link>https://community.databricks.com/t5/administration-architecture/system-lakeflow-job-task-run-timeline-table-missing-task/m-p/143054#M4694</link>
      <description>&lt;P&gt;The&amp;nbsp;system.lakeflow.job_task_run_timeline does not include the task level parameters on the input of the for each loop if dynamically setting the parameter in another notebook using&amp;nbsp;&lt;SPAN&gt;dbutils.jobs.taskValues.&lt;/SPAN&gt;&lt;SPAN&gt;set. This information is not included in the API (&lt;A href="https://docs.databricks.com/api/workspace/jobs/getrunoutput" target="_blank"&gt;https://docs.databricks.com/api/workspace/jobs/getrunoutput&lt;/A&gt;) either. Where can I find this information to build a job execution log to monitor jobs overtime?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 19:05:12 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/system-lakeflow-job-task-run-timeline-table-missing-task/m-p/143054#M4694</guid>
      <dc:creator>hgintexas</dc:creator>
      <dc:date>2026-01-05T19:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: system.lakeflow.job_task_run_timeline table missing task parameters on for each loop input</title>
      <link>https://community.databricks.com/t5/administration-architecture/system-lakeflow-job-task-run-timeline-table-missing-task/m-p/143056#M4696</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/125668"&gt;@hgintexas&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You’re right, the system job timeline tables and the Runs API don’t currently surface the resolved per‑iteration inputs for a For-each task when those inputs are sourced via task values set in another notebook with dbutils.jobs.taskValues.set().&lt;/P&gt;
&lt;P&gt;The only place Databricks &lt;A href="https://docs.databricks.com/aws/en/jobs/monitor#view-task-run-history-for-a-for-each-task" target="_blank" rel="noopener"&gt;explicitly documents showing task values for a for-each run&lt;/A&gt; is the Task run details UI “Output” panel, which isn’t exposed by the Jobs Get Run Output endpoint.&amp;nbsp;There is no separate API that exposes the same rendered output for aggregation across runs.&lt;/P&gt;
&lt;P&gt;A potential workaround: in the upstream task (the one calling dbutils.jobs.taskValues.set), also write the key/value you set to a small Delta table you control, along with identifiers you can later join on (job_id, job_run_id, task_key, and any iteration id or logical key you use) with&amp;nbsp;system.lakeflow.job_task_run_timeline&amp;nbsp;or with system.lakeflow.job_run_timeline. While it isn't the simplest solution, I think it would achieve what you are looking for.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 20:46:51 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/system-lakeflow-job-task-run-timeline-table-missing-task/m-p/143056#M4696</guid>
      <dc:creator>stbjelcevic</dc:creator>
      <dc:date>2026-01-05T20:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: system.lakeflow.job_task_run_timeline table missing task parameters on for each loop input</title>
      <link>https://community.databricks.com/t5/administration-architecture/system-lakeflow-job-task-run-timeline-table-missing-task/m-p/143058#M4697</link>
      <description>&lt;P&gt;We use for-each loops with dynamic variables across many of our jobs, so addressing this would be a significant effort. Since a new task_id is assigned for each for-each iteration, if one of the iterations fails it’s difficult to determine which iteration value caused the failure using the proposed method. Would it be possible to request a feature enhancement to expose for-each loop task values in the &lt;SPAN&gt;system.lakeflow.job_task_run_timeline&amp;nbsp;&lt;/SPAN&gt;table or via the Runs API?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 21:03:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/system-lakeflow-job-task-run-timeline-table-missing-task/m-p/143058#M4697</guid>
      <dc:creator>hgintexas</dc:creator>
      <dc:date>2026-01-05T21:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: system.lakeflow.job_task_run_timeline table missing task parameters on for each loop input</title>
      <link>https://community.databricks.com/t5/administration-architecture/system-lakeflow-job-task-run-timeline-table-missing-task/m-p/143060#M4698</link>
      <description>&lt;P&gt;I just submitted this as an idea into our internal product-ideas portal because I agree with you that it would be a good enhancement to Databricks!&lt;/P&gt;
&lt;P&gt;However, I can't guarantee a timeline or that our product team will prioritize it in the near future.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 21:58:08 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/system-lakeflow-job-task-run-timeline-table-missing-task/m-p/143060#M4698</guid>
      <dc:creator>stbjelcevic</dc:creator>
      <dc:date>2026-01-05T21:58:08Z</dc:date>
    </item>
  </channel>
</rss>

