Hello, I am attempting to use the Metaflow CLI to...
# ask-metaflow
c
Hello, I am attempting to use the Metaflow CLI to inspect the value of artifacts assigned after a Flow has executed e.g.
Copy code
from metaflow import Step, Run, namespace

start = list(Step("<flow_info/execution_id/step_name>")
start.task.data.<some_variable>
This is failing very frequently with the following error:
ServiceException: Metadata request (/flows/../runs/sfn-30ac6c50-2ece-42c1-8964-c50af558d675/steps/start/tasks/../artifacts) failed (code 504): {"message": "Endpoint request timed out"}
The Metadata service is not under load and the DB looks fine as well. Any ideas why I might be seeing so many timed out requests?
1