-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dvc does not cache stream opened files #9030
Comments
Might be solved by #9037 |
@skshetry Could you try with the upstream, please? |
I don't think so. DVCFileSystem does not support caching, we just use |
@skshetry Ah, I see. Maybe it is worth doing |
In plots, we return a dict with partial function to read file, and resolve later, so we can't do a fetch there. dvc/dvc/repo/plots/__init__.py Lines 169 to 179 in 4f49023
Since we are reading the file completely in memory on |
Noticed during #8786 that we don't cache files that were streamed from remotes. So subsequent
plots show
always hits the remote and is thus slow.The text was updated successfully, but these errors were encountered: