karakanb commented on issue #23417: URL: https://github.com/apache/airflow/issues/23417#issuecomment-1250311681
My usecase is to integrate our Airflow pipelines with some of internal tooling, and grid view has been the perfect way to do so. Currently, since there is no grid endpoint, what I have to do is: - fetch all task instances between after a specific date - Fetch tasks, because not all tasks have had a run - Fetch dagruns, because not all dagruns are returned as part of the task instances This means many requests, and especially when there are many task instances it takes many seconds to fetch the data because of additional pagination in the requests, whereas the grid endpoint can do this very quickly. Increasing the page sizes don't help much either for some reason, which means we are stuck with very slow loading times compared to the grid view data. -- 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]
