- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2022 10:51 AM
Is there a way to get the last run date of job(s) ? I am trying to compile a report and trying to see if this output exists either in databricks jobs cli output or via api?
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2022 03:03 PM
Sure. Using Databricks jobs API you can get this information.
Use the following API endpoint to get list of all the jobs and their executions till date in descending order.
You can pass job_id as parameter to get runs of a specific job.
https://<databricks-instance>/api/2.1/jobs/runs/list
For more information on parameters, visit Jobs API docs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2022 03:03 PM
Sure. Using Databricks jobs API you can get this information.
Use the following API endpoint to get list of all the jobs and their executions till date in descending order.
You can pass job_id as parameter to get runs of a specific job.
https://<databricks-instance>/api/2.1/jobs/runs/list
For more information on parameters, visit Jobs API docs.

