Hello, we have recently seen an increase in runs f...
# ask-metaflow
u
Hello, we have recently seen an increase in runs failing due to the following error:
Copy code
File "/venv/lib/python3.10/site-packages/metaflow/datastore/task_datastore.py", line 364, in load_artifacts
    for (key, blob) in self._ca_store.load_blobs(to_load.keys()):
  File "/venv/lib/python3.10/site-packages/metaflow/datastore/content_addressed_store.py", line 140, in load_blobs
    with open(file_path, "rb") as f:
TypeError: expected str, bytes or os.PathLike object, not NoneType
These happen sporadically and I can't deterministically reproduce the error, restarting the run will sometimes fix it. Is there a way to enable debug logging for metaflow? I'm trying to see what blob it's trying to load and if a parent step is not serializing the artifact correctly?
1