You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with #51, we copy from the send stream to disk for multipart uploads. we currently do this in python code, which is slow. we could implement a faster copy using sendfile() and splice().
we could also reuse buffers with readinto() for the slow case.
Some notes:
sendfile() requires mmap-capable input, so won't work for our normal case
splice() requires 3.10+ and a capable filesystem
The text was updated successfully, but these errors were encountered:
with #51, we copy from the send stream to disk for multipart uploads. we currently do this in python code, which is slow. we could implement a faster copy using
sendfile()
andsplice()
.we could also reuse buffers with
readinto()
for the slow case.Some notes:
sendfile()
requires mmap-capable input, so won't work for our normal casesplice()
requires 3.10+ and a capable filesystemThe text was updated successfully, but these errors were encountered: