Definition
The Model Run view reports the most recent successful pipeline run window for each model and environment.
It is intended to help consumers understand run recency and execution windows without querying internal orchestration tables directly.
What this view contains
Section titled “What this view contains”Each row identifies one model/environment pair and the latest successful pipeline run associated with it.
airflow_run_ididentifies the pipeline run.started_atandcompleted_atprovide execution window timing.model_nameis normalised by removing the internalsrv_prefix.
Typical use cases
Section titled “Typical use cases”- Confirm when a model was last successfully refreshed.
- Compare execution windows between models.
- Join with
model_data_qualityfor freshness and quality reporting.
Example
Section titled “Example”SELECT environment, model_name, airflow_run_id, started_at, completed_atFROM explorer_open_safely.model_runORDER BY completed_at DESC