dstandish opened a new pull request, #53429: URL: https://github.com/apache/airflow/pull/53429
Previously, to get just 5 attributes from a dag run, we were hitting the public dag runs endpoint, which among other things, deserializes the dag. We don't need to do this. Using a dedicated endpoint for this saves us over a second in load time, and reduces webserver load. ### Before -- 1.37 second API call to dag runs get endpoint <img width="1236" height="585" alt="image" src="https://github.com/user-attachments/assets/b6c9c4da-5a03-4c5b-b850-72f0603f25dd" /> ### After -- 55ms call to new, simplified endpoint <img width="1221" height="542" alt="image" src="https://github.com/user-attachments/assets/a6ce90da-fb2a-4c47-ac50-3ba74caea259" /> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
