<?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: Databricks Running jobs are not visible in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/databricks-running-jobs-are-not-visible/m-p/124645#M47237</link>
    <description>&lt;P&gt;Thanks Nayan&lt;BR /&gt;&lt;BR /&gt;This must help.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Jul 2025 14:29:10 GMT</pubDate>
    <dc:creator>Khaja_Zaffer</dc:creator>
    <dc:date>2025-07-09T14:29:10Z</dc:date>
    <item>
      <title>Databricks Running jobs are not visible</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-running-jobs-are-not-visible/m-p/124443#M47193</link>
      <description>&lt;P&gt;Hi guys ,&lt;/P&gt;&lt;P&gt;I have a&amp;nbsp; issue here . I dont know why suddenly I cannot view Jobs which are running . Basically if I set the time and change the run status as "Active" . No active jobs are being shown . Although If I set run status as "Completed" or anything , its showing correctly. Anyone help me with this annoying issue .&amp;nbsp;&lt;/P&gt;&lt;P&gt;Screenshot 1: When run status is set as "Active" - no jobs are shown inspite of jobs running .&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gokkul_0-1751976572885.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/18045iC12A1AB3985C7C00/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gokkul_0-1751976572885.png" alt="gokkul_0-1751976572885.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Screenshot 2: When run status is set as "Completed" or anything - it displays jobs correctly .&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gokkul_1-1751976706169.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/18046i2064F0D2BBB4E005/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gokkul_1-1751976706169.png" alt="gokkul_1-1751976706169.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jul 2025 12:12:51 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-running-jobs-are-not-visible/m-p/124443#M47193</guid>
      <dc:creator>gokkul</dc:creator>
      <dc:date>2025-07-08T12:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Running jobs are not visible</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-running-jobs-are-not-visible/m-p/124509#M47217</link>
      <description>&lt;P&gt;Hello Gokku&lt;/P&gt;&lt;P&gt;Good day!&lt;BR /&gt;I think -&amp;nbsp;The most common reason. You might have permission to see the &lt;I&gt;job itself&lt;/I&gt; and its &lt;I&gt;completed runs&lt;/I&gt;, but lack the specific permission (CAN_VIEW or CAN_MANAGE_RUN) required to see its &lt;STRONG&gt;active state&lt;/STRONG&gt;. This can happen if job access controls have been recently modified.&lt;BR /&gt;can you confirm this once?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jul 2025 22:32:13 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-running-jobs-are-not-visible/m-p/124509#M47217</guid>
      <dc:creator>Khaja_Zaffer</dc:creator>
      <dc:date>2025-07-08T22:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Running jobs are not visible</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-running-jobs-are-not-visible/m-p/124638#M47235</link>
      <description>&lt;P&gt;Hi v-kzaffer&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for responding . Will talk with my seniors and confirm back to you .&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jul 2025 14:01:10 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-running-jobs-are-not-visible/m-p/124638#M47235</guid>
      <dc:creator>gokkul</dc:creator>
      <dc:date>2025-07-09T14:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Running jobs are not visible</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-running-jobs-are-not-visible/m-p/124642#M47236</link>
      <description>&lt;P&gt;use this code to view all active jobs. But use a token that is admin to the workspace.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;%python
import requests
import json

# Replace these variables with your specific values
databricks_instance = 'your-workspace-url'
token = 'use an admin token'

# Define the API endpoint
url = f'https://{databricks_instance}/api/2.0/jobs/runs/list'

# Define the parameters
params = {
    'active_only': 'true'
}

# Define the headers
headers = {
    'Authorization': f'Bearer {token}'
}

# Make the GET request
response = requests.get(url, headers=headers, params=params)

# Check if the request was successful
if response.status_code == 200:
    # Parse the JSON response
    data = response.json()
    # Print the active job runs
    print(json.dumps(data, indent=4))
else:
    print(f'Error: {response.status_code}')
    print(response.text)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 09 Jul 2025 14:13:42 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-running-jobs-are-not-visible/m-p/124642#M47236</guid>
      <dc:creator>nayan_wylde</dc:creator>
      <dc:date>2025-07-09T14:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Databricks Running jobs are not visible</title>
      <link>https://community.databricks.com/t5/data-engineering/databricks-running-jobs-are-not-visible/m-p/124645#M47237</link>
      <description>&lt;P&gt;Thanks Nayan&lt;BR /&gt;&lt;BR /&gt;This must help.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jul 2025 14:29:10 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/databricks-running-jobs-are-not-visible/m-p/124645#M47237</guid>
      <dc:creator>Khaja_Zaffer</dc:creator>
      <dc:date>2025-07-09T14:29:10Z</dc:date>
    </item>
  </channel>
</rss>

