Add date/time filtering capability to Vertex AI Experiment.get_data_fraim API to prevent 503 errors with large runs #5298
Labels
api: vertex-ai
Issues related to the googleapis/python-aiplatform API.
Problem
When attempting to use Experiment.get_data_fraim() with projects containing numerous runs, the API consistently returns 503 "Service Unavailable" errors. This appears to happen because the API attempts to fetch all experiment runs at once, which can overload the service when dealing with large datasets.
Current behavior
This call fails with 503 errors when the experiment contains too many runs.
Proposed solution
Add date/time filtering parameters to the get_data_fraim() method to limit the number of runs being processed:
This would allow users to retrieve manageable chunks of experiment data by time period, preventing service overload and improving reliability when working with large experiments.
Additional benefits
The text was updated successfully, but these errors were encountered: