-
Notifications
You must be signed in to change notification settings - Fork 121
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
Investigate failure to load caches above 2^32 - 1
bytes
#336
Comments
Looked some more into this: the person who reported this said that That being said, I suspect this is still causing unnecessary cache misses due to #200: we end up storing large downloads (such as 700 MB torche wheels) that never get "hit", since the default |
Hmm, I've still been unable to trigger this: it looks like |
You spooked me -- you probably want to say bytes here. |
Indeed, sorry! |
2^32 - 1
GB2^32 - 1
bytes
Opening this as a reminder to myself.
This is likely related to #238 and #200: some recent
torch
wheels are>= 2.5GB
, andpip
appears to download them repeatedly without hitting the cache. My only SWAG so far is that this is because thebody
itself overflowsmsgpack
's signed 32 bit limit on binary objects, per the spec.Haven't fully diagnosed yet.
See: https://news.ycombinator.com/item?id=40659973
The text was updated successfully, but these errors were encountered: