Databricks Workflow UI- Missing Data in Last Run Column

Griffin Lehman 20 Reputation points
2023-09-13T13:44:25.1233333+00:00

Hello,

I am having a pretty major problem with the Databricks Workflows UI- when I look at the list of jobs, the "Last Run" column does not have any data in it. This is kind of a big problem because now I don't have a good way of getting visibility into jobs that have failed recently. I have never had this problem before, and it has always shown data in that column until last night. Unfortunately, we do not have a premium support plan so we can't make a support request for this. What should I do?

Azure Databricks
Azure Databricks
An Apache Spark-based analytics platform optimized for Azure.
2,080 questions
0 comments No comments
{count} votes

Accepted answer
  1. Amira Bedhiafi 20,176 Reputation points
    2023-09-14T11:49:14.12+00:00

    You may need to change the brower or clear the cache or open your browser's Developer Toolsand go to the Network page Reload the Databricks page. Check if there are any failed network requests, especially those associated with fetching job runs. Any errors here could give a clue as to what's going wrong.

    You can also use the Databricks REST API to fetch job runs :

     import requests
         
         DOMAIN = '<YOUR-DATABRICKS-WORKSPACE-DOMAIN>'
         TOKEN = 'Bearer <YOUR-PERSONAL-ACCESS-TOKEN>'
         
         response = requests.get(
             f'https://{DOMAIN}/api/2.0/jobs/runs/list',
             headers={'Authorization': TOKEN}
         )
         runs = response.json()['runs']
         for run in runs:
             print(run['job_id'], run['start_time'])
    

    You can also check the logs of any clusters that were running these jobs. Sometimes, issues can arise from cluster-side errors that propagate to the UI.

    As a last resort, try restarting your Databricks workspace. Sometimes, a simple restart can resolve unexplained glitches.

    If the problem persists don't hesitate to contact the support team.

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Griffin Lehman 20 Reputation points
    2023-09-14T13:20:05.66+00:00

    Clearing the browser cache worked (I think) or the issue just resolved itself. Thanks so much!

    0 comments No comments