Resumable Uploads
Introduction
For larger files, we recommend using resumable uploads.
This breaks the file into chunks and sends them to the server separately.
It means you can send chunks in parallel, and if one chunk fails, you can retry that chunk without having to restart the whole upload.
How it works
Just add a header covering the byte range that is being sent.
For example, to send the first 16MB of a 100MB file:
If it's the final chunk, we check that we have all the chunks and process the full file: