Romain
Romain
I am in the process of updating the docs to detail how to use PyCharm or VSCode to step through step code in the way suggested here. On a related...
@TMiguelT: yes, after I typed that comment I realized that in light of debugging it doesn't help at all; it will still fork a new process for every task just...
I added a section in the docs (https://docs.metaflow.org/metaflow/debugging#debugging-your-flow-code) that hopefully will help with this. If this is sufficient, I will close this issue, if you would like more support/information, please...
Yes, both PyCharm and VSCode are actually pretty good because they allow you to debug the master process as well as all subprocesses. There is also probably a way to...
@ryan-williams : I am using your PR as a guinea pig for some tests we run internally. The CI is not accessible so don't worry about the message (it's a...
Apologies for the delay. I looked at this and we do create the file within the directory (we use the `dir` argument that should create the file directly in the...
@Machuntox, I am not quite sure what you would like to do. In Metaflow, one class is one flow. If you would like to reuse portions of code between flows,...
This is "expected" insofar as the logic explicitly excludes methods and functions (see here: https://github.com/Netflix/metaflow/blob/master/metaflow/datastore/task_datastore.py#L696). The reasoning behind that was to store only user level stuff (and not the functions...
@tuulos : could we, as a workaround, catch this type of error and force a refresh (ie: retry like we do for some other errors)? This might be a good...
A few notes: - currently datastore cannot be added via the `metaflow_extensions` mechanism but that should be possible very shortly (it's very trivial to do and just requires a tiny...